diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-03 10:48:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 10:48:50 (GMT) |
commit | c5afc97fc2f149758f597c21f65b4a1c770bb827 (patch) | |
tree | 8f85655985da6804d77f352ca7e90f4ecc96bc0c /Objects/moduleobject.c | |
parent | 18fedd04a7b4d54b5eb7a34a1e1c9ca42219f882 (diff) | |
download | cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.zip cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.tar.gz cpython-c5afc97fc2f149758f597c21f65b4a1c770bb827.tar.bz2 |
gh-106320: Remove private _PyErr C API functions (#106356)
Remove private _PyErr C API functions: move them to the internal
C API (pycore_pyerrors.h).
Diffstat (limited to 'Objects/moduleobject.c')
-rw-r--r-- | Objects/moduleobject.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index d4fccae..3e500b5 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.c @@ -4,9 +4,10 @@ #include "Python.h" #include "pycore_call.h" // _PyObject_CallNoArgs() #include "pycore_interp.h" // PyInterpreterState.importlib -#include "pycore_object.h" // _PyType_AllocNoTrack -#include "pycore_moduleobject.h" // _PyModule_GetDef() #include "pycore_modsupport.h" // _PyModule_CreateInitialized() +#include "pycore_moduleobject.h" // _PyModule_GetDef() +#include "pycore_object.h" // _PyType_AllocNoTrack +#include "pycore_pyerrors.h" // _PyErr_FormatFromCause() #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "structmember.h" // PyMemberDef |