1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Function object interface */
|
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_FUNCOBJECT_H
|
|
|
|
#define Py_FUNCOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1993-05-19 11:50:45 -03:00
|
|
|
typedef struct {
|
2000-07-08 21:20:36 -03:00
|
|
|
PyObject_HEAD
|
|
|
|
PyObject *func_code;
|
|
|
|
PyObject *func_globals;
|
|
|
|
PyObject *func_defaults;
|
|
|
|
PyObject *func_doc;
|
|
|
|
PyObject *func_name;
|
2001-01-15 16:40:19 -04:00
|
|
|
PyObject *func_dict;
|
1995-01-12 07:45:45 -04:00
|
|
|
} PyFunctionObject;
|
1993-05-19 11:50:45 -03:00
|
|
|
|
1995-02-27 06:17:52 -04:00
|
|
|
extern DL_IMPORT(PyTypeObject) PyFunction_Type;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
#define PyFunction_Check(op) ((op)->ob_type == &PyFunction_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
extern DL_IMPORT(PyObject *) PyFunction_New(PyObject *, PyObject *);
|
|
|
|
extern DL_IMPORT(PyObject *) PyFunction_GetCode(PyObject *);
|
|
|
|
extern DL_IMPORT(PyObject *) PyFunction_GetGlobals(PyObject *);
|
|
|
|
extern DL_IMPORT(PyObject *) PyFunction_GetDefaults(PyObject *);
|
|
|
|
extern DL_IMPORT(int) PyFunction_SetDefaults(PyObject *, PyObject *);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
1998-07-10 12:47:08 -03:00
|
|
|
/* Macros for direct access to these values. Type checks are *not*
|
|
|
|
done, so use with care. */
|
|
|
|
#define PyFunction_GET_CODE(func) \
|
|
|
|
(((PyFunctionObject *)func) -> func_code)
|
|
|
|
#define PyFunction_GET_GLOBALS(func) \
|
|
|
|
(((PyFunctionObject *)func) -> func_globals)
|
|
|
|
#define PyFunction_GET_DEFAULTS(func) \
|
|
|
|
(((PyFunctionObject *)func) -> func_defaults)
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_FUNCOBJECT_H */
|