Show More
|
1 | NO CONTENT: file renamed from IPython/frontend/qt/console/ipythonqt.py to IPython/frontend/qt/console/qtconsoleapp.py |
@@ -194,7 +194,6 b' aliases.update(dict(' | |||
|
194 | 194 | class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): |
|
195 | 195 | name = u'ipython' |
|
196 | 196 | description = usage.cl_usage |
|
197 | # command_line_loader = IPAppConfigLoader | |
|
198 | 197 | default_config_file_name = default_config_file_name |
|
199 | 198 | crash_handler_class = IPAppCrashHandler |
|
200 | 199 | |
@@ -202,8 +201,8 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):' | |||
|
202 | 201 | aliases = Dict(aliases) |
|
203 | 202 | classes = [InteractiveShellApp, TerminalInteractiveShell, ProfileDir, PlainTextFormatter] |
|
204 | 203 | subcommands = Dict(dict( |
|
205 |
qtconsole=('IPython.frontend.qt.console. |
|
|
206 |
"""Launch the IPython QtConsole. |
|
|
204 | qtconsole=('IPython.frontend.qt.console.qtconsoleapp.IPythonQtConsoleApp', | |
|
205 | """Launch the IPython Qt Console.""" | |
|
207 | 206 | ) |
|
208 | 207 | )) |
|
209 | 208 |
@@ -280,7 +280,7 b' def find_scripts(entry_points=False):' | |||
|
280 | 280 | 'irunner = IPython.lib.irunner:main' |
|
281 | 281 | ] |
|
282 | 282 | gui_scripts = [ |
|
283 |
'ipython-qtconsole = IPython.frontend.qt.console. |
|
|
283 | 'ipython-qtconsole = IPython.frontend.qt.console.qtconsoleapp:main', | |
|
284 | 284 | ] |
|
285 | 285 | scripts = dict(console_scripts=console_scripts, gui_scripts=gui_scripts) |
|
286 | 286 | else: |
@@ -292,7 +292,6 b' def find_scripts(entry_points=False):' | |||
|
292 | 292 | pjoin(parallel_scripts, 'ipcluster'), |
|
293 | 293 | pjoin(parallel_scripts, 'iplogger'), |
|
294 | 294 | pjoin(main_scripts, 'ipython'), |
|
295 | pjoin(main_scripts, 'ipython-qtconsole'), | |
|
296 | 295 | pjoin(main_scripts, 'pycolor'), |
|
297 | 296 | pjoin(main_scripts, 'irunner'), |
|
298 | 297 | pjoin(main_scripts, 'iptest') |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now