So it seems it would be able to have goless in python3 with this? The combination of spawning a function and using channels between them is great. Specially the optional numeric argument of chan() where you can specify whether it's blocking or not, having a send buffer etc. Using an event loop with async/await could work nicely. Or also a version using real threads instead.
Nice-- I've found async/await really useful in C#/.NET and didn't realize it was making its way into Python (I'm still mostly writing Python 2.7 code here for availability reasons).
A little disappointed that it doesn't look like there's really support for it in the standard library's networking packages, though... hopefully more will be coming in 3.6 or 3.7?
The way the standard library is managed in terms of new things is it needs to be proved in the community for a year or more before we consider adding it. Since async is so new it's a bit early to get be changing things until we see how the community chooses to approach this new style of programming.
https://goless.readthedocs.org/en/latest/