Correct grammar.

This commit is contained in:
Skip Montanaro 2008-07-07 11:16:14 +00:00
parent c4691ec0bf
commit 2c7ca9bb11

View file

@ -1946,7 +1946,7 @@ PySequence_GetItem(PyObject *s, Py_ssize_t i)
return m->sq_item(s, i);
}
return type_error("'%.200s' object is unindexable", s);
return type_error("'%.200s' object does not support indexing", s);
}
PyObject *