From 0dc3d5e195bfa4b429ce785522c844c782719623 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 6 Aug 2013 15:34:12 +0430 Subject: [PATCH] *args/**kwargs tests for #235 (failing tests) --- test/completion/functions.py | 6 ++++++ 1 file changed, 6 insertions(+) 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