/third_party/python/Lib/ |
H A D | _weakrefset.py | 126 def __ior__(self, other): member in WeakSet
|
H A D | weakref.py | 315 def __ior__(self, other): member in WeakValueDictionary 520 def __ior__(self, other): member in WeakKeyDictionary
|
H A D | operator.py | 462 __ior__ = ior variable
|
H A D | os.py | 721 def __ior__(self, other): member in _Environ
|
H A D | _collections_abc.py | 717 def __ior__(self, it): member in MutableSet
|
/third_party/python/Lib/test/ |
H A D | test_augassign.py | 194 def __ior__(self, val): member in AugAssignTest.testCustomMethods2.testall 195 output.append("__ior__ called") 310 __ior__ called
|
H A D | test_dict.py | 68 self.assertRaises(TypeError, a.__ior__, None) 69 self.assertEqual(a.__ior__(()), {0: 0, 1: 1, 2: 1}) 70 self.assertRaises(ValueError, a.__ior__, "BAD") 71 self.assertEqual(a.__ior__(""), {0: 0, 1: 1, 2: 1}) 1514 # key3 inserted via `dict.__ior__`
|
H A D | test_operator.py | 488 def __ior__ (self, other): return "ior" member in OperatorTestCase.test_inplace.C
|
H A D | test_collections.py | 2272 (Counter.__ior__, Counter.__or__),
|
H A D | test_typing.py | 5407 def __ior__(self, other: "Const[MySet[T]]") -> "MySet[T]": member in GetTypeHintTests.test_get_type_hints_annotated_refs.MySet 5424 get_type_hints(MySet.__ior__, globals(), locals()),
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 313 def __ior__(self, other): member in OrderedDict 939 def __ior__(self, other): member in Counter 1082 def __ior__(self, other): member in ChainMap 1157 def __ior__(self, other): member in UserDict
|
/third_party/python/Include/internal/ |
H A D | pycore_global_strings.h | 129 STRUCT_FOR_ID(__ior__)
|
H A D | pycore_runtime_init.h | 752 INIT_ID(__ior__), \
|
/third_party/python/Objects/ |
H A D | typeobject.c | 7545 SLOT1(slot_nb_inplace_or, __ior__, PyObject *) 8163 IBSLOT("__ior__", nb_inplace_or, slot_nb_inplace_or,
|