Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dframeobject.c1020 Py_ssize_t ncells, nfreevars; in PyFrame_FastToLocalsWithError() local
1049 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() local
1111 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()