]> granicus.if.org Git - python/commitdiff
Fixed a comment.
authorBrett Cannon <bcannon@gmail.com>
Wed, 11 Jun 2003 20:50:33 +0000 (20:50 +0000)
committerBrett Cannon <bcannon@gmail.com>
Wed, 11 Jun 2003 20:50:33 +0000 (20:50 +0000)
Objects/typeobject.c

index 3e1569763fd28f205cc3637165f6a452eb2ebf74..248345e9d01ec0d98e71c2470c0f21653eba39d4 100644 (file)
@@ -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);