From 885553e8d32fa28c6d5d444907c01c0c93384b8e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 21 Dec 1998 18:33:30 +0000 Subject: [PATCH] Use PyThreadState_GET() macro. --- Python/ceval.c | 2 +- Python/errors.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)) { -- 2.50.1