Home
last modified time | relevance | path

Searched refs:PyCFunction_Type (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Include/
Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/external/python/cpython2/Objects/
Dmethodobject.c23 (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
Dobject.c2171 if (PyType_Ready(&PyCFunction_Type) < 0) in _Py_ReadyTypes()
Dtypeobject.c6291 else if (Py_TYPE(descr) == &PyCFunction_Type &&
/external/python/cpython2/PC/os2vacpp/
Dpython.def8 PyCFunction_Type
/external/python/cpython2/PC/os2emx/
Dpython27.def433 "PyCFunction_Type"
/external/python/cpython2/Modules/
DcPickle.c2738 if (type == &PyCFunction_Type) { in save()