]> granicus.if.org Git - python/commit
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
authorYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 05:01:51 +0000 (22:01 -0700)
committerYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 05:01:51 +0000 (22:01 -0700)
commiteb6364557f9bc4e6be29bb8a8f43308a0e080aba
tree05b7aed24dce255be67e7a60c021c319d13f43c9
parentb96ef55d493aded2dea18b0208070bdfab4ceb73
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
27 files changed:
Include/ceval.h
Include/code.h
Include/genobject.h
Include/pylifecycle.h
Include/pystate.h
Include/symtable.h
Lib/asyncio/base_events.py
Lib/asyncio/coroutines.py
Lib/asyncio/events.py
Lib/dis.py
Lib/inspect.py
Lib/test/badsyntax_async6.py [deleted file]
Lib/test/test_asyncgen.py [new file with mode: 0644]
Lib/test/test_coroutines.py
Lib/test/test_dis.py
Lib/test/test_inspect.py
Lib/test/test_sys.py
Lib/types.py
Misc/NEWS
Modules/gcmodule.c
Objects/genobject.c
Python/ceval.c
Python/compile.c
Python/pylifecycle.c
Python/pystate.c
Python/symtable.c
Python/sysmodule.c