(self)
| 3360 | self.assertRaises(TypeError, c.log10, '10') |
| 3361 | |
| 3362 | def test_logb(self): |
| 3363 | Decimal = self.decimal.Decimal |
| 3364 | Context = self.decimal.Context |
| 3365 | |
| 3366 | c = Context() |
| 3367 | d = c.logb(Decimal(10)) |
| 3368 | self.assertEqual(c.logb(10), d) |
| 3369 | self.assertRaises(TypeError, c.logb, '10') |
| 3370 | |
| 3371 | def test_logical_and(self): |
| 3372 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected