mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
All these issues have been resolved in the new version of PyChangeSignatureUsageProcessor
5 lines
96 B
Python
5 lines
96 B
Python
def f(x, foo, y, **kwargs):
|
|
print(foo, kwargs)
|
|
|
|
|
|
f(42, foo=None, y=None, extra1=1, extra2=2) |