summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
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);