mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
PyReferenceImpl.handleElementRename checks that new name of the reference is valid identifier, which is not true for names prefixed with '*'.
3 lines
89 B
Python
3 lines
89 B
Python
def func(arg1, *args, **kwargs):
|
|
args = list(args) + [arg1]
|
|
kwargs = dict(kwargs) |