diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-06-11 16:09:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-11 16:09:21 (GMT) |
commit | bcd7deed9118e365c1225de2a2e1a81bf988c6ab (patch) | |
tree | de71fff4f10f86dc1fa46d5ca590fbd06dfb1a75 /Lib/keyword.py | |
parent | 10e6506aa8261aacc89b49e629ae1c927fa5151c (diff) | |
download | cpython-bcd7deed9118e365c1225de2a2e1a81bf988c6ab.zip cpython-bcd7deed9118e365c1225de2a2e1a81bf988c6ab.tar.gz cpython-bcd7deed9118e365c1225de2a2e1a81bf988c6ab.tar.bz2 |
bpo-40939: Remove PEG parser easter egg (__new_parser__) (#20802)
It no longer serves a purpose (there's only one parser) and having "new" in any name will eventually look odd. Also, it impinges on a potential sub-namespace, `__new_...__`.
Diffstat (limited to 'Lib/keyword.py')
-rw-r--r-- | Lib/keyword.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py index afc3db3..b6a9982 100644 --- a/Lib/keyword.py +++ b/Lib/keyword.py @@ -19,7 +19,6 @@ kwlist = [ 'False', 'None', 'True', - '__new_parser__', 'and', 'as', 'assert', |