Searched refs:map_to_dict (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Objects/ |
D | frameobject.c | 831 map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values, in map_to_dict() function 948 if (map_to_dict(map, j, locals, fast, 0) < 0) in PyFrame_FastToLocalsWithError() 954 if (map_to_dict(co->co_cellvars, ncells, in PyFrame_FastToLocalsWithError() 967 if (map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocalsWithError()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 823 map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values, in map_to_dict() function 932 map_to_dict(map, j, locals, fast, 0); in PyFrame_FastToLocals() 936 map_to_dict(co->co_cellvars, ncells, in PyFrame_FastToLocals() 947 map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocals()
|