Searched refs:PyCFunction_Type (Results 1 – 14 of 14) sorted by relevance
14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
23 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()281 PyTypeObject PyCFunction_Type = { variable
2176 if (PyType_Ready(&PyCFunction_Type) < 0) in _Py_ReadyTypes()
6354 else if (Py_TYPE(descr) == &PyCFunction_Type &&
101 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCMethod_New()333 PyTypeObject PyCFunction_Type = { variable373 .tp_base = &PyCFunction_Type,
1791 INIT_TYPE(&PyCFunction_Type, "builtin function"); in _PyTypes_Init()
7505 else if (Py_IS_TYPE(descr, &PyCFunction_Type) && in update_one_slot()
8 PyCFunction_Type
43 PyCFunction_Type=python39.PyCFunction_Type DATA
433 "PyCFunction_Type"
868 Objects/methodobject.c:PyCFunction_Type PyTypeObject PyCFunction_Type
809 Objects/methodobject.c - PyCFunction_Type variable PyTypeObject PyCFunction_Type
2754 if (type == &PyCFunction_Type) { in save()