From 431f0294867b474525a2f91e03101d1462f56801 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 13 Mar 2008 16:43:59 +0000 Subject: [PATCH] Consistent tense. --- Modules/itertoolsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 8dd3a65f43..8c3375a81d 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) { -- 2.50.1