mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
removed prints
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user