From 10147f7d1321441e46463fd8aa18bc2dd0be6c2d Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 11 Jun 2003 20:50:33 +0000 Subject: Fixed a comment. --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3e15697..248345e 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); -- cgit v0.12