From 2ad3121aa33c3fe26f9f122d3c04cf1f2b40c638 Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 17 Jul 2013 15:02:56 +0200 Subject: [PATCH] test for empty statement problem in function call --- test/completion/functions.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/completion/functions.py b/test/completion/functions.py index 387b8b0d..bb00efb3 100644 --- a/test/completion/functions.py +++ b/test/completion/functions.py @@ -46,6 +46,15 @@ def multi_line_func(a, # comment blabla #? str() multi_line_func(1,'') +# nothing after comma +def asdf(a): + return a + +x = asdf(a=1, + ) +#? int() +x + # ----------------- # double execution # -----------------