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 /Python/importdl.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 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index eb6b808..9ab0a5a 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -4,6 +4,7 @@ #include "Python.h" #include "pycore_call.h" #include "pycore_import.h" +#include "pycore_pyerrors.h" // _PyErr_FormatFromCause() #include "pycore_pystate.h" #include "pycore_runtime.h" |