Searched refs:ournames (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | codeobject.c | 278 PyObject *names, *ournames = NULL; in code_new() local 313 ournames = validate_and_copy_tuple(names); in code_new() 314 if (ournames == NULL) in code_new() 333 code, consts, ournames, ourvarnames, in code_new() 337 Py_XDECREF(ournames); in code_new()
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 353 PyObject *names, *ournames = NULL; in code_new() local 395 ournames = validate_and_copy_tuple(names); in code_new() 396 if (ournames == NULL) in code_new() 416 code, consts, ournames, ourvarnames, in code_new() 420 Py_XDECREF(ournames); in code_new()
|