Searched refs:get_localsplus_names (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Tools/scripts/ |
H A D | umarshal.py | 61 def get_localsplus_names(self, select_kind: int) -> Tuple[str, ...]: member in Code 71 return self.get_localsplus_names(CO_FAST_LOCAL) 75 return self.get_localsplus_names(CO_FAST_CELL) 79 return self.get_localsplus_names(CO_FAST_FREE)
|
/third_party/python/Objects/ |
H A D | codeobject.c | 208 get_localsplus_names(PyCodeObject *co, _PyLocals_Kind kind, int num) in get_localsplus_names() function 1415 return get_localsplus_names(co, CO_FAST_LOCAL, co->co_nlocals); in _PyCode_GetVarnames() 1427 return get_localsplus_names(co, CO_FAST_CELL, co->co_ncellvars); in _PyCode_GetCellvars() 1439 return get_localsplus_names(co, CO_FAST_FREE, co->co_nfreevars); in _PyCode_GetFreevars() 1954 varnames = get_localsplus_names(self, CO_FAST_LOCAL, self->co_nlocals); in code_replace_impl() 1961 cellvars = get_localsplus_names(self, CO_FAST_CELL, self->co_ncellvars); in code_replace_impl() 1968 freevars = get_localsplus_names(self, CO_FAST_FREE, self->co_nfreevars); in code_replace_impl()
|
Completed in 5 milliseconds