summaryrefslogtreecommitdiffstats
path: root/Parser/peg_api.c
diff options
context:
space:
mode:
authorNicholas Sim <nsim@posteo.net>2021-02-19 14:55:46 (GMT)
committerGitHub <noreply@github.com>2021-02-19 14:55:46 (GMT)
commit4a6bf276ed3e6687394afe26b0d9a061ac06fc6b (patch)
tree249bba20a6ee0ca4ae9b2a1661a12443370e5e46 /Parser/peg_api.c
parent839184f85cb2d2ad514fff9b431733d1c9607533 (diff)
downloadcpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.zip
cpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.tar.gz
cpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.tar.bz2
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
Include/{odictobject.h,parser_interface.h,picklebufobject.h,pydebug.h,pyfpe.h} into Include/cpython/. Parser: peg_api: include Python.h instead of parser_interface.h.
Diffstat (limited to 'Parser/peg_api.c')
-rw-r--r--Parser/peg_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/peg_api.c b/Parser/peg_api.c
index 8381d5e..1555dea 100644
--- a/Parser/peg_api.c
+++ b/Parser/peg_api.c
@@ -1,4 +1,4 @@
-#include "parser_interface.h"
+#include "Python.h"
#include "tokenizer.h"
#include "pegen.h"