From 1bd07ab6d96126306c627e53bf5ec3bc089c6a07 2011-07-13 22:14:34 From: MinRK Date: 2011-07-13 22:14:34 Subject: [PATCH] fix qtconsole description also add `--paging` alias to the qtconsole qtconsole string had incomplete sentences, which have been filled out. --- diff --git a/IPython/frontend/qt/console/qtconsoleapp.py b/IPython/frontend/qt/console/qtconsoleapp.py index ea478a2..ee0bd66 100644 --- a/IPython/frontend/qt/console/qtconsoleapp.py +++ b/IPython/frontend/qt/console/qtconsoleapp.py @@ -216,13 +216,15 @@ aliases.update(dict( plain = 'IPythonQtConsoleApp.plain', pure = 'IPythonQtConsoleApp.pure', - gui_completion = 'ConsoleWidget.gui_completion', style = 'IPythonWidget.syntax_style', stylesheet = 'IPythonQtConsoleApp.stylesheet', colors = 'ZMQInteractiveShell.colors', editor = 'IPythonWidget.editor', + paging = 'ConsoleWidget.paging', )) +aliases['gui-completion'] = 'ConsoleWidget.gui_completion' + #----------------------------------------------------------------------------- # IPythonQtConsole @@ -237,9 +239,15 @@ class IPythonQtConsoleApp(BaseIPythonApplication): The IPython QtConsole. This launches a Console-style application using Qt. It is not a full - console, in that launched terminal subprocesses will not. + console, in that launched terminal subprocesses will not be able to accept + input. + + The QtConsole supports various extra features beyond the Terminal IPython + shell, such as inline plotting with matplotlib, via: + + ipython qtconsole --pylab=inline - The QtConsole supports various extra features beyond the + as well as saving your session as HTML, and printing the output. """ examples = _examples