From cb6534e1a8833b3f20bd88f52cf62a003426e855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Furkan=20=C3=96nder?= Date: Thu, 26 Mar 2020 04:54:31 +0300 Subject: bpo-40067: Improve error messages for multiple star expressions in assignments (GH-19168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Batuhan Taşkaya Co-Authored-By: Pablo Galindo --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python') diff --git a/Python/compile.c b/Python/compile.c index 0b3926c436..01700e0e78 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3708,7 +3708,7 @@ assignment_helper(struct compiler *c, asdl_seq *elts) } else if (elt->kind == Starred_kind) { return compiler_error(c, - "two starred expressions in assignment"); + "multiple starred expressions in assignment"); } } if (!seen_star) { -- cgit v1.2.1