Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dsymtable.c629 PyObject *newfree = NULL, *allfree = NULL; in analyze_block() local
695 allfree = PyDict_New(); in analyze_block()
696 if (!allfree) in analyze_block()
704 allfree)) in analyze_block()
710 if (PyDict_Update(newfree, allfree) < 0) in analyze_block()
729 Py_XDECREF(allfree); in analyze_block()
/external/python/cpython3/Python/
Dsymtable.c741 PyObject *newglobal = NULL, *newfree = NULL, *allfree = NULL; in analyze_block() local
837 allfree = PySet_New(NULL); in analyze_block()
838 if (!allfree) in analyze_block()
846 allfree)) in analyze_block()
853 temp = PyNumber_InPlaceOr(newfree, allfree); in analyze_block()
879 Py_XDECREF(allfree); in analyze_block()