##// END OF EJS Templates
Removing useless help text from "-i" command line option.
Nathan Goldbaum -
Show More
@@ -1,396 +1,395
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 The :class:`~IPython.core.application.Application` object for the command
4 The :class:`~IPython.core.application.Application` object for the command
5 line :command:`ipython` program.
5 line :command:`ipython` program.
6
6
7 Authors
7 Authors
8 -------
8 -------
9
9
10 * Brian Granger
10 * Brian Granger
11 * Fernando Perez
11 * Fernando Perez
12 * Min Ragan-Kelley
12 * Min Ragan-Kelley
13 """
13 """
14
14
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16 # Copyright (C) 2008-2011 The IPython Development Team
16 # Copyright (C) 2008-2011 The IPython Development Team
17 #
17 #
18 # Distributed under the terms of the BSD License. The full license is in
18 # Distributed under the terms of the BSD License. The full license is in
19 # the file COPYING, distributed as part of this software.
19 # the file COPYING, distributed as part of this software.
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21
21
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23 # Imports
23 # Imports
24 #-----------------------------------------------------------------------------
24 #-----------------------------------------------------------------------------
25
25
26 from __future__ import absolute_import
26 from __future__ import absolute_import
27 from __future__ import print_function
27 from __future__ import print_function
28
28
29 import logging
29 import logging
30 import os
30 import os
31 import sys
31 import sys
32
32
33 from IPython.config.loader import Config
33 from IPython.config.loader import Config
34 from IPython.config.application import boolean_flag, catch_config_error, Application
34 from IPython.config.application import boolean_flag, catch_config_error, Application
35 from IPython.core import release
35 from IPython.core import release
36 from IPython.core import usage
36 from IPython.core import usage
37 from IPython.core.completer import IPCompleter
37 from IPython.core.completer import IPCompleter
38 from IPython.core.crashhandler import CrashHandler
38 from IPython.core.crashhandler import CrashHandler
39 from IPython.core.formatters import PlainTextFormatter
39 from IPython.core.formatters import PlainTextFormatter
40 from IPython.core.history import HistoryManager
40 from IPython.core.history import HistoryManager
41 from IPython.core.prompts import PromptManager
41 from IPython.core.prompts import PromptManager
42 from IPython.core.application import (
42 from IPython.core.application import (
43 ProfileDir, BaseIPythonApplication, base_flags, base_aliases
43 ProfileDir, BaseIPythonApplication, base_flags, base_aliases
44 )
44 )
45 from IPython.core.magics import ScriptMagics
45 from IPython.core.magics import ScriptMagics
46 from IPython.core.shellapp import (
46 from IPython.core.shellapp import (
47 InteractiveShellApp, shell_flags, shell_aliases
47 InteractiveShellApp, shell_flags, shell_aliases
48 )
48 )
49 from IPython.extensions.storemagic import StoreMagics
49 from IPython.extensions.storemagic import StoreMagics
50 from IPython.terminal.interactiveshell import TerminalInteractiveShell
50 from IPython.terminal.interactiveshell import TerminalInteractiveShell
51 from IPython.utils import warn
51 from IPython.utils import warn
52 from IPython.utils.path import get_ipython_dir, check_for_old_config
52 from IPython.utils.path import get_ipython_dir, check_for_old_config
53 from IPython.utils.traitlets import (
53 from IPython.utils.traitlets import (
54 Bool, List, Dict,
54 Bool, List, Dict,
55 )
55 )
56
56
57 #-----------------------------------------------------------------------------
57 #-----------------------------------------------------------------------------
58 # Globals, utilities and helpers
58 # Globals, utilities and helpers
59 #-----------------------------------------------------------------------------
59 #-----------------------------------------------------------------------------
60
60
61 _examples = """
61 _examples = """
62 ipython --matplotlib # enable matplotlib integration
62 ipython --matplotlib # enable matplotlib integration
63 ipython --matplotlib=qt # enable matplotlib integration with qt4 backend
63 ipython --matplotlib=qt # enable matplotlib integration with qt4 backend
64
64
65 ipython --log-level=DEBUG # set logging to DEBUG
65 ipython --log-level=DEBUG # set logging to DEBUG
66 ipython --profile=foo # start with profile foo
66 ipython --profile=foo # start with profile foo
67
67
68 ipython qtconsole # start the qtconsole GUI application
68 ipython qtconsole # start the qtconsole GUI application
69 ipython help qtconsole # show the help for the qtconsole subcmd
69 ipython help qtconsole # show the help for the qtconsole subcmd
70
70
71 ipython console # start the terminal-based console application
71 ipython console # start the terminal-based console application
72 ipython help console # show the help for the console subcmd
72 ipython help console # show the help for the console subcmd
73
73
74 ipython notebook # start the IPython notebook
74 ipython notebook # start the IPython notebook
75 ipython help notebook # show the help for the notebook subcmd
75 ipython help notebook # show the help for the notebook subcmd
76
76
77 ipython profile create foo # create profile foo w/ default config files
77 ipython profile create foo # create profile foo w/ default config files
78 ipython help profile # show the help for the profile subcmd
78 ipython help profile # show the help for the profile subcmd
79
79
80 ipython locate # print the path to the IPython directory
80 ipython locate # print the path to the IPython directory
81 ipython locate profile foo # print the path to the directory for profile `foo`
81 ipython locate profile foo # print the path to the directory for profile `foo`
82
82
83 ipython nbconvert # convert notebooks to/from other formats
83 ipython nbconvert # convert notebooks to/from other formats
84 """
84 """
85
85
86 #-----------------------------------------------------------------------------
86 #-----------------------------------------------------------------------------
87 # Crash handler for this application
87 # Crash handler for this application
88 #-----------------------------------------------------------------------------
88 #-----------------------------------------------------------------------------
89
89
90 class IPAppCrashHandler(CrashHandler):
90 class IPAppCrashHandler(CrashHandler):
91 """sys.excepthook for IPython itself, leaves a detailed report on disk."""
91 """sys.excepthook for IPython itself, leaves a detailed report on disk."""
92
92
93 def __init__(self, app):
93 def __init__(self, app):
94 contact_name = release.author
94 contact_name = release.author
95 contact_email = release.author_email
95 contact_email = release.author_email
96 bug_tracker = 'https://github.com/ipython/ipython/issues'
96 bug_tracker = 'https://github.com/ipython/ipython/issues'
97 super(IPAppCrashHandler,self).__init__(
97 super(IPAppCrashHandler,self).__init__(
98 app, contact_name, contact_email, bug_tracker
98 app, contact_name, contact_email, bug_tracker
99 )
99 )
100
100
101 def make_report(self,traceback):
101 def make_report(self,traceback):
102 """Return a string containing a crash report."""
102 """Return a string containing a crash report."""
103
103
104 sec_sep = self.section_sep
104 sec_sep = self.section_sep
105 # Start with parent report
105 # Start with parent report
106 report = [super(IPAppCrashHandler, self).make_report(traceback)]
106 report = [super(IPAppCrashHandler, self).make_report(traceback)]
107 # Add interactive-specific info we may have
107 # Add interactive-specific info we may have
108 rpt_add = report.append
108 rpt_add = report.append
109 try:
109 try:
110 rpt_add(sec_sep+"History of session input:")
110 rpt_add(sec_sep+"History of session input:")
111 for line in self.app.shell.user_ns['_ih']:
111 for line in self.app.shell.user_ns['_ih']:
112 rpt_add(line)
112 rpt_add(line)
113 rpt_add('\n*** Last line of input (may not be in above history):\n')
113 rpt_add('\n*** Last line of input (may not be in above history):\n')
114 rpt_add(self.app.shell._last_input_line+'\n')
114 rpt_add(self.app.shell._last_input_line+'\n')
115 except:
115 except:
116 pass
116 pass
117
117
118 return ''.join(report)
118 return ''.join(report)
119
119
120 #-----------------------------------------------------------------------------
120 #-----------------------------------------------------------------------------
121 # Aliases and Flags
121 # Aliases and Flags
122 #-----------------------------------------------------------------------------
122 #-----------------------------------------------------------------------------
123 flags = dict(base_flags)
123 flags = dict(base_flags)
124 flags.update(shell_flags)
124 flags.update(shell_flags)
125 frontend_flags = {}
125 frontend_flags = {}
126 addflag = lambda *args: frontend_flags.update(boolean_flag(*args))
126 addflag = lambda *args: frontend_flags.update(boolean_flag(*args))
127 addflag('autoedit-syntax', 'TerminalInteractiveShell.autoedit_syntax',
127 addflag('autoedit-syntax', 'TerminalInteractiveShell.autoedit_syntax',
128 'Turn on auto editing of files with syntax errors.',
128 'Turn on auto editing of files with syntax errors.',
129 'Turn off auto editing of files with syntax errors.'
129 'Turn off auto editing of files with syntax errors.'
130 )
130 )
131 addflag('banner', 'TerminalIPythonApp.display_banner',
131 addflag('banner', 'TerminalIPythonApp.display_banner',
132 "Display a banner upon starting IPython.",
132 "Display a banner upon starting IPython.",
133 "Don't display a banner upon starting IPython."
133 "Don't display a banner upon starting IPython."
134 )
134 )
135 addflag('confirm-exit', 'TerminalInteractiveShell.confirm_exit',
135 addflag('confirm-exit', 'TerminalInteractiveShell.confirm_exit',
136 """Set to confirm when you try to exit IPython with an EOF (Control-D
136 """Set to confirm when you try to exit IPython with an EOF (Control-D
137 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
137 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
138 you can force a direct exit without any confirmation.""",
138 you can force a direct exit without any confirmation.""",
139 "Don't prompt the user when exiting."
139 "Don't prompt the user when exiting."
140 )
140 )
141 addflag('term-title', 'TerminalInteractiveShell.term_title',
141 addflag('term-title', 'TerminalInteractiveShell.term_title',
142 "Enable auto setting the terminal title.",
142 "Enable auto setting the terminal title.",
143 "Disable auto setting the terminal title."
143 "Disable auto setting the terminal title."
144 )
144 )
145 classic_config = Config()
145 classic_config = Config()
146 classic_config.InteractiveShell.cache_size = 0
146 classic_config.InteractiveShell.cache_size = 0
147 classic_config.PlainTextFormatter.pprint = False
147 classic_config.PlainTextFormatter.pprint = False
148 classic_config.PromptManager.in_template = '>>> '
148 classic_config.PromptManager.in_template = '>>> '
149 classic_config.PromptManager.in2_template = '... '
149 classic_config.PromptManager.in2_template = '... '
150 classic_config.PromptManager.out_template = ''
150 classic_config.PromptManager.out_template = ''
151 classic_config.InteractiveShell.separate_in = ''
151 classic_config.InteractiveShell.separate_in = ''
152 classic_config.InteractiveShell.separate_out = ''
152 classic_config.InteractiveShell.separate_out = ''
153 classic_config.InteractiveShell.separate_out2 = ''
153 classic_config.InteractiveShell.separate_out2 = ''
154 classic_config.InteractiveShell.colors = 'NoColor'
154 classic_config.InteractiveShell.colors = 'NoColor'
155 classic_config.InteractiveShell.xmode = 'Plain'
155 classic_config.InteractiveShell.xmode = 'Plain'
156
156
157 frontend_flags['classic']=(
157 frontend_flags['classic']=(
158 classic_config,
158 classic_config,
159 "Gives IPython a similar feel to the classic Python prompt."
159 "Gives IPython a similar feel to the classic Python prompt."
160 )
160 )
161 # # log doesn't make so much sense this way anymore
161 # # log doesn't make so much sense this way anymore
162 # paa('--log','-l',
162 # paa('--log','-l',
163 # action='store_true', dest='InteractiveShell.logstart',
163 # action='store_true', dest='InteractiveShell.logstart',
164 # help="Start logging to the default log file (./ipython_log.py).")
164 # help="Start logging to the default log file (./ipython_log.py).")
165 #
165 #
166 # # quick is harder to implement
166 # # quick is harder to implement
167 frontend_flags['quick']=(
167 frontend_flags['quick']=(
168 {'TerminalIPythonApp' : {'quick' : True}},
168 {'TerminalIPythonApp' : {'quick' : True}},
169 "Enable quick startup with no config files."
169 "Enable quick startup with no config files."
170 )
170 )
171
171
172 frontend_flags['i'] = (
172 frontend_flags['i'] = (
173 {'TerminalIPythonApp' : {'force_interact' : True}},
173 {'TerminalIPythonApp' : {'force_interact' : True}},
174 """If running code from the command line, become interactive afterwards.
174 """If running code from the command line, become interactive afterwards."""
175 Note: can also be given simply as '-i'."""
176 )
175 )
177 flags.update(frontend_flags)
176 flags.update(frontend_flags)
178
177
179 aliases = dict(base_aliases)
178 aliases = dict(base_aliases)
180 aliases.update(shell_aliases)
179 aliases.update(shell_aliases)
181
180
182 #-----------------------------------------------------------------------------
181 #-----------------------------------------------------------------------------
183 # Main classes and functions
182 # Main classes and functions
184 #-----------------------------------------------------------------------------
183 #-----------------------------------------------------------------------------
185
184
186
185
187 class LocateIPythonApp(BaseIPythonApplication):
186 class LocateIPythonApp(BaseIPythonApplication):
188 description = """print the path to the IPython dir"""
187 description = """print the path to the IPython dir"""
189 subcommands = Dict(dict(
188 subcommands = Dict(dict(
190 profile=('IPython.core.profileapp.ProfileLocate',
189 profile=('IPython.core.profileapp.ProfileLocate',
191 "print the path to an IPython profile directory",
190 "print the path to an IPython profile directory",
192 ),
191 ),
193 ))
192 ))
194 def start(self):
193 def start(self):
195 if self.subapp is not None:
194 if self.subapp is not None:
196 return self.subapp.start()
195 return self.subapp.start()
197 else:
196 else:
198 print(self.ipython_dir)
197 print(self.ipython_dir)
199
198
200
199
201 class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):
200 class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):
202 name = u'ipython'
201 name = u'ipython'
203 description = usage.cl_usage
202 description = usage.cl_usage
204 crash_handler_class = IPAppCrashHandler
203 crash_handler_class = IPAppCrashHandler
205 examples = _examples
204 examples = _examples
206
205
207 flags = Dict(flags)
206 flags = Dict(flags)
208 aliases = Dict(aliases)
207 aliases = Dict(aliases)
209 classes = List()
208 classes = List()
210 def _classes_default(self):
209 def _classes_default(self):
211 """This has to be in a method, for TerminalIPythonApp to be available."""
210 """This has to be in a method, for TerminalIPythonApp to be available."""
212 return [
211 return [
213 InteractiveShellApp, # ShellApp comes before TerminalApp, because
212 InteractiveShellApp, # ShellApp comes before TerminalApp, because
214 self.__class__, # it will also affect subclasses (e.g. QtConsole)
213 self.__class__, # it will also affect subclasses (e.g. QtConsole)
215 TerminalInteractiveShell,
214 TerminalInteractiveShell,
216 PromptManager,
215 PromptManager,
217 HistoryManager,
216 HistoryManager,
218 ProfileDir,
217 ProfileDir,
219 PlainTextFormatter,
218 PlainTextFormatter,
220 IPCompleter,
219 IPCompleter,
221 ScriptMagics,
220 ScriptMagics,
222 StoreMagics,
221 StoreMagics,
223 ]
222 ]
224
223
225 subcommands = dict(
224 subcommands = dict(
226 qtconsole=('IPython.qt.console.qtconsoleapp.IPythonQtConsoleApp',
225 qtconsole=('IPython.qt.console.qtconsoleapp.IPythonQtConsoleApp',
227 """Launch the IPython Qt Console."""
226 """Launch the IPython Qt Console."""
228 ),
227 ),
229 notebook=('IPython.html.notebookapp.NotebookApp',
228 notebook=('IPython.html.notebookapp.NotebookApp',
230 """Launch the IPython HTML Notebook Server."""
229 """Launch the IPython HTML Notebook Server."""
231 ),
230 ),
232 profile = ("IPython.core.profileapp.ProfileApp",
231 profile = ("IPython.core.profileapp.ProfileApp",
233 "Create and manage IPython profiles."
232 "Create and manage IPython profiles."
234 ),
233 ),
235 kernel = ("IPython.kernel.zmq.kernelapp.IPKernelApp",
234 kernel = ("IPython.kernel.zmq.kernelapp.IPKernelApp",
236 "Start a kernel without an attached frontend."
235 "Start a kernel without an attached frontend."
237 ),
236 ),
238 console=('IPython.terminal.console.app.ZMQTerminalIPythonApp',
237 console=('IPython.terminal.console.app.ZMQTerminalIPythonApp',
239 """Launch the IPython terminal-based Console."""
238 """Launch the IPython terminal-based Console."""
240 ),
239 ),
241 locate=('IPython.terminal.ipapp.LocateIPythonApp',
240 locate=('IPython.terminal.ipapp.LocateIPythonApp',
242 LocateIPythonApp.description
241 LocateIPythonApp.description
243 ),
242 ),
244 history=('IPython.core.historyapp.HistoryApp',
243 history=('IPython.core.historyapp.HistoryApp',
245 "Manage the IPython history database."
244 "Manage the IPython history database."
246 ),
245 ),
247 nbconvert=('IPython.nbconvert.nbconvertapp.NbConvertApp',
246 nbconvert=('IPython.nbconvert.nbconvertapp.NbConvertApp',
248 "Convert notebooks to/from other formats."
247 "Convert notebooks to/from other formats."
249 ),
248 ),
250 trust=('IPython.nbformat.sign.TrustNotebookApp',
249 trust=('IPython.nbformat.sign.TrustNotebookApp',
251 "Sign notebooks to trust their potentially unsafe contents at load."
250 "Sign notebooks to trust their potentially unsafe contents at load."
252 ),
251 ),
253 kernelspec=('IPython.kernel.kernelspecapp.KernelSpecApp',
252 kernelspec=('IPython.kernel.kernelspecapp.KernelSpecApp',
254 "Manage IPython kernel specifications."
253 "Manage IPython kernel specifications."
255 ),
254 ),
256 )
255 )
257 subcommands['install-nbextension'] = (
256 subcommands['install-nbextension'] = (
258 "IPython.html.nbextensions.NBExtensionApp",
257 "IPython.html.nbextensions.NBExtensionApp",
259 "Install IPython notebook extension files"
258 "Install IPython notebook extension files"
260 )
259 )
261
260
262 # *do* autocreate requested profile, but don't create the config file.
261 # *do* autocreate requested profile, but don't create the config file.
263 auto_create=Bool(True)
262 auto_create=Bool(True)
264 # configurables
263 # configurables
265 ignore_old_config=Bool(False, config=True,
264 ignore_old_config=Bool(False, config=True,
266 help="Suppress warning messages about legacy config files"
265 help="Suppress warning messages about legacy config files"
267 )
266 )
268 quick = Bool(False, config=True,
267 quick = Bool(False, config=True,
269 help="""Start IPython quickly by skipping the loading of config files."""
268 help="""Start IPython quickly by skipping the loading of config files."""
270 )
269 )
271 def _quick_changed(self, name, old, new):
270 def _quick_changed(self, name, old, new):
272 if new:
271 if new:
273 self.load_config_file = lambda *a, **kw: None
272 self.load_config_file = lambda *a, **kw: None
274 self.ignore_old_config=True
273 self.ignore_old_config=True
275
274
276 display_banner = Bool(True, config=True,
275 display_banner = Bool(True, config=True,
277 help="Whether to display a banner upon starting IPython."
276 help="Whether to display a banner upon starting IPython."
278 )
277 )
279
278
280 # if there is code of files to run from the cmd line, don't interact
279 # if there is code of files to run from the cmd line, don't interact
281 # unless the --i flag (App.force_interact) is true.
280 # unless the --i flag (App.force_interact) is true.
282 force_interact = Bool(False, config=True,
281 force_interact = Bool(False, config=True,
283 help="""If a command or file is given via the command-line,
282 help="""If a command or file is given via the command-line,
284 e.g. 'ipython foo.py', start an interactive shell after executing the
283 e.g. 'ipython foo.py', start an interactive shell after executing the
285 file or command."""
284 file or command."""
286 )
285 )
287 def _force_interact_changed(self, name, old, new):
286 def _force_interact_changed(self, name, old, new):
288 if new:
287 if new:
289 self.interact = True
288 self.interact = True
290
289
291 def _file_to_run_changed(self, name, old, new):
290 def _file_to_run_changed(self, name, old, new):
292 if new:
291 if new:
293 self.something_to_run = True
292 self.something_to_run = True
294 if new and not self.force_interact:
293 if new and not self.force_interact:
295 self.interact = False
294 self.interact = False
296 _code_to_run_changed = _file_to_run_changed
295 _code_to_run_changed = _file_to_run_changed
297 _module_to_run_changed = _file_to_run_changed
296 _module_to_run_changed = _file_to_run_changed
298
297
299 # internal, not-configurable
298 # internal, not-configurable
300 interact=Bool(True)
299 interact=Bool(True)
301 something_to_run=Bool(False)
300 something_to_run=Bool(False)
302
301
303 def parse_command_line(self, argv=None):
302 def parse_command_line(self, argv=None):
304 """override to allow old '-pylab' flag with deprecation warning"""
303 """override to allow old '-pylab' flag with deprecation warning"""
305
304
306 argv = sys.argv[1:] if argv is None else argv
305 argv = sys.argv[1:] if argv is None else argv
307
306
308 if '-pylab' in argv:
307 if '-pylab' in argv:
309 # deprecated `-pylab` given,
308 # deprecated `-pylab` given,
310 # warn and transform into current syntax
309 # warn and transform into current syntax
311 argv = argv[:] # copy, don't clobber
310 argv = argv[:] # copy, don't clobber
312 idx = argv.index('-pylab')
311 idx = argv.index('-pylab')
313 warn.warn("`-pylab` flag has been deprecated.\n"
312 warn.warn("`-pylab` flag has been deprecated.\n"
314 " Use `--matplotlib <backend>` and import pylab manually.")
313 " Use `--matplotlib <backend>` and import pylab manually.")
315 argv[idx] = '--pylab'
314 argv[idx] = '--pylab'
316
315
317 return super(TerminalIPythonApp, self).parse_command_line(argv)
316 return super(TerminalIPythonApp, self).parse_command_line(argv)
318
317
319 @catch_config_error
318 @catch_config_error
320 def initialize(self, argv=None):
319 def initialize(self, argv=None):
321 """Do actions after construct, but before starting the app."""
320 """Do actions after construct, but before starting the app."""
322 super(TerminalIPythonApp, self).initialize(argv)
321 super(TerminalIPythonApp, self).initialize(argv)
323 if self.subapp is not None:
322 if self.subapp is not None:
324 # don't bother initializing further, starting subapp
323 # don't bother initializing further, starting subapp
325 return
324 return
326 if not self.ignore_old_config:
325 if not self.ignore_old_config:
327 check_for_old_config(self.ipython_dir)
326 check_for_old_config(self.ipython_dir)
328 # print self.extra_args
327 # print self.extra_args
329 if self.extra_args and not self.something_to_run:
328 if self.extra_args and not self.something_to_run:
330 self.file_to_run = self.extra_args[0]
329 self.file_to_run = self.extra_args[0]
331 self.init_path()
330 self.init_path()
332 # create the shell
331 # create the shell
333 self.init_shell()
332 self.init_shell()
334 # and draw the banner
333 # and draw the banner
335 self.init_banner()
334 self.init_banner()
336 # Now a variety of things that happen after the banner is printed.
335 # Now a variety of things that happen after the banner is printed.
337 self.init_gui_pylab()
336 self.init_gui_pylab()
338 self.init_extensions()
337 self.init_extensions()
339 self.init_code()
338 self.init_code()
340
339
341 def init_shell(self):
340 def init_shell(self):
342 """initialize the InteractiveShell instance"""
341 """initialize the InteractiveShell instance"""
343 # Create an InteractiveShell instance.
342 # Create an InteractiveShell instance.
344 # shell.display_banner should always be False for the terminal
343 # shell.display_banner should always be False for the terminal
345 # based app, because we call shell.show_banner() by hand below
344 # based app, because we call shell.show_banner() by hand below
346 # so the banner shows *before* all extension loading stuff.
345 # so the banner shows *before* all extension loading stuff.
347 self.shell = TerminalInteractiveShell.instance(parent=self,
346 self.shell = TerminalInteractiveShell.instance(parent=self,
348 display_banner=False, profile_dir=self.profile_dir,
347 display_banner=False, profile_dir=self.profile_dir,
349 ipython_dir=self.ipython_dir, user_ns=self.user_ns)
348 ipython_dir=self.ipython_dir, user_ns=self.user_ns)
350 self.shell.configurables.append(self)
349 self.shell.configurables.append(self)
351
350
352 def init_banner(self):
351 def init_banner(self):
353 """optionally display the banner"""
352 """optionally display the banner"""
354 if self.display_banner and self.interact:
353 if self.display_banner and self.interact:
355 self.shell.show_banner()
354 self.shell.show_banner()
356 # Make sure there is a space below the banner.
355 # Make sure there is a space below the banner.
357 if self.log_level <= logging.INFO: print()
356 if self.log_level <= logging.INFO: print()
358
357
359 def _pylab_changed(self, name, old, new):
358 def _pylab_changed(self, name, old, new):
360 """Replace --pylab='inline' with --pylab='auto'"""
359 """Replace --pylab='inline' with --pylab='auto'"""
361 if new == 'inline':
360 if new == 'inline':
362 warn.warn("'inline' not available as pylab backend, "
361 warn.warn("'inline' not available as pylab backend, "
363 "using 'auto' instead.")
362 "using 'auto' instead.")
364 self.pylab = 'auto'
363 self.pylab = 'auto'
365
364
366 def start(self):
365 def start(self):
367 if self.subapp is not None:
366 if self.subapp is not None:
368 return self.subapp.start()
367 return self.subapp.start()
369 # perform any prexec steps:
368 # perform any prexec steps:
370 if self.interact:
369 if self.interact:
371 self.log.debug("Starting IPython's mainloop...")
370 self.log.debug("Starting IPython's mainloop...")
372 self.shell.mainloop()
371 self.shell.mainloop()
373 else:
372 else:
374 self.log.debug("IPython not interactive...")
373 self.log.debug("IPython not interactive...")
375
374
376 def load_default_config(ipython_dir=None):
375 def load_default_config(ipython_dir=None):
377 """Load the default config file from the default ipython_dir.
376 """Load the default config file from the default ipython_dir.
378
377
379 This is useful for embedded shells.
378 This is useful for embedded shells.
380 """
379 """
381 if ipython_dir is None:
380 if ipython_dir is None:
382 ipython_dir = get_ipython_dir()
381 ipython_dir = get_ipython_dir()
383
382
384 profile_dir = os.path.join(ipython_dir, 'profile_default')
383 profile_dir = os.path.join(ipython_dir, 'profile_default')
385
384
386 config = Config()
385 config = Config()
387 for cf in Application._load_config_files("ipython_config", path=profile_dir):
386 for cf in Application._load_config_files("ipython_config", path=profile_dir):
388 config.update(cf)
387 config.update(cf)
389
388
390 return config
389 return config
391
390
392 launch_new_instance = TerminalIPythonApp.launch_instance
391 launch_new_instance = TerminalIPythonApp.launch_instance
393
392
394
393
395 if __name__ == '__main__':
394 if __name__ == '__main__':
396 launch_new_instance()
395 launch_new_instance()
General Comments 0
You need to be logged in to leave comments. Login now