summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2024-04-24 15:55:48 (GMT)
committerGitHub <noreply@github.com>2024-04-24 15:55:48 (GMT)
commitaf3c1d817d3f8369f8003965d967332a3a721a25 (patch)
treed78fb452aa5da4e1f61d1eaf8f48a470efd731e0 /Include
parent8227883d1f1bbb6560e5f175d7ee49f013c094bd (diff)
downloadcpython-af3c1d817d3f8369f8003965d967332a3a721a25.zip
cpython-af3c1d817d3f8369f8003965d967332a3a721a25.tar.gz
cpython-af3c1d817d3f8369f8003965d967332a3a721a25.tar.bz2
gh-117953: Cleanups For fix_up_extension() in import.c (gh-118192)
These are cleanups I've pulled out of gh-118116. Mostly, this change moves code around to align with some future changes and to improve clarity a little. There is one very small change in behavior: we now add the module to the per-interpreter caches after updating the global state, rather than before.
Diffstat (limited to 'Include')
-rw-r--r--Include/internal/pycore_import.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_import.h b/Include/internal/pycore_import.h
index 08af532..8d7f054 100644
--- a/Include/internal/pycore_import.h
+++ b/Include/internal/pycore_import.h
@@ -24,10 +24,12 @@ extern int _PyImport_ReleaseLock(PyInterpreterState *interp);
// This is used exclusively for the sys and builtins modules:
extern int _PyImport_FixupBuiltin(
+ PyThreadState *tstate,
PyObject *mod,
const char *name, /* UTF-8 encoded string */
PyObject *modules
);
+// We could probably drop this:
extern int _PyImport_FixupExtensionObject(PyObject*, PyObject *,
PyObject *, PyObject *);