From: Guido van Rossum Date: Mon, 21 Dec 1998 18:33:30 +0000 (+0000) Subject: Use PyThreadState_GET() macro. X-Git-Tag: v1.5.2b1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=885553e8d32fa28c6d5d444907c01c0c93384b8e;p=python Use PyThreadState_GET() macro. --- diff --git a/Python/ceval.c b/Python/ceval.c index 3625473940..b013ca15b7 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 423f792538..f2768ee43d 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)) {