From 62c35a8a8ff5854ed470b1c16a7a14f3bb80368c Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Fri, 25 Jan 2019 01:39:19 +0000 Subject: bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) --- Lib/test/test_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_parser.py') diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py index ac3899baedb..19f17820364 100644 --- a/Lib/test/test_parser.py +++ b/Lib/test/test_parser.py @@ -166,7 +166,7 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase): with self.assertRaises(SyntaxError): exec("x, *y, z: int = range(5)", {}, {}) with self.assertRaises(SyntaxError): - exec("t: tuple = 1, 2", {}, {}) + exec("x: int = 1, y = 2", {}, {}) with self.assertRaises(SyntaxError): exec("u = v: int", {}, {}) with self.assertRaises(SyntaxError): -- cgit v1.2.3