diff options
Diffstat (limited to 'Include/internal/pycore_traceback.h')
-rw-r--r-- | Include/internal/pycore_traceback.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Include/internal/pycore_traceback.h b/Include/internal/pycore_traceback.h index 84dbe27..c393b2c 100644 --- a/Include/internal/pycore_traceback.h +++ b/Include/internal/pycore_traceback.h @@ -8,9 +8,6 @@ extern "C" { # error "this header requires Py_BUILD_CORE define" #endif -/* Forward declaration */ -struct _is; - /* Write the Python traceback into the file 'fd'. For example: Traceback (most recent call first): @@ -57,7 +54,7 @@ PyAPI_FUNC(void) _Py_DumpTraceback( PyAPI_FUNC(const char*) _Py_DumpTracebackThreads( int fd, - struct _is *interp, + PyInterpreterState *interp, PyThreadState *current_tstate); /* Write a Unicode object into the file descriptor fd. Encode the string to |