From f5fd5239819c5dfb1d7a33484be49dc705544d02 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 18 Apr 2009 08:26:21 +0000 Subject: "not subscriptable" should be a bit more understandable than "unsubscriptable". --- Objects/abstract.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/abstract.c b/Objects/abstract.c index e26e057..cd14386 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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 -- cgit v0.12