diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-06-22 02:47:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 00:47:46 +0100 |
commit | 564cd187677ae8d1488c4d8ae649aea34ebbde07 (patch) | |
tree | c6b1daab60da4c943f1e130945f846bc4bf1479f /Include/Python.h | |
parent | 6989af0bc7ea1e9a1acea16794e6f723d7b44110 (diff) | |
download | cpython-git-564cd187677ae8d1488c4d8ae649aea34ebbde07.tar.gz |
bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016)
Rename PyPegen* functions to PyParser*, so that we can remove the
old set of PyParser* functions that were using the old parser.
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index dcd0a57ac1..57f71d41d8 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -141,6 +141,7 @@ #include "modsupport.h" #include "compile.h" #include "pythonrun.h" +#include "parser_interface.h" #include "pylifecycle.h" #include "ceval.h" #include "sysmodule.h" |