(self)
| 2300 | self.assertIs(x.y, None) |
| 2301 | |
| 2302 | def test_implicit_context(self): |
| 2303 | Decimal = self.decimal.Decimal |
| 2304 | getcontext = self.decimal.getcontext |
| 2305 | |
| 2306 | # Check results when context given implicitly. (Issue 2478) |
| 2307 | c = getcontext() |
| 2308 | self.assertEqual(str(Decimal(0).sqrt()), |
| 2309 | str(c.sqrt(Decimal(0)))) |
| 2310 | |
| 2311 | def test_none_args(self): |
| 2312 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected