Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ pop
Method
pop
Lib/collections/__init__.py:1326–1327 ·
view source on GitHub ↗
(self, i=-1)
Source
from the content-addressed store, hash-verified
1324
self.data.insert(i, item)
1325
1326
def
pop(self, i=-1):
1327
return
self.data.pop(i)
1328
1329
def
remove(self, item):
1330
self.data.remove(item)
Callers
nothing calls this directly
Calls
1
pop
Method · 0.45
Tested by
no test coverage detected