Home
last modified time | relevance | path

Searched refs:co_cell2arg (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Include/
Dcode.h40 Py_ssize_t *co_cell2arg; /* Maps cell vars which are arguments. */ member
/external/python/cpython3/Objects/
Dcodeobject.c210 co->co_cell2arg = cell2arg; in PyCode_New()
454 if (co->co_cell2arg != NULL) in code_dealloc()
455 PyMem_FREE(co->co_cell2arg); in code_dealloc()
469 if (co->co_cell2arg != NULL && co->co_cellvars != NULL) { in code_sizeof()
Dtypeobject.c7695 if (obj == NULL && co->co_cell2arg) { in super_init()
7699 if (co->co_cell2arg[i] == 0) { in super_init()
/external/python/cpython3/Python/
Dceval.c3863 if (co->co_cell2arg != NULL && in _PyEval_EvalCodeWithName()
3864 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) { in _PyEval_EvalCodeWithName()