Skip to content

Commit f54394b

Browse files
Update ll_builder.py
1 parent 2f0e0fe commit f54394b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mypyc/irbuild/ll_builder.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,8 +793,7 @@ def _construct_varargs(
793793
for value, kind, name in args:
794794
if kind == ARG_STAR:
795795
if star_result is None:
796-
# fast path if star expr is a tuple:
797-
# we can pass the immutable tuple straight into the function call.
796+
# star args fastpath
798797
if len(args) == 1:
799798
# fn(*args)
800799
if is_list_rprimitive(value.type):

0 commit comments

Comments
 (0)