mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
5 lines
264 B
Python
5 lines
264 B
Python
def handle(foo, *args, <error descr="multiple * parameters are not allowed">*moreargs</error>):
|
|
print(foo, args, moreargs)
|
|
|
|
def handle(foo, *args: int, <error descr="multiple * parameters are not allowed">*moreargs: int</error>):
|
|
print(foo, args, moreargs) |