Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_long_future.py24 def truediv(a, b): function
108 expected = repr(truediv(a, b))
Dtest_operator.py161 self.assertRaises(TypeError, operator.truediv, 5)
162 self.assertRaises(TypeError, operator.truediv, None, None)
163 self.assertTrue(operator.truediv(5, 2) == 2.5)
/external/libmojo/third_party/jinja2/
Dsandbox.py199 '/': operator.truediv,
Dnodes.py29 '/': operator.truediv,
/external/python/cpython2/Lib/
Dfractions.py414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
/external/python/cpython2/Doc/library/
Doperator.rst195 .. function:: truediv(a, b)
627 | Division | ``a / b`` | ``truediv(a, b)`` (with |
/external/python/cpython2/Modules/
Doperator.c393 spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")
/external/python/cpython2/Misc/
DNEWS9715 - Issue #2592: delegate nb_index and the floor/truediv slots in
DHISTORY7111 module provides truediv() and floordiv() functions. Augmented