(self)
| 495 | ), "{'\\\\\\\\'}") |
| 496 | |
| 497 | def test_invalid_yield_from(self): |
| 498 | self.check_invalid(ast.YieldFrom(value=None)) |
| 499 | |
| 500 | def test_import_from_level_none(self): |
| 501 | tree = ast.ImportFrom(module='mod', names=[ast.alias(name='x')]) |
nothing calls this directly
no test coverage detected