diff --git a/test/completion/functions.py b/test/completion/functions.py index adeb714e..2c92cf4e 100644 --- a/test/completion/functions.py +++ b/test/completion/functions.py @@ -228,6 +228,12 @@ exe2['a'] # *args / ** kwargs # ----------------- +def func_without_call(*args, **kwargs): + #? tuple() + args + #? dict() + kwargs + def fu(a=1, b="", *args, **kwargs): return a, b, args, kwargs