summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-01-12 14:43:32 (GMT)
committerGitHub <noreply@github.com>2021-01-12 14:43:32 (GMT)
commit4db8988420e0a122d617df741381b0c385af032c (patch)
tree533eb5980e1fc95527f72202f60591b4be23d69a /Include/internal
parent11d13e83abedabba12b28773317f1a365113e7af (diff)
downloadcpython-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.h5
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