Skip to content

Commit 9740a9f

Browse files
committed
PyMethodObject(): Update the comment about im_class based upon a
conversation with Robin Dunn in SF patch #490402.
1 parent 7151da0 commit 9740a9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/classobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ typedef struct {
3131
PyObject_HEAD
3232
PyObject *im_func; /* The callable object implementing the method */
3333
PyObject *im_self; /* The instance it is bound to, or NULL */
34-
PyObject *im_class; /* The class that defined the method */
34+
PyObject *im_class; /* The class that asked for the method */
3535
PyObject *im_weakreflist; /* List of weak references */
3636
} PyMethodObject;
3737

0 commit comments

Comments
 (0)