[Python-checkins] r61368 - python/trunk/Modules/itertoolsmodule.c

raymond.hettinger python-checkins at python.org
Thu Mar 13 17:44:00 CET 2008


Author: raymond.hettinger
Date: Thu Mar 13 17:43:59 2008
New Revision: 61368

Modified:
   python/trunk/Modules/itertoolsmodule.c
Log:
Consistent tense.

Modified: python/trunk/Modules/itertoolsmodule.c
==============================================================================
--- python/trunk/Modules/itertoolsmodule.c	(original)
+++ python/trunk/Modules/itertoolsmodule.c	Thu Mar 13 17:43:59 2008
@@ -3343,7 +3343,7 @@
 
 	if (Py_Py3kWarningFlag &&
 	    PyErr_Warn(PyExc_DeprecationWarning, 
-		       "In 3.x, izip_longest() is renamed to zip_longest().") < 0)
+		       "In 3.x, izip_longest() was renamed to zip_longest().") < 0)
 		return NULL;
 
         if (kwds != NULL && PyDict_CheckExact(kwds) && PyDict_Size(kwds) > 0) {


More information about the Python-checkins mailing list