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

Method __iand__

Lib/_weakrefset.py:99–101  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

97 def intersection_update(self, other):
98 self.__iand__(other)
99 def __iand__(self, other):
100 self.data.intersection_update(ref(item) for item in other)
101 return self
102
103 def issubset(self, other):
104 return self.data.issubset(ref(item) for item in other)

Callers 1

intersection_updateMethod · 0.95

Calls 1

intersection_updateMethod · 0.80

Tested by

no test coverage detected