mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
Massive automated renaming of all Py_/PyObject/etc. prefixes to Ty_/TyObject/etc. This includes: - All public API types (TyObject, TyTypeObject, etc.) - All public API functions (Ty_Initialize, Ty_BuildValue, etc.) - All internal API (_Ty_ prefixes) - Reference counting macros (Ty_INCREF, Ty_DECREF, etc.) - Type flags (Ty_TPFLAGS_*) - Debug flags (Ty_DEBUG, Ty_TRACE_REFS, etc.) - All object type APIs (TyList_, TyDict_, TyUnicode_, etc.) This changes over 60,000 occurrences across 1000+ files. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
67 lines
2.2 KiB
C
67 lines
2.2 KiB
C
#ifndef Ty_CPYTHON_METHODOBJECT_H
|
|
# error "this header file must not be included directly"
|
|
#endif
|
|
|
|
// PyCFunctionObject structure
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
TyMethodDef *m_ml; /* Description of the C function to call */
|
|
TyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */
|
|
TyObject *m_module; /* The __module__ attribute, can be anything */
|
|
TyObject *m_weakreflist; /* List of weak references */
|
|
vectorcallfunc vectorcall;
|
|
} PyCFunctionObject;
|
|
|
|
#define _PyCFunctionObject_CAST(func) \
|
|
(assert(PyCFunction_Check(func)), \
|
|
_Py_CAST(PyCFunctionObject*, (func)))
|
|
|
|
|
|
// PyCMethodObject structure
|
|
|
|
typedef struct {
|
|
PyCFunctionObject func;
|
|
TyTypeObject *mm_class; /* Class that defines this method */
|
|
} PyCMethodObject;
|
|
|
|
#define _PyCMethodObject_CAST(func) \
|
|
(assert(PyCMethod_Check(func)), \
|
|
_Py_CAST(PyCMethodObject*, (func)))
|
|
|
|
PyAPI_DATA(TyTypeObject) PyCMethod_Type;
|
|
|
|
#define PyCMethod_CheckExact(op) Ty_IS_TYPE((op), &PyCMethod_Type)
|
|
#define PyCMethod_Check(op) PyObject_TypeCheck((op), &PyCMethod_Type)
|
|
|
|
|
|
/* Static inline functions for direct access to these values.
|
|
Type checks are *not* done, so use with care. */
|
|
static inline PyCFunction PyCFunction_GET_FUNCTION(TyObject *func) {
|
|
return _PyCFunctionObject_CAST(func)->m_ml->ml_meth;
|
|
}
|
|
#define PyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(_TyObject_CAST(func))
|
|
|
|
static inline TyObject* PyCFunction_GET_SELF(TyObject *func_obj) {
|
|
PyCFunctionObject *func = _PyCFunctionObject_CAST(func_obj);
|
|
if (func->m_ml->ml_flags & METH_STATIC) {
|
|
return _Py_NULL;
|
|
}
|
|
return func->m_self;
|
|
}
|
|
#define PyCFunction_GET_SELF(func) PyCFunction_GET_SELF(_TyObject_CAST(func))
|
|
|
|
static inline int PyCFunction_GET_FLAGS(TyObject *func) {
|
|
return _PyCFunctionObject_CAST(func)->m_ml->ml_flags;
|
|
}
|
|
#define PyCFunction_GET_FLAGS(func) PyCFunction_GET_FLAGS(_TyObject_CAST(func))
|
|
|
|
static inline TyTypeObject* PyCFunction_GET_CLASS(TyObject *func_obj) {
|
|
PyCFunctionObject *func = _PyCFunctionObject_CAST(func_obj);
|
|
if (func->m_ml->ml_flags & METH_METHOD) {
|
|
return _PyCMethodObject_CAST(func)->mm_class;
|
|
}
|
|
return _Py_NULL;
|
|
}
|
|
#define PyCFunction_GET_CLASS(func) PyCFunction_GET_CLASS(_TyObject_CAST(func))
|