(self)
| 574 | self.assertIsNone(g.__doc__) |
| 575 | |
| 576 | def test_literal_eval(self): |
| 577 | with self.assertRaisesRegex(ValueError, 'malformed node or string'): |
| 578 | ast.literal_eval("f'x'") |
| 579 | |
| 580 | def test_ast_compile_time_concat(self): |
| 581 | x = [''] |
nothing calls this directly
no test coverage detected