aboutsummaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-02-03 23:29:26 +0000
committerGitHub <noreply@github.com>2021-02-03 23:29:26 +0000
commitd4e6ed7e5fb43320ea714d7436bc11667c624d43 (patch)
tree1b7139c3a92eb9de5b91e61b5d5a7e92bed07bd7 /Lib
parentFix typo (GH-23019) (diff)
downloadcpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.tar.gz
cpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.tar.bz2
cpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.zip
bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_syntax.py20
1 files changed, 18 insertions, 2 deletions
diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py
index 6068dd9fc09..70dd22c62aa 100644
--- a/Lib/test/test_syntax.py
+++ b/Lib/test/test_syntax.py
@@ -246,9 +246,25 @@ SyntaxError: did you forget parentheses around the comprehension target?
Traceback (most recent call last):
SyntaxError: did you forget parentheses around the comprehension target?
->>> {x,y: None for x,y in range(100)}
+# Missing commas in literals collections should not
+# produce special error messages regarding missing
+# parentheses
+
+>>> [1, 2 3]
Traceback (most recent call last):
-SyntaxError: did you forget parentheses around the comprehension target?
+SyntaxError: invalid syntax
+
+>>> {1, 2 3}
+Traceback (most recent call last):
+SyntaxError: invalid syntax
+
+>>> {1:2, 2:5 3:12}
+Traceback (most recent call last):
+SyntaxError: invalid syntax
+
+>>> (1, 2 3)
+Traceback (most recent call last):
+SyntaxError: invalid syntax
From compiler_complex_args():