/third_party/python/Lib/ |
D | weakref.py | 316 def __ior__(self, other): member in WeakValueDictionary 521 def __ior__(self, other): member in WeakKeyDictionary
|
D | _weakrefset.py | 127 def __ior__(self, other): member in WeakSet
|
D | operator.py | 455 __ior__ = ior variable
|
D | os.py | 719 def __ior__(self, other): member in _Environ
|
D | _collections_abc.py | 759 def __ior__(self, it): member in MutableSet
|
/third_party/python/Lib/collections/ |
D | __init__.py | 293 def __ior__(self, other): member in OrderedDict 917 def __ior__(self, other): member in Counter 1060 def __ior__(self, other): member in ChainMap 1135 def __ior__(self, other): member in UserDict
|
/third_party/python/Lib/test/ |
D | test_augassign.py | 194 def __ior__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_dict.py | 67 self.assertRaises(TypeError, a.__ior__, None) 68 self.assertEqual(a.__ior__(()), {0: 0, 1: 1, 2: 1}) 69 self.assertRaises(ValueError, a.__ior__, "BAD") 70 self.assertEqual(a.__ior__(""), {0: 0, 1: 1, 2: 1})
|
D | test_operator.py | 473 def __ior__ (self, other): return "ior" member in OperatorTestCase.test_inplace.C
|
D | test_typing.py | 3235 def __ior__(self, other: "Const[MySet[T]]") -> "MySet[T]": member in GetTypeHintTests.test_get_type_hints_annotated_refs.MySet 3252 get_type_hints(MySet.__ior__, globals(), locals()),
|
D | test_collections.py | 2250 (Counter.__ior__, Counter.__or__),
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 152 … ``__iter__``, ``clear``, ``pop``, ``remove``, ``__ior__``,
|
D | operator.rst | 528 __ior__(a, b)
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 267 …`~PyNumberMethods.nb_inplace_or` | :c:type:`binaryfunc` | __ior__ |
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 2625 object.__ior__(self, other)
|