From f33a826b135f3c259a8691c581fd5035544ed037 2016-03-14 18:52:36 From: Min RK Date: 2016-03-14 18:52:36 Subject: [PATCH] Remove unused `display_banner=False` arg This is no longer used by pt_shell --- diff --git a/IPython/terminal/ipapp.py b/IPython/terminal/ipapp.py index ba80177..c1a3dad 100755 --- a/IPython/terminal/ipapp.py +++ b/IPython/terminal/ipapp.py @@ -317,7 +317,7 @@ class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): # based app, because we call shell.show_banner() by hand below # so the banner shows *before* all extension loading stuff. self.shell = TerminalInteractiveShell.instance(parent=self, - display_banner=False, profile_dir=self.profile_dir, + profile_dir=self.profile_dir, ipython_dir=self.ipython_dir, user_ns=self.user_ns) self.shell.configurables.append(self)