MCPcopy
hub / github.com/pyinstaller/pyinstaller / extend

Method extend

bootloader/waflib/Runner.py:56–65  ·  view source on GitHub ↗
(self, lst)

Source from the content-addressed store, hash-verified

54 return heapq.heappop(self.lst)
55
56 def extend(self, lst):
57 if self.lst:
58 for x in lst:
59 self.append(x)
60 else:
61 if isinstance(lst, list):
62 self.lst = lst
63 heapq.heapify(lst)
64 else:
65 self.lst = lst.lst
66
67
68class Consumer(Utils.threading.Thread):

Callers 15

path_fromMethod · 0.45
parse_optionsFunction · 0.45
append_valueMethod · 0.45
to_nodesFunction · 0.45
colonMethod · 0.45
_process_long_optMethod · 0.45
init_module_varsMethod · 0.45
refill_task_listMethod · 0.45
add_more_tasksMethod · 0.45
h_funFunction · 0.45
add_manual_dependencyMethod · 0.45
get_all_task_genMethod · 0.45

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected