MCPcopy Index your code
hub / github.com/RustPython/RustPython / remove

Method remove

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

Source from the content-addressed store, hash-verified

1327 return self.data.pop(i)
1328
1329 def remove(self, item):
1330 self.data.remove(item)
1331
1332 def clear(self):
1333 self.data.clear()

Callers 3

_yield_finished_futuresFunction · 0.45
as_completedFunction · 0.45
waitFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected