diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-06-11 20:50:33 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-06-11 20:50:33 (GMT) |
commit | 10147f7d1321441e46463fd8aa18bc2dd0be6c2d (patch) | |
tree | 329de6c63e6b8e82c123f3b6c45ad5914077a0bd /Objects | |
parent | 1a90117880b73294773c7975a3d0e66cdebf3b99 (diff) | |
download | cpython-10147f7d1321441e46463fd8aa18bc2dd0be6c2d.zip cpython-10147f7d1321441e46463fd8aa18bc2dd0be6c2d.tar.gz cpython-10147f7d1321441e46463fd8aa18bc2dd0be6c2d.tar.bz2 |
Fixed a comment.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
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); |