mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
9 lines
142 B
Python
9 lines
142 B
Python
def foo(*args):
|
|
pass
|
|
|
|
a = ()
|
|
b = ()
|
|
foo(*a, <error descr="Python versions < 3.5 do not allow duplicate *expressions">*<caret>b</error>)
|
|
|
|
|