Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dcode.h38 Py_ssize_t *co_cell2arg; /* Maps cell vars which are arguments. */ member
/external/python/cpython3/Objects/
Dcodeobject.c247 co->co_cell2arg = cell2arg; in PyCode_NewWithPosOnlyArgs()
581 if (co->co_cell2arg != NULL) in code_dealloc()
582 PyMem_FREE(co->co_cell2arg); in code_dealloc()
596 if (co->co_cell2arg != NULL && co->co_cellvars != NULL) { in code_sizeof()
Dtypeobject.c8075 if (obj == NULL && co->co_cell2arg) { in super_init_without_args()
8079 if (co->co_cell2arg[i] == 0) { in super_init_without_args()
/external/python/cpython3/Python/
Dceval.c4279 if (co->co_cell2arg != NULL && in _PyEval_EvalCode()
4280 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) { in _PyEval_EvalCode()