summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2023-09-22 18:03:23 (GMT)
committerGitHub <noreply@github.com>2023-09-22 18:03:23 (GMT)
commitb28ffaa193efc66f46ab90d383279174a11a11d7 (patch)
treeacea940a825714a0c55c4669d31e23fa08ed8bf0 /Misc
parent7c553991724d8d537f8444db73f016008753d77a (diff)
downloadcpython-b28ffaa193efc66f46ab90d383279174a11a11d7.zip
cpython-b28ffaa193efc66f46ab90d383279174a11a11d7.tar.gz
cpython-b28ffaa193efc66f46ab90d383279174a11a11d7.tar.bz2
gh-109596: Ensure repeated rules in the grammar are not allowed and fix incorrect soft keywords (#109606)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-09-20-13-18-08.gh-issue-109596.RG0K2G.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-20-13-18-08.gh-issue-109596.RG0K2G.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-20-13-18-08.gh-issue-109596.RG0K2G.rst
new file mode 100644
index 0000000..23ef73d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-20-13-18-08.gh-issue-109596.RG0K2G.rst
@@ -0,0 +1,3 @@
+Fix some tokens in the grammar that were incorrectly marked as soft
+keywords. Also fix some repeated rule names and ensure that repeated rules
+are not allowed. Patch by Pablo Galindo