##// END OF EJS Templates
Deactivate stray debug print statement.
Fernando Perez -
Show More
@@ -492,7 +492,7 b' class Interpreter(object):'
492 492 # somehow. In the meantime, we'll just stop if there are two lines
493 493 # of pure whitespace at the end.
494 494 last_two = source.rsplit('\n',2)[-2:]
495 print 'last two:',last_two # dbg
495 #print 'last two:',last_two # dbg
496 496 if len(last_two)==2 and all(s.isspace() for s in last_two):
497 497 return COMPLETE_INPUT,False
498 498 else:
General Comments 0
You need to be logged in to leave comments. Login now