diff options
author | Nicholas Sim <nsim@posteo.net> | 2021-02-19 14:55:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 14:55:46 (GMT) |
commit | 4a6bf276ed3e6687394afe26b0d9a061ac06fc6b (patch) | |
tree | 249bba20a6ee0ca4ae9b2a1661a12443370e5e46 /Makefile.pre.in | |
parent | 839184f85cb2d2ad514fff9b431733d1c9607533 (diff) | |
download | cpython-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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e4ac248..0f59700 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -316,7 +316,7 @@ PEGEN_OBJS= \ PEGEN_HEADERS= \ - $(srcdir)/Include/parser_interface.h \ + $(srcdir)/Include/cpython/parser_interface.h \ $(srcdir)/Parser/pegen.h \ $(srcdir)/Parser/string_parser.h @@ -1056,17 +1056,13 @@ PYTHON_HEADERS= \ $(srcdir)/Include/namespaceobject.h \ $(srcdir)/Include/object.h \ $(srcdir)/Include/objimpl.h \ - $(srcdir)/Include/odictobject.h \ $(srcdir)/Include/opcode.h \ $(srcdir)/Include/osdefs.h \ $(srcdir)/Include/osmodule.h \ $(srcdir)/Include/patchlevel.h \ - $(srcdir)/Include/picklebufobject.h \ $(srcdir)/Include/pycapsule.h \ - $(srcdir)/Include/pydebug.h \ $(srcdir)/Include/pydtrace.h \ $(srcdir)/Include/pyerrors.h \ - $(srcdir)/Include/pyfpe.h \ $(srcdir)/Include/pyframe.h \ $(srcdir)/Include/pyhash.h \ $(srcdir)/Include/pylifecycle.h \ @@ -1116,9 +1112,13 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/methodobject.h \ $(srcdir)/Include/cpython/object.h \ $(srcdir)/Include/cpython/objimpl.h \ + $(srcdir)/Include/cpython/odictobject.h \ + $(srcdir)/Include/cpython/picklebufobject.h \ $(srcdir)/Include/cpython/pyarena.h \ $(srcdir)/Include/cpython/pyctype.h \ + $(srcdir)/Include/cpython/pydebug.h \ $(srcdir)/Include/cpython/pyerrors.h \ + $(srcdir)/Include/cpython/pyfpe.h \ $(srcdir)/Include/cpython/pylifecycle.h \ $(srcdir)/Include/cpython/pymem.h \ $(srcdir)/Include/cpython/pystate.h \ |