mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
typo
This commit is contained in:
parent
dfa35fa3b6
commit
98f16e0074
1 changed files with 1 additions and 1 deletions
|
@ -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))) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue