##// END OF EJS Templates
flush stdout/err after init_code...
MinRK -
Show More
@@ -184,6 +184,10 b' class InteractiveShellApp(Configurable):'
184 184 self._run_exec_files()
185 185 self._run_cmd_line_code()
186 186
187 # flush output, so itwon't be attached to the first cell
188 sys.stdout.flush()
189 sys.stderr.flush()
190
187 191 # Hide variables defined here from %who etc.
188 192 self.shell.user_ns_hidden.update(self.shell.user_ns)
189 193
General Comments 0
You need to be logged in to leave comments. Login now