mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
9 lines
265 B
Python
9 lines
265 B
Python
def f1(*args, <error descr="Multiple * arguments are not allowed">*</error>, a):
|
|
pass
|
|
|
|
def f2(*, <error descr="Multiple * arguments are not allowed">*</error>, d):
|
|
pass
|
|
|
|
def f3(*, <error descr="Multiple * arguments are not allowed">*args</error>):
|
|
pass
|