diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-13 15:12:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-13 15:12:45 (GMT) |
commit | 410b85a7f701be280eb15b0ca4fe116e86f1d008 (patch) | |
tree | d0b5d095a2cdc536798eb3780ccc14811a5bebb6 /Include/import.h | |
parent | 2c10538d11fa9be9a1a9f21605861e10ec4fa207 (diff) | |
download | cpython-410b85a7f701be280eb15b0ca4fe116e86f1d008.zip cpython-410b85a7f701be280eb15b0ca4fe116e86f1d008.tar.gz cpython-410b85a7f701be280eb15b0ca4fe116e86f1d008.tar.bz2 |
bpo-36900: import.c uses PyInterpreterState.core_config (GH-13278)
Move _PyImportZip_Init() to the internal C API and add an 'interp'
parameter.
Diffstat (limited to 'Include/import.h')
-rw-r--r-- | Include/import.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/import.h b/Include/import.h index c664803..13c6149 100644 --- a/Include/import.h +++ b/Include/import.h @@ -8,8 +8,6 @@ extern "C" { #endif #ifndef Py_LIMITED_API -PyAPI_FUNC(_PyInitError) _PyImportZip_Init(void); - PyMODINIT_FUNC PyInit__imp(void); #endif /* !Py_LIMITED_API */ PyAPI_FUNC(long) PyImport_GetMagicNumber(void); |