mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
Now we use the same PyCallExpressionHelper methods to match arguments and parameters in existing calls when we're processing them. Previously it was done using completely independent algorithm that iterated through arguments sequentially keeping track of the last visited argument and couldn't handle a lot of cases. This change also fixes issues PY-24288 PY-24480 PY-24479.
6 lines
33 B
Python
6 lines
33 B
Python
def f(*args):
|
|
pass
|
|
|
|
|
|
f(1, 2)
|