diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-16 21:37:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 21:37:11 +0100 |
commit | 5e0a070dfe33530756fa2811b76bf959b9616590 (patch) | |
tree | a32c2f68b8d41082c1356b486ec9b2aa2b7eb198 /Include/internal/pycore_pyerrors.h | |
parent | 259dbc448dabc1ad95fcf6f70eff4b6b5355e71c (diff) | |
download | cpython-5e0a070dfe33530756fa2811b76bf959b9616590.tar.gz cpython-5e0a070dfe33530756fa2811b76bf959b9616590.zip |
gh-116809: Restore removed _PyErr_ChainExceptions1() function (#116900)
Diffstat (limited to 'Include/internal/pycore_pyerrors.h')
-rw-r--r-- | Include/internal/pycore_pyerrors.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/internal/pycore_pyerrors.h b/Include/internal/pycore_pyerrors.h index 910335fd2cf..683d87a0d0b 100644 --- a/Include/internal/pycore_pyerrors.h +++ b/Include/internal/pycore_pyerrors.h @@ -167,9 +167,6 @@ void _PyErr_FormatNote(const char *format, ...); Py_DEPRECATED(3.12) extern void _PyErr_ChainExceptions(PyObject *, PyObject *, PyObject *); -// Export for '_zoneinfo' shared extension -PyAPI_FUNC(void) _PyErr_ChainExceptions1(PyObject *); - #ifdef __cplusplus } #endif |