summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2008-07-07 11:16:14 (GMT)
committerSkip Montanaro <skip@pobox.com>2008-07-07 11:16:14 (GMT)
commit2c7ca9bb117f003e37ae2ff8d6e9582a95a65807 (patch)
tree53cbec5c99a6ef9876640fc0473e15ece593032f /Objects
parentc4691ec0bf3e04dcd27ad3ab0350b5930b7d877d (diff)
downloadcpython-2c7ca9bb117f003e37ae2ff8d6e9582a95a65807.zip
cpython-2c7ca9bb117f003e37ae2ff8d6e9582a95a65807.tar.gz
cpython-2c7ca9bb117f003e37ae2ff8d6e9582a95a65807.tar.bz2
Correct grammar.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 1d5c4d5..5cabe58 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 *