Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_heapqmodule.c140 PyObject *lastelt, *returnitem; in heappop_internal() local
160 returnitem = PyList_GET_ITEM(heap, 0); in heappop_internal()
163 Py_DECREF(returnitem); in heappop_internal()
166 return returnitem; in heappop_internal()
188 PyObject *returnitem; in heapreplace_internal() local
195 returnitem = PyList_GET_ITEM(heap, 0); in heapreplace_internal()
199 Py_DECREF(returnitem); in heapreplace_internal()
202 return returnitem; in heapreplace_internal()
248 PyObject *returnitem; in _heapq_heappushpop_impl() local
272 returnitem = PyList_GET_ITEM(heap, 0); in _heapq_heappushpop_impl()
[all …]
/third_party/python/Lib/
Dheapq.py139 returnitem = heap[0]
142 return returnitem
156 returnitem = heap[0] # raises appropriate IndexError if heap is empty
159 return returnitem
183 returnitem = heap[0]
186 return returnitem
191 returnitem = heap[0] # raises appropriate IndexError if heap is empty
194 return returnitem