##// END OF EJS Templates
run_cell(exec_lines) now called with 'store_history=False'...
MinRK -
Show More
@@ -570,7 +570,7 b' class IPythonApp(Application):'
570 try:
570 try:
571 self.log.info("Running code in user namespace: %s" %
571 self.log.info("Running code in user namespace: %s" %
572 line)
572 line)
573 self.shell.run_cell(line)
573 self.shell.run_cell(line, store_history=False)
574 except:
574 except:
575 self.log.warn("Error in executing line in user "
575 self.log.warn("Error in executing line in user "
576 "namespace: %s" % line)
576 "namespace: %s" % line)
@@ -615,7 +615,7 b' class IPythonApp(Application):'
615 try:
615 try:
616 self.log.info("Running code given at command line (-c): %s" %
616 self.log.info("Running code given at command line (-c): %s" %
617 line)
617 line)
618 self.shell.run_cell(line)
618 self.shell.run_cell(line, store_history=False)
619 except:
619 except:
620 self.log.warn("Error in executing line in user namespace: %s" %
620 self.log.warn("Error in executing line in user namespace: %s" %
621 line)
621 line)
General Comments 0
You need to be logged in to leave comments. Login now