MCPcopy Index your code
hub / github.com/grantjenks/python-sortedcontainers / extend

Method extend

sortedcontainers/sortedlist.py:1298–1307  ·  view source on GitHub ↗

Raise not-implemented error. Implemented to override `MutableSequence.extend` which provides an erroneous default implementation. :raises NotImplementedError: use ``sl.update(values)`` instead

(self, values)

Source from the content-addressed store, hash-verified

1296
1297
1298 def extend(self, values):
1299 """Raise not-implemented error.
1300
1301 Implemented to override `MutableSequence.extend` which provides an
1302 erroneous default implementation.
1303
1304 :raises NotImplementedError: use ``sl.update(values)`` instead
1305
1306 """
1307 raise NotImplementedError('use ``sl.update(values)`` instead')
1308
1309
1310 def insert(self, index, value):

Callers 10

updateMethod · 0.80
_deleteMethod · 0.80
_build_indexMethod · 0.80
__add__Method · 0.80
updateMethod · 0.80
_deleteMethod · 0.80
__add__Method · 0.80
mainFunction · 0.80
__call__Method · 0.80
__call__Method · 0.80

Calls

no outgoing calls

Tested by 2

__call__Method · 0.64
__call__Method · 0.64