Searched refs:nfreevars (Results 1 – 1 of 1) sorted by relevance
1020 Py_ssize_t ncells, nfreevars; in PyFrame_FastToLocalsWithError() local1049 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_FastToLocalsWithError()1050 if (ncells || nfreevars) { in PyFrame_FastToLocalsWithError()1064 if (map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocalsWithError()1093 Py_ssize_t ncells, nfreevars; in PyFrame_LocalsToFast() local1111 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_LocalsToFast()1112 if (ncells || nfreevars) { in PyFrame_LocalsToFast()1117 dict_to_map(co->co_freevars, nfreevars, in PyFrame_LocalsToFast()