blob: eeeb3e95a87e717ee4d262bed635fd8862325209 [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
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00005#ifndef Py_LIMITED_API
Fred Drakeea9cb5a2000-07-09 00:20:36 +00006#ifndef Py_CLASSOBJECT_H
7#define Py_CLASSOBJECT_H
8#ifdef __cplusplus
9extern "C" {
10#endif
11
Guido van Rossum81daa321993-05-20 14:24:46 +000012typedef struct {
Fred Drakeea9cb5a2000-07-09 00:20:36 +000013 PyObject_HEAD
Fred Drakeea9cb5a2000-07-09 00:20:36 +000014 PyObject *im_func; /* The callable object implementing the method */
Christian Heimesff737952007-11-27 10:40:20 +000015 PyObject *im_self; /* The instance it is bound to */
Fred Drake6a1c87d2001-03-23 04:17:58 +000016 PyObject *im_weakreflist; /* List of weak references */
Guido van Rossumd4ba73c1998-07-10 15:46:33 +000017} PyMethodObject;
18
Guido van Rossum50e9fb92006-08-17 05:42:55 +000019PyAPI_DATA(PyTypeObject) PyMethod_Type;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000020
Guido van Rossumcaa63801995-01-12 11:45:45 +000021#define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000022
Christian Heimesff737952007-11-27 10:40:20 +000023PyAPI_FUNC(PyObject *) PyMethod_New(PyObject *, PyObject *);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000024
Mark Hammond91a681d2002-08-12 07:21:58 +000025PyAPI_FUNC(PyObject *) PyMethod_Function(PyObject *);
26PyAPI_FUNC(PyObject *) PyMethod_Self(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
Christian Heimesa156e092008-02-16 07:38:31 +000035PyAPI_FUNC(int) PyMethod_ClearFreeList(void);
Christian Heimesa3534a62007-12-11 19:56:40 +000036
37typedef struct {
38 PyObject_HEAD
39 PyObject *func;
40} PyInstanceMethodObject;
41
42PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;
43
44#define PyInstanceMethod_Check(op) ((op)->ob_type == &PyInstanceMethod_Type)
45
46PyAPI_FUNC(PyObject *) PyInstanceMethod_New(PyObject *);
47PyAPI_FUNC(PyObject *) PyInstanceMethod_Function(PyObject *);
48
49/* Macros for direct access to these values. Type checks are *not*
50 done, so use with care. */
51#define PyInstanceMethod_GET_FUNCTION(meth) \
52 (((PyInstanceMethodObject *)meth) -> func)
53
Guido van Rossuma3309961993-07-28 09:05:47 +000054#ifdef __cplusplus
55}
56#endif
57#endif /* !Py_CLASSOBJECT_H */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000058#endif /* Py_LIMITED_API */