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/internal | |
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/internal')
-rw-r--r-- | Include/internal/pycore_import.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/internal/pycore_import.h b/Include/internal/pycore_import.h index fd9fa5a..e21ed0a 100644 --- a/Include/internal/pycore_import.h +++ b/Include/internal/pycore_import.h @@ -5,11 +5,6 @@ extern "C" { #endif -PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin( - PyThreadState *tstate, - const char *name /* UTF-8 encoded string */ - ); - #ifdef HAVE_FORK extern PyStatus _PyImport_ReInitLock(void); #endif |