Searched refs:PyFunction_Type (Results 1 – 8 of 8) sorted by relevance
53 PyAPI_DATA(PyTypeObject) PyFunction_Type;55 #define PyFunction_Check(op) Py_IS_TYPE(op, &PyFunction_Type)
18 .. c:var:: PyTypeObject PyFunction_Type28 Return true if *o* is a function object (has type :c:data:`PyFunction_Type`).
59 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type); in PyFunction_NewWithQualName()685 PyTypeObject PyFunction_Type = { variable
1829 INIT_TYPE(PyFunction_Type); in _PyTypes_Init()
844 Objects/funcobject.c:PyFunction_Type PyTypeObject PyFunction_Type
4368 else if (type == &PyFunction_Type) { in save()
1642 Objects/funcobject.c - PyFunction_Type -
4135 return &PyFunction_Type; in infer_type()