Skip to content

Commit 96513e7

Browse files
committed
Update ll_builder.py
1 parent 81be300 commit 96513e7

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
@@ -794,8 +794,7 @@ def _construct_varargs(
794794
for value, kind, name in args:
795795
if kind == ARG_STAR:
796796
if star_result is None:
797-
# fast path if star expr is a tuple:
798-
# we can pass the immutable tuple straight into the function call.
797+
# star args fastpath
799798
if len(args) == 1:
800799
# fn(*args)
801800
if is_list_rprimitive(value.type):

0 commit comments

Comments
 (0)