diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-18 22:48:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-18 22:48:09 (GMT) |
commit | 01b63ecac66581f80ba953d9182751e591c2b2ba (patch) | |
tree | f1e60d0921953e0c19f7f84f1cbd0e43536deea3 /Makefile.pre.in | |
parent | 54cf2e0780ca137dd9abea5d3d974578ce0c18a9 (diff) | |
download | cpython-01b63ecac66581f80ba953d9182751e591c2b2ba.zip cpython-01b63ecac66581f80ba953d9182751e591c2b2ba.tar.gz cpython-01b63ecac66581f80ba953d9182751e591c2b2ba.tar.bz2 |
bpo-35134: Add Include/cpython/import.h header file (GH-14213)
* Add Include/cpython/import.h and Include/internal/pycore_import.h
header files.
* Move _PyImport_ReInitLock() to the internal C API. Don't export the
symbol anymore.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 2b4e2d7..f629336 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1054,6 +1054,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/abstract.h \ $(srcdir)/Include/cpython/dictobject.h \ $(srcdir)/Include/cpython/fileobject.h \ + $(srcdir)/Include/cpython/import.h \ $(srcdir)/Include/cpython/initconfig.h \ $(srcdir)/Include/cpython/interpreteridobject.h \ $(srcdir)/Include/cpython/object.h \ @@ -1077,6 +1078,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_getopt.h \ $(srcdir)/Include/internal/pycore_gil.h \ $(srcdir)/Include/internal/pycore_hamt.h \ + $(srcdir)/Include/internal/pycore_import.h \ $(srcdir)/Include/internal/pycore_initconfig.h \ $(srcdir)/Include/internal/pycore_object.h \ $(srcdir)/Include/internal/pycore_pathconfig.h \ |