diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-01-12 14:43:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 14:43:32 (GMT) |
commit | 4db8988420e0a122d617df741381b0c385af032c (patch) | |
tree | 533eb5980e1fc95527f72202f60591b4be23d69a /Include/cpython | |
parent | 11d13e83abedabba12b28773317f1a365113e7af (diff) | |
download | cpython-4db8988420e0a122d617df741381b0c385af032c.zip cpython-4db8988420e0a122d617df741381b0c385af032c.tar.gz cpython-4db8988420e0a122d617df741381b0c385af032c.tar.bz2 |
bpo-41994: Fix refcount issues in Python/import.c (GH-22632)
https://bugs.python.org/issue41994
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/import.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/import.h b/Include/cpython/import.h index 3b20a74..bad68f0 100644 --- a/Include/cpython/import.h +++ b/Include/cpython/import.h @@ -13,8 +13,6 @@ PyAPI_FUNC(int) _PyImport_SetModuleString(const char *name, PyObject* module); PyAPI_FUNC(void) _PyImport_AcquireLock(void); PyAPI_FUNC(int) _PyImport_ReleaseLock(void); -PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *); - PyAPI_FUNC(int) _PyImport_FixupBuiltin( PyObject *mod, const char *name, /* UTF-8 encoded string */ |