You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[mypyc] feat: stararg fastpath when calling fn(*args) with tuple (#19623)
There are 3 safe cases where we can reuse a tuple when calling a python
function:
fn(*args)
fn(*args, **kwargs)
fn(*args, k=1, k2=2, **kwargs)
This PR covers the first two cases.
The IR diff will probably demonstrate this change better than I can
explain it.
0 commit comments