blob: b7eebe5e952e125504e8df0ac47e3448b280fcb9 [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 *);
Guido van Rossumb479dc52001-09-05 22:52:50 +000026
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000027/* Macros for direct access to these values. Type checks are *not*
28 done, so use with care. */
29#define PyMethod_GET_FUNCTION(meth) \
30 (((PyMethodObject *)meth) -> im_func)
31#define PyMethod_GET_SELF(meth) \
32 (((PyMethodObject *)meth) -> im_self)
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000033
Christian Heimesa156e092008-02-16 07:38:31 +000034PyAPI_FUNC(int) PyMethod_ClearFreeList(void);
Christian Heimesa3534a62007-12-11 19:56:40 +000035
36typedef struct {
37 PyObject_HEAD
38 PyObject *func;
39} PyInstanceMethodObject;
40
41PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;
42
43#define PyInstanceMethod_Check(op) ((op)->ob_type == &PyInstanceMethod_Type)
44
45PyAPI_FUNC(PyObject *) PyInstanceMethod_New(PyObject *);
46PyAPI_FUNC(PyObject *) PyInstanceMethod_Function(PyObject *);
47
48/* Macros for direct access to these values. Type checks are *not*
49 done, so use with care. */
50#define PyInstanceMethod_GET_FUNCTION(meth) \
51 (((PyInstanceMethodObject *)meth) -> func)
52
Guido van Rossuma3309961993-07-28 09:05:47 +000053#ifdef __cplusplus
54}
55#endif
56#endif /* !Py_CLASSOBJECT_H */