From 5e0a070dfe33530756fa2811b76bf959b9616590 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 16 Mar 2024 21:37:11 +0100 Subject: gh-116809: Restore removed _PyErr_ChainExceptions1() function (#116900) --- Include/internal/pycore_pyerrors.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'Include/internal/pycore_pyerrors.h') 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 -- cgit v1.2.3