This commit is contained in:
David Halter
2012-11-02 17:01:33 +01:00
parent 1fa0230339
commit 948b72d27f
2 changed files with 7 additions and 1 deletions

View File

@@ -802,6 +802,7 @@ class Statement(Simple):
while is_call_or_close():
result = result.parent()
close_brackets = False
if tok != '\n':
result.add_to_current_field(tok)
if level != 0:

View File

@@ -188,6 +188,11 @@ exe['b']
#? int() float()
exe['c']
exe2 = kwargs_func(**{a:3,
b:4.0})
#? int()
exe2['a']
# -----------------
# *args / ** kwargs
# -----------------