From 301d0f89bb81950230f401aae7df160ffa20b91a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 7 Dec 2001 21:54:33 +0000 Subject: [PATCH] PyMethodObject(): Update the comment about im_class based upon a conversation with Robin Dunn in SF patch #490402. --- Include/classobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/classobject.h b/Include/classobject.h index 3b25c7447d63..c79f4a22ec31 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; -- 2.47.3