commit | 15acc4eaba8519d7d5f2acaffde65446b44dcf79 | [log] [tgz] |
---|---|---|
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | Tue Oct 27 20:54:20 2020 +0200 |
committer | GitHub <noreply@github.com> | Tue Oct 27 20:54:20 2020 +0200 |
tree | 9e67e28b551fd67a2ffb24e7cc6b7d11b3584db6 | |
parent | 95f710c55714153f0c8cce48f8215bb3d866ac1d [diff] [blame] |
bpo-41659: Disallow curly brace directly after primary (GH-22996)
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 1ec4468..4dbf5fe 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py
@@ -208,6 +208,7 @@ def testSyntaxErrorOffset(self): check(b'Python = "\xcf\xb3\xf2\xee\xed" +', 1, 18) check('x = "a', 1, 7) check('lambda x: x = 2', 1, 1) + check('f{a + b + c}', 1, 2) # Errors thrown by compile.c check('class foo:return 1', 1, 11)