mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 15:13:13 +07:00
8 lines
48 B
Python
8 lines
48 B
Python
def foo(a, **args):
|
|
pass
|
|
|
|
b = {}
|
|
foo(**b)
|
|
|
|
|