Kaydet (Commit) f5fd5239 authored tarafından Georg Brandl's avatar Georg Brandl

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

üst 783f4931
...@@ -153,7 +153,7 @@ PyObject_GetItem(PyObject *o, PyObject *key) ...@@ -153,7 +153,7 @@ PyObject_GetItem(PyObject *o, PyObject *key)
"be integer, not '%.200s'", key); "be integer, not '%.200s'", key);
} }
return type_error("'%.200s' object is unsubscriptable", o); return type_error("'%.200s' object is not subscriptable", o);
} }
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment