mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Previously it was prohibited in signatures containing varargs and single stars (delimiting normal and keyword-only parameters).
16 lines
138 B
Python
16 lines
138 B
Python
def f1(*, x,):
|
|
pass
|
|
|
|
|
|
def f2(*args,):
|
|
pass
|
|
|
|
|
|
def f3(**kwargs,):
|
|
pass
|
|
|
|
|
|
lambda *, x,: 42
|
|
lambda *args,: 42
|
|
lambda *kwargs,: 42
|