]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
authorGuido van Rossum <guido@python.org>
Thu, 7 Mar 2019 20:38:08 +0000 (12:38 -0800)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 7 Mar 2019 20:38:08 +0000 (12:38 -0800)
commit495da292255b92dd73758fdd0e4c7d27d82b1e57
tree1378cf049d2d125593fa970ea1e9a9f77604fab1
parentbf94cc7b496a379e1f604aa2e4080bb70ca4020e
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)

This adds a `feature_version` flag to `ast.parse()` (documented) and `compile()` (hidden) that allow tweaking the parser to support older versions of the grammar. In particular if `feature_version` is 5 or 6, the hacks for the `async` and `await` keyword from PEP 492 are reinstated. (For 7 or higher, these are unconditionally treated as keywords, but they are still special tokens rather than `NAME` tokens that the parser driver recognizes.)

https://bugs.python.org/issue35975
29 files changed:
Doc/library/ast.rst
Doc/library/token-list.inc
Doc/library/token.rst
Grammar/Grammar
Grammar/Tokens
Include/Python-ast.h
Include/compile.h
Include/parsetok.h
Include/token.h
Lib/ast.py
Lib/keyword.py
Lib/test/test_parser.py
Lib/test/test_type_comments.py
Lib/token.py
Misc/NEWS.d/next/Core and Builtins/2019-02-27-16-49-08.bpo-35975.IescLY.rst [new file with mode: 0644]
Modules/main.c
Modules/parsermodule.c
Parser/asdl_c.py
Parser/parsetok.c
Parser/token.c
Parser/tokenizer.c
Parser/tokenizer.h
Python/Python-ast.c
Python/ast.c
Python/bltinmodule.c
Python/clinic/bltinmodule.c.h
Python/compile.c
Python/graminit.c
Python/pythonrun.c