diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-13 10:47:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 10:47:17 (GMT) |
commit | 0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac (patch) | |
tree | 64aa99711d126cb0b94aff8c59ad40bb7ffba8d1 /Makefile.pre.in | |
parent | 1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc (diff) | |
download | cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.zip cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.tar.gz cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.tar.bz2 |
bpo-40241: Add pycore_interp.h header (GH-19499)
Move PyInterpreterState and related functions to a new internal
pycore_interp.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 45e7a83..6b26522 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1096,6 +1096,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_hamt.h \ $(srcdir)/Include/internal/pycore_import.h \ $(srcdir)/Include/internal/pycore_initconfig.h \ + $(srcdir)/Include/internal/pycore_interp.h \ $(srcdir)/Include/internal/pycore_object.h \ $(srcdir)/Include/internal/pycore_pathconfig.h \ $(srcdir)/Include/internal/pycore_pyerrors.h \ |