diff options
author | Guido van Rossum <guido@python.org> | 2001-12-07 21:54:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-07 21:54:33 (GMT) |
commit | 301d0f89bb81950230f401aae7df160ffa20b91a (patch) | |
tree | 35dded8798d19521068e371400ae15d295b1b55f /Include/classobject.h | |
parent | 8b7bb7a0f2404ce4b596c4a3e14779b0dc6a56a4 (diff) | |
download | cpython-301d0f89bb81950230f401aae7df160ffa20b91a.zip cpython-301d0f89bb81950230f401aae7df160ffa20b91a.tar.gz cpython-301d0f89bb81950230f401aae7df160ffa20b91a.tar.bz2 |
PyMethodObject(): Update the comment about im_class based upon a
conversation with Robin Dunn in SF patch #490402.
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index 3b25c74..c79f4a2 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; |