diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-06-21 23:47:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-21 23:47:46 (GMT) |
commit | 564cd187677ae8d1488c4d8ae649aea34ebbde07 (patch) | |
tree | c6b1daab60da4c943f1e130945f846bc4bf1479f /Makefile.pre.in | |
parent | 6989af0bc7ea1e9a1acea16794e6f723d7b44110 (diff) | |
download | cpython-564cd187677ae8d1488c4d8ae649aea34ebbde07.zip cpython-564cd187677ae8d1488c4d8ae649aea34ebbde07.tar.gz cpython-564cd187677ae8d1488c4d8ae649aea34ebbde07.tar.bz2 |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index fc6dc43..24dddcf 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -307,7 +307,7 @@ PEGEN_OBJS= \ PEGEN_HEADERS= \ - $(srcdir)/Include/internal/pegen_interface.h \ + $(srcdir)/Include/parser_interface.h \ $(srcdir)/Parser/pegen.h \ $(srcdir)/Parser/string_parser.h |