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.c355 PyObject *freevars = NULL, *ourfreevars = NULL; in code_new() local
402 ourfreevars = validate_and_copy_tuple(freevars); in code_new()
404 ourfreevars = PyTuple_New(0); in code_new()
405 if (ourfreevars == NULL) in code_new()
417 ourfreevars, ourcellvars, filename, in code_new()
422 Py_XDECREF(ourfreevars); in code_new()