From: Skip Montanaro Date: Mon, 7 Jul 2008 11:16:14 +0000 (+0000) Subject: Correct grammar. X-Git-Tag: v2.6b2~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c7ca9bb117f003e37ae2ff8d6e9582a95a65807;p=thirdparty%2FPython%2Fcpython.git Correct grammar. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 1d5c4d548b71..5cabe5898099 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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 *