mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 19:12:18 +07:00
8 lines
155 B
Python
8 lines
155 B
Python
def foo(a, **args):
|
|
pass
|
|
|
|
b = {}
|
|
foo(**b, <error descr="Python versions < 3.5 do not allow keyword arguments after **expression">a<caret>=1</error>)
|
|
|
|
|