mirror of
https://github.com/python/cpython.git
synced 2026-01-01 13:03:56 +00:00
Add _PyCFunctionObject_CAST() and _PyCMethodObject_CAST() macros to make macros casting their argument easier to read, but also to check the type of their input in debug mode: assert(PyCFunction_Check(func) and assert(PyCMethod_Check(func). Reformat also PyCFunction_XXX() macros for readability.
40 lines
1.5 KiB
C
40 lines
1.5 KiB
C
#ifndef Py_CPYTHON_METHODOBJECT_H
|
|
# error "this header file must not be included directly"
|
|
#endif
|
|
|
|
PyAPI_DATA(PyTypeObject) PyCMethod_Type;
|
|
|
|
#define PyCMethod_CheckExact(op) Py_IS_TYPE(op, &PyCMethod_Type)
|
|
#define PyCMethod_Check(op) PyObject_TypeCheck(op, &PyCMethod_Type)
|
|
|
|
#define _PyCFunctionObject_CAST(func) \
|
|
(assert(PyCFunction_Check(func)), (PyCFunctionObject *)(func))
|
|
#define _PyCMethodObject_CAST(func) \
|
|
(assert(PyCMethod_Check(func)), (PyCMethodObject *)(func))
|
|
|
|
/* Macros for direct access to these values. Type checks are *not*
|
|
done, so use with care. */
|
|
#define PyCFunction_GET_FUNCTION(func) \
|
|
(_PyCFunctionObject_CAST(func)->m_ml->ml_meth)
|
|
#define PyCFunction_GET_SELF(func) \
|
|
(_PyCFunctionObject_CAST(func)->m_ml->ml_flags & METH_STATIC ? \
|
|
NULL : _PyCFunctionObject_CAST(func)->m_self)
|
|
#define PyCFunction_GET_FLAGS(func) \
|
|
(_PyCFunctionObject_CAST(func)->m_ml->ml_flags)
|
|
#define PyCFunction_GET_CLASS(func) \
|
|
(_PyCFunctionObject_CAST(func)->m_ml->ml_flags & METH_METHOD ? \
|
|
_PyCMethodObject_CAST(func)->mm_class : NULL)
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
PyMethodDef *m_ml; /* Description of the C function to call */
|
|
PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */
|
|
PyObject *m_module; /* The __module__ attribute, can be anything */
|
|
PyObject *m_weakreflist; /* List of weak references */
|
|
vectorcallfunc vectorcall;
|
|
} PyCFunctionObject;
|
|
|
|
typedef struct {
|
|
PyCFunctionObject func;
|
|
PyTypeObject *mm_class; /* Class that defines this method */
|
|
} PyCMethodObject;
|