From dc091204f92a72cc7f9ad3af2055b88dcd538161 Mon Sep 17 00:00:00 2001 From: zikcheng <surfingbyte@gmail.com> Date: Wed, 11 May 2022 14:09:40 +0800 Subject: [PATCH] gh-92632: Make function starunpack_helper run faster when encounters starred argument. (GH-92655) --- Python/compile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/compile.c b/Python/compile.c index 45944ae85e3..51ef8fd17a1 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4375,6 +4375,7 @@ starunpack_helper(struct compiler *c, asdl_expr_seq *elts, int pushed, expr_ty elt = asdl_seq_GET(elts, i); if (elt->kind == Starred_kind) { seen_star = 1; + break; } } if (!seen_star && !big) { -- GitLab