test for empty statement problem in function call

This commit is contained in:
David Halter
2013-07-17 15:02:56 +02:00
parent 9ee0d34bc7
commit 2ad3121aa3

View File

@@ -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
# -----------------