mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
10 lines
147 B
Python
10 lines
147 B
Python
|
|
def foo(**args):
|
|
pass
|
|
|
|
a = {}
|
|
b = {}
|
|
foo(**a, <error descr="Python versions < 3.5 do not allow duplicate **expressions">**<caret>b</error>)
|
|
|
|
|