From: Benjamin Peterson Date: Thu, 4 Jun 2009 01:40:29 +0000 (+0000) Subject: use the offical api X-Git-Tag: v2.7a1~1034 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=064a381a143d75b791bef15dbe2d0e461b753748;p=python use the offical api --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index c4e6aa5867..d797173863 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -715,7 +715,7 @@ PyDict_GetItem(PyObject *op, PyObject *key) /* We can arrive here with a NULL tstate during initialization: try running "python -Wi" for an example related to string interning. Let's just hope that no exception occurs then... */ - tstate = _PyThreadState_Current; + tstate = PyThreadState_GET(); if (tstate != NULL && tstate->curexc_type != NULL) { /* preserve the existing exception */ PyObject *err_type, *err_value, *err_tb;