"not subscriptable" should be a bit more understandable than "unsubscriptable".

This commit is contained in:
Georg Brandl 2009-04-18 08:26:21 +00:00
parent 783f493173
commit f5fd523981

View file

@ -153,7 +153,7 @@ PyObject_GetItem(PyObject *o, PyObject *key)
"be integer, not '%.200s'", key);
}
return type_error("'%.200s' object is unsubscriptable", o);
return type_error("'%.200s' object is not subscriptable", o);
}
int