(self)
| 949 | |
| 950 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 951 | def test_newlines_before_syntax_error(self): |
| 952 | self.assertAllRaise(SyntaxError, |
| 953 | "f-string: expecting a valid expression after '{'", |
| 954 | ["f'{.}'", "\nf'{.}'", "\n\nf'{.}'"]) |
| 955 | |
| 956 | def test_backslashes_in_string_part(self): |
| 957 | self.assertEqual(f'\t', '\t') |
nothing calls this directly
no test coverage detected