diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-07-25 02:03:48 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-07-25 02:03:48 (GMT) |
commit | 9119fbc683a5c92b6cd03c5852db9ed43bb28fd0 (patch) | |
tree | b7b812d48f287ef4ea54adf2a357629c10462a80 /Objects/dictobject.c | |
parent | e2d27040170f5cabf66e082c97b830f5371184d8 (diff) | |
download | cpython-9119fbc683a5c92b6cd03c5852db9ed43bb28fd0.zip cpython-9119fbc683a5c92b6cd03c5852db9ed43bb28fd0.tar.gz cpython-9119fbc683a5c92b6cd03c5852db9ed43bb28fd0.tar.bz2 |
clarify
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index c4f93d4b..af37a93 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -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 */ |