diff --git a/Include/pystate.h b/Include/pystate.h index 443f3656bd1..b061fbf4e86 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -73,8 +73,6 @@ typedef struct _ts { int ticker; int tracing; - PyObject *dict; - PyObject *sys_profilefunc; PyObject *sys_tracefunc; @@ -86,6 +84,8 @@ typedef struct _ts { PyObject *exc_value; PyObject *exc_traceback; + PyObject *dict; + /* XXX signal handlers should also be here */ } PyThreadState;