Show More
@@ -216,13 +216,15 b' aliases.update(dict(' | |||
|
216 | 216 | |
|
217 | 217 | plain = 'IPythonQtConsoleApp.plain', |
|
218 | 218 | pure = 'IPythonQtConsoleApp.pure', |
|
219 | gui_completion = 'ConsoleWidget.gui_completion', | |
|
220 | 219 | style = 'IPythonWidget.syntax_style', |
|
221 | 220 | stylesheet = 'IPythonQtConsoleApp.stylesheet', |
|
222 | 221 | colors = 'ZMQInteractiveShell.colors', |
|
223 | 222 | |
|
224 | 223 | editor = 'IPythonWidget.editor', |
|
224 | paging = 'ConsoleWidget.paging', | |
|
225 | 225 | )) |
|
226 | aliases['gui-completion'] = 'ConsoleWidget.gui_completion' | |
|
227 | ||
|
226 | 228 | |
|
227 | 229 | #----------------------------------------------------------------------------- |
|
228 | 230 | # IPythonQtConsole |
@@ -237,9 +239,15 b' class IPythonQtConsoleApp(BaseIPythonApplication):' | |||
|
237 | 239 | The IPython QtConsole. |
|
238 | 240 | |
|
239 | 241 | This launches a Console-style application using Qt. It is not a full |
|
240 |
console, in that launched terminal subprocesses will not |
|
|
242 | console, in that launched terminal subprocesses will not be able to accept | |
|
243 | input. | |
|
244 | ||
|
245 | The QtConsole supports various extra features beyond the Terminal IPython | |
|
246 | shell, such as inline plotting with matplotlib, via: | |
|
247 | ||
|
248 | ipython qtconsole --pylab=inline | |
|
241 | 249 | |
|
242 | The QtConsole supports various extra features beyond the | |
|
250 | as well as saving your session as HTML, and printing the output. | |
|
243 | 251 | |
|
244 | 252 | """ |
|
245 | 253 | examples = _examples |
General Comments 0
You need to be logged in to leave comments.
Login now