Fixed a comment.

This commit is contained in:
Brett Cannon 2003-06-11 20:50:33 +00:00
parent 1a90117880
commit 10147f7d13
1 changed files with 1 additions and 1 deletions

View 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);