Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ insert
Method
insert
Lib/collections/__init__.py:1323–1324 ·
view source on GitHub ↗
(self, i, item)
Source
from the content-addressed store, hash-verified
1321
self.data.append(item)
1322
1323
def
insert(self, i, item):
1324
self.data.insert(i, item)
1325
1326
def
pop(self, i=-1):
1327
return
self.data.pop(i)
Callers
3
test_recursion
Method · 0.95
_num_version
Function · 0.45
_num_version
Function · 0.45
Calls
no outgoing calls
Tested by
1
test_recursion
Method · 0.76