MCPcopy 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

popMethod · 0.45

Tested by

no test coverage detected