diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-13 16:43:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-13 16:43:59 (GMT) |
commit | 431f0294867b474525a2f91e03101d1462f56801 (patch) | |
tree | 52aa6762522f172edbee910ac97a954726de1aff /Modules/itertoolsmodule.c | |
parent | 10f40a6b5a2bdfbad9d013b42952b5abafa200e3 (diff) | |
download | cpython-431f0294867b474525a2f91e03101d1462f56801.zip cpython-431f0294867b474525a2f91e03101d1462f56801.tar.gz cpython-431f0294867b474525a2f91e03101d1462f56801.tar.bz2 |
Consistent tense.
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r-- | Modules/itertoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 8dd3a65..8c3375a 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3343,7 +3343,7 @@ izip_longest_new(PyTypeObject *type, PyObject *args, PyObject *kwds) 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) { |