diff options
Diffstat (limited to 'Objects/call.c')
-rw-r--r-- | Objects/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/call.c b/Objects/call.c index 9061d0b..48e3aaf 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -258,7 +258,7 @@ function_code_fastcall(PyCodeObject *co, PyObject *const *args, Py_ssize_t nargs PyObject *globals) { PyFrameObject *f; - PyThreadState *tstate = PyThreadState_GET(); + PyThreadState *tstate = _PyThreadState_GET(); PyObject **fastlocals; Py_ssize_t i; PyObject *result; |