From: Brett Cannon Date: Wed, 11 Jun 2003 20:50:33 +0000 (+0000) Subject: Fixed a comment. X-Git-Tag: v2.3c1~494 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10147f7d1321441e46463fd8aa18bc2dd0be6c2d;p=python Fixed a comment. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3e1569763f..248345e9d0 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -5533,7 +5533,7 @@ super_descr_get(PyObject *self, PyObject *obj, PyObject *type) return self; } if (su->ob_type != &PySuper_Type) - /* If su is an instance of a subclass of super, + /* If su is not an instance of a subclass of super, call its type */ return PyObject_CallFunction((PyObject *)su->ob_type, "OO", su->type, obj);