Searched refs:ilshift (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 360 def ilshift(a, b): function 455 __ilshift__ = ilshift
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 498 .. function:: ilshift(a, b) 501 ``a = ilshift(a, b)`` is equivalent to ``a <<= b``.
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 359 .. function:: ilshift(a, b) 362 ``a = ilshift(a, b)`` is equivalent to ``a <<= b``.
|
/external/python/cpython2/Modules/ |
D | operator.c | 413 spam2(ilshift,__ilshift__, "a = ilshift(a, b) -- Same as a <<= b.")
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 495 self.assertEqual(operator.ilshift (c, 5), "ilshift")
|
/external/python/cpython3/Lib/test/ |
D | test_operator.py | 452 self.assertEqual(operator.ilshift (c, 5), "ilshift")
|