python3.3 released days ago. the biggest new feature is yield from
Would that make coding easier?
in previous version, if you want to make gen.task work at somewhere, you must modify all functions at the very beginning passing a callback. though most of the callback is meaningless.
in 3.3. you can simply use yield from to call the function, you don't have to make all functions become asynchronous ,isn't it?