Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dcodeobject.c126 Py_ssize_t i, n_cellvars, n_varnames, total_args; in PyCode_NewWithPosOnlyArgs() local
170 n_cellvars = PyTuple_GET_SIZE(cellvars); in PyCode_NewWithPosOnlyArgs()
171 if (!n_cellvars && !PyTuple_GET_SIZE(freevars)) { in PyCode_NewWithPosOnlyArgs()
192 if (n_cellvars) { in PyCode_NewWithPosOnlyArgs()
194 cell2arg = PyMem_NEW(Py_ssize_t, n_cellvars); in PyCode_NewWithPosOnlyArgs()
200 for (i = 0; i < n_cellvars; i++) { in PyCode_NewWithPosOnlyArgs()