(self)
| 324 | self.check_ast_roundtrip("True or not False") |
| 325 | |
| 326 | def test_integer_parens(self): |
| 327 | self.check_ast_roundtrip("3 .__abs__()") |
| 328 | |
| 329 | def test_huge_float(self): |
| 330 | self.check_ast_roundtrip("1e1000") |
nothing calls this directly
no test coverage detected