MCPcopy Index your code
hub / github.com/python/cpython / append

Method append

Lib/collections/__init__.py:1360–1361  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

1358 return inst
1359
1360 def append(self, item):
1361 self.data.append(item)
1362
1363 def insert(self, i, item):
1364 self.data.insert(i, item)

Callers 15

test_list_copyMethod · 0.95
test_implementationMethod · 0.95
test_recursionMethod · 0.95
list_allFunction · 0.45
add_resultMethod · 0.45
add_exceptionMethod · 0.45
add_cancelledMethod · 0.45
add_done_callbackMethod · 0.45
__init__.pyFile · 0.45
_terminate_brokenMethod · 0.45
readallMethod · 0.45

Calls

no outgoing calls

Tested by 3

test_list_copyMethod · 0.76
test_implementationMethod · 0.76
test_recursionMethod · 0.76