removed prints

This commit is contained in:
David Halter
2012-05-10 11:10:36 +02:00
parent 49ef3dcace
commit 71f61b200c

View File

@@ -363,7 +363,7 @@ class Execution(Executable):
# only enter it, if has not already been processed # only enter it, if has not already been processed
if hasattr(func, 'is_decorated') and not func.is_decorated: if hasattr(func, 'is_decorated') and not func.is_decorated:
for dec in reversed(self.base.decorators): for dec in reversed(self.base.decorators):
print '\n\ndecorator:', dec, func debug.dbg('decorator:', dec, func)
dec_results = follow_statement(dec) dec_results = follow_statement(dec)
if not len(dec_results): if not len(dec_results):
debug.warning('decorator func not found', self.base) debug.warning('decorator func not found', self.base)
@@ -385,7 +385,7 @@ class Execution(Executable):
# this is here, that the wrapper gets executed # this is here, that the wrapper gets executed
func = wrappers[0] func = wrappers[0]
print 'dece\n\n' debug.dbg('decorator end')
#print dec.parent #print dec.parent
return func return func