]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
authorYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 17:36:01 +0000 (10:36 -0700)
committerYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 17:36:01 +0000 (10:36 -0700)
commit52c4e7cc84702750bb75d5423da01d01bcdfdf39
tree01ebfe1725b4169baefa4e76aeaeffcd25153f3b
parent93b2dee80e5d72cf12522d773b512097493c09fc
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
20 files changed:
Grammar/Grammar
Include/Python-ast.h
Lib/lib2to3/Grammar.txt
Lib/lib2to3/tests/test_parser.py
Lib/test/badsyntax_async1.py [deleted file]
Lib/test/badsyntax_async2.py [deleted file]
Lib/test/badsyntax_async3.py [deleted file]
Lib/test/badsyntax_async4.py [deleted file]
Lib/test/badsyntax_async5.py [deleted file]
Lib/test/badsyntax_async7.py [deleted file]
Lib/test/badsyntax_async8.py [deleted file]
Lib/test/test_ast.py
Lib/test/test_coroutines.py
Misc/NEWS
Parser/Python.asdl
Python/Python-ast.c
Python/ast.c
Python/compile.c
Python/graminit.c
Python/symtable.c