]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)
authorGregory P. Smith <greg@krypto.org>
Mon, 14 Dec 2020 17:10:10 +0000 (09:10 -0800)
committerGitHub <noreply@github.com>
Mon, 14 Dec 2020 17:10:10 +0000 (09:10 -0800)
commit42c9f0fd0a5e67d4ae0022bfd7370cb9725a5b01
tree841b16481c023d651481743f03bad3030449a54f
parentf5e97b72fecff9b9ced35704ec5e6cad29e2825d
bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)

Add positional only args support to lib2to3 pgen2.

This adds 3.8's PEP-570 support to lib2to3's pgen2.  lib2to3, while
being deprecated is still used by things to parse all versions of Python
code today.  We need it to support parsing modern 3.8 and 3.9 constructs.

Also add tests for complex *expr and **expr's.
Lib/lib2to3/Grammar.txt
Lib/lib2to3/tests/test_parser.py
Misc/NEWS.d/next/Library/2020-12-14-08-23-57.bpo-36541.qdEtZv.rst [new file with mode: 0644]