blob: e6ca421a5be32391e8d3f63e08ad6f7f557111f3 [file] [log] [blame]
Christian Heimesff737952007-11-27 10:40:20 +00001/* Former class object interface -- now only bound methods are here */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002
Guido van Rossumb3f72581993-05-21 19:56:10 +00003/* Revealing some structures (not for general use) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00004
Fred Drakeea9cb5a2000-07-09 00:20:36 +00005#ifndef Py_CLASSOBJECT_H
6#define Py_CLASSOBJECT_H
7#ifdef __cplusplus
8extern "C" {
9#endif
10
Guido van Rossum81daa321993-05-20 14:24:46 +000011typedef struct {
Fred Drakeea9cb5a2000-07-09 00:20:36 +000012 PyObject_HEAD
Fred Drakeea9cb5a2000-07-09 00:20:36 +000013 PyObject *im_func; /* The callable object implementing the method */
Christian Heimesff737952007-11-27 10:40:20 +000014 PyObject *im_self; /* The instance it is bound to */
Fred Drake6a1c87d2001-03-23 04:17:58 +000015 PyObject *im_weakreflist; /* List of weak references */
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000016} PyMethodObject;
17
Guido van Rossum50e9fb92006-08-17 05:42:55 +000018PyAPI_DATA(PyTypeObject) PyMethod_Type;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000019
Guido van Rossumcaa63801995-01-12 11:45:45 +000020#define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000021
Christian Heimesff737952007-11-27 10:40:20 +000022PyAPI_FUNC(PyObject *) PyMethod_New(PyObject *, PyObject *);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000023
Mark Hammond91a681d2002-08-12 07:21:58 +000024PyAPI_FUNC(PyObject *) PyMethod_Function(PyObject *);
25PyAPI_FUNC(PyObject *) PyMethod_Self(PyObject *);
26PyAPI_FUNC(PyObject *) PyMethod_Class(PyObject *);
Guido van Rossumb479dc52001-09-05 22:52:50 +000027
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000028/* Macros for direct access to these values. Type checks are *not*
29 done, so use with care. */
30#define PyMethod_GET_FUNCTION(meth) \
31 (((PyMethodObject *)meth) -> im_func)
32#define PyMethod_GET_SELF(meth) \
33 (((PyMethodObject *)meth) -> im_self)
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000034
Guido van Rossuma3309961993-07-28 09:05:47 +000035#ifdef __cplusplus
36}
37#endif
38#endif /* !Py_CLASSOBJECT_H */