MCPcopy Index your code
hub / github.com/python/cpython / pop

Method pop

Lib/collections/__init__.py:1366–1367  ·  view source on GitHub ↗
(self, i=-1)

Source from the content-addressed store, hash-verified

1364 self.data.insert(i, item)
1365
1366 def pop(self, i=-1):
1367 return self.data.pop(i)
1368
1369 def remove(self, item):
1370 self.data.remove(item)

Callers 1

test_implementationMethod · 0.95

Calls 1

popMethod · 0.45

Tested by 1

test_implementationMethod · 0.76