1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Method object interface */
|
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_METHODOBJECT_H
|
|
|
|
#define Py_METHODOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1995-02-27 06:17:52 -04:00
|
|
|
extern DL_IMPORT(PyTypeObject) PyCFunction_Type;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
#define PyCFunction_Check(op) ((op)->ob_type == &PyCFunction_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-07-09 00:09:57 -03:00
|
|
|
typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
|
|
|
|
typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
|
|
|
|
PyObject *);
|
2001-08-12 18:52:24 -03:00
|
|
|
typedef PyObject *(*PyNoArgsFunction)(PyObject *);
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
extern DL_IMPORT(PyCFunction) PyCFunction_GetFunction(PyObject *);
|
|
|
|
extern DL_IMPORT(PyObject *) PyCFunction_GetSelf(PyObject *);
|
|
|
|
extern DL_IMPORT(int) PyCFunction_GetFlags(PyObject *);
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1998-07-10 12:21:55 -03:00
|
|
|
/* Macros for direct access to these values. Type checks are *not*
|
|
|
|
done, so use with care. */
|
|
|
|
#define PyCFunction_GET_FUNCTION(func) \
|
|
|
|
(((PyCFunctionObject *)func) -> m_ml -> ml_meth)
|
|
|
|
#define PyCFunction_GET_SELF(func) \
|
|
|
|
(((PyCFunctionObject *)func) -> m_self)
|
|
|
|
#define PyCFunction_GET_FLAGS(func) \
|
|
|
|
(((PyCFunctionObject *)func) -> m_ml -> ml_flags)
|
2001-08-12 18:52:24 -03:00
|
|
|
extern DL_IMPORT(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
|
1998-07-10 12:21:55 -03:00
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
struct PyMethodDef {
|
2000-07-08 21:20:36 -03:00
|
|
|
char *ml_name;
|
|
|
|
PyCFunction ml_meth;
|
|
|
|
int ml_flags;
|
|
|
|
char *ml_doc;
|
1990-12-20 11:06:42 -04:00
|
|
|
};
|
1995-01-12 07:45:45 -04:00
|
|
|
typedef struct PyMethodDef PyMethodDef;
|
1990-12-20 11:06:42 -04:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
extern DL_IMPORT(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, char *);
|
1995-01-07 06:32:29 -04:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
extern DL_IMPORT(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
1995-01-04 15:06:22 -04:00
|
|
|
/* Flag passed to newmethodobject */
|
2000-08-02 23:28:54 -03:00
|
|
|
#define METH_OLDARGS 0x0000
|
1995-01-04 15:06:22 -04:00
|
|
|
#define METH_VARARGS 0x0001
|
1995-07-26 14:58:29 -03:00
|
|
|
#define METH_KEYWORDS 0x0002
|
2002-03-28 01:33:33 -04:00
|
|
|
/* METH_NOARGS and METH_O must not be combined with the flags above. */
|
2001-08-12 18:52:24 -03:00
|
|
|
#define METH_NOARGS 0x0004
|
|
|
|
#define METH_O 0x0008
|
1995-01-04 15:06:22 -04:00
|
|
|
|
2002-03-28 01:33:33 -04:00
|
|
|
/* METH_CLASS and METH_STATIC are a little different; these control
|
|
|
|
the construction of methods for a class. These cannot be used for
|
|
|
|
functions in modules. */
|
|
|
|
#define METH_CLASS 0x0010
|
|
|
|
#define METH_STATIC 0x0020
|
|
|
|
|
1995-01-26 18:58:48 -04:00
|
|
|
typedef struct PyMethodChain {
|
2000-07-08 21:20:36 -03:00
|
|
|
PyMethodDef *methods; /* Methods of this type */
|
|
|
|
struct PyMethodChain *link; /* NULL or base type */
|
1995-01-26 18:58:48 -04:00
|
|
|
} PyMethodChain;
|
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
extern DL_IMPORT(PyObject *) Py_FindMethodInChain(PyMethodChain *, PyObject *,
|
|
|
|
char *);
|
1995-01-26 18:58:48 -04:00
|
|
|
|
1998-07-10 12:21:55 -03:00
|
|
|
typedef struct {
|
2000-07-08 21:20:36 -03:00
|
|
|
PyObject_HEAD
|
|
|
|
PyMethodDef *m_ml;
|
|
|
|
PyObject *m_self;
|
1998-07-10 12:21:55 -03:00
|
|
|
} PyCFunctionObject;
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_METHODOBJECT_H */
|