From 97cf6132652efdaf41f97ee7c2973002fe8a526b Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 11 Jul 2012 02:04:05 +0200 Subject: [PATCH] kwargs is now working, also within decorators --- evaluate.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/evaluate.py b/evaluate.py index 4a749520..deac596b 100644 --- a/evaluate.py +++ b/evaluate.py @@ -549,7 +549,6 @@ class Execution(Executable): else: name = key[0].name yield name, field - yield var_arg # normal arguments (including key arguments) else: if len(var_arg) > 1 and var_arg[1] == '=': @@ -1117,7 +1116,7 @@ def follow_call(scope, call): # reset the position, when imports where stripped position = None - debug.dbg('call before result %s, current "%s", scope %s' + debug.dbg('before next follow %s, current "%s", scope %s' % (result, current, scope)) result = follow_paths(path, result, position=position)