From 71f61b200c63e3f45544e78de607fd2697dfdb96 Mon Sep 17 00:00:00 2001 From: David Halter Date: Thu, 10 May 2012 11:10:36 +0200 Subject: [PATCH] removed prints --- evaluate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evaluate.py b/evaluate.py index 483bd04e..1e6e155e 100644 --- a/evaluate.py +++ b/evaluate.py @@ -363,7 +363,7 @@ class Execution(Executable): # only enter it, if has not already been processed if hasattr(func, 'is_decorated') and not func.is_decorated: for dec in reversed(self.base.decorators): - print '\n\ndecorator:', dec, func + debug.dbg('decorator:', dec, func) dec_results = follow_statement(dec) if not len(dec_results): debug.warning('decorator func not found', self.base) @@ -385,7 +385,7 @@ class Execution(Executable): # this is here, that the wrapper gets executed func = wrappers[0] - print 'dece\n\n' + debug.dbg('decorator end') #print dec.parent return func