Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dframeobject.c875 int ncells, nfreevars; in PyFrame_FastToLocals() local
898 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_FastToLocals()
899 if (ncells || nfreevars) { in PyFrame_FastToLocals()
911 map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocals()
927 int ncells, nfreevars; in PyFrame_LocalsToFast() local
945 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_LocalsToFast()
946 if (ncells || nfreevars) { in PyFrame_LocalsToFast()
951 dict_to_map(co->co_freevars, nfreevars, in PyFrame_LocalsToFast()