commit | 41d5b94af44e34ac05d4cd57460ed104ccf96628 | [log] [tgz] |
---|---|---|
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | Sun Apr 12 21:21:00 2020 +0300 |
committer | GitHub <noreply@github.com> | Sun Apr 12 19:21:00 2020 +0100 |
tree | 564847a328b623cc02268a93fda371e0bea797b3 | |
parent | 402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527 [diff] |
bpo-40246: Report a better error message for invalid string prefixes (GH-19476)
diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index 4966392..ef0ccb8 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py
@@ -841,7 +841,7 @@ self.assertEqual(f'{f"{y}"*3}', '555') def test_invalid_string_prefixes(self): - self.assertAllRaise(SyntaxError, 'unexpected EOF while parsing', + self.assertAllRaise(SyntaxError, 'invalid string prefix', ["fu''", "uf''", "Fu''",