/third_party/python/Lib/test/ |
D | test_augassign.py | 78 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test2 83 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test3 88 __iadd__ = None variable in AugAssignTest.testCustomMethods1.aug_test4 126 def __iadd__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | list_tests.py | 499 self.assertRaises(TypeError, u.__iadd__, None)
|
D | test_operator.py | 466 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C
|
D | test_array.py | 605 self.assertRaises(TypeError, a.__iadd__, "bad")
|
D | test_unicode.py | 2374 def __iadd__(self, o): member in UnicodeTest.test_subclass_add.S
|
D | test_collections.py | 2248 (Counter.__iadd__, Counter.__add__),
|
/third_party/python/Lib/importlib/metadata/ |
D | __init__.py | 274 def __iadd__(self, *args, **kwargs): member in DeprecatedList 276 return super().__iadd__(*args, **kwargs)
|
/third_party/python/Lib/ |
D | operator.py | 447 __iadd__ = iadd variable
|
D | _collections_abc.py | 1157 def __iadd__(self, values): member in MutableSequence
|
/third_party/mindspore/mindspore/nn/layer/ |
D | container.py | 340 def __iadd__(self, cells): member in CellList
|
/third_party/python/Lib/email/ |
D | _parseaddr.py | 529 def __iadd__(self, other): member in AddressList
|
/third_party/python/Lib/collections/ |
D | __init__.py | 891 def __iadd__(self, other): member in Counter 1241 def __iadd__(self, other): member in UserList
|
/third_party/python/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 120 mock.__iadd__ = add
|
/third_party/boost/libs/python/doc/reference/ |
D | operators.qbk | 66 [[`self += r`][`__iadd__`][`x += y`]]
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 140 … ``__delitem__``, ``remove``, and ``__iadd__``
|
D | operator.rst | 478 __iadd__(a, b)
|
/third_party/python/Doc/faq/ |
D | programming.rst | 1336 ``__iadd__`` magic method, it gets called when the ``+=`` augmented assignment 1338 and (b) for lists, ``__iadd__`` is equivalent to calling ``extend`` on the list 1349 >>> result = a_list.__iadd__([1]) 1359 >>> result = a_tuple[0].__iadd__(['item']) 1365 The ``__iadd__`` succeeds, and thus the list is extended, but even though
|
D | general.rst | 414 '__getattribute__', '__getitem__', '__gt__', '__hash__', '__iadd__',
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 338 __add__ = __delattr__ = __delitem__ = __iadd__ = __imul__ = unsupported
|
/third_party/mindspore/mindspore/common/ |
D | tensor.py | 191 def __iadd__(self, other): member in Tensor
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 1152 def __iadd__(self, value): member in ListProxy
|
/third_party/python/Doc/whatsnew/ |
D | 2.0.rst | 359 named :meth:`__iadd__`, :meth:`__isub__`, etc. For example, the following 370 def __iadd__(self, increment): 377 The :meth:`__iadd__` special method is called with the value of the increment,
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 2379 :meth:`~object.__add__`, :meth:`~object.__radd__`, :meth:`~object.__iadd__`, 2613 .. method:: object.__iadd__(self, other) 2633 is an instance of a class with an :meth:`__iadd__` method, ``x += y`` is 2634 equivalent to ``x = x.__iadd__(y)`` . Otherwise, ``x.__add__(y)`` and
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 209 …`~PyNumberMethods.nb_inplace_add` | :c:type:`binaryfunc` | __iadd__ | 314 …`~PySequenceMethods.sq_inplace_concat` | :c:type:`binaryfunc` | __iadd__ |
|
/third_party/boost/libs/python/doc/ |
D | tutorial.qbk | 607 .def(self += int()) // __iadd__
|