Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dcompile.c107 PyObject *u_varnames; /* local variables */ member
456 Py_CLEAR(u->u_varnames); in compiler_unit_free()
484 u->u_varnames = list2dict(u->u_ste->ste_varnames); in compiler_enter_scope()
486 if (!u->u_varnames || !u->u_cellvars) { in compiler_enter_scope()
1245 PyString_AS_STRING(PyObject_Repr(c->u->u_varnames)), in get_ref_type()
3826 varnames = dict_keys_inorder(c->u->u_varnames, 0); in makecode()
3840 nlocals = PyDict_Size(c->u->u_varnames); in makecode()
/external/python/cpython3/Python/
Dcompile.c116 PyObject *u_varnames; /* local variables */ member
532 Py_CLEAR(u->u_varnames); in compiler_unit_free()
563 u->u_varnames = list2dict(u->u_ste->ste_varnames); in compiler_enter_scope()
565 if (!u->u_varnames || !u->u_cellvars) { in compiler_enter_scope()
1581 PyUnicode_AsUTF8(PyObject_Repr(c->u->u_varnames)), in get_ref_type()
5391 varnames = dict_keys_inorder(c->u->u_varnames, 0); in makecode()
5402 nlocals = PyDict_GET_SIZE(c->u->u_varnames); in makecode()