diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 09:56:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 09:56:34 (GMT) |
commit | 063abd931f064a4b6b478b0b6e9aa13ee38d2cff (patch) | |
tree | 76897378967a143a78c18965e4e836224ba98eb9 /Makefile.pre.in | |
parent | 59a633d3e2071d65aa6638da5cf767a5c1310271 (diff) | |
download | cpython-063abd931f064a4b6b478b0b6e9aa13ee38d2cff.zip cpython-063abd931f064a4b6b478b0b6e9aa13ee38d2cff.tar.gz cpython-063abd931f064a4b6b478b0b6e9aa13ee38d2cff.tar.bz2 |
bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)
Move the interpreteridobject.h header file from Include/ to
Include/internal/. It only provides private functions.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index a81161e..ccce52b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1143,7 +1143,6 @@ PYTHON_HEADERS= \ $(srcdir)/Include/floatobject.h \ $(srcdir)/Include/frameobject.h \ $(srcdir)/Include/import.h \ - $(srcdir)/Include/interpreteridobject.h \ $(srcdir)/Include/intrcheck.h \ $(srcdir)/Include/iterobject.h \ $(srcdir)/Include/listobject.h \ @@ -1211,7 +1210,6 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/genobject.h \ $(srcdir)/Include/cpython/import.h \ $(srcdir)/Include/cpython/initconfig.h \ - $(srcdir)/Include/cpython/interpreteridobject.h \ $(srcdir)/Include/cpython/listobject.h \ $(srcdir)/Include/cpython/longintrepr.h \ $(srcdir)/Include/cpython/methodobject.h \ @@ -1260,6 +1258,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_import.h \ $(srcdir)/Include/internal/pycore_initconfig.h \ $(srcdir)/Include/internal/pycore_interp.h \ + $(srcdir)/Include/internal/pycore_interpreteridobject.h \ $(srcdir)/Include/internal/pycore_list.h \ $(srcdir)/Include/internal/pycore_long.h \ $(srcdir)/Include/internal/pycore_moduleobject.h \ |