Commit 9740a9ff authored by Guido van Rossum's avatar Guido van Rossum

PyMethodObject(): Update the comment about im_class based upon a

conversation with Robin Dunn in SF patch #490402.
parent 7151da0a
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment