Searched refs:itruediv (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 396 def itruediv(a, b): function 459 __itruediv__ = itruediv
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 171 def itruediv(mock): function 173 self.assertRaises(TypeError, itruediv, mock)
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 143 def itruediv(mock): function 145 self.assertRaises(TypeError, itruediv, mock)
|
/external/python/pybind11/include/pybind11/ |
D | operators.h | 141 PYBIND11_INPLACE_OPERATOR(itruediv, operator/=, l /= r)
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 550 .. function:: itruediv(a, b) 553 ``a = itruediv(a, b)`` is equivalent to ``a /= b``.
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 427 .. function:: itruediv(a, b) 430 ``a = itruediv(a, b)`` is equivalent to ``a /= b`` when ``__future__.division``
|
/external/python/cpython2/Modules/ |
D | operator.c | 411 spam2(itruediv,__itruediv__, "a = itruediv(a, b) -- Same as a /= b when __future__.division is in e…
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 502 self.assertEqual(operator.itruediv (c, 5), "itruediv")
|
/external/python/cpython3/Lib/test/ |
D | test_operator.py | 480 self.assertEqual(operator.itruediv (c, 5), "itruediv")
|