diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2023-10-02 15:22:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 15:22:07 (GMT) |
commit | f6cb2e48152fc7b44d55583ad8b80b653085bae2 (patch) | |
tree | 69b634818ebd0a76d8ccde5c6a9db3b02eb09625 /Include | |
parent | c7cbd82e62d22b6b1c6d4e95dbbd1db16c321533 (diff) | |
download | cpython-f6cb2e48152fc7b44d55583ad8b80b653085bae2.zip cpython-f6cb2e48152fc7b44d55583ad8b80b653085bae2.tar.gz cpython-f6cb2e48152fc7b44d55583ad8b80b653085bae2.tar.bz2 |
[3.12] gh-109596: Ensure repeated rules in the grammar are not allowed and fix incorrect soft keywords (GH-109606). (#109752)
(cherry picked from commit b28ffaa193efc66f46ab90d383279174a11a11d7)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/compile.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/compile.h b/Include/compile.h index 3c5acd7..52d0bc7 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -10,9 +10,6 @@ extern "C" { #define Py_eval_input 258 #define Py_func_type_input 345 -/* This doesn't need to match anything */ -#define Py_fstring_input 800 - #ifndef Py_LIMITED_API # define Py_CPYTHON_COMPILE_H # include "cpython/compile.h" |