Comment on Async I/O for Python 3 parentComments−csears13yFor anyone curious, INTERCAL was originally a joke language which included a COMEFROM instruction that acted like GOTO in reverse: http://en.wikipedia.org/wiki/COMEFROMPython's "yield from" hands off execution to a sub-generator: http://www.python.org/dev/peps/pep-0380/
Comments
For anyone curious, INTERCAL was originally a joke language which included a COMEFROM instruction that acted like GOTO in reverse: http://en.wikipedia.org/wiki/COMEFROM
Python's "yield from" hands off execution to a sub-generator: http://www.python.org/dev/peps/pep-0380/