mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
The test on parameter names also checks the case when union type was inferred for an argument.
4 lines
77 B
Python
4 lines
77 B
Python
def func(x, *args, foo=None, bar='spam'):
|
|
pass
|
|
|
|
func(1, 2, 3, bar='spam') |