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

Method insert

sortedcontainers/sortedlist.py:1310–1316  ·  view source on GitHub ↗

Raise not-implemented error. :raises NotImplementedError: use ``sl.add(value)`` instead

(self, index, value)

Source from the content-addressed store, hash-verified

1308
1309
1310 def insert(self, index, value):
1311 """Raise not-implemented error.
1312
1313 :raises NotImplementedError: use ``sl.add(value)`` instead
1314
1315 """
1316 raise NotImplementedError('use ``sl.add(value)`` instead')
1317
1318
1319 def pop(self, index=-1):

Callers 4

_expandMethod · 0.45
addMethod · 0.45
_expandMethod · 0.45
conf.pyFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected