Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ __iand__
Method
__iand__
Lib/_collections_abc.py:743–746 ·
view source on GitHub ↗
(self, it)
Source
from the content-addressed store, hash-verified
741
return
self
742
743
def
__iand__(self, it):
744
for
value in (self - it):
745
self.discard(value)
746
return
self
747
748
def
__ixor__(self, it):
749
if
it is self:
Callers
nothing calls this directly
Calls
1
discard
Method · 0.95
Tested by
no test coverage detected