mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
10 lines
53 B
Python
10 lines
53 B
Python
|
|
def foo(**args):
|
|
pass
|
|
|
|
a = {}
|
|
b = {}
|
|
foo(**a)
|
|
|
|
|