summaryrefslogtreecommitdiffstats
path: root/Include/cpython/traceback.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/cpython/traceback.h')
-rw-r--r--Include/cpython/traceback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/traceback.h b/Include/cpython/traceback.h
index 746097d..837470c 100644
--- a/Include/cpython/traceback.h
+++ b/Include/cpython/traceback.h
@@ -9,7 +9,7 @@ extern "C" {
typedef struct _traceback {
PyObject_HEAD
struct _traceback *tb_next;
- struct _frame *tb_frame;
+ PyFrameObject *tb_frame;
int tb_lasti;
int tb_lineno;
} PyTracebackObject;