Home
last modified time | relevance | path

Searched refs:PyFunction_SetClosure (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dfuncobject.h51 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/external/python/cpython3/Include/
Dfuncobject.h57 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/external/python/cpython2/Doc/c-api/
Dfunction.rst78 .. c:function:: int PyFunction_SetClosure(PyObject *op, PyObject *closure)
/external/python/cpython3/Doc/c-api/
Dfunction.rst89 .. c:function:: int PyFunction_SetClosure(PyObject *op, PyObject *closure)
/external/python/cpython2/Objects/
Dfuncobject.c134 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure() function
/external/python/cpython2/Doc/data/
Drefcounts.dat462 PyFunction_SetClosure:int:::
463 PyFunction_SetClosure:PyObject*:op:0:
464 PyFunction_SetClosure:PyObject*:closure:+1:
/external/python/cpython3/Objects/
Dfuncobject.c178 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure() function
/external/python/cpython2/PC/os2emx/
Dpython27.def342 "PyFunction_SetClosure"
/external/python/cpython3/Doc/data/
Drefcounts.dat912 PyFunction_SetClosure:int:::
913 PyFunction_SetClosure:PyObject*:op:0:
914 PyFunction_SetClosure:PyObject*:closure:+1:
/external/python/cpython2/Python/
Dceval.c3094 if (PyFunction_SetClosure(x, v) != 0) { in PyEval_EvalFrameEx()