]> granicus.if.org Git - python/commit
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
authorYury Selivanov <yselivanov@sprymix.com>
Tue, 12 May 2015 02:57:16 +0000 (22:57 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Tue, 12 May 2015 02:57:16 +0000 (22:57 -0400)
commit7544508f0245173bff5866aa1598c8f6cce1fc5f
treebf80850d9cd46fc811f04b8c2484fb50775c697d
parent4e6bf4b3da03b132b0698f30ee931a350585b117
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
72 files changed:
Doc/includes/typestruct.h
Doc/library/dis.rst
Grammar/Grammar
Include/Python-ast.h
Include/ceval.h
Include/code.h
Include/genobject.h
Include/graminit.h
Include/object.h
Include/opcode.h
Include/pyerrors.h
Include/pystate.h
Include/token.h
Include/typeslots.h
Lib/_collections_abc.py
Lib/dis.py
Lib/inspect.py
Lib/lib2to3/Grammar.txt
Lib/lib2to3/pgen2/token.py
Lib/lib2to3/pgen2/tokenize.py
Lib/lib2to3/tests/test_parser.py
Lib/opcode.py
Lib/test/badsyntax_async1.py [new file with mode: 0644]
Lib/test/badsyntax_async2.py [new file with mode: 0644]
Lib/test/badsyntax_async3.py [new file with mode: 0644]
Lib/test/badsyntax_async4.py [new file with mode: 0644]
Lib/test/badsyntax_async5.py [new file with mode: 0644]
Lib/test/badsyntax_async6.py [new file with mode: 0644]
Lib/test/badsyntax_async7.py [new file with mode: 0644]
Lib/test/badsyntax_async8.py [new file with mode: 0644]
Lib/test/badsyntax_async9.py [new file with mode: 0644]
Lib/test/exception_hierarchy.txt
Lib/test/test_ast.py
Lib/test/test_collections.py
Lib/test/test_coroutines.py [new file with mode: 0644]
Lib/test/test_dis.py
Lib/test/test_grammar.py
Lib/test/test_inspect.py
Lib/test/test_minidom.py
Lib/test/test_parser.py
Lib/test/test_pickle.py
Lib/test/test_sys.py
Lib/test/test_tokenize.py
Lib/test/test_types.py
Lib/token.py
Lib/tokenize.py
Lib/types.py
Lib/xml/dom/xmlbuilder.py
Modules/_testcapimodule.c
Modules/parsermodule.c
Objects/exceptions.c
Objects/frameobject.c
Objects/genobject.c
Objects/typeobject.c
Objects/typeslots.inc
Objects/typeslots.py
Parser/Python.asdl
Parser/tokenizer.c
Parser/tokenizer.h
Python/Python-ast.c
Python/ast.c
Python/ceval.c
Python/compile.c
Python/graminit.c
Python/importlib.h
Python/importlib_external.h
Python/opcode_targets.h
Python/peephole.c
Python/pystate.c
Python/symtable.c
Python/sysmodule.c
Tools/parser/unparse.py