From: Tim Peters Date: Tue, 18 Feb 2003 19:32:50 +0000 (+0000) Subject: Removed unreferenced label. X-Git-Tag: v2.3c1~1794 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97e5ff555e581e30c21f703bf5ca89402db6f557;p=thirdparty%2FPython%2Fcpython.git Removed unreferenced label. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 52a98bcff9b5..e238056c8baf 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -5210,8 +5210,7 @@ supercheck(PyTypeObject *type, PyObject *obj) Py_DECREF(class_attr); } - fail: - PyErr_SetString(PyExc_TypeError, + PyErr_SetString(PyExc_TypeError, "super(type, obj): " "obj must be an instance or subtype of type"); return NULL;