summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-04-11 23:10:13 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-04-11 23:10:13 (GMT)
commit98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd (patch)
tree5712c96e62534e421e6f2d768d935f93449cd47b /Modules
parentdfa35fa3b67bfff6c4fb2a6c7fef3ca8305eaf33 (diff)
downloadcpython-98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd.zip
cpython-98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd.tar.gz
cpython-98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd.tar.bz2
typo
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_csv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c
index 68c6a81..5f21182 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))) {