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

Method extend

Lib/collections/__init__.py:1390–1394  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1388 self.data.sort(*args, **kwds)
1389
1390 def extend(self, other):
1391 if isinstance(other, UserList):
1392 self.data.extend(other.data)
1393 else:
1394 self.data.extend(other)
1395
1396
1397################################################################################

Callers 15

test_implementationMethod · 0.95
conf.pyFile · 0.45
configure_build_pythonFunction · 0.45
configure_host_pythonFunction · 0.45
configure_build_pythonFunction · 0.45
build_targetFunction · 0.45
mainFunction · 0.45
all_host_triplesFunction · 0.45
cleanFunction · 0.45
configure_build_pythonFunction · 0.45
configure_host_pythonFunction · 0.45

Calls

no outgoing calls

Tested by 4

test_implementationMethod · 0.76
test_nestedMethod · 0.36
run_python_testsMethod · 0.36
mainFunction · 0.36