diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/classobject.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 86fc1d3..299ea64 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -1411,14 +1411,6 @@ PyTypeObject PyInstance_Type = { In case (b), im_self is NULL */ -typedef struct { - PyObject_HEAD - PyObject *im_func; /* The function implementing the method */ - PyObject *im_self; /* The instance it is bound to, or NULL */ - PyObject *im_class; /* The class that defined the method */ -} PyMethodObject; - - static PyMethodObject *free_list; PyObject * |