(self)
| 599 | self.assertEqual(f' ', ' ') |
| 600 | |
| 601 | def test_unterminated_string(self): |
| 602 | self.assertAllRaise(SyntaxError, 'unterminated string', |
| 603 | [r"""f'{"x'""", |
| 604 | r"""f'{"x}'""", |
| 605 | r"""f'{("x'""", |
| 606 | r"""f'{("x}'""", |
| 607 | ]) |
| 608 | |
| 609 | @unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI") |
| 610 | def test_mismatched_parens(self): |
nothing calls this directly
no test coverage detected