From 24b78a4d510606563106da24d568d5fb79ddca2b 2013-07-13 22:10:05 From: Thomas Kluyver Date: 2013-07-13 22:10:05 Subject: [PATCH] Use new entry point for python -m IPython --- diff --git a/IPython/__main__.py b/IPython/__main__.py index 1e2ee07..d5123f3 100644 --- a/IPython/__main__.py +++ b/IPython/__main__.py @@ -9,6 +9,6 @@ # The full license is in the file COPYING.txt, distributed with this software. #----------------------------------------------------------------------------- -from IPython.terminal.ipapp import launch_new_instance +from IPython import start_ipython -launch_new_instance() +start_ipython()