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

Method remove

Lib/collections/__init__.py:1369–1370  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

1367 return self.data.pop(i)
1368
1369 def remove(self, item):
1370 self.data.remove(item)
1371
1372 def clear(self):
1373 self.data.clear()

Callers 4

test_implementationMethod · 0.95
_yield_finished_futuresFunction · 0.45
as_completedFunction · 0.45
waitFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_implementationMethod · 0.76