diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-03 10:48:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 10:48:50 (GMT) |
commit | c5afc97fc2f149758f597c21f65b4a1c770bb827 (patch) | |
tree | 8f85655985da6804d77f352ca7e90f4ecc96bc0c /Parser | |
parent | 18fedd04a7b4d54b5eb7a34a1e1c9ca42219f882 (diff) | |
download | cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.zip cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.tar.gz cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.tar.bz2 |
gh-106320: Remove private _PyErr C API functions (#106356)
Remove private _PyErr C API functions: move them to the internal
C API (pycore_pyerrors.h).
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/pegen_errors.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Parser/pegen_errors.c b/Parser/pegen_errors.c index af52905..e543d40 100644 --- a/Parser/pegen_errors.c +++ b/Parser/pegen_errors.c @@ -1,6 +1,7 @@ #include <Python.h> #include <errcode.h> +#include "pycore_pyerrors.h" // _PyErr_ProgramDecodedTextObject() #include "tokenizer.h" #include "pegen.h" |