summaryrefslogtreecommitdiffstats
path: root/Objects/moduleobject.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-03 09:39:11 (GMT)
committerGitHub <noreply@github.com>2023-07-03 09:39:11 (GMT)
commit35963da40fb7bc93c55d94caf58ff9e268df951d (patch)
tree06f5c1ef62c3f23351ecc9de7caf260f42a4c937 /Objects/moduleobject.c
parent5ccbbe5bb9a659fa8f2fe551428c84cc14015f44 (diff)
downloadcpython-35963da40fb7bc93c55d94caf58ff9e268df951d.zip
cpython-35963da40fb7bc93c55d94caf58ff9e268df951d.tar.gz
cpython-35963da40fb7bc93c55d94caf58ff9e268df951d.tar.bz2
gh-106320: Create pycore_modsupport.h header file (#106355)
Remove the following functions from the C API, move them to the internal C API: add a new pycore_modsupport.h internal header file: * PyModule_CreateInitialized() * _PyArg_NoKwnames() * _Py_VaBuildStack() No longer export these functions.
Diffstat (limited to 'Objects/moduleobject.c')
-rw-r--r--Objects/moduleobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index bda25c8..d4fccae 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -5,8 +5,9 @@
#include "pycore_call.h" // _PyObject_CallNoArgs()
#include "pycore_interp.h" // PyInterpreterState.importlib
#include "pycore_object.h" // _PyType_AllocNoTrack
-#include "pycore_pystate.h" // _PyInterpreterState_GET()
#include "pycore_moduleobject.h" // _PyModule_GetDef()
+#include "pycore_modsupport.h" // _PyModule_CreateInitialized()
+#include "pycore_pystate.h" // _PyInterpreterState_GET()
#include "structmember.h" // PyMemberDef