Searched defs:co_varnames (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Include/
H A Dcode.h19 PyObject *co_varnames; /* tuple of strings (local variable names) */ member in struct:__anon19226
/external/python/cpython3/Include/
H A Dcode.h32 PyObject *co_varnames; /* tuple of strings (local variable names) */ member in struct:__anon19788
/external/python/cpython2/Python/
H A Dceval.c1223 PyTuple_GetItem(co->co_varnames, oparg));
2399 PyTuple_GetItem(co->co_varnames, oparg)
3417 PyObject **co_varnames; local
3433 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3435 PyObject *nm = co_varnames[j];
3441 PyObject *nm = co_varnames[j];
3545 PyTuple_GET_ITEM(co->co_varnames, j));
/external/python/cpython3/Python/
H A Dceval.c1235 PyTuple_GetItem(co->co_varnames, oparg));
2402 PyTuple_GetItem(co->co_varnames, oparg)
3789 PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i);
3943 PyObject **co_varnames; local
3957 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3959 PyObject *name = co_varnames[j];
3967 PyObject *name = co_varnames[j];
4039 name = PyTuple_GET_ITEM(co->co_varnames, i);

Completed in 220 milliseconds