diff --git a/Include/classobject.h b/Include/classobject.h index 3b25c7447d6..c79f4a22ec3 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -31,7 +31,7 @@ typedef struct { PyObject_HEAD PyObject *im_func; /* The callable object implementing the method */ PyObject *im_self; /* The instance it is bound to, or NULL */ - PyObject *im_class; /* The class that defined the method */ + PyObject *im_class; /* The class that asked for the method */ PyObject *im_weakreflist; /* List of weak references */ } PyMethodObject;