Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dcodeobject.c281 PyObject *cellvars = NULL, *ourcellvars = NULL; in code_new() local
326 ourcellvars = validate_and_copy_tuple(cellvars); in code_new()
328 ourcellvars = PyTuple_New(0); in code_new()
329 if (ourcellvars == NULL) in code_new()
334 ourfreevars, ourcellvars, filename, in code_new()
340 Py_XDECREF(ourcellvars); in code_new()
/external/python/cpython3/Objects/
Dcodeobject.c339 PyObject *cellvars = NULL, *ourcellvars = NULL; in code_new() local
391 ourcellvars = validate_and_copy_tuple(cellvars); in code_new()
393 ourcellvars = PyTuple_New(0); in code_new()
394 if (ourcellvars == NULL) in code_new()
400 ourfreevars, ourcellvars, filename, in code_new()
406 Py_XDECREF(ourcellvars); in code_new()