Searched refs:ilshift (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 356 def ilshift(a, b): function 451 __ilshift__ = ilshift
|
/external/python/pybind11/include/pybind11/ |
D | operators.h | 143 PYBIND11_INPLACE_OPERATOR(ilshift, operator<<=, l <<= r)
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 500 .. function:: ilshift(a, b) 503 ``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 | 472 self.assertEqual(operator.ilshift (c, 5), "ilshift")
|