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

Method __ior__

Lib/_collections_abc.py:738–741  ·  view source on GitHub ↗
(self, it)

Source from the content-addressed store, hash-verified

736 pass
737
738 def __ior__(self, it):
739 for value in it:
740 self.add(value)
741 return self
742
743 def __iand__(self, it):
744 for value in (self - it):

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected