Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dfuncobject.h40 PyAPI_DATA(PyTypeObject) PyFunction_Type;
42 #define PyFunction_Check(op) (Py_TYPE(op) == &PyFunction_Type)
/external/python/cpython3/Include/
Dfuncobject.h43 PyAPI_DATA(PyTypeObject) PyFunction_Type;
45 #define PyFunction_Check(op) (Py_TYPE(op) == &PyFunction_Type)
/external/python/cpython2/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`).
/external/python/cpython3/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`).
/external/python/cpython2/Objects/
Dfuncobject.c13 &PyFunction_Type); in PyFunction_New()
544 PyTypeObject PyFunction_Type = { variable
Dobject.c2182 if (PyType_Ready(&PyFunction_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython3/Objects/
Dfuncobject.c23 op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type); in PyFunction_NewWithQualName()
592 PyTypeObject PyFunction_Type = { variable
Dobject.c1864 if (PyType_Ready(&PyFunction_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/PC/os2vacpp/
Dpython.def44 PyFunction_Type
/external/python/cpython2/PC/os2emx/
Dpython27.def345 "PyFunction_Type"
/external/python/cpython2/Modules/
DcPickle.c2742 if (type == &PyFunction_Type) { in save()
/external/python/cpython3/Modules/
D_pickle.c4029 else if (type == &PyFunction_Type) { in save()