[Python-checkins] r74197 - python/trunk/Objects/dictobject.c

benjamin.peterson python-checkins at python.org
Sat Jul 25 04:03:48 CEST 2009


Author: benjamin.peterson
Date: Sat Jul 25 04:03:48 2009
New Revision: 74197

Log:
clarify

Modified:
   python/trunk/Objects/dictobject.c

Modified: python/trunk/Objects/dictobject.c
==============================================================================
--- python/trunk/Objects/dictobject.c	(original)
+++ python/trunk/Objects/dictobject.c	Sat Jul 25 04:03:48 2009
@@ -716,7 +716,7 @@
 	   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 */


More information about the Python-checkins mailing list