(self)
| 4942 | self.assertNotEqual(id(d), id(e)) |
| 4943 | |
| 4944 | def test_py_rescale(self): |
| 4945 | # Coverage |
| 4946 | Decimal = P.Decimal |
| 4947 | localcontext = P.localcontext |
| 4948 | |
| 4949 | with localcontext() as c: |
| 4950 | x = Decimal("NaN")._rescale(3, ROUND_UP) |
| 4951 | self.assertTrue(x.is_nan()) |
| 4952 | |
| 4953 | def test_py__round(self): |
| 4954 | # Coverage |
nothing calls this directly
no test coverage detected