From: Skip Montanaro Date: Fri, 11 Apr 2003 23:10:13 +0000 (+0000) Subject: typo X-Git-Tag: v2.3c1~1212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd;p=python typo --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 68c6a81e4d..5f21182347 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -1096,7 +1096,7 @@ csv_writerows(WriterObj *self, PyObject *seqseq) row_iter = PyObject_GetIter(seqseq); if (row_iter == NULL) { PyErr_SetString(PyExc_TypeError, - "writerows() argument must be iteratable"); + "writerows() argument must be iterable"); return NULL; } while ((row_obj = PyIter_Next(row_iter))) {