]> granicus.if.org Git - python/commitdiff
SF bug 433228: repr(list) woes when len(list) big
authorTim Peters <tim.peters@gmail.com>
Sat, 16 Jun 2001 00:09:28 +0000 (00:09 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 16 Jun 2001 00:09:28 +0000 (00:09 +0000)
call_object:  If the object isn't callable, display its type in the error
msg rather than its repr.
Bugfix candidate.

Python/ceval.c

index ceecdb15efa7582b26d3c45c7322ea7dd7cdf63d..7f668fca9cd225a96bb91946f0dae46c53426a5c 100644 (file)
@@ -2862,8 +2862,9 @@ call_object(PyObject *func, PyObject *arg, PyObject *kw)
        else if ((call = func->ob_type->tp_call) != NULL)
                result = (*call)(func, arg, kw);
        else {
-               PyErr_Format(PyExc_TypeError, "object is not callable: %s",
-                            PyString_AS_STRING(PyObject_Repr(func)));
+               PyErr_Format(PyExc_TypeError,
+                            "object of type '%.100s' is not callable",
+                            func->ob_type->tp_name);
                return NULL;
        }
         if (result == NULL && !PyErr_Occurred())