]> granicus.if.org Git - python/commit
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
authorYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 03:50:03 +0000 (20:50 -0700)
committerYury Selivanov <yury@magic.io>
Fri, 9 Sep 2016 03:50:03 +0000 (20:50 -0700)
commitf8cb8a16a344ab208fd46876c4b63604987347b8
treec44caa48291401d1e1e388004d2762513ac88c93
parent09ad17810c38d1aaae02de69084dd2a8ad9f5cdb
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.

Patch by Ivan Levkivskyi.
45 files changed:
Doc/glossary.rst
Doc/library/dis.rst
Doc/reference/datamodel.rst
Doc/reference/simple_stmts.rst
Grammar/Grammar
Include/Python-ast.h
Include/graminit.h
Include/opcode.h
Include/symtable.h
Lib/importlib/_bootstrap_external.py
Lib/lib2to3/Grammar.txt
Lib/lib2to3/tests/test_parser.py
Lib/opcode.py
Lib/symbol.py
Lib/symtable.py
Lib/test/ann_module.py [new file with mode: 0644]
Lib/test/ann_module2.py [new file with mode: 0644]
Lib/test/ann_module3.py [new file with mode: 0644]
Lib/test/pydoc_mod.py
Lib/test/test___all__.py
Lib/test/test_dis.py
Lib/test/test_grammar.py
Lib/test/test_opcodes.py
Lib/test/test_parser.py
Lib/test/test_pydoc.py
Lib/test/test_symtable.py
Lib/test/test_tools/test_com2ann.py [new file with mode: 0644]
Lib/test/test_typing.py
Lib/typing.py
Misc/ACKS
Misc/NEWS
Modules/symtablemodule.c
PC/launcher.c
Parser/Python.asdl
Python/Python-ast.c
Python/ast.c
Python/ceval.c
Python/compile.c
Python/graminit.c
Python/importlib_external.h
Python/opcode_targets.h
Python/pylifecycle.c
Python/symtable.c
Tools/parser/com2ann.py [new file with mode: 0644]
Tools/parser/unparse.py