(self)
| 317 | self.check_ast_roundtrip(while_else) |
| 318 | |
| 319 | def test_unary_parens(self): |
| 320 | self.check_ast_roundtrip("(-1)**7") |
| 321 | self.check_ast_roundtrip("(-1.)**8") |
| 322 | self.check_ast_roundtrip("(-1j)**6") |
| 323 | self.check_ast_roundtrip("not True or False") |
| 324 | self.check_ast_roundtrip("True or not False") |
| 325 | |
| 326 | def test_integer_parens(self): |
| 327 | self.check_ast_roundtrip("3 .__abs__()") |
nothing calls this directly
no test coverage detected