Searched refs:itruediv (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 400 def itruediv(a, b): function 463 __itruediv__ = itruediv
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 141 def itruediv(mock): function 143 self.assertRaises(TypeError, itruediv, mock)
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 170 def itruediv(mock): function 172 self.assertRaises(TypeError, itruediv, mock)
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 548 .. function:: itruediv(a, b) 551 ``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 | 460 self.assertEqual(operator.itruediv (c, 5), "itruediv")
|