diff options
author | Hai Shi <shihai1992@gmail.com> | 2021-03-22 08:32:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 08:32:11 (GMT) |
commit | 56f031ec5281723b7c617edfa5748f2ae6a4c347 (patch) | |
tree | a73d3c8ab647b305f47e1da543755776b9133f44 /Makefile.pre.in | |
parent | 690aca781152a498f5117682524d2cd9aa4d7657 (diff) | |
download | cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.zip cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.tar.gz cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.tar.bz2 |
bpo-35134: Add include/cpython/compile.h (GH-24922)
Move C API excluded from the limited C API from Include/compile.h
to a new Include/cpython/compile.h header file.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 4f7284d..6655eda 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1105,6 +1105,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/bytesobject.h \ $(srcdir)/Include/cpython/ceval.h \ $(srcdir)/Include/cpython/code.h \ + $(srcdir)/Include/cpython/compile.h \ $(srcdir)/Include/cpython/dictobject.h \ $(srcdir)/Include/cpython/fileobject.h \ $(srcdir)/Include/cpython/fileutils.h \ |