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