summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/pystate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index ad91426..443f365 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -73,6 +73,8 @@ typedef struct _ts {
int ticker;
int tracing;
+ PyObject *dict;
+
PyObject *sys_profilefunc;
PyObject *sys_tracefunc;
@@ -99,6 +101,7 @@ void PyThreadState_Delete Py_PROTO((PyThreadState *));
PyThreadState *PyThreadState_Get Py_PROTO((void));
PyThreadState *PyThreadState_Swap Py_PROTO((PyThreadState *));
+PyObject *PyThreadState_GetDict Py_PROTO((void));
#ifdef __cplusplus
}