/external/python/cpython2/Lib/test/ |
D | test_augassign.py | 90 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test2 95 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test3 130 def __iadd__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_operator.py | 476 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C 506 self.assertEqual(operator.__iadd__ (c, 5), "iadd")
|
D | list_tests.py | 475 self.assertRaises(TypeError, u.__iadd__, None)
|
D | test_array.py | 345 self.assertRaises(TypeError, a.__iadd__, "bad")
|
/external/python/cpython2/Lib/ |
D | UserList.py | 62 def __iadd__(self, other): member in UserList
|
D | UserString.py | 206 def __iadd__(self, other): member in MutableString
|
D | _abcoll.py | 691 def __iadd__(self, values): member in MutableSequence
|
D | rfc822.py | 799 def __iadd__(self, other): member in AddressList
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialutil.py | 30 def __iadd__(self, other): member in bytearray
|
/external/python/cpython2/Lib/email/ |
D | _parseaddr.py | 473 def __iadd__(self, other): member in AddressList
|
/external/python/cpython2/Modules/ |
D | operator.c | 406 spam2(iadd,__iadd__, "a = iadd(a, b) -- Same as a += b.")
|
/external/python/cpython2/Doc/faq/ |
D | programming.rst | 1392 ``__iadd__`` magic method, it gets called when the ``+=`` augmented assignment 1394 and (b) for lists, ``__iadd__`` is equivalent to calling ``extend`` on the list 1405 >>> result = a_list.__iadd__([1]) 1415 >>> result = a_tuple[0].__iadd__(['item']) 1421 The ``__iadd__`` succeeds, and thus the list is extended, but even though
|
D | general.rst | 422 '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__',
|
/external/python/cpython2/Lib/multiprocessing/ |
D | managers.py | 1053 def __iadd__(self, value): member in ListProxy
|
/external/python/cpython2/Doc/library/ |
D | rfc822.rst | 322 .. method:: AddressList.__iadd__(alist)
|
D | operator.rst | 319 __iadd__(a, b)
|
D | collections.rst | 909 … ``__delitem__``, ``remove``, and ``__iadd__``
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1867 :meth:`__add__`, :meth:`__radd__`, :meth:`__iadd__`, :meth:`__mul__`, 2163 .. method:: object.__iadd__(self, other) 2184 :meth:`__iadd__` method, ``x.__iadd__(y)`` is called. If *x* is an instance 2185 of a class that does not define a :meth:`__iadd__` method, ``x.__add__(y)`` 2286 the binary operator, and :meth:`__iadd__` for the in-place variant.
|
/external/python/cpython2/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,
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1192 s+=o = __iadd__(s,o) s-=o = __isub__(s,o)
|
D | HISTORY | 5360 .fromunicode methods are available. Arrays now support __iadd__ 6886 '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__le__', 8894 an 'i' in front of the name, e.g. __iadd__ implements in-place
|