Searched refs:divide_int (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_decimal.py | 1857 d = c.divide_int(Decimal(1), Decimal(2)) 1858 self.assertEqual(c.divide_int(1, 2), d) 1859 self.assertEqual(c.divide_int(Decimal(1), 2), d) 1860 self.assertEqual(c.divide_int(1, Decimal(2)), d) 1861 self.assertRaises(TypeError, c.divide_int, '1', 2) 1862 self.assertRaises(TypeError, c.divide_int, 1, '2')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | decimal.py | 4193 def divide_int(self, a, b): member in Context
|