Commit 9119fbc6 authored by Benjamin Peterson's avatar Benjamin Peterson

clarify

parent e2d27040
......@@ -716,7 +716,7 @@ PyDict_GetItem(PyObject *op, PyObject *key)
running "python -Wi" for an example related to string interning.
Let's just hope that no exception occurs then... This must be
_PyThreadState_Current and not PyThreadState_GET() because in debug
mode, it complains if tstate is NULL. */
mode, the latter complains if tstate is NULL. */
tstate = _PyThreadState_Current;
if (tstate != NULL && tstate->curexc_type != NULL) {
/* preserve the existing exception */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment