Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dcodeobject.c280 PyObject *freevars = NULL, *ourfreevars = NULL; in code_new() local
320 ourfreevars = validate_and_copy_tuple(freevars); in code_new()
322 ourfreevars = PyTuple_New(0); in code_new()
323 if (ourfreevars == NULL) in code_new()
334 ourfreevars, ourcellvars, filename, in code_new()
339 Py_XDECREF(ourfreevars); in code_new()
/external/python/cpython3/Objects/
Dcodeobject.c338 PyObject *freevars = NULL, *ourfreevars = NULL; in code_new() local
385 ourfreevars = validate_and_copy_tuple(freevars); in code_new()
387 ourfreevars = PyTuple_New(0); in code_new()
388 if (ourfreevars == NULL) in code_new()
400 ourfreevars, ourcellvars, filename, in code_new()
405 Py_XDECREF(ourfreevars); in code_new()