Home
last modified time | relevance | path

Searched refs:truediv (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Lib/unittest/test/testmock/
Dtestmagicmethods.py135 def truediv(self, other): function
138 mock.__truediv__ = truediv
146 mock.__itruediv__ = truediv
152 mock.__rtruediv__ = truediv
/third_party/python/Lib/
Doperator.py136 def truediv(a, b): function
440 __truediv__ = truediv
Dfractions.py517 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
/third_party/python/Lib/test/
Dtest_operator.py178 self.assertRaises(TypeError, operator.truediv, 5)
179 self.assertRaises(TypeError, operator.truediv, None, None)
180 self.assertEqual(operator.truediv(5, 2), 2.5)
Dtest_long.py85 def truediv(a, b): function
808 expected = repr(truediv(a, b))
Ddatetimetester.py20 from operator import lt, le, gt, ge, eq, ne, truediv, floordiv, mod
939 self.assertRaises(ZeroDivisionError, truediv, t, zerotd)
/third_party/node/deps/v8/third_party/jinja2/
Dsandbox.py279 "/": operator.truediv,
Dnodes.py18 "/": operator.truediv,
/third_party/node/tools/inspector_protocol/jinja2/
Dsandbox.py254 '/': operator.truediv,
Dnodes.py29 '/': operator.truediv,
/third_party/skia/third_party/externals/jinja2/
Dsandbox.py279 "/": operator.truediv,
Dnodes.py18 "/": operator.truediv,
/third_party/jinja2/
Dsandbox.py207 "/": operator.truediv,
Dnodes.py22 "/": operator.truediv,
/third_party/python/Doc/library/
Doperator.rst190 .. function:: truediv(a, b)
379 | Division | ``a / b`` | ``truediv(a, b)`` |
/third_party/protobuf/python/google/protobuf/internal/
Dtest_util.py763 return NonStandardInteger(operator.truediv(self.val, y))
805 return NonStandardInteger(operator.truediv(y, self.val))
/third_party/python/Misc/
DHISTORY24490 module provides truediv() and floordiv() functions. Augmented