Home
last modified time | relevance | path

Searched refs:__truediv__ (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_complex.py76 q = z.__truediv__(x)
83 q = z.__truediv__(y)
108 self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j)
109 self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j)
404 __truediv__ = __div__ variable in ComplexTest.test_subclass.xcomplex
Dtest_binop.py133 def __truediv__(self, other): member in Rat
143 __div__ = __truediv__
Dtest_augassign.py168 def __truediv__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dtest_coercion.py63 def __truediv__(self,other): member in MethodNumber
Dtest_float.py180 self.assertEqual(float(n).__truediv__(d), f)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dnumbers.py124 def __truediv__(self, other): member in Complex
Dfractions.py414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv) variable in Fraction
Ddecimal.py1293 def __truediv__(self, other, context=None): member in Decimal
1390 return other.__truediv__(self, context=context)
1392 __div__ = __truediv__
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dnumbers.py124 def __truediv__(self, other): member in Complex
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Doperator.c267 spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Doperator.c393 spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")