diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-19 08:36:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-19 08:36:10 (GMT) |
commit | 987a0dcfa1302df6c1ed8cf14762dc18628e3f33 (patch) | |
tree | e5067c951f469056947e4b2c3312503610424abc /Include/import.h | |
parent | 7821b4c6d29933511d50bb42255e39790c6abf00 (diff) | |
download | cpython-987a0dcfa1302df6c1ed8cf14762dc18628e3f33.zip cpython-987a0dcfa1302df6c1ed8cf14762dc18628e3f33.tar.gz cpython-987a0dcfa1302df6c1ed8cf14762dc18628e3f33.tar.bz2 |
bpo-36710: Remove PyImport_Cleanup() function (GH-14221)
* Rename PyImport_Cleanup() to _PyImport_Cleanup() and move it to the
internal C API. Add 'tstate' parameters.
* Remove documentation of _PyImport_Init(), PyImport_Cleanup(),
_PyImport_Fini(). All three were documented as "For internal use
only.".
Diffstat (limited to 'Include/import.h')
-rw-r--r-- | Include/import.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/import.h b/Include/import.h index c50767d..735533e 100644 --- a/Include/import.h +++ b/Include/import.h @@ -72,7 +72,6 @@ PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevelObject( PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path); PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name); PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m); -PyAPI_FUNC(void) PyImport_Cleanup(void); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(int) PyImport_ImportFrozenModuleObject( PyObject *name |