MCPcopy Create free account
hub / github.com/ActiveState/code / push

Method push

recipes/Python/578694_heap_class/recipe-578694.py:10–11  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

8 return heapq.heappop(self)
9
10 def push(self, item) :
11 heapq.heappush(self, item)
12
13 def pushpop(self, item) :
14 return heapq.heappushpop(self, item)

Callers 15

recipe-577634.jsFile · 0.45
QueenFunction · 0.45
propsFunction · 0.45
prepare_data_Function · 0.45
recipe-579002.jsFile · 0.45
recipe-577378.jsFile · 0.45
recipe-578100.jsFile · 0.45
get_all_bookmarksFunction · 0.45
add_song_to_playlistFunction · 0.45
load_playlistFunction · 0.45
init_capsFunction · 0.45
do_searchFunction · 0.45

Calls

no outgoing calls

Tested by 1

testFunction · 0.36