summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-22 21:41:11 (GMT)
committerGitHub <noreply@github.com>2023-07-22 21:41:11 (GMT)
commitc1331ad50891b1727896afe62258bda73a459d40 (patch)
tree02dc74c4cb765ef5056bc9c3d40f5d7d74eb69ca
parent0927a2b25c059988e237108605ed8ab0c5459c53 (diff)
downloadcpython-c1331ad50891b1727896afe62258bda73a459d40.zip
cpython-c1331ad50891b1727896afe62258bda73a459d40.tar.gz
cpython-c1331ad50891b1727896afe62258bda73a459d40.tar.bz2
gh-106320: Remove private _PyModule API (#107070)
Move private _PyModule API to the internal C API (pycore_moduleobject.h): * _PyModule_Clear() * _PyModule_ClearDict() * _PyModuleSpec_IsInitializing() * _PyModule_IsExtension() No longer export these functions.
-rw-r--r--Include/internal/pycore_moduleobject.h6
-rw-r--r--Include/moduleobject.h11
2 files changed, 6 insertions, 11 deletions
diff --git a/Include/internal/pycore_moduleobject.h b/Include/internal/pycore_moduleobject.h
index 31a31e7..5644bbe 100644
--- a/Include/internal/pycore_moduleobject.h
+++ b/Include/internal/pycore_moduleobject.h
@@ -8,6 +8,12 @@ extern "C" {
# error "this header requires Py_BUILD_CORE define"
#endif
+extern void _PyModule_Clear(PyObject *);
+extern void _PyModule_ClearDict(PyObject *);
+extern int _PyModuleSpec_IsInitializing(PyObject *);
+
+extern int _PyModule_IsExtension(PyObject *obj);
+
typedef struct {
PyObject_HEAD
PyObject *md_dict;
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index b8bdfe2..ea08145 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -27,11 +27,6 @@ PyAPI_FUNC(PyObject *) PyModule_GetNameObject(PyObject *);
PyAPI_FUNC(const char *) PyModule_GetName(PyObject *);
Py_DEPRECATED(3.2) PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *);
PyAPI_FUNC(PyObject *) PyModule_GetFilenameObject(PyObject *);
-#ifndef Py_LIMITED_API
-PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
-PyAPI_FUNC(void) _PyModule_ClearDict(PyObject *);
-PyAPI_FUNC(int) _PyModuleSpec_IsInitializing(PyObject *);
-#endif
PyAPI_FUNC(PyModuleDef*) PyModule_GetDef(PyObject*);
PyAPI_FUNC(void*) PyModule_GetState(PyObject*);
@@ -103,12 +98,6 @@ struct PyModuleDef {
freefunc m_free;
};
-
-// Internal C API
-#ifdef Py_BUILD_CORE
-extern int _PyModule_IsExtension(PyObject *obj);
-#endif
-
#ifdef __cplusplus
}
#endif