(self)
| 333 | self.check_ast_roundtrip("-1e1000j") |
| 334 | |
| 335 | def test_nan(self): |
| 336 | self.assertASTEqual( |
| 337 | ast.parse(ast.unparse(ast.Constant(value=float('nan')))), |
| 338 | ast.parse('1e1000 - 1e1000') |
| 339 | ) |
| 340 | |
| 341 | def test_min_int(self): |
| 342 | self.check_ast_roundtrip(str(-(2 ** 31))) |
nothing calls this directly
no test coverage detected