Show More
@@ -2,6 +2,5 b'' | |||||
2 | """Terminal-based IPython entry point. |
|
2 | """Terminal-based IPython entry point. | |
3 | """ |
|
3 | """ | |
4 |
|
4 | |||
5 | from IPython.terminal.ipapp import launch_new_instance |
|
5 | from IPython import start_ipython | |
6 |
|
6 | start_ipython() | ||
7 | launch_new_instance() |
|
@@ -315,7 +315,7 b" def find_scripts(entry_points=False, suffix=''):" | |||||
315 | """ |
|
315 | """ | |
316 | if entry_points: |
|
316 | if entry_points: | |
317 | console_scripts = [s % suffix for s in [ |
|
317 | console_scripts = [s % suffix for s in [ | |
318 |
'ipython%s = IPython |
|
318 | 'ipython%s = IPython:start_ipython', | |
319 | 'pycolor%s = IPython.utils.PyColorize:main', |
|
319 | 'pycolor%s = IPython.utils.PyColorize:main', | |
320 | 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance', |
|
320 | 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance', | |
321 | 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance', |
|
321 | 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance', |
General Comments 0
You need to be logged in to leave comments.
Login now