diff options
-rw-r--r-- | Python/ceval.c | 2 | ||||
-rw-r--r-- | Python/errors.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 3625473..b013ca1 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -365,7 +365,7 @@ eval_code2(co, globals, locals, register PyFrameObject *f; /* Current frame */ register PyObject **fastlocals; PyObject *retval = NULL; /* Return value */ - PyThreadState *tstate = PyThreadState_Get(); + PyThreadState *tstate = PyThreadState_GET(); unsigned char *first_instr; #ifdef LLTRACE int lltrace; diff --git a/Python/errors.c b/Python/errors.c index 423f792..f2768ee 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -55,7 +55,7 @@ PyErr_Restore(type, value, traceback) PyObject *value; PyObject *traceback; { - PyThreadState *tstate = PyThreadState_Get(); + PyThreadState *tstate = PyThreadState_GET(); PyObject *oldtype, *oldvalue, *oldtraceback; if (traceback != NULL && !PyTraceBack_Check(traceback)) { |