mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 19:16:40 +07:00
10 lines
53 B
Python
10 lines
53 B
Python
|
|
def foo(**args):
|
|
pass
|
|
|
|
a = {}
|
|
b = {}
|
|
foo(**a)
|
|
|
|
|