Home
last modified time | relevance | path

Searched refs:PyCode_GetNumFree (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dcode.h68 #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) macro
/external/python/cpython2/Doc/c-api/
Dcode.rst32 .. c:function:: int PyCode_GetNumFree(PyObject *co)
/external/python/cpython2/Objects/
Dfuncobject.c248 nfree = PyCode_GetNumFree((PyCodeObject *)value); in func_set_code()
/external/python/cpython2/Python/
Dbltinmodule.c673 if (PyCode_GetNumFree((PyCodeObject *)cmd) > 0) { in builtin_eval()
Dceval.c5045 if (PyCode_GetNumFree((PyCodeObject *)prog) > 0) { in exec_statement()
Dcompile.c1262 int i, free = PyCode_GetNumFree(co); in compiler_make_closure()