mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
5 lines
270 B
Python
5 lines
270 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) |