Searched refs:iconcat (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 347 def iconcat(a, b): function 453 __iconcat__ = iconcat
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 486 .. function:: iconcat(a, b) 489 ``a = iconcat(a, b)`` is equivalent to ``a += b`` for *a* and *b* sequences.
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 334 .. function:: iconcat(a, b) 337 ``a = iconcat(a, b)`` is equivalent to ``a += b`` for *a* and *b* sequences.
|
/external/python/cpython2/Modules/ |
D | operator.c | 422 spam2(iconcat,__iconcat__,
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 504 self.assertEqual(operator.iconcat (c, c), "iadd")
|
/external/python/cpython3/Lib/test/ |
D | test_operator.py | 462 self.assertEqual(operator.iconcat (c, c), "iadd")
|