Home
last modified time | relevance | path

Searched refs:PyFunction_Type (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/
Dfuncobject.h53 PyAPI_DATA(PyTypeObject) PyFunction_Type;
55 #define PyFunction_Check(op) Py_IS_TYPE(op, &PyFunction_Type)
/third_party/python/Doc/c-api/
Dfunction.rst18 .. c:var:: PyTypeObject PyFunction_Type
28 Return true if *o* is a function object (has type :c:data:`PyFunction_Type`).
/third_party/python/Objects/
Dfuncobject.c59 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type); in PyFunction_NewWithQualName()
685 PyTypeObject PyFunction_Type = { variable
Dobject.c1829 INIT_TYPE(PyFunction_Type); in _PyTypes_Init()
/third_party/python/Tools/c-analyzer/
DTODO844 Objects/funcobject.c:PyFunction_Type PyTypeObject PyFunction_Type
/third_party/python/Modules/
D_pickle.c4368 else if (type == &PyFunction_Type) { in save()
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1642 Objects/funcobject.c - PyFunction_Type -
/third_party/python/Python/
Dcompile.c4135 return &PyFunction_Type; in infer_type()