##// END OF EJS Templates
Defer saving raw_input to shell initialisation, so that we pick up the modified version needed for PyPy's readline to work.
Thomas Kluyver -
Show More
@@ -1,2581 +1,2581 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Main IPython class."""
2 """Main IPython class."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 # Copyright (C) 2008-2011 The IPython Development Team
7 # Copyright (C) 2008-2011 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 from __future__ import with_statement
17 from __future__ import with_statement
18 from __future__ import absolute_import
18 from __future__ import absolute_import
19
19
20 import __builtin__
20 import __builtin__
21 import __future__
21 import __future__
22 import abc
22 import abc
23 import ast
23 import ast
24 import atexit
24 import atexit
25 import codeop
25 import codeop
26 import inspect
26 import inspect
27 import os
27 import os
28 import re
28 import re
29 import sys
29 import sys
30 import tempfile
30 import tempfile
31 import types
31 import types
32 from contextlib import nested
32 from contextlib import nested
33
33
34 from IPython.config.configurable import SingletonConfigurable
34 from IPython.config.configurable import SingletonConfigurable
35 from IPython.core import debugger, oinspect
35 from IPython.core import debugger, oinspect
36 from IPython.core import history as ipcorehist
36 from IPython.core import history as ipcorehist
37 from IPython.core import page
37 from IPython.core import page
38 from IPython.core import prefilter
38 from IPython.core import prefilter
39 from IPython.core import shadowns
39 from IPython.core import shadowns
40 from IPython.core import ultratb
40 from IPython.core import ultratb
41 from IPython.core.alias import AliasManager, AliasError
41 from IPython.core.alias import AliasManager, AliasError
42 from IPython.core.autocall import ExitAutocall
42 from IPython.core.autocall import ExitAutocall
43 from IPython.core.builtin_trap import BuiltinTrap
43 from IPython.core.builtin_trap import BuiltinTrap
44 from IPython.core.compilerop import CachingCompiler
44 from IPython.core.compilerop import CachingCompiler
45 from IPython.core.display_trap import DisplayTrap
45 from IPython.core.display_trap import DisplayTrap
46 from IPython.core.displayhook import DisplayHook
46 from IPython.core.displayhook import DisplayHook
47 from IPython.core.displaypub import DisplayPublisher
47 from IPython.core.displaypub import DisplayPublisher
48 from IPython.core.error import TryNext, UsageError
48 from IPython.core.error import TryNext, UsageError
49 from IPython.core.extensions import ExtensionManager
49 from IPython.core.extensions import ExtensionManager
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
51 from IPython.core.formatters import DisplayFormatter
51 from IPython.core.formatters import DisplayFormatter
52 from IPython.core.history import HistoryManager
52 from IPython.core.history import HistoryManager
53 from IPython.core.inputsplitter import IPythonInputSplitter
53 from IPython.core.inputsplitter import IPythonInputSplitter
54 from IPython.core.logger import Logger
54 from IPython.core.logger import Logger
55 from IPython.core.macro import Macro
55 from IPython.core.macro import Macro
56 from IPython.core.magic import Magic
56 from IPython.core.magic import Magic
57 from IPython.core.payload import PayloadManager
57 from IPython.core.payload import PayloadManager
58 from IPython.core.plugin import PluginManager
58 from IPython.core.plugin import PluginManager
59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
60 from IPython.core.profiledir import ProfileDir
60 from IPython.core.profiledir import ProfileDir
61 from IPython.external.Itpl import ItplNS
61 from IPython.external.Itpl import ItplNS
62 from IPython.utils import PyColorize
62 from IPython.utils import PyColorize
63 from IPython.utils import io
63 from IPython.utils import io
64 from IPython.utils.doctestreload import doctest_reload
64 from IPython.utils.doctestreload import doctest_reload
65 from IPython.utils.io import ask_yes_no, rprint
65 from IPython.utils.io import ask_yes_no, rprint
66 from IPython.utils.ipstruct import Struct
66 from IPython.utils.ipstruct import Struct
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
68 from IPython.utils.pickleshare import PickleShareDB
68 from IPython.utils.pickleshare import PickleShareDB
69 from IPython.utils.process import system, getoutput
69 from IPython.utils.process import system, getoutput
70 from IPython.utils.strdispatch import StrDispatch
70 from IPython.utils.strdispatch import StrDispatch
71 from IPython.utils.syspathcontext import prepended_to_syspath
71 from IPython.utils.syspathcontext import prepended_to_syspath
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
73 from IPython.utils.traitlets import (Int, CBool, CaselessStrEnum, Enum,
73 from IPython.utils.traitlets import (Int, CBool, CaselessStrEnum, Enum,
74 List, Unicode, Instance, Type)
74 List, Unicode, Instance, Type)
75 from IPython.utils.warn import warn, error, fatal
75 from IPython.utils.warn import warn, error, fatal
76 import IPython.core.hooks
76 import IPython.core.hooks
77
77
78 #-----------------------------------------------------------------------------
78 #-----------------------------------------------------------------------------
79 # Globals
79 # Globals
80 #-----------------------------------------------------------------------------
80 #-----------------------------------------------------------------------------
81
81
82 # compiled regexps for autoindent management
82 # compiled regexps for autoindent management
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
84
84
85 #-----------------------------------------------------------------------------
85 #-----------------------------------------------------------------------------
86 # Utilities
86 # Utilities
87 #-----------------------------------------------------------------------------
87 #-----------------------------------------------------------------------------
88
88
89 # store the builtin raw_input globally, and use this always, in case user code
90 # overwrites it (like wx.py.PyShell does)
91 raw_input_original = raw_input
92
93 def softspace(file, newvalue):
89 def softspace(file, newvalue):
94 """Copied from code.py, to remove the dependency"""
90 """Copied from code.py, to remove the dependency"""
95
91
96 oldvalue = 0
92 oldvalue = 0
97 try:
93 try:
98 oldvalue = file.softspace
94 oldvalue = file.softspace
99 except AttributeError:
95 except AttributeError:
100 pass
96 pass
101 try:
97 try:
102 file.softspace = newvalue
98 file.softspace = newvalue
103 except (AttributeError, TypeError):
99 except (AttributeError, TypeError):
104 # "attribute-less object" or "read-only attributes"
100 # "attribute-less object" or "read-only attributes"
105 pass
101 pass
106 return oldvalue
102 return oldvalue
107
103
108
104
109 def no_op(*a, **kw): pass
105 def no_op(*a, **kw): pass
110
106
111 class SpaceInInput(Exception): pass
107 class SpaceInInput(Exception): pass
112
108
113 class Bunch: pass
109 class Bunch: pass
114
110
115
111
116 def get_default_colors():
112 def get_default_colors():
117 if sys.platform=='darwin':
113 if sys.platform=='darwin':
118 return "LightBG"
114 return "LightBG"
119 elif os.name=='nt':
115 elif os.name=='nt':
120 return 'Linux'
116 return 'Linux'
121 else:
117 else:
122 return 'Linux'
118 return 'Linux'
123
119
124
120
125 class SeparateUnicode(Unicode):
121 class SeparateUnicode(Unicode):
126 """A Unicode subclass to validate separate_in, separate_out, etc.
122 """A Unicode subclass to validate separate_in, separate_out, etc.
127
123
128 This is a Unicode based trait that converts '0'->'' and '\\n'->'\n'.
124 This is a Unicode based trait that converts '0'->'' and '\\n'->'\n'.
129 """
125 """
130
126
131 def validate(self, obj, value):
127 def validate(self, obj, value):
132 if value == '0': value = ''
128 if value == '0': value = ''
133 value = value.replace('\\n','\n')
129 value = value.replace('\\n','\n')
134 return super(SeparateUnicode, self).validate(obj, value)
130 return super(SeparateUnicode, self).validate(obj, value)
135
131
136
132
137 class ReadlineNoRecord(object):
133 class ReadlineNoRecord(object):
138 """Context manager to execute some code, then reload readline history
134 """Context manager to execute some code, then reload readline history
139 so that interactive input to the code doesn't appear when pressing up."""
135 so that interactive input to the code doesn't appear when pressing up."""
140 def __init__(self, shell):
136 def __init__(self, shell):
141 self.shell = shell
137 self.shell = shell
142 self._nested_level = 0
138 self._nested_level = 0
143
139
144 def __enter__(self):
140 def __enter__(self):
145 if self._nested_level == 0:
141 if self._nested_level == 0:
146 try:
142 try:
147 self.orig_length = self.current_length()
143 self.orig_length = self.current_length()
148 self.readline_tail = self.get_readline_tail()
144 self.readline_tail = self.get_readline_tail()
149 except (AttributeError, IndexError): # Can fail with pyreadline
145 except (AttributeError, IndexError): # Can fail with pyreadline
150 self.orig_length, self.readline_tail = 999999, []
146 self.orig_length, self.readline_tail = 999999, []
151 self._nested_level += 1
147 self._nested_level += 1
152
148
153 def __exit__(self, type, value, traceback):
149 def __exit__(self, type, value, traceback):
154 self._nested_level -= 1
150 self._nested_level -= 1
155 if self._nested_level == 0:
151 if self._nested_level == 0:
156 # Try clipping the end if it's got longer
152 # Try clipping the end if it's got longer
157 try:
153 try:
158 e = self.current_length() - self.orig_length
154 e = self.current_length() - self.orig_length
159 if e > 0:
155 if e > 0:
160 for _ in range(e):
156 for _ in range(e):
161 self.shell.readline.remove_history_item(self.orig_length)
157 self.shell.readline.remove_history_item(self.orig_length)
162
158
163 # If it still doesn't match, just reload readline history.
159 # If it still doesn't match, just reload readline history.
164 if self.current_length() != self.orig_length \
160 if self.current_length() != self.orig_length \
165 or self.get_readline_tail() != self.readline_tail:
161 or self.get_readline_tail() != self.readline_tail:
166 self.shell.refill_readline_hist()
162 self.shell.refill_readline_hist()
167 except (AttributeError, IndexError):
163 except (AttributeError, IndexError):
168 pass
164 pass
169 # Returning False will cause exceptions to propagate
165 # Returning False will cause exceptions to propagate
170 return False
166 return False
171
167
172 def current_length(self):
168 def current_length(self):
173 return self.shell.readline.get_current_history_length()
169 return self.shell.readline.get_current_history_length()
174
170
175 def get_readline_tail(self, n=10):
171 def get_readline_tail(self, n=10):
176 """Get the last n items in readline history."""
172 """Get the last n items in readline history."""
177 end = self.shell.readline.get_current_history_length() + 1
173 end = self.shell.readline.get_current_history_length() + 1
178 start = max(end-n, 1)
174 start = max(end-n, 1)
179 ghi = self.shell.readline.get_history_item
175 ghi = self.shell.readline.get_history_item
180 return [ghi(x) for x in range(start, end)]
176 return [ghi(x) for x in range(start, end)]
181
177
182
178
183 _autocall_help = """
179 _autocall_help = """
184 Make IPython automatically call any callable object even if
180 Make IPython automatically call any callable object even if
185 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
181 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
186 automatically. The value can be '0' to disable the feature, '1' for 'smart'
182 automatically. The value can be '0' to disable the feature, '1' for 'smart'
187 autocall, where it is not applied if there are no more arguments on the line,
183 autocall, where it is not applied if there are no more arguments on the line,
188 and '2' for 'full' autocall, where all callable objects are automatically
184 and '2' for 'full' autocall, where all callable objects are automatically
189 called (even if no arguments are present). The default is '1'.
185 called (even if no arguments are present). The default is '1'.
190 """
186 """
191
187
192 #-----------------------------------------------------------------------------
188 #-----------------------------------------------------------------------------
193 # Main IPython class
189 # Main IPython class
194 #-----------------------------------------------------------------------------
190 #-----------------------------------------------------------------------------
195
191
196 class InteractiveShell(SingletonConfigurable, Magic):
192 class InteractiveShell(SingletonConfigurable, Magic):
197 """An enhanced, interactive shell for Python."""
193 """An enhanced, interactive shell for Python."""
198
194
199 _instance = None
195 _instance = None
200
196
201 autocall = Enum((0,1,2), default_value=1, config=True, help=
197 autocall = Enum((0,1,2), default_value=1, config=True, help=
202 """
198 """
203 Make IPython automatically call any callable object even if you didn't
199 Make IPython automatically call any callable object even if you didn't
204 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
200 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
205 automatically. The value can be '0' to disable the feature, '1' for
201 automatically. The value can be '0' to disable the feature, '1' for
206 'smart' autocall, where it is not applied if there are no more
202 'smart' autocall, where it is not applied if there are no more
207 arguments on the line, and '2' for 'full' autocall, where all callable
203 arguments on the line, and '2' for 'full' autocall, where all callable
208 objects are automatically called (even if no arguments are present).
204 objects are automatically called (even if no arguments are present).
209 The default is '1'.
205 The default is '1'.
210 """
206 """
211 )
207 )
212 # TODO: remove all autoindent logic and put into frontends.
208 # TODO: remove all autoindent logic and put into frontends.
213 # We can't do this yet because even runlines uses the autoindent.
209 # We can't do this yet because even runlines uses the autoindent.
214 autoindent = CBool(True, config=True, help=
210 autoindent = CBool(True, config=True, help=
215 """
211 """
216 Autoindent IPython code entered interactively.
212 Autoindent IPython code entered interactively.
217 """
213 """
218 )
214 )
219 automagic = CBool(True, config=True, help=
215 automagic = CBool(True, config=True, help=
220 """
216 """
221 Enable magic commands to be called without the leading %.
217 Enable magic commands to be called without the leading %.
222 """
218 """
223 )
219 )
224 cache_size = Int(1000, config=True, help=
220 cache_size = Int(1000, config=True, help=
225 """
221 """
226 Set the size of the output cache. The default is 1000, you can
222 Set the size of the output cache. The default is 1000, you can
227 change it permanently in your config file. Setting it to 0 completely
223 change it permanently in your config file. Setting it to 0 completely
228 disables the caching system, and the minimum value accepted is 20 (if
224 disables the caching system, and the minimum value accepted is 20 (if
229 you provide a value less than 20, it is reset to 0 and a warning is
225 you provide a value less than 20, it is reset to 0 and a warning is
230 issued). This limit is defined because otherwise you'll spend more
226 issued). This limit is defined because otherwise you'll spend more
231 time re-flushing a too small cache than working
227 time re-flushing a too small cache than working
232 """
228 """
233 )
229 )
234 color_info = CBool(True, config=True, help=
230 color_info = CBool(True, config=True, help=
235 """
231 """
236 Use colors for displaying information about objects. Because this
232 Use colors for displaying information about objects. Because this
237 information is passed through a pager (like 'less'), and some pagers
233 information is passed through a pager (like 'less'), and some pagers
238 get confused with color codes, this capability can be turned off.
234 get confused with color codes, this capability can be turned off.
239 """
235 """
240 )
236 )
241 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
237 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
242 default_value=get_default_colors(), config=True,
238 default_value=get_default_colors(), config=True,
243 help="Set the color scheme (NoColor, Linux, or LightBG)."
239 help="Set the color scheme (NoColor, Linux, or LightBG)."
244 )
240 )
245 debug = CBool(False, config=True)
241 debug = CBool(False, config=True)
246 deep_reload = CBool(False, config=True, help=
242 deep_reload = CBool(False, config=True, help=
247 """
243 """
248 Enable deep (recursive) reloading by default. IPython can use the
244 Enable deep (recursive) reloading by default. IPython can use the
249 deep_reload module which reloads changes in modules recursively (it
245 deep_reload module which reloads changes in modules recursively (it
250 replaces the reload() function, so you don't need to change anything to
246 replaces the reload() function, so you don't need to change anything to
251 use it). deep_reload() forces a full reload of modules whose code may
247 use it). deep_reload() forces a full reload of modules whose code may
252 have changed, which the default reload() function does not. When
248 have changed, which the default reload() function does not. When
253 deep_reload is off, IPython will use the normal reload(), but
249 deep_reload is off, IPython will use the normal reload(), but
254 deep_reload will still be available as dreload().
250 deep_reload will still be available as dreload().
255 """
251 """
256 )
252 )
257 display_formatter = Instance(DisplayFormatter)
253 display_formatter = Instance(DisplayFormatter)
258 displayhook_class = Type(DisplayHook)
254 displayhook_class = Type(DisplayHook)
259 display_pub_class = Type(DisplayPublisher)
255 display_pub_class = Type(DisplayPublisher)
260
256
261 exit_now = CBool(False)
257 exit_now = CBool(False)
262 exiter = Instance(ExitAutocall)
258 exiter = Instance(ExitAutocall)
263 def _exiter_default(self):
259 def _exiter_default(self):
264 return ExitAutocall(self)
260 return ExitAutocall(self)
265 # Monotonically increasing execution counter
261 # Monotonically increasing execution counter
266 execution_count = Int(1)
262 execution_count = Int(1)
267 filename = Unicode("<ipython console>")
263 filename = Unicode("<ipython console>")
268 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
264 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
269
265
270 # Input splitter, to split entire cells of input into either individual
266 # Input splitter, to split entire cells of input into either individual
271 # interactive statements or whole blocks.
267 # interactive statements or whole blocks.
272 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
268 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
273 (), {})
269 (), {})
274 logstart = CBool(False, config=True, help=
270 logstart = CBool(False, config=True, help=
275 """
271 """
276 Start logging to the default log file.
272 Start logging to the default log file.
277 """
273 """
278 )
274 )
279 logfile = Unicode('', config=True, help=
275 logfile = Unicode('', config=True, help=
280 """
276 """
281 The name of the logfile to use.
277 The name of the logfile to use.
282 """
278 """
283 )
279 )
284 logappend = Unicode('', config=True, help=
280 logappend = Unicode('', config=True, help=
285 """
281 """
286 Start logging to the given file in append mode.
282 Start logging to the given file in append mode.
287 """
283 """
288 )
284 )
289 object_info_string_level = Enum((0,1,2), default_value=0,
285 object_info_string_level = Enum((0,1,2), default_value=0,
290 config=True)
286 config=True)
291 pdb = CBool(False, config=True, help=
287 pdb = CBool(False, config=True, help=
292 """
288 """
293 Automatically call the pdb debugger after every exception.
289 Automatically call the pdb debugger after every exception.
294 """
290 """
295 )
291 )
296
292
297 prompt_in1 = Unicode('In [\\#]: ', config=True)
293 prompt_in1 = Unicode('In [\\#]: ', config=True)
298 prompt_in2 = Unicode(' .\\D.: ', config=True)
294 prompt_in2 = Unicode(' .\\D.: ', config=True)
299 prompt_out = Unicode('Out[\\#]: ', config=True)
295 prompt_out = Unicode('Out[\\#]: ', config=True)
300 prompts_pad_left = CBool(True, config=True)
296 prompts_pad_left = CBool(True, config=True)
301 quiet = CBool(False, config=True)
297 quiet = CBool(False, config=True)
302
298
303 history_length = Int(10000, config=True)
299 history_length = Int(10000, config=True)
304
300
305 # The readline stuff will eventually be moved to the terminal subclass
301 # The readline stuff will eventually be moved to the terminal subclass
306 # but for now, we can't do that as readline is welded in everywhere.
302 # but for now, we can't do that as readline is welded in everywhere.
307 readline_use = CBool(True, config=True)
303 readline_use = CBool(True, config=True)
308 readline_merge_completions = CBool(True, config=True)
304 readline_merge_completions = CBool(True, config=True)
309 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
305 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
310 readline_remove_delims = Unicode('-/~', config=True)
306 readline_remove_delims = Unicode('-/~', config=True)
311 # don't use \M- bindings by default, because they
307 # don't use \M- bindings by default, because they
312 # conflict with 8-bit encodings. See gh-58,gh-88
308 # conflict with 8-bit encodings. See gh-58,gh-88
313 readline_parse_and_bind = List([
309 readline_parse_and_bind = List([
314 'tab: complete',
310 'tab: complete',
315 '"\C-l": clear-screen',
311 '"\C-l": clear-screen',
316 'set show-all-if-ambiguous on',
312 'set show-all-if-ambiguous on',
317 '"\C-o": tab-insert',
313 '"\C-o": tab-insert',
318 '"\C-r": reverse-search-history',
314 '"\C-r": reverse-search-history',
319 '"\C-s": forward-search-history',
315 '"\C-s": forward-search-history',
320 '"\C-p": history-search-backward',
316 '"\C-p": history-search-backward',
321 '"\C-n": history-search-forward',
317 '"\C-n": history-search-forward',
322 '"\e[A": history-search-backward',
318 '"\e[A": history-search-backward',
323 '"\e[B": history-search-forward',
319 '"\e[B": history-search-forward',
324 '"\C-k": kill-line',
320 '"\C-k": kill-line',
325 '"\C-u": unix-line-discard',
321 '"\C-u": unix-line-discard',
326 ], allow_none=False, config=True)
322 ], allow_none=False, config=True)
327
323
328 # TODO: this part of prompt management should be moved to the frontends.
324 # TODO: this part of prompt management should be moved to the frontends.
329 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
325 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
330 separate_in = SeparateUnicode('\n', config=True)
326 separate_in = SeparateUnicode('\n', config=True)
331 separate_out = SeparateUnicode('', config=True)
327 separate_out = SeparateUnicode('', config=True)
332 separate_out2 = SeparateUnicode('', config=True)
328 separate_out2 = SeparateUnicode('', config=True)
333 wildcards_case_sensitive = CBool(True, config=True)
329 wildcards_case_sensitive = CBool(True, config=True)
334 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
330 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
335 default_value='Context', config=True)
331 default_value='Context', config=True)
336
332
337 # Subcomponents of InteractiveShell
333 # Subcomponents of InteractiveShell
338 alias_manager = Instance('IPython.core.alias.AliasManager')
334 alias_manager = Instance('IPython.core.alias.AliasManager')
339 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
335 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
340 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
336 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
341 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
337 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
342 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
338 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
343 plugin_manager = Instance('IPython.core.plugin.PluginManager')
339 plugin_manager = Instance('IPython.core.plugin.PluginManager')
344 payload_manager = Instance('IPython.core.payload.PayloadManager')
340 payload_manager = Instance('IPython.core.payload.PayloadManager')
345 history_manager = Instance('IPython.core.history.HistoryManager')
341 history_manager = Instance('IPython.core.history.HistoryManager')
346
342
347 profile_dir = Instance('IPython.core.application.ProfileDir')
343 profile_dir = Instance('IPython.core.application.ProfileDir')
348 @property
344 @property
349 def profile(self):
345 def profile(self):
350 if self.profile_dir is not None:
346 if self.profile_dir is not None:
351 name = os.path.basename(self.profile_dir.location)
347 name = os.path.basename(self.profile_dir.location)
352 return name.replace('profile_','')
348 return name.replace('profile_','')
353
349
354
350
355 # Private interface
351 # Private interface
356 _post_execute = Instance(dict)
352 _post_execute = Instance(dict)
357
353
358 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
354 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
359 user_ns=None, user_global_ns=None,
355 user_ns=None, user_global_ns=None,
360 custom_exceptions=((), None)):
356 custom_exceptions=((), None)):
361
357
362 # This is where traits with a config_key argument are updated
358 # This is where traits with a config_key argument are updated
363 # from the values on config.
359 # from the values on config.
364 super(InteractiveShell, self).__init__(config=config)
360 super(InteractiveShell, self).__init__(config=config)
365
361
366 # These are relatively independent and stateless
362 # These are relatively independent and stateless
367 self.init_ipython_dir(ipython_dir)
363 self.init_ipython_dir(ipython_dir)
368 self.init_profile_dir(profile_dir)
364 self.init_profile_dir(profile_dir)
369 self.init_instance_attrs()
365 self.init_instance_attrs()
370 self.init_environment()
366 self.init_environment()
371
367
372 # Create namespaces (user_ns, user_global_ns, etc.)
368 # Create namespaces (user_ns, user_global_ns, etc.)
373 self.init_create_namespaces(user_ns, user_global_ns)
369 self.init_create_namespaces(user_ns, user_global_ns)
374 # This has to be done after init_create_namespaces because it uses
370 # This has to be done after init_create_namespaces because it uses
375 # something in self.user_ns, but before init_sys_modules, which
371 # something in self.user_ns, but before init_sys_modules, which
376 # is the first thing to modify sys.
372 # is the first thing to modify sys.
377 # TODO: When we override sys.stdout and sys.stderr before this class
373 # TODO: When we override sys.stdout and sys.stderr before this class
378 # is created, we are saving the overridden ones here. Not sure if this
374 # is created, we are saving the overridden ones here. Not sure if this
379 # is what we want to do.
375 # is what we want to do.
380 self.save_sys_module_state()
376 self.save_sys_module_state()
381 self.init_sys_modules()
377 self.init_sys_modules()
382
378
383 # While we're trying to have each part of the code directly access what
379 # While we're trying to have each part of the code directly access what
384 # it needs without keeping redundant references to objects, we have too
380 # it needs without keeping redundant references to objects, we have too
385 # much legacy code that expects ip.db to exist.
381 # much legacy code that expects ip.db to exist.
386 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
382 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
387
383
388 self.init_history()
384 self.init_history()
389 self.init_encoding()
385 self.init_encoding()
390 self.init_prefilter()
386 self.init_prefilter()
391
387
392 Magic.__init__(self, self)
388 Magic.__init__(self, self)
393
389
394 self.init_syntax_highlighting()
390 self.init_syntax_highlighting()
395 self.init_hooks()
391 self.init_hooks()
396 self.init_pushd_popd_magic()
392 self.init_pushd_popd_magic()
397 # self.init_traceback_handlers use to be here, but we moved it below
393 # self.init_traceback_handlers use to be here, but we moved it below
398 # because it and init_io have to come after init_readline.
394 # because it and init_io have to come after init_readline.
399 self.init_user_ns()
395 self.init_user_ns()
400 self.init_logger()
396 self.init_logger()
401 self.init_alias()
397 self.init_alias()
402 self.init_builtins()
398 self.init_builtins()
403
399
404 # pre_config_initialization
400 # pre_config_initialization
405
401
406 # The next section should contain everything that was in ipmaker.
402 # The next section should contain everything that was in ipmaker.
407 self.init_logstart()
403 self.init_logstart()
408
404
409 # The following was in post_config_initialization
405 # The following was in post_config_initialization
410 self.init_inspector()
406 self.init_inspector()
411 # init_readline() must come before init_io(), because init_io uses
407 # init_readline() must come before init_io(), because init_io uses
412 # readline related things.
408 # readline related things.
413 self.init_readline()
409 self.init_readline()
410 # We save this here in case user code replaces raw_input, but it needs
411 # to be after init_readline(), because PyPy's readline works by replacing
412 # raw_input.
413 self.raw_input_original = raw_input
414 # init_completer must come after init_readline, because it needs to
414 # init_completer must come after init_readline, because it needs to
415 # know whether readline is present or not system-wide to configure the
415 # know whether readline is present or not system-wide to configure the
416 # completers, since the completion machinery can now operate
416 # completers, since the completion machinery can now operate
417 # independently of readline (e.g. over the network)
417 # independently of readline (e.g. over the network)
418 self.init_completer()
418 self.init_completer()
419 # TODO: init_io() needs to happen before init_traceback handlers
419 # TODO: init_io() needs to happen before init_traceback handlers
420 # because the traceback handlers hardcode the stdout/stderr streams.
420 # because the traceback handlers hardcode the stdout/stderr streams.
421 # This logic in in debugger.Pdb and should eventually be changed.
421 # This logic in in debugger.Pdb and should eventually be changed.
422 self.init_io()
422 self.init_io()
423 self.init_traceback_handlers(custom_exceptions)
423 self.init_traceback_handlers(custom_exceptions)
424 self.init_prompts()
424 self.init_prompts()
425 self.init_display_formatter()
425 self.init_display_formatter()
426 self.init_display_pub()
426 self.init_display_pub()
427 self.init_displayhook()
427 self.init_displayhook()
428 self.init_reload_doctest()
428 self.init_reload_doctest()
429 self.init_magics()
429 self.init_magics()
430 self.init_pdb()
430 self.init_pdb()
431 self.init_extension_manager()
431 self.init_extension_manager()
432 self.init_plugin_manager()
432 self.init_plugin_manager()
433 self.init_payload()
433 self.init_payload()
434 self.hooks.late_startup_hook()
434 self.hooks.late_startup_hook()
435 atexit.register(self.atexit_operations)
435 atexit.register(self.atexit_operations)
436
436
437 def get_ipython(self):
437 def get_ipython(self):
438 """Return the currently running IPython instance."""
438 """Return the currently running IPython instance."""
439 return self
439 return self
440
440
441 #-------------------------------------------------------------------------
441 #-------------------------------------------------------------------------
442 # Trait changed handlers
442 # Trait changed handlers
443 #-------------------------------------------------------------------------
443 #-------------------------------------------------------------------------
444
444
445 def _ipython_dir_changed(self, name, new):
445 def _ipython_dir_changed(self, name, new):
446 if not os.path.isdir(new):
446 if not os.path.isdir(new):
447 os.makedirs(new, mode = 0777)
447 os.makedirs(new, mode = 0777)
448
448
449 def set_autoindent(self,value=None):
449 def set_autoindent(self,value=None):
450 """Set the autoindent flag, checking for readline support.
450 """Set the autoindent flag, checking for readline support.
451
451
452 If called with no arguments, it acts as a toggle."""
452 If called with no arguments, it acts as a toggle."""
453
453
454 if not self.has_readline:
454 if not self.has_readline:
455 if os.name == 'posix':
455 if os.name == 'posix':
456 warn("The auto-indent feature requires the readline library")
456 warn("The auto-indent feature requires the readline library")
457 self.autoindent = 0
457 self.autoindent = 0
458 return
458 return
459 if value is None:
459 if value is None:
460 self.autoindent = not self.autoindent
460 self.autoindent = not self.autoindent
461 else:
461 else:
462 self.autoindent = value
462 self.autoindent = value
463
463
464 #-------------------------------------------------------------------------
464 #-------------------------------------------------------------------------
465 # init_* methods called by __init__
465 # init_* methods called by __init__
466 #-------------------------------------------------------------------------
466 #-------------------------------------------------------------------------
467
467
468 def init_ipython_dir(self, ipython_dir):
468 def init_ipython_dir(self, ipython_dir):
469 if ipython_dir is not None:
469 if ipython_dir is not None:
470 self.ipython_dir = ipython_dir
470 self.ipython_dir = ipython_dir
471 return
471 return
472
472
473 self.ipython_dir = get_ipython_dir()
473 self.ipython_dir = get_ipython_dir()
474
474
475 def init_profile_dir(self, profile_dir):
475 def init_profile_dir(self, profile_dir):
476 if profile_dir is not None:
476 if profile_dir is not None:
477 self.profile_dir = profile_dir
477 self.profile_dir = profile_dir
478 return
478 return
479 self.profile_dir =\
479 self.profile_dir =\
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
481
481
482 def init_instance_attrs(self):
482 def init_instance_attrs(self):
483 self.more = False
483 self.more = False
484
484
485 # command compiler
485 # command compiler
486 self.compile = CachingCompiler()
486 self.compile = CachingCompiler()
487
487
488 # Make an empty namespace, which extension writers can rely on both
488 # Make an empty namespace, which extension writers can rely on both
489 # existing and NEVER being used by ipython itself. This gives them a
489 # existing and NEVER being used by ipython itself. This gives them a
490 # convenient location for storing additional information and state
490 # convenient location for storing additional information and state
491 # their extensions may require, without fear of collisions with other
491 # their extensions may require, without fear of collisions with other
492 # ipython names that may develop later.
492 # ipython names that may develop later.
493 self.meta = Struct()
493 self.meta = Struct()
494
494
495 # Temporary files used for various purposes. Deleted at exit.
495 # Temporary files used for various purposes. Deleted at exit.
496 self.tempfiles = []
496 self.tempfiles = []
497
497
498 # Keep track of readline usage (later set by init_readline)
498 # Keep track of readline usage (later set by init_readline)
499 self.has_readline = False
499 self.has_readline = False
500
500
501 # keep track of where we started running (mainly for crash post-mortem)
501 # keep track of where we started running (mainly for crash post-mortem)
502 # This is not being used anywhere currently.
502 # This is not being used anywhere currently.
503 self.starting_dir = os.getcwdu()
503 self.starting_dir = os.getcwdu()
504
504
505 # Indentation management
505 # Indentation management
506 self.indent_current_nsp = 0
506 self.indent_current_nsp = 0
507
507
508 # Dict to track post-execution functions that have been registered
508 # Dict to track post-execution functions that have been registered
509 self._post_execute = {}
509 self._post_execute = {}
510
510
511 def init_environment(self):
511 def init_environment(self):
512 """Any changes we need to make to the user's environment."""
512 """Any changes we need to make to the user's environment."""
513 pass
513 pass
514
514
515 def init_encoding(self):
515 def init_encoding(self):
516 # Get system encoding at startup time. Certain terminals (like Emacs
516 # Get system encoding at startup time. Certain terminals (like Emacs
517 # under Win32 have it set to None, and we need to have a known valid
517 # under Win32 have it set to None, and we need to have a known valid
518 # encoding to use in the raw_input() method
518 # encoding to use in the raw_input() method
519 try:
519 try:
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
521 except AttributeError:
521 except AttributeError:
522 self.stdin_encoding = 'ascii'
522 self.stdin_encoding = 'ascii'
523
523
524 def init_syntax_highlighting(self):
524 def init_syntax_highlighting(self):
525 # Python source parser/formatter for syntax highlighting
525 # Python source parser/formatter for syntax highlighting
526 pyformat = PyColorize.Parser().format
526 pyformat = PyColorize.Parser().format
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
528
528
529 def init_pushd_popd_magic(self):
529 def init_pushd_popd_magic(self):
530 # for pushd/popd management
530 # for pushd/popd management
531 try:
531 try:
532 self.home_dir = get_home_dir()
532 self.home_dir = get_home_dir()
533 except HomeDirError, msg:
533 except HomeDirError, msg:
534 fatal(msg)
534 fatal(msg)
535
535
536 self.dir_stack = []
536 self.dir_stack = []
537
537
538 def init_logger(self):
538 def init_logger(self):
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
540 logmode='rotate')
540 logmode='rotate')
541
541
542 def init_logstart(self):
542 def init_logstart(self):
543 """Initialize logging in case it was requested at the command line.
543 """Initialize logging in case it was requested at the command line.
544 """
544 """
545 if self.logappend:
545 if self.logappend:
546 self.magic_logstart(self.logappend + ' append')
546 self.magic_logstart(self.logappend + ' append')
547 elif self.logfile:
547 elif self.logfile:
548 self.magic_logstart(self.logfile)
548 self.magic_logstart(self.logfile)
549 elif self.logstart:
549 elif self.logstart:
550 self.magic_logstart()
550 self.magic_logstart()
551
551
552 def init_builtins(self):
552 def init_builtins(self):
553 self.builtin_trap = BuiltinTrap(shell=self)
553 self.builtin_trap = BuiltinTrap(shell=self)
554
554
555 def init_inspector(self):
555 def init_inspector(self):
556 # Object inspector
556 # Object inspector
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
558 PyColorize.ANSICodeColors,
558 PyColorize.ANSICodeColors,
559 'NoColor',
559 'NoColor',
560 self.object_info_string_level)
560 self.object_info_string_level)
561
561
562 def init_io(self):
562 def init_io(self):
563 # This will just use sys.stdout and sys.stderr. If you want to
563 # This will just use sys.stdout and sys.stderr. If you want to
564 # override sys.stdout and sys.stderr themselves, you need to do that
564 # override sys.stdout and sys.stderr themselves, you need to do that
565 # *before* instantiating this class, because io holds onto
565 # *before* instantiating this class, because io holds onto
566 # references to the underlying streams.
566 # references to the underlying streams.
567 if sys.platform == 'win32' and self.has_readline:
567 if sys.platform == 'win32' and self.has_readline:
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
569 else:
569 else:
570 io.stdout = io.IOStream(sys.stdout)
570 io.stdout = io.IOStream(sys.stdout)
571 io.stderr = io.IOStream(sys.stderr)
571 io.stderr = io.IOStream(sys.stderr)
572
572
573 def init_prompts(self):
573 def init_prompts(self):
574 # TODO: This is a pass for now because the prompts are managed inside
574 # TODO: This is a pass for now because the prompts are managed inside
575 # the DisplayHook. Once there is a separate prompt manager, this
575 # the DisplayHook. Once there is a separate prompt manager, this
576 # will initialize that object and all prompt related information.
576 # will initialize that object and all prompt related information.
577 pass
577 pass
578
578
579 def init_display_formatter(self):
579 def init_display_formatter(self):
580 self.display_formatter = DisplayFormatter(config=self.config)
580 self.display_formatter = DisplayFormatter(config=self.config)
581
581
582 def init_display_pub(self):
582 def init_display_pub(self):
583 self.display_pub = self.display_pub_class(config=self.config)
583 self.display_pub = self.display_pub_class(config=self.config)
584
584
585 def init_displayhook(self):
585 def init_displayhook(self):
586 # Initialize displayhook, set in/out prompts and printing system
586 # Initialize displayhook, set in/out prompts and printing system
587 self.displayhook = self.displayhook_class(
587 self.displayhook = self.displayhook_class(
588 config=self.config,
588 config=self.config,
589 shell=self,
589 shell=self,
590 cache_size=self.cache_size,
590 cache_size=self.cache_size,
591 input_sep = self.separate_in,
591 input_sep = self.separate_in,
592 output_sep = self.separate_out,
592 output_sep = self.separate_out,
593 output_sep2 = self.separate_out2,
593 output_sep2 = self.separate_out2,
594 ps1 = self.prompt_in1,
594 ps1 = self.prompt_in1,
595 ps2 = self.prompt_in2,
595 ps2 = self.prompt_in2,
596 ps_out = self.prompt_out,
596 ps_out = self.prompt_out,
597 pad_left = self.prompts_pad_left
597 pad_left = self.prompts_pad_left
598 )
598 )
599 # This is a context manager that installs/revmoes the displayhook at
599 # This is a context manager that installs/revmoes the displayhook at
600 # the appropriate time.
600 # the appropriate time.
601 self.display_trap = DisplayTrap(hook=self.displayhook)
601 self.display_trap = DisplayTrap(hook=self.displayhook)
602
602
603 def init_reload_doctest(self):
603 def init_reload_doctest(self):
604 # Do a proper resetting of doctest, including the necessary displayhook
604 # Do a proper resetting of doctest, including the necessary displayhook
605 # monkeypatching
605 # monkeypatching
606 try:
606 try:
607 doctest_reload()
607 doctest_reload()
608 except ImportError:
608 except ImportError:
609 warn("doctest module does not exist.")
609 warn("doctest module does not exist.")
610
610
611 #-------------------------------------------------------------------------
611 #-------------------------------------------------------------------------
612 # Things related to injections into the sys module
612 # Things related to injections into the sys module
613 #-------------------------------------------------------------------------
613 #-------------------------------------------------------------------------
614
614
615 def save_sys_module_state(self):
615 def save_sys_module_state(self):
616 """Save the state of hooks in the sys module.
616 """Save the state of hooks in the sys module.
617
617
618 This has to be called after self.user_ns is created.
618 This has to be called after self.user_ns is created.
619 """
619 """
620 self._orig_sys_module_state = {}
620 self._orig_sys_module_state = {}
621 self._orig_sys_module_state['stdin'] = sys.stdin
621 self._orig_sys_module_state['stdin'] = sys.stdin
622 self._orig_sys_module_state['stdout'] = sys.stdout
622 self._orig_sys_module_state['stdout'] = sys.stdout
623 self._orig_sys_module_state['stderr'] = sys.stderr
623 self._orig_sys_module_state['stderr'] = sys.stderr
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
625 try:
625 try:
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
627 except KeyError:
627 except KeyError:
628 pass
628 pass
629
629
630 def restore_sys_module_state(self):
630 def restore_sys_module_state(self):
631 """Restore the state of the sys module."""
631 """Restore the state of the sys module."""
632 try:
632 try:
633 for k, v in self._orig_sys_module_state.iteritems():
633 for k, v in self._orig_sys_module_state.iteritems():
634 setattr(sys, k, v)
634 setattr(sys, k, v)
635 except AttributeError:
635 except AttributeError:
636 pass
636 pass
637 # Reset what what done in self.init_sys_modules
637 # Reset what what done in self.init_sys_modules
638 try:
638 try:
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
640 except (AttributeError, KeyError):
640 except (AttributeError, KeyError):
641 pass
641 pass
642
642
643 #-------------------------------------------------------------------------
643 #-------------------------------------------------------------------------
644 # Things related to hooks
644 # Things related to hooks
645 #-------------------------------------------------------------------------
645 #-------------------------------------------------------------------------
646
646
647 def init_hooks(self):
647 def init_hooks(self):
648 # hooks holds pointers used for user-side customizations
648 # hooks holds pointers used for user-side customizations
649 self.hooks = Struct()
649 self.hooks = Struct()
650
650
651 self.strdispatchers = {}
651 self.strdispatchers = {}
652
652
653 # Set all default hooks, defined in the IPython.hooks module.
653 # Set all default hooks, defined in the IPython.hooks module.
654 hooks = IPython.core.hooks
654 hooks = IPython.core.hooks
655 for hook_name in hooks.__all__:
655 for hook_name in hooks.__all__:
656 # default hooks have priority 100, i.e. low; user hooks should have
656 # default hooks have priority 100, i.e. low; user hooks should have
657 # 0-100 priority
657 # 0-100 priority
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
659
659
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
661 """set_hook(name,hook) -> sets an internal IPython hook.
661 """set_hook(name,hook) -> sets an internal IPython hook.
662
662
663 IPython exposes some of its internal API as user-modifiable hooks. By
663 IPython exposes some of its internal API as user-modifiable hooks. By
664 adding your function to one of these hooks, you can modify IPython's
664 adding your function to one of these hooks, you can modify IPython's
665 behavior to call at runtime your own routines."""
665 behavior to call at runtime your own routines."""
666
666
667 # At some point in the future, this should validate the hook before it
667 # At some point in the future, this should validate the hook before it
668 # accepts it. Probably at least check that the hook takes the number
668 # accepts it. Probably at least check that the hook takes the number
669 # of args it's supposed to.
669 # of args it's supposed to.
670
670
671 f = types.MethodType(hook,self)
671 f = types.MethodType(hook,self)
672
672
673 # check if the hook is for strdispatcher first
673 # check if the hook is for strdispatcher first
674 if str_key is not None:
674 if str_key is not None:
675 sdp = self.strdispatchers.get(name, StrDispatch())
675 sdp = self.strdispatchers.get(name, StrDispatch())
676 sdp.add_s(str_key, f, priority )
676 sdp.add_s(str_key, f, priority )
677 self.strdispatchers[name] = sdp
677 self.strdispatchers[name] = sdp
678 return
678 return
679 if re_key is not None:
679 if re_key is not None:
680 sdp = self.strdispatchers.get(name, StrDispatch())
680 sdp = self.strdispatchers.get(name, StrDispatch())
681 sdp.add_re(re.compile(re_key), f, priority )
681 sdp.add_re(re.compile(re_key), f, priority )
682 self.strdispatchers[name] = sdp
682 self.strdispatchers[name] = sdp
683 return
683 return
684
684
685 dp = getattr(self.hooks, name, None)
685 dp = getattr(self.hooks, name, None)
686 if name not in IPython.core.hooks.__all__:
686 if name not in IPython.core.hooks.__all__:
687 print "Warning! Hook '%s' is not one of %s" % \
687 print "Warning! Hook '%s' is not one of %s" % \
688 (name, IPython.core.hooks.__all__ )
688 (name, IPython.core.hooks.__all__ )
689 if not dp:
689 if not dp:
690 dp = IPython.core.hooks.CommandChainDispatcher()
690 dp = IPython.core.hooks.CommandChainDispatcher()
691
691
692 try:
692 try:
693 dp.add(f,priority)
693 dp.add(f,priority)
694 except AttributeError:
694 except AttributeError:
695 # it was not commandchain, plain old func - replace
695 # it was not commandchain, plain old func - replace
696 dp = f
696 dp = f
697
697
698 setattr(self.hooks,name, dp)
698 setattr(self.hooks,name, dp)
699
699
700 def register_post_execute(self, func):
700 def register_post_execute(self, func):
701 """Register a function for calling after code execution.
701 """Register a function for calling after code execution.
702 """
702 """
703 if not callable(func):
703 if not callable(func):
704 raise ValueError('argument %s must be callable' % func)
704 raise ValueError('argument %s must be callable' % func)
705 self._post_execute[func] = True
705 self._post_execute[func] = True
706
706
707 #-------------------------------------------------------------------------
707 #-------------------------------------------------------------------------
708 # Things related to the "main" module
708 # Things related to the "main" module
709 #-------------------------------------------------------------------------
709 #-------------------------------------------------------------------------
710
710
711 def new_main_mod(self,ns=None):
711 def new_main_mod(self,ns=None):
712 """Return a new 'main' module object for user code execution.
712 """Return a new 'main' module object for user code execution.
713 """
713 """
714 main_mod = self._user_main_module
714 main_mod = self._user_main_module
715 init_fakemod_dict(main_mod,ns)
715 init_fakemod_dict(main_mod,ns)
716 return main_mod
716 return main_mod
717
717
718 def cache_main_mod(self,ns,fname):
718 def cache_main_mod(self,ns,fname):
719 """Cache a main module's namespace.
719 """Cache a main module's namespace.
720
720
721 When scripts are executed via %run, we must keep a reference to the
721 When scripts are executed via %run, we must keep a reference to the
722 namespace of their __main__ module (a FakeModule instance) around so
722 namespace of their __main__ module (a FakeModule instance) around so
723 that Python doesn't clear it, rendering objects defined therein
723 that Python doesn't clear it, rendering objects defined therein
724 useless.
724 useless.
725
725
726 This method keeps said reference in a private dict, keyed by the
726 This method keeps said reference in a private dict, keyed by the
727 absolute path of the module object (which corresponds to the script
727 absolute path of the module object (which corresponds to the script
728 path). This way, for multiple executions of the same script we only
728 path). This way, for multiple executions of the same script we only
729 keep one copy of the namespace (the last one), thus preventing memory
729 keep one copy of the namespace (the last one), thus preventing memory
730 leaks from old references while allowing the objects from the last
730 leaks from old references while allowing the objects from the last
731 execution to be accessible.
731 execution to be accessible.
732
732
733 Note: we can not allow the actual FakeModule instances to be deleted,
733 Note: we can not allow the actual FakeModule instances to be deleted,
734 because of how Python tears down modules (it hard-sets all their
734 because of how Python tears down modules (it hard-sets all their
735 references to None without regard for reference counts). This method
735 references to None without regard for reference counts). This method
736 must therefore make a *copy* of the given namespace, to allow the
736 must therefore make a *copy* of the given namespace, to allow the
737 original module's __dict__ to be cleared and reused.
737 original module's __dict__ to be cleared and reused.
738
738
739
739
740 Parameters
740 Parameters
741 ----------
741 ----------
742 ns : a namespace (a dict, typically)
742 ns : a namespace (a dict, typically)
743
743
744 fname : str
744 fname : str
745 Filename associated with the namespace.
745 Filename associated with the namespace.
746
746
747 Examples
747 Examples
748 --------
748 --------
749
749
750 In [10]: import IPython
750 In [10]: import IPython
751
751
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
753
753
754 In [12]: IPython.__file__ in _ip._main_ns_cache
754 In [12]: IPython.__file__ in _ip._main_ns_cache
755 Out[12]: True
755 Out[12]: True
756 """
756 """
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
758
758
759 def clear_main_mod_cache(self):
759 def clear_main_mod_cache(self):
760 """Clear the cache of main modules.
760 """Clear the cache of main modules.
761
761
762 Mainly for use by utilities like %reset.
762 Mainly for use by utilities like %reset.
763
763
764 Examples
764 Examples
765 --------
765 --------
766
766
767 In [15]: import IPython
767 In [15]: import IPython
768
768
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
770
770
771 In [17]: len(_ip._main_ns_cache) > 0
771 In [17]: len(_ip._main_ns_cache) > 0
772 Out[17]: True
772 Out[17]: True
773
773
774 In [18]: _ip.clear_main_mod_cache()
774 In [18]: _ip.clear_main_mod_cache()
775
775
776 In [19]: len(_ip._main_ns_cache) == 0
776 In [19]: len(_ip._main_ns_cache) == 0
777 Out[19]: True
777 Out[19]: True
778 """
778 """
779 self._main_ns_cache.clear()
779 self._main_ns_cache.clear()
780
780
781 #-------------------------------------------------------------------------
781 #-------------------------------------------------------------------------
782 # Things related to debugging
782 # Things related to debugging
783 #-------------------------------------------------------------------------
783 #-------------------------------------------------------------------------
784
784
785 def init_pdb(self):
785 def init_pdb(self):
786 # Set calling of pdb on exceptions
786 # Set calling of pdb on exceptions
787 # self.call_pdb is a property
787 # self.call_pdb is a property
788 self.call_pdb = self.pdb
788 self.call_pdb = self.pdb
789
789
790 def _get_call_pdb(self):
790 def _get_call_pdb(self):
791 return self._call_pdb
791 return self._call_pdb
792
792
793 def _set_call_pdb(self,val):
793 def _set_call_pdb(self,val):
794
794
795 if val not in (0,1,False,True):
795 if val not in (0,1,False,True):
796 raise ValueError,'new call_pdb value must be boolean'
796 raise ValueError,'new call_pdb value must be boolean'
797
797
798 # store value in instance
798 # store value in instance
799 self._call_pdb = val
799 self._call_pdb = val
800
800
801 # notify the actual exception handlers
801 # notify the actual exception handlers
802 self.InteractiveTB.call_pdb = val
802 self.InteractiveTB.call_pdb = val
803
803
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
805 'Control auto-activation of pdb at exceptions')
805 'Control auto-activation of pdb at exceptions')
806
806
807 def debugger(self,force=False):
807 def debugger(self,force=False):
808 """Call the pydb/pdb debugger.
808 """Call the pydb/pdb debugger.
809
809
810 Keywords:
810 Keywords:
811
811
812 - force(False): by default, this routine checks the instance call_pdb
812 - force(False): by default, this routine checks the instance call_pdb
813 flag and does not actually invoke the debugger if the flag is false.
813 flag and does not actually invoke the debugger if the flag is false.
814 The 'force' option forces the debugger to activate even if the flag
814 The 'force' option forces the debugger to activate even if the flag
815 is false.
815 is false.
816 """
816 """
817
817
818 if not (force or self.call_pdb):
818 if not (force or self.call_pdb):
819 return
819 return
820
820
821 if not hasattr(sys,'last_traceback'):
821 if not hasattr(sys,'last_traceback'):
822 error('No traceback has been produced, nothing to debug.')
822 error('No traceback has been produced, nothing to debug.')
823 return
823 return
824
824
825 # use pydb if available
825 # use pydb if available
826 if debugger.has_pydb:
826 if debugger.has_pydb:
827 from pydb import pm
827 from pydb import pm
828 else:
828 else:
829 # fallback to our internal debugger
829 # fallback to our internal debugger
830 pm = lambda : self.InteractiveTB.debugger(force=True)
830 pm = lambda : self.InteractiveTB.debugger(force=True)
831
831
832 with self.readline_no_record:
832 with self.readline_no_record:
833 pm()
833 pm()
834
834
835 #-------------------------------------------------------------------------
835 #-------------------------------------------------------------------------
836 # Things related to IPython's various namespaces
836 # Things related to IPython's various namespaces
837 #-------------------------------------------------------------------------
837 #-------------------------------------------------------------------------
838
838
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
840 # Create the namespace where the user will operate. user_ns is
840 # Create the namespace where the user will operate. user_ns is
841 # normally the only one used, and it is passed to the exec calls as
841 # normally the only one used, and it is passed to the exec calls as
842 # the locals argument. But we do carry a user_global_ns namespace
842 # the locals argument. But we do carry a user_global_ns namespace
843 # given as the exec 'globals' argument, This is useful in embedding
843 # given as the exec 'globals' argument, This is useful in embedding
844 # situations where the ipython shell opens in a context where the
844 # situations where the ipython shell opens in a context where the
845 # distinction between locals and globals is meaningful. For
845 # distinction between locals and globals is meaningful. For
846 # non-embedded contexts, it is just the same object as the user_ns dict.
846 # non-embedded contexts, it is just the same object as the user_ns dict.
847
847
848 # FIXME. For some strange reason, __builtins__ is showing up at user
848 # FIXME. For some strange reason, __builtins__ is showing up at user
849 # level as a dict instead of a module. This is a manual fix, but I
849 # level as a dict instead of a module. This is a manual fix, but I
850 # should really track down where the problem is coming from. Alex
850 # should really track down where the problem is coming from. Alex
851 # Schmolck reported this problem first.
851 # Schmolck reported this problem first.
852
852
853 # A useful post by Alex Martelli on this topic:
853 # A useful post by Alex Martelli on this topic:
854 # Re: inconsistent value from __builtins__
854 # Re: inconsistent value from __builtins__
855 # Von: Alex Martelli <aleaxit@yahoo.com>
855 # Von: Alex Martelli <aleaxit@yahoo.com>
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
857 # Gruppen: comp.lang.python
857 # Gruppen: comp.lang.python
858
858
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
861 # > <type 'dict'>
861 # > <type 'dict'>
862 # > >>> print type(__builtins__)
862 # > >>> print type(__builtins__)
863 # > <type 'module'>
863 # > <type 'module'>
864 # > Is this difference in return value intentional?
864 # > Is this difference in return value intentional?
865
865
866 # Well, it's documented that '__builtins__' can be either a dictionary
866 # Well, it's documented that '__builtins__' can be either a dictionary
867 # or a module, and it's been that way for a long time. Whether it's
867 # or a module, and it's been that way for a long time. Whether it's
868 # intentional (or sensible), I don't know. In any case, the idea is
868 # intentional (or sensible), I don't know. In any case, the idea is
869 # that if you need to access the built-in namespace directly, you
869 # that if you need to access the built-in namespace directly, you
870 # should start with "import __builtin__" (note, no 's') which will
870 # should start with "import __builtin__" (note, no 's') which will
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
872
872
873 # These routines return properly built dicts as needed by the rest of
873 # These routines return properly built dicts as needed by the rest of
874 # the code, and can also be used by extension writers to generate
874 # the code, and can also be used by extension writers to generate
875 # properly initialized namespaces.
875 # properly initialized namespaces.
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
877 user_global_ns)
877 user_global_ns)
878
878
879 # Assign namespaces
879 # Assign namespaces
880 # This is the namespace where all normal user variables live
880 # This is the namespace where all normal user variables live
881 self.user_ns = user_ns
881 self.user_ns = user_ns
882 self.user_global_ns = user_global_ns
882 self.user_global_ns = user_global_ns
883
883
884 # An auxiliary namespace that checks what parts of the user_ns were
884 # An auxiliary namespace that checks what parts of the user_ns were
885 # loaded at startup, so we can list later only variables defined in
885 # loaded at startup, so we can list later only variables defined in
886 # actual interactive use. Since it is always a subset of user_ns, it
886 # actual interactive use. Since it is always a subset of user_ns, it
887 # doesn't need to be separately tracked in the ns_table.
887 # doesn't need to be separately tracked in the ns_table.
888 self.user_ns_hidden = {}
888 self.user_ns_hidden = {}
889
889
890 # A namespace to keep track of internal data structures to prevent
890 # A namespace to keep track of internal data structures to prevent
891 # them from cluttering user-visible stuff. Will be updated later
891 # them from cluttering user-visible stuff. Will be updated later
892 self.internal_ns = {}
892 self.internal_ns = {}
893
893
894 # Now that FakeModule produces a real module, we've run into a nasty
894 # Now that FakeModule produces a real module, we've run into a nasty
895 # problem: after script execution (via %run), the module where the user
895 # problem: after script execution (via %run), the module where the user
896 # code ran is deleted. Now that this object is a true module (needed
896 # code ran is deleted. Now that this object is a true module (needed
897 # so docetst and other tools work correctly), the Python module
897 # so docetst and other tools work correctly), the Python module
898 # teardown mechanism runs over it, and sets to None every variable
898 # teardown mechanism runs over it, and sets to None every variable
899 # present in that module. Top-level references to objects from the
899 # present in that module. Top-level references to objects from the
900 # script survive, because the user_ns is updated with them. However,
900 # script survive, because the user_ns is updated with them. However,
901 # calling functions defined in the script that use other things from
901 # calling functions defined in the script that use other things from
902 # the script will fail, because the function's closure had references
902 # the script will fail, because the function's closure had references
903 # to the original objects, which are now all None. So we must protect
903 # to the original objects, which are now all None. So we must protect
904 # these modules from deletion by keeping a cache.
904 # these modules from deletion by keeping a cache.
905 #
905 #
906 # To avoid keeping stale modules around (we only need the one from the
906 # To avoid keeping stale modules around (we only need the one from the
907 # last run), we use a dict keyed with the full path to the script, so
907 # last run), we use a dict keyed with the full path to the script, so
908 # only the last version of the module is held in the cache. Note,
908 # only the last version of the module is held in the cache. Note,
909 # however, that we must cache the module *namespace contents* (their
909 # however, that we must cache the module *namespace contents* (their
910 # __dict__). Because if we try to cache the actual modules, old ones
910 # __dict__). Because if we try to cache the actual modules, old ones
911 # (uncached) could be destroyed while still holding references (such as
911 # (uncached) could be destroyed while still holding references (such as
912 # those held by GUI objects that tend to be long-lived)>
912 # those held by GUI objects that tend to be long-lived)>
913 #
913 #
914 # The %reset command will flush this cache. See the cache_main_mod()
914 # The %reset command will flush this cache. See the cache_main_mod()
915 # and clear_main_mod_cache() methods for details on use.
915 # and clear_main_mod_cache() methods for details on use.
916
916
917 # This is the cache used for 'main' namespaces
917 # This is the cache used for 'main' namespaces
918 self._main_ns_cache = {}
918 self._main_ns_cache = {}
919 # And this is the single instance of FakeModule whose __dict__ we keep
919 # And this is the single instance of FakeModule whose __dict__ we keep
920 # copying and clearing for reuse on each %run
920 # copying and clearing for reuse on each %run
921 self._user_main_module = FakeModule()
921 self._user_main_module = FakeModule()
922
922
923 # A table holding all the namespaces IPython deals with, so that
923 # A table holding all the namespaces IPython deals with, so that
924 # introspection facilities can search easily.
924 # introspection facilities can search easily.
925 self.ns_table = {'user':user_ns,
925 self.ns_table = {'user':user_ns,
926 'user_global':user_global_ns,
926 'user_global':user_global_ns,
927 'internal':self.internal_ns,
927 'internal':self.internal_ns,
928 'builtin':__builtin__.__dict__
928 'builtin':__builtin__.__dict__
929 }
929 }
930
930
931 # Similarly, track all namespaces where references can be held and that
931 # Similarly, track all namespaces where references can be held and that
932 # we can safely clear (so it can NOT include builtin). This one can be
932 # we can safely clear (so it can NOT include builtin). This one can be
933 # a simple list. Note that the main execution namespaces, user_ns and
933 # a simple list. Note that the main execution namespaces, user_ns and
934 # user_global_ns, can NOT be listed here, as clearing them blindly
934 # user_global_ns, can NOT be listed here, as clearing them blindly
935 # causes errors in object __del__ methods. Instead, the reset() method
935 # causes errors in object __del__ methods. Instead, the reset() method
936 # clears them manually and carefully.
936 # clears them manually and carefully.
937 self.ns_refs_table = [ self.user_ns_hidden,
937 self.ns_refs_table = [ self.user_ns_hidden,
938 self.internal_ns, self._main_ns_cache ]
938 self.internal_ns, self._main_ns_cache ]
939
939
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
941 """Return a valid local and global user interactive namespaces.
941 """Return a valid local and global user interactive namespaces.
942
942
943 This builds a dict with the minimal information needed to operate as a
943 This builds a dict with the minimal information needed to operate as a
944 valid IPython user namespace, which you can pass to the various
944 valid IPython user namespace, which you can pass to the various
945 embedding classes in ipython. The default implementation returns the
945 embedding classes in ipython. The default implementation returns the
946 same dict for both the locals and the globals to allow functions to
946 same dict for both the locals and the globals to allow functions to
947 refer to variables in the namespace. Customized implementations can
947 refer to variables in the namespace. Customized implementations can
948 return different dicts. The locals dictionary can actually be anything
948 return different dicts. The locals dictionary can actually be anything
949 following the basic mapping protocol of a dict, but the globals dict
949 following the basic mapping protocol of a dict, but the globals dict
950 must be a true dict, not even a subclass. It is recommended that any
950 must be a true dict, not even a subclass. It is recommended that any
951 custom object for the locals namespace synchronize with the globals
951 custom object for the locals namespace synchronize with the globals
952 dict somehow.
952 dict somehow.
953
953
954 Raises TypeError if the provided globals namespace is not a true dict.
954 Raises TypeError if the provided globals namespace is not a true dict.
955
955
956 Parameters
956 Parameters
957 ----------
957 ----------
958 user_ns : dict-like, optional
958 user_ns : dict-like, optional
959 The current user namespace. The items in this namespace should
959 The current user namespace. The items in this namespace should
960 be included in the output. If None, an appropriate blank
960 be included in the output. If None, an appropriate blank
961 namespace should be created.
961 namespace should be created.
962 user_global_ns : dict, optional
962 user_global_ns : dict, optional
963 The current user global namespace. The items in this namespace
963 The current user global namespace. The items in this namespace
964 should be included in the output. If None, an appropriate
964 should be included in the output. If None, an appropriate
965 blank namespace should be created.
965 blank namespace should be created.
966
966
967 Returns
967 Returns
968 -------
968 -------
969 A pair of dictionary-like object to be used as the local namespace
969 A pair of dictionary-like object to be used as the local namespace
970 of the interpreter and a dict to be used as the global namespace.
970 of the interpreter and a dict to be used as the global namespace.
971 """
971 """
972
972
973
973
974 # We must ensure that __builtin__ (without the final 's') is always
974 # We must ensure that __builtin__ (without the final 's') is always
975 # available and pointing to the __builtin__ *module*. For more details:
975 # available and pointing to the __builtin__ *module*. For more details:
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
977
977
978 if user_ns is None:
978 if user_ns is None:
979 # Set __name__ to __main__ to better match the behavior of the
979 # Set __name__ to __main__ to better match the behavior of the
980 # normal interpreter.
980 # normal interpreter.
981 user_ns = {'__name__' :'__main__',
981 user_ns = {'__name__' :'__main__',
982 '__builtin__' : __builtin__,
982 '__builtin__' : __builtin__,
983 '__builtins__' : __builtin__,
983 '__builtins__' : __builtin__,
984 }
984 }
985 else:
985 else:
986 user_ns.setdefault('__name__','__main__')
986 user_ns.setdefault('__name__','__main__')
987 user_ns.setdefault('__builtin__',__builtin__)
987 user_ns.setdefault('__builtin__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
989
989
990 if user_global_ns is None:
990 if user_global_ns is None:
991 user_global_ns = user_ns
991 user_global_ns = user_ns
992 if type(user_global_ns) is not dict:
992 if type(user_global_ns) is not dict:
993 raise TypeError("user_global_ns must be a true dict; got %r"
993 raise TypeError("user_global_ns must be a true dict; got %r"
994 % type(user_global_ns))
994 % type(user_global_ns))
995
995
996 return user_ns, user_global_ns
996 return user_ns, user_global_ns
997
997
998 def init_sys_modules(self):
998 def init_sys_modules(self):
999 # We need to insert into sys.modules something that looks like a
999 # We need to insert into sys.modules something that looks like a
1000 # module but which accesses the IPython namespace, for shelve and
1000 # module but which accesses the IPython namespace, for shelve and
1001 # pickle to work interactively. Normally they rely on getting
1001 # pickle to work interactively. Normally they rely on getting
1002 # everything out of __main__, but for embedding purposes each IPython
1002 # everything out of __main__, but for embedding purposes each IPython
1003 # instance has its own private namespace, so we can't go shoving
1003 # instance has its own private namespace, so we can't go shoving
1004 # everything into __main__.
1004 # everything into __main__.
1005
1005
1006 # note, however, that we should only do this for non-embedded
1006 # note, however, that we should only do this for non-embedded
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1008 # namespace. Embedded instances, on the other hand, should not do
1008 # namespace. Embedded instances, on the other hand, should not do
1009 # this because they need to manage the user local/global namespaces
1009 # this because they need to manage the user local/global namespaces
1010 # only, but they live within a 'normal' __main__ (meaning, they
1010 # only, but they live within a 'normal' __main__ (meaning, they
1011 # shouldn't overtake the execution environment of the script they're
1011 # shouldn't overtake the execution environment of the script they're
1012 # embedded in).
1012 # embedded in).
1013
1013
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1015
1015
1016 try:
1016 try:
1017 main_name = self.user_ns['__name__']
1017 main_name = self.user_ns['__name__']
1018 except KeyError:
1018 except KeyError:
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1020 else:
1020 else:
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1022
1022
1023 def init_user_ns(self):
1023 def init_user_ns(self):
1024 """Initialize all user-visible namespaces to their minimum defaults.
1024 """Initialize all user-visible namespaces to their minimum defaults.
1025
1025
1026 Certain history lists are also initialized here, as they effectively
1026 Certain history lists are also initialized here, as they effectively
1027 act as user namespaces.
1027 act as user namespaces.
1028
1028
1029 Notes
1029 Notes
1030 -----
1030 -----
1031 All data structures here are only filled in, they are NOT reset by this
1031 All data structures here are only filled in, they are NOT reset by this
1032 method. If they were not empty before, data will simply be added to
1032 method. If they were not empty before, data will simply be added to
1033 therm.
1033 therm.
1034 """
1034 """
1035 # This function works in two parts: first we put a few things in
1035 # This function works in two parts: first we put a few things in
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1037 # initial variables aren't shown by %who. After the sync, we add the
1037 # initial variables aren't shown by %who. After the sync, we add the
1038 # rest of what we *do* want the user to see with %who even on a new
1038 # rest of what we *do* want the user to see with %who even on a new
1039 # session (probably nothing, so theye really only see their own stuff)
1039 # session (probably nothing, so theye really only see their own stuff)
1040
1040
1041 # The user dict must *always* have a __builtin__ reference to the
1041 # The user dict must *always* have a __builtin__ reference to the
1042 # Python standard __builtin__ namespace, which must be imported.
1042 # Python standard __builtin__ namespace, which must be imported.
1043 # This is so that certain operations in prompt evaluation can be
1043 # This is so that certain operations in prompt evaluation can be
1044 # reliably executed with builtins. Note that we can NOT use
1044 # reliably executed with builtins. Note that we can NOT use
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1046 # module, and can even mutate at runtime, depending on the context
1046 # module, and can even mutate at runtime, depending on the context
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1048 # always a module object, though it must be explicitly imported.
1048 # always a module object, though it must be explicitly imported.
1049
1049
1050 # For more details:
1050 # For more details:
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1052 ns = dict(__builtin__ = __builtin__)
1052 ns = dict(__builtin__ = __builtin__)
1053
1053
1054 # Put 'help' in the user namespace
1054 # Put 'help' in the user namespace
1055 try:
1055 try:
1056 from site import _Helper
1056 from site import _Helper
1057 ns['help'] = _Helper()
1057 ns['help'] = _Helper()
1058 except ImportError:
1058 except ImportError:
1059 warn('help() not available - check site.py')
1059 warn('help() not available - check site.py')
1060
1060
1061 # make global variables for user access to the histories
1061 # make global variables for user access to the histories
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1063 ns['_oh'] = self.history_manager.output_hist
1063 ns['_oh'] = self.history_manager.output_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1065
1065
1066 ns['_sh'] = shadowns
1066 ns['_sh'] = shadowns
1067
1067
1068 # user aliases to input and output histories. These shouldn't show up
1068 # user aliases to input and output histories. These shouldn't show up
1069 # in %who, as they can have very large reprs.
1069 # in %who, as they can have very large reprs.
1070 ns['In'] = self.history_manager.input_hist_parsed
1070 ns['In'] = self.history_manager.input_hist_parsed
1071 ns['Out'] = self.history_manager.output_hist
1071 ns['Out'] = self.history_manager.output_hist
1072
1072
1073 # Store myself as the public api!!!
1073 # Store myself as the public api!!!
1074 ns['get_ipython'] = self.get_ipython
1074 ns['get_ipython'] = self.get_ipython
1075
1075
1076 ns['exit'] = self.exiter
1076 ns['exit'] = self.exiter
1077 ns['quit'] = self.exiter
1077 ns['quit'] = self.exiter
1078
1078
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1080 # by %who
1080 # by %who
1081 self.user_ns_hidden.update(ns)
1081 self.user_ns_hidden.update(ns)
1082
1082
1083 # Anything put into ns now would show up in %who. Think twice before
1083 # Anything put into ns now would show up in %who. Think twice before
1084 # putting anything here, as we really want %who to show the user their
1084 # putting anything here, as we really want %who to show the user their
1085 # stuff, not our variables.
1085 # stuff, not our variables.
1086
1086
1087 # Finally, update the real user's namespace
1087 # Finally, update the real user's namespace
1088 self.user_ns.update(ns)
1088 self.user_ns.update(ns)
1089
1089
1090 def reset(self, new_session=True):
1090 def reset(self, new_session=True):
1091 """Clear all internal namespaces, and attempt to release references to
1091 """Clear all internal namespaces, and attempt to release references to
1092 user objects.
1092 user objects.
1093
1093
1094 If new_session is True, a new history session will be opened.
1094 If new_session is True, a new history session will be opened.
1095 """
1095 """
1096 # Clear histories
1096 # Clear histories
1097 self.history_manager.reset(new_session)
1097 self.history_manager.reset(new_session)
1098 # Reset counter used to index all histories
1098 # Reset counter used to index all histories
1099 if new_session:
1099 if new_session:
1100 self.execution_count = 1
1100 self.execution_count = 1
1101
1101
1102 # Flush cached output items
1102 # Flush cached output items
1103 if self.displayhook.do_full_cache:
1103 if self.displayhook.do_full_cache:
1104 self.displayhook.flush()
1104 self.displayhook.flush()
1105
1105
1106 # Restore the user namespaces to minimal usability
1106 # Restore the user namespaces to minimal usability
1107 for ns in self.ns_refs_table:
1107 for ns in self.ns_refs_table:
1108 ns.clear()
1108 ns.clear()
1109
1109
1110 # The main execution namespaces must be cleared very carefully,
1110 # The main execution namespaces must be cleared very carefully,
1111 # skipping the deletion of the builtin-related keys, because doing so
1111 # skipping the deletion of the builtin-related keys, because doing so
1112 # would cause errors in many object's __del__ methods.
1112 # would cause errors in many object's __del__ methods.
1113 for ns in [self.user_ns, self.user_global_ns]:
1113 for ns in [self.user_ns, self.user_global_ns]:
1114 drop_keys = set(ns.keys())
1114 drop_keys = set(ns.keys())
1115 drop_keys.discard('__builtin__')
1115 drop_keys.discard('__builtin__')
1116 drop_keys.discard('__builtins__')
1116 drop_keys.discard('__builtins__')
1117 for k in drop_keys:
1117 for k in drop_keys:
1118 del ns[k]
1118 del ns[k]
1119
1119
1120 # Restore the user namespaces to minimal usability
1120 # Restore the user namespaces to minimal usability
1121 self.init_user_ns()
1121 self.init_user_ns()
1122
1122
1123 # Restore the default and user aliases
1123 # Restore the default and user aliases
1124 self.alias_manager.clear_aliases()
1124 self.alias_manager.clear_aliases()
1125 self.alias_manager.init_aliases()
1125 self.alias_manager.init_aliases()
1126
1126
1127 # Flush the private list of module references kept for script
1127 # Flush the private list of module references kept for script
1128 # execution protection
1128 # execution protection
1129 self.clear_main_mod_cache()
1129 self.clear_main_mod_cache()
1130
1130
1131 # Clear out the namespace from the last %run
1131 # Clear out the namespace from the last %run
1132 self.new_main_mod()
1132 self.new_main_mod()
1133
1133
1134 def del_var(self, varname, by_name=False):
1134 def del_var(self, varname, by_name=False):
1135 """Delete a variable from the various namespaces, so that, as
1135 """Delete a variable from the various namespaces, so that, as
1136 far as possible, we're not keeping any hidden references to it.
1136 far as possible, we're not keeping any hidden references to it.
1137
1137
1138 Parameters
1138 Parameters
1139 ----------
1139 ----------
1140 varname : str
1140 varname : str
1141 The name of the variable to delete.
1141 The name of the variable to delete.
1142 by_name : bool
1142 by_name : bool
1143 If True, delete variables with the given name in each
1143 If True, delete variables with the given name in each
1144 namespace. If False (default), find the variable in the user
1144 namespace. If False (default), find the variable in the user
1145 namespace, and delete references to it.
1145 namespace, and delete references to it.
1146 """
1146 """
1147 if varname in ('__builtin__', '__builtins__'):
1147 if varname in ('__builtin__', '__builtins__'):
1148 raise ValueError("Refusing to delete %s" % varname)
1148 raise ValueError("Refusing to delete %s" % varname)
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1151 self._main_ns_cache.values()
1151 self._main_ns_cache.values()
1152
1152
1153 if by_name: # Delete by name
1153 if by_name: # Delete by name
1154 for ns in ns_refs:
1154 for ns in ns_refs:
1155 try:
1155 try:
1156 del ns[varname]
1156 del ns[varname]
1157 except KeyError:
1157 except KeyError:
1158 pass
1158 pass
1159 else: # Delete by object
1159 else: # Delete by object
1160 try:
1160 try:
1161 obj = self.user_ns[varname]
1161 obj = self.user_ns[varname]
1162 except KeyError:
1162 except KeyError:
1163 raise NameError("name '%s' is not defined" % varname)
1163 raise NameError("name '%s' is not defined" % varname)
1164 # Also check in output history
1164 # Also check in output history
1165 ns_refs.append(self.history_manager.output_hist)
1165 ns_refs.append(self.history_manager.output_hist)
1166 for ns in ns_refs:
1166 for ns in ns_refs:
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1168 for name in to_delete:
1168 for name in to_delete:
1169 del ns[name]
1169 del ns[name]
1170
1170
1171 # displayhook keeps extra references, but not in a dictionary
1171 # displayhook keeps extra references, but not in a dictionary
1172 for name in ('_', '__', '___'):
1172 for name in ('_', '__', '___'):
1173 if getattr(self.displayhook, name) is obj:
1173 if getattr(self.displayhook, name) is obj:
1174 setattr(self.displayhook, name, None)
1174 setattr(self.displayhook, name, None)
1175
1175
1176 def reset_selective(self, regex=None):
1176 def reset_selective(self, regex=None):
1177 """Clear selective variables from internal namespaces based on a
1177 """Clear selective variables from internal namespaces based on a
1178 specified regular expression.
1178 specified regular expression.
1179
1179
1180 Parameters
1180 Parameters
1181 ----------
1181 ----------
1182 regex : string or compiled pattern, optional
1182 regex : string or compiled pattern, optional
1183 A regular expression pattern that will be used in searching
1183 A regular expression pattern that will be used in searching
1184 variable names in the users namespaces.
1184 variable names in the users namespaces.
1185 """
1185 """
1186 if regex is not None:
1186 if regex is not None:
1187 try:
1187 try:
1188 m = re.compile(regex)
1188 m = re.compile(regex)
1189 except TypeError:
1189 except TypeError:
1190 raise TypeError('regex must be a string or compiled pattern')
1190 raise TypeError('regex must be a string or compiled pattern')
1191 # Search for keys in each namespace that match the given regex
1191 # Search for keys in each namespace that match the given regex
1192 # If a match is found, delete the key/value pair.
1192 # If a match is found, delete the key/value pair.
1193 for ns in self.ns_refs_table:
1193 for ns in self.ns_refs_table:
1194 for var in ns:
1194 for var in ns:
1195 if m.search(var):
1195 if m.search(var):
1196 del ns[var]
1196 del ns[var]
1197
1197
1198 def push(self, variables, interactive=True):
1198 def push(self, variables, interactive=True):
1199 """Inject a group of variables into the IPython user namespace.
1199 """Inject a group of variables into the IPython user namespace.
1200
1200
1201 Parameters
1201 Parameters
1202 ----------
1202 ----------
1203 variables : dict, str or list/tuple of str
1203 variables : dict, str or list/tuple of str
1204 The variables to inject into the user's namespace. If a dict, a
1204 The variables to inject into the user's namespace. If a dict, a
1205 simple update is done. If a str, the string is assumed to have
1205 simple update is done. If a str, the string is assumed to have
1206 variable names separated by spaces. A list/tuple of str can also
1206 variable names separated by spaces. A list/tuple of str can also
1207 be used to give the variable names. If just the variable names are
1207 be used to give the variable names. If just the variable names are
1208 give (list/tuple/str) then the variable values looked up in the
1208 give (list/tuple/str) then the variable values looked up in the
1209 callers frame.
1209 callers frame.
1210 interactive : bool
1210 interactive : bool
1211 If True (default), the variables will be listed with the ``who``
1211 If True (default), the variables will be listed with the ``who``
1212 magic.
1212 magic.
1213 """
1213 """
1214 vdict = None
1214 vdict = None
1215
1215
1216 # We need a dict of name/value pairs to do namespace updates.
1216 # We need a dict of name/value pairs to do namespace updates.
1217 if isinstance(variables, dict):
1217 if isinstance(variables, dict):
1218 vdict = variables
1218 vdict = variables
1219 elif isinstance(variables, (basestring, list, tuple)):
1219 elif isinstance(variables, (basestring, list, tuple)):
1220 if isinstance(variables, basestring):
1220 if isinstance(variables, basestring):
1221 vlist = variables.split()
1221 vlist = variables.split()
1222 else:
1222 else:
1223 vlist = variables
1223 vlist = variables
1224 vdict = {}
1224 vdict = {}
1225 cf = sys._getframe(1)
1225 cf = sys._getframe(1)
1226 for name in vlist:
1226 for name in vlist:
1227 try:
1227 try:
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1229 except:
1229 except:
1230 print ('Could not get variable %s from %s' %
1230 print ('Could not get variable %s from %s' %
1231 (name,cf.f_code.co_name))
1231 (name,cf.f_code.co_name))
1232 else:
1232 else:
1233 raise ValueError('variables must be a dict/str/list/tuple')
1233 raise ValueError('variables must be a dict/str/list/tuple')
1234
1234
1235 # Propagate variables to user namespace
1235 # Propagate variables to user namespace
1236 self.user_ns.update(vdict)
1236 self.user_ns.update(vdict)
1237
1237
1238 # And configure interactive visibility
1238 # And configure interactive visibility
1239 config_ns = self.user_ns_hidden
1239 config_ns = self.user_ns_hidden
1240 if interactive:
1240 if interactive:
1241 for name, val in vdict.iteritems():
1241 for name, val in vdict.iteritems():
1242 config_ns.pop(name, None)
1242 config_ns.pop(name, None)
1243 else:
1243 else:
1244 for name,val in vdict.iteritems():
1244 for name,val in vdict.iteritems():
1245 config_ns[name] = val
1245 config_ns[name] = val
1246
1246
1247 #-------------------------------------------------------------------------
1247 #-------------------------------------------------------------------------
1248 # Things related to object introspection
1248 # Things related to object introspection
1249 #-------------------------------------------------------------------------
1249 #-------------------------------------------------------------------------
1250
1250
1251 def _ofind(self, oname, namespaces=None):
1251 def _ofind(self, oname, namespaces=None):
1252 """Find an object in the available namespaces.
1252 """Find an object in the available namespaces.
1253
1253
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1255
1255
1256 Has special code to detect magic functions.
1256 Has special code to detect magic functions.
1257 """
1257 """
1258 #oname = oname.strip()
1258 #oname = oname.strip()
1259 #print '1- oname: <%r>' % oname # dbg
1259 #print '1- oname: <%r>' % oname # dbg
1260 try:
1260 try:
1261 oname = oname.strip().encode('ascii')
1261 oname = oname.strip().encode('ascii')
1262 #print '2- oname: <%r>' % oname # dbg
1262 #print '2- oname: <%r>' % oname # dbg
1263 except UnicodeEncodeError:
1263 except UnicodeEncodeError:
1264 print 'Python identifiers can only contain ascii characters.'
1264 print 'Python identifiers can only contain ascii characters.'
1265 return dict(found=False)
1265 return dict(found=False)
1266
1266
1267 alias_ns = None
1267 alias_ns = None
1268 if namespaces is None:
1268 if namespaces is None:
1269 # Namespaces to search in:
1269 # Namespaces to search in:
1270 # Put them in a list. The order is important so that we
1270 # Put them in a list. The order is important so that we
1271 # find things in the same order that Python finds them.
1271 # find things in the same order that Python finds them.
1272 namespaces = [ ('Interactive', self.user_ns),
1272 namespaces = [ ('Interactive', self.user_ns),
1273 ('IPython internal', self.internal_ns),
1273 ('IPython internal', self.internal_ns),
1274 ('Python builtin', __builtin__.__dict__),
1274 ('Python builtin', __builtin__.__dict__),
1275 ('Alias', self.alias_manager.alias_table),
1275 ('Alias', self.alias_manager.alias_table),
1276 ]
1276 ]
1277 alias_ns = self.alias_manager.alias_table
1277 alias_ns = self.alias_manager.alias_table
1278
1278
1279 # initialize results to 'null'
1279 # initialize results to 'null'
1280 found = False; obj = None; ospace = None; ds = None;
1280 found = False; obj = None; ospace = None; ds = None;
1281 ismagic = False; isalias = False; parent = None
1281 ismagic = False; isalias = False; parent = None
1282
1282
1283 # We need to special-case 'print', which as of python2.6 registers as a
1283 # We need to special-case 'print', which as of python2.6 registers as a
1284 # function but should only be treated as one if print_function was
1284 # function but should only be treated as one if print_function was
1285 # loaded with a future import. In this case, just bail.
1285 # loaded with a future import. In this case, just bail.
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1290
1290
1291 # Look for the given name by splitting it in parts. If the head is
1291 # Look for the given name by splitting it in parts. If the head is
1292 # found, then we look for all the remaining parts as members, and only
1292 # found, then we look for all the remaining parts as members, and only
1293 # declare success if we can find them all.
1293 # declare success if we can find them all.
1294 oname_parts = oname.split('.')
1294 oname_parts = oname.split('.')
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1296 for nsname,ns in namespaces:
1296 for nsname,ns in namespaces:
1297 try:
1297 try:
1298 obj = ns[oname_head]
1298 obj = ns[oname_head]
1299 except KeyError:
1299 except KeyError:
1300 continue
1300 continue
1301 else:
1301 else:
1302 #print 'oname_rest:', oname_rest # dbg
1302 #print 'oname_rest:', oname_rest # dbg
1303 for part in oname_rest:
1303 for part in oname_rest:
1304 try:
1304 try:
1305 parent = obj
1305 parent = obj
1306 obj = getattr(obj,part)
1306 obj = getattr(obj,part)
1307 except:
1307 except:
1308 # Blanket except b/c some badly implemented objects
1308 # Blanket except b/c some badly implemented objects
1309 # allow __getattr__ to raise exceptions other than
1309 # allow __getattr__ to raise exceptions other than
1310 # AttributeError, which then crashes IPython.
1310 # AttributeError, which then crashes IPython.
1311 break
1311 break
1312 else:
1312 else:
1313 # If we finish the for loop (no break), we got all members
1313 # If we finish the for loop (no break), we got all members
1314 found = True
1314 found = True
1315 ospace = nsname
1315 ospace = nsname
1316 if ns == alias_ns:
1316 if ns == alias_ns:
1317 isalias = True
1317 isalias = True
1318 break # namespace loop
1318 break # namespace loop
1319
1319
1320 # Try to see if it's magic
1320 # Try to see if it's magic
1321 if not found:
1321 if not found:
1322 if oname.startswith(ESC_MAGIC):
1322 if oname.startswith(ESC_MAGIC):
1323 oname = oname[1:]
1323 oname = oname[1:]
1324 obj = getattr(self,'magic_'+oname,None)
1324 obj = getattr(self,'magic_'+oname,None)
1325 if obj is not None:
1325 if obj is not None:
1326 found = True
1326 found = True
1327 ospace = 'IPython internal'
1327 ospace = 'IPython internal'
1328 ismagic = True
1328 ismagic = True
1329
1329
1330 # Last try: special-case some literals like '', [], {}, etc:
1330 # Last try: special-case some literals like '', [], {}, etc:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1332 obj = eval(oname_head)
1332 obj = eval(oname_head)
1333 found = True
1333 found = True
1334 ospace = 'Interactive'
1334 ospace = 'Interactive'
1335
1335
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1338
1338
1339 def _ofind_property(self, oname, info):
1339 def _ofind_property(self, oname, info):
1340 """Second part of object finding, to look for property details."""
1340 """Second part of object finding, to look for property details."""
1341 if info.found:
1341 if info.found:
1342 # Get the docstring of the class property if it exists.
1342 # Get the docstring of the class property if it exists.
1343 path = oname.split('.')
1343 path = oname.split('.')
1344 root = '.'.join(path[:-1])
1344 root = '.'.join(path[:-1])
1345 if info.parent is not None:
1345 if info.parent is not None:
1346 try:
1346 try:
1347 target = getattr(info.parent, '__class__')
1347 target = getattr(info.parent, '__class__')
1348 # The object belongs to a class instance.
1348 # The object belongs to a class instance.
1349 try:
1349 try:
1350 target = getattr(target, path[-1])
1350 target = getattr(target, path[-1])
1351 # The class defines the object.
1351 # The class defines the object.
1352 if isinstance(target, property):
1352 if isinstance(target, property):
1353 oname = root + '.__class__.' + path[-1]
1353 oname = root + '.__class__.' + path[-1]
1354 info = Struct(self._ofind(oname))
1354 info = Struct(self._ofind(oname))
1355 except AttributeError: pass
1355 except AttributeError: pass
1356 except AttributeError: pass
1356 except AttributeError: pass
1357
1357
1358 # We return either the new info or the unmodified input if the object
1358 # We return either the new info or the unmodified input if the object
1359 # hadn't been found
1359 # hadn't been found
1360 return info
1360 return info
1361
1361
1362 def _object_find(self, oname, namespaces=None):
1362 def _object_find(self, oname, namespaces=None):
1363 """Find an object and return a struct with info about it."""
1363 """Find an object and return a struct with info about it."""
1364 inf = Struct(self._ofind(oname, namespaces))
1364 inf = Struct(self._ofind(oname, namespaces))
1365 return Struct(self._ofind_property(oname, inf))
1365 return Struct(self._ofind_property(oname, inf))
1366
1366
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1368 """Generic interface to the inspector system.
1368 """Generic interface to the inspector system.
1369
1369
1370 This function is meant to be called by pdef, pdoc & friends."""
1370 This function is meant to be called by pdef, pdoc & friends."""
1371 info = self._object_find(oname)
1371 info = self._object_find(oname)
1372 if info.found:
1372 if info.found:
1373 pmethod = getattr(self.inspector, meth)
1373 pmethod = getattr(self.inspector, meth)
1374 formatter = format_screen if info.ismagic else None
1374 formatter = format_screen if info.ismagic else None
1375 if meth == 'pdoc':
1375 if meth == 'pdoc':
1376 pmethod(info.obj, oname, formatter)
1376 pmethod(info.obj, oname, formatter)
1377 elif meth == 'pinfo':
1377 elif meth == 'pinfo':
1378 pmethod(info.obj, oname, formatter, info, **kw)
1378 pmethod(info.obj, oname, formatter, info, **kw)
1379 else:
1379 else:
1380 pmethod(info.obj, oname)
1380 pmethod(info.obj, oname)
1381 else:
1381 else:
1382 print 'Object `%s` not found.' % oname
1382 print 'Object `%s` not found.' % oname
1383 return 'not found' # so callers can take other action
1383 return 'not found' # so callers can take other action
1384
1384
1385 def object_inspect(self, oname):
1385 def object_inspect(self, oname):
1386 with self.builtin_trap:
1386 with self.builtin_trap:
1387 info = self._object_find(oname)
1387 info = self._object_find(oname)
1388 if info.found:
1388 if info.found:
1389 return self.inspector.info(info.obj, oname, info=info)
1389 return self.inspector.info(info.obj, oname, info=info)
1390 else:
1390 else:
1391 return oinspect.object_info(name=oname, found=False)
1391 return oinspect.object_info(name=oname, found=False)
1392
1392
1393 #-------------------------------------------------------------------------
1393 #-------------------------------------------------------------------------
1394 # Things related to history management
1394 # Things related to history management
1395 #-------------------------------------------------------------------------
1395 #-------------------------------------------------------------------------
1396
1396
1397 def init_history(self):
1397 def init_history(self):
1398 """Sets up the command history, and starts regular autosaves."""
1398 """Sets up the command history, and starts regular autosaves."""
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1400
1400
1401 #-------------------------------------------------------------------------
1401 #-------------------------------------------------------------------------
1402 # Things related to exception handling and tracebacks (not debugging)
1402 # Things related to exception handling and tracebacks (not debugging)
1403 #-------------------------------------------------------------------------
1403 #-------------------------------------------------------------------------
1404
1404
1405 def init_traceback_handlers(self, custom_exceptions):
1405 def init_traceback_handlers(self, custom_exceptions):
1406 # Syntax error handler.
1406 # Syntax error handler.
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1408
1408
1409 # The interactive one is initialized with an offset, meaning we always
1409 # The interactive one is initialized with an offset, meaning we always
1410 # want to remove the topmost item in the traceback, which is our own
1410 # want to remove the topmost item in the traceback, which is our own
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1413 color_scheme='NoColor',
1413 color_scheme='NoColor',
1414 tb_offset = 1,
1414 tb_offset = 1,
1415 check_cache=self.compile.check_cache)
1415 check_cache=self.compile.check_cache)
1416
1416
1417 # The instance will store a pointer to the system-wide exception hook,
1417 # The instance will store a pointer to the system-wide exception hook,
1418 # so that runtime code (such as magics) can access it. This is because
1418 # so that runtime code (such as magics) can access it. This is because
1419 # during the read-eval loop, it may get temporarily overwritten.
1419 # during the read-eval loop, it may get temporarily overwritten.
1420 self.sys_excepthook = sys.excepthook
1420 self.sys_excepthook = sys.excepthook
1421
1421
1422 # and add any custom exception handlers the user may have specified
1422 # and add any custom exception handlers the user may have specified
1423 self.set_custom_exc(*custom_exceptions)
1423 self.set_custom_exc(*custom_exceptions)
1424
1424
1425 # Set the exception mode
1425 # Set the exception mode
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1427
1427
1428 def set_custom_exc(self, exc_tuple, handler):
1428 def set_custom_exc(self, exc_tuple, handler):
1429 """set_custom_exc(exc_tuple,handler)
1429 """set_custom_exc(exc_tuple,handler)
1430
1430
1431 Set a custom exception handler, which will be called if any of the
1431 Set a custom exception handler, which will be called if any of the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1433 run_code() method.
1433 run_code() method.
1434
1434
1435 Inputs:
1435 Inputs:
1436
1436
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1438 handler for. It is very important that you use a tuple, and NOT A
1438 handler for. It is very important that you use a tuple, and NOT A
1439 LIST here, because of the way Python's except statement works. If
1439 LIST here, because of the way Python's except statement works. If
1440 you only want to trap a single exception, use a singleton tuple:
1440 you only want to trap a single exception, use a singleton tuple:
1441
1441
1442 exc_tuple == (MyCustomException,)
1442 exc_tuple == (MyCustomException,)
1443
1443
1444 - handler: this must be defined as a function with the following
1444 - handler: this must be defined as a function with the following
1445 basic interface::
1445 basic interface::
1446
1446
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1448 ...
1448 ...
1449 # The return value must be
1449 # The return value must be
1450 return structured_traceback
1450 return structured_traceback
1451
1451
1452 This will be made into an instance method (via types.MethodType)
1452 This will be made into an instance method (via types.MethodType)
1453 of IPython itself, and it will be called if any of the exceptions
1453 of IPython itself, and it will be called if any of the exceptions
1454 listed in the exc_tuple are caught. If the handler is None, an
1454 listed in the exc_tuple are caught. If the handler is None, an
1455 internal basic one is used, which just prints basic info.
1455 internal basic one is used, which just prints basic info.
1456
1456
1457 WARNING: by putting in your own exception handler into IPython's main
1457 WARNING: by putting in your own exception handler into IPython's main
1458 execution loop, you run a very good chance of nasty crashes. This
1458 execution loop, you run a very good chance of nasty crashes. This
1459 facility should only be used if you really know what you are doing."""
1459 facility should only be used if you really know what you are doing."""
1460
1460
1461 assert type(exc_tuple)==type(()) , \
1461 assert type(exc_tuple)==type(()) , \
1462 "The custom exceptions must be given AS A TUPLE."
1462 "The custom exceptions must be given AS A TUPLE."
1463
1463
1464 def dummy_handler(self,etype,value,tb):
1464 def dummy_handler(self,etype,value,tb):
1465 print '*** Simple custom exception handler ***'
1465 print '*** Simple custom exception handler ***'
1466 print 'Exception type :',etype
1466 print 'Exception type :',etype
1467 print 'Exception value:',value
1467 print 'Exception value:',value
1468 print 'Traceback :',tb
1468 print 'Traceback :',tb
1469 #print 'Source code :','\n'.join(self.buffer)
1469 #print 'Source code :','\n'.join(self.buffer)
1470
1470
1471 if handler is None: handler = dummy_handler
1471 if handler is None: handler = dummy_handler
1472
1472
1473 self.CustomTB = types.MethodType(handler,self)
1473 self.CustomTB = types.MethodType(handler,self)
1474 self.custom_exceptions = exc_tuple
1474 self.custom_exceptions = exc_tuple
1475
1475
1476 def excepthook(self, etype, value, tb):
1476 def excepthook(self, etype, value, tb):
1477 """One more defense for GUI apps that call sys.excepthook.
1477 """One more defense for GUI apps that call sys.excepthook.
1478
1478
1479 GUI frameworks like wxPython trap exceptions and call
1479 GUI frameworks like wxPython trap exceptions and call
1480 sys.excepthook themselves. I guess this is a feature that
1480 sys.excepthook themselves. I guess this is a feature that
1481 enables them to keep running after exceptions that would
1481 enables them to keep running after exceptions that would
1482 otherwise kill their mainloop. This is a bother for IPython
1482 otherwise kill their mainloop. This is a bother for IPython
1483 which excepts to catch all of the program exceptions with a try:
1483 which excepts to catch all of the program exceptions with a try:
1484 except: statement.
1484 except: statement.
1485
1485
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1487 any app directly invokes sys.excepthook, it will look to the user like
1487 any app directly invokes sys.excepthook, it will look to the user like
1488 IPython crashed. In order to work around this, we can disable the
1488 IPython crashed. In order to work around this, we can disable the
1489 CrashHandler and replace it with this excepthook instead, which prints a
1489 CrashHandler and replace it with this excepthook instead, which prints a
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1491 call sys.excepthook will generate a regular-looking exception from
1491 call sys.excepthook will generate a regular-looking exception from
1492 IPython, and the CrashHandler will only be triggered by real IPython
1492 IPython, and the CrashHandler will only be triggered by real IPython
1493 crashes.
1493 crashes.
1494
1494
1495 This hook should be used sparingly, only in places which are not likely
1495 This hook should be used sparingly, only in places which are not likely
1496 to be true IPython errors.
1496 to be true IPython errors.
1497 """
1497 """
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1499
1499
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1501 exception_only=False):
1501 exception_only=False):
1502 """Display the exception that just occurred.
1502 """Display the exception that just occurred.
1503
1503
1504 If nothing is known about the exception, this is the method which
1504 If nothing is known about the exception, this is the method which
1505 should be used throughout the code for presenting user tracebacks,
1505 should be used throughout the code for presenting user tracebacks,
1506 rather than directly invoking the InteractiveTB object.
1506 rather than directly invoking the InteractiveTB object.
1507
1507
1508 A specific showsyntaxerror() also exists, but this method can take
1508 A specific showsyntaxerror() also exists, but this method can take
1509 care of calling it if needed, so unless you are explicitly catching a
1509 care of calling it if needed, so unless you are explicitly catching a
1510 SyntaxError exception, don't try to analyze the stack manually and
1510 SyntaxError exception, don't try to analyze the stack manually and
1511 simply call this method."""
1511 simply call this method."""
1512
1512
1513 try:
1513 try:
1514 if exc_tuple is None:
1514 if exc_tuple is None:
1515 etype, value, tb = sys.exc_info()
1515 etype, value, tb = sys.exc_info()
1516 else:
1516 else:
1517 etype, value, tb = exc_tuple
1517 etype, value, tb = exc_tuple
1518
1518
1519 if etype is None:
1519 if etype is None:
1520 if hasattr(sys, 'last_type'):
1520 if hasattr(sys, 'last_type'):
1521 etype, value, tb = sys.last_type, sys.last_value, \
1521 etype, value, tb = sys.last_type, sys.last_value, \
1522 sys.last_traceback
1522 sys.last_traceback
1523 else:
1523 else:
1524 self.write_err('No traceback available to show.\n')
1524 self.write_err('No traceback available to show.\n')
1525 return
1525 return
1526
1526
1527 if etype is SyntaxError:
1527 if etype is SyntaxError:
1528 # Though this won't be called by syntax errors in the input
1528 # Though this won't be called by syntax errors in the input
1529 # line, there may be SyntaxError cases whith imported code.
1529 # line, there may be SyntaxError cases whith imported code.
1530 self.showsyntaxerror(filename)
1530 self.showsyntaxerror(filename)
1531 elif etype is UsageError:
1531 elif etype is UsageError:
1532 print "UsageError:", value
1532 print "UsageError:", value
1533 else:
1533 else:
1534 # WARNING: these variables are somewhat deprecated and not
1534 # WARNING: these variables are somewhat deprecated and not
1535 # necessarily safe to use in a threaded environment, but tools
1535 # necessarily safe to use in a threaded environment, but tools
1536 # like pdb depend on their existence, so let's set them. If we
1536 # like pdb depend on their existence, so let's set them. If we
1537 # find problems in the field, we'll need to revisit their use.
1537 # find problems in the field, we'll need to revisit their use.
1538 sys.last_type = etype
1538 sys.last_type = etype
1539 sys.last_value = value
1539 sys.last_value = value
1540 sys.last_traceback = tb
1540 sys.last_traceback = tb
1541 if etype in self.custom_exceptions:
1541 if etype in self.custom_exceptions:
1542 # FIXME: Old custom traceback objects may just return a
1542 # FIXME: Old custom traceback objects may just return a
1543 # string, in that case we just put it into a list
1543 # string, in that case we just put it into a list
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1545 if isinstance(ctb, basestring):
1545 if isinstance(ctb, basestring):
1546 stb = [stb]
1546 stb = [stb]
1547 else:
1547 else:
1548 if exception_only:
1548 if exception_only:
1549 stb = ['An exception has occurred, use %tb to see '
1549 stb = ['An exception has occurred, use %tb to see '
1550 'the full traceback.\n']
1550 'the full traceback.\n']
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1552 value))
1552 value))
1553 else:
1553 else:
1554 stb = self.InteractiveTB.structured_traceback(etype,
1554 stb = self.InteractiveTB.structured_traceback(etype,
1555 value, tb, tb_offset=tb_offset)
1555 value, tb, tb_offset=tb_offset)
1556
1556
1557 if self.call_pdb:
1557 if self.call_pdb:
1558 # drop into debugger
1558 # drop into debugger
1559 self.debugger(force=True)
1559 self.debugger(force=True)
1560
1560
1561 # Actually show the traceback
1561 # Actually show the traceback
1562 self._showtraceback(etype, value, stb)
1562 self._showtraceback(etype, value, stb)
1563
1563
1564 except KeyboardInterrupt:
1564 except KeyboardInterrupt:
1565 self.write_err("\nKeyboardInterrupt\n")
1565 self.write_err("\nKeyboardInterrupt\n")
1566
1566
1567 def _showtraceback(self, etype, evalue, stb):
1567 def _showtraceback(self, etype, evalue, stb):
1568 """Actually show a traceback.
1568 """Actually show a traceback.
1569
1569
1570 Subclasses may override this method to put the traceback on a different
1570 Subclasses may override this method to put the traceback on a different
1571 place, like a side channel.
1571 place, like a side channel.
1572 """
1572 """
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1574
1574
1575 def showsyntaxerror(self, filename=None):
1575 def showsyntaxerror(self, filename=None):
1576 """Display the syntax error that just occurred.
1576 """Display the syntax error that just occurred.
1577
1577
1578 This doesn't display a stack trace because there isn't one.
1578 This doesn't display a stack trace because there isn't one.
1579
1579
1580 If a filename is given, it is stuffed in the exception instead
1580 If a filename is given, it is stuffed in the exception instead
1581 of what was there before (because Python's parser always uses
1581 of what was there before (because Python's parser always uses
1582 "<string>" when reading from a string).
1582 "<string>" when reading from a string).
1583 """
1583 """
1584 etype, value, last_traceback = sys.exc_info()
1584 etype, value, last_traceback = sys.exc_info()
1585
1585
1586 # See note about these variables in showtraceback() above
1586 # See note about these variables in showtraceback() above
1587 sys.last_type = etype
1587 sys.last_type = etype
1588 sys.last_value = value
1588 sys.last_value = value
1589 sys.last_traceback = last_traceback
1589 sys.last_traceback = last_traceback
1590
1590
1591 if filename and etype is SyntaxError:
1591 if filename and etype is SyntaxError:
1592 # Work hard to stuff the correct filename in the exception
1592 # Work hard to stuff the correct filename in the exception
1593 try:
1593 try:
1594 msg, (dummy_filename, lineno, offset, line) = value
1594 msg, (dummy_filename, lineno, offset, line) = value
1595 except:
1595 except:
1596 # Not the format we expect; leave it alone
1596 # Not the format we expect; leave it alone
1597 pass
1597 pass
1598 else:
1598 else:
1599 # Stuff in the right filename
1599 # Stuff in the right filename
1600 try:
1600 try:
1601 # Assume SyntaxError is a class exception
1601 # Assume SyntaxError is a class exception
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1603 except:
1603 except:
1604 # If that failed, assume SyntaxError is a string
1604 # If that failed, assume SyntaxError is a string
1605 value = msg, (filename, lineno, offset, line)
1605 value = msg, (filename, lineno, offset, line)
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1607 self._showtraceback(etype, value, stb)
1607 self._showtraceback(etype, value, stb)
1608
1608
1609 # This is overridden in TerminalInteractiveShell to show a message about
1609 # This is overridden in TerminalInteractiveShell to show a message about
1610 # the %paste magic.
1610 # the %paste magic.
1611 def showindentationerror(self):
1611 def showindentationerror(self):
1612 """Called by run_cell when there's an IndentationError in code entered
1612 """Called by run_cell when there's an IndentationError in code entered
1613 at the prompt.
1613 at the prompt.
1614
1614
1615 This is overridden in TerminalInteractiveShell to show a message about
1615 This is overridden in TerminalInteractiveShell to show a message about
1616 the %paste magic."""
1616 the %paste magic."""
1617 self.showsyntaxerror()
1617 self.showsyntaxerror()
1618
1618
1619 #-------------------------------------------------------------------------
1619 #-------------------------------------------------------------------------
1620 # Things related to readline
1620 # Things related to readline
1621 #-------------------------------------------------------------------------
1621 #-------------------------------------------------------------------------
1622
1622
1623 def init_readline(self):
1623 def init_readline(self):
1624 """Command history completion/saving/reloading."""
1624 """Command history completion/saving/reloading."""
1625
1625
1626 if self.readline_use:
1626 if self.readline_use:
1627 import IPython.utils.rlineimpl as readline
1627 import IPython.utils.rlineimpl as readline
1628
1628
1629 self.rl_next_input = None
1629 self.rl_next_input = None
1630 self.rl_do_indent = False
1630 self.rl_do_indent = False
1631
1631
1632 if not self.readline_use or not readline.have_readline:
1632 if not self.readline_use or not readline.have_readline:
1633 self.has_readline = False
1633 self.has_readline = False
1634 self.readline = None
1634 self.readline = None
1635 # Set a number of methods that depend on readline to be no-op
1635 # Set a number of methods that depend on readline to be no-op
1636 self.set_readline_completer = no_op
1636 self.set_readline_completer = no_op
1637 self.set_custom_completer = no_op
1637 self.set_custom_completer = no_op
1638 self.set_completer_frame = no_op
1638 self.set_completer_frame = no_op
1639 warn('Readline services not available or not loaded.')
1639 warn('Readline services not available or not loaded.')
1640 else:
1640 else:
1641 self.has_readline = True
1641 self.has_readline = True
1642 self.readline = readline
1642 self.readline = readline
1643 sys.modules['readline'] = readline
1643 sys.modules['readline'] = readline
1644
1644
1645 # Platform-specific configuration
1645 # Platform-specific configuration
1646 if os.name == 'nt':
1646 if os.name == 'nt':
1647 # FIXME - check with Frederick to see if we can harmonize
1647 # FIXME - check with Frederick to see if we can harmonize
1648 # naming conventions with pyreadline to avoid this
1648 # naming conventions with pyreadline to avoid this
1649 # platform-dependent check
1649 # platform-dependent check
1650 self.readline_startup_hook = readline.set_pre_input_hook
1650 self.readline_startup_hook = readline.set_pre_input_hook
1651 else:
1651 else:
1652 self.readline_startup_hook = readline.set_startup_hook
1652 self.readline_startup_hook = readline.set_startup_hook
1653
1653
1654 # Load user's initrc file (readline config)
1654 # Load user's initrc file (readline config)
1655 # Or if libedit is used, load editrc.
1655 # Or if libedit is used, load editrc.
1656 inputrc_name = os.environ.get('INPUTRC')
1656 inputrc_name = os.environ.get('INPUTRC')
1657 if inputrc_name is None:
1657 if inputrc_name is None:
1658 home_dir = get_home_dir()
1658 home_dir = get_home_dir()
1659 if home_dir is not None:
1659 if home_dir is not None:
1660 inputrc_name = '.inputrc'
1660 inputrc_name = '.inputrc'
1661 if readline.uses_libedit:
1661 if readline.uses_libedit:
1662 inputrc_name = '.editrc'
1662 inputrc_name = '.editrc'
1663 inputrc_name = os.path.join(home_dir, inputrc_name)
1663 inputrc_name = os.path.join(home_dir, inputrc_name)
1664 if os.path.isfile(inputrc_name):
1664 if os.path.isfile(inputrc_name):
1665 try:
1665 try:
1666 readline.read_init_file(inputrc_name)
1666 readline.read_init_file(inputrc_name)
1667 except:
1667 except:
1668 warn('Problems reading readline initialization file <%s>'
1668 warn('Problems reading readline initialization file <%s>'
1669 % inputrc_name)
1669 % inputrc_name)
1670
1670
1671 # Configure readline according to user's prefs
1671 # Configure readline according to user's prefs
1672 # This is only done if GNU readline is being used. If libedit
1672 # This is only done if GNU readline is being used. If libedit
1673 # is being used (as on Leopard) the readline config is
1673 # is being used (as on Leopard) the readline config is
1674 # not run as the syntax for libedit is different.
1674 # not run as the syntax for libedit is different.
1675 if not readline.uses_libedit:
1675 if not readline.uses_libedit:
1676 for rlcommand in self.readline_parse_and_bind:
1676 for rlcommand in self.readline_parse_and_bind:
1677 #print "loading rl:",rlcommand # dbg
1677 #print "loading rl:",rlcommand # dbg
1678 readline.parse_and_bind(rlcommand)
1678 readline.parse_and_bind(rlcommand)
1679
1679
1680 # Remove some chars from the delimiters list. If we encounter
1680 # Remove some chars from the delimiters list. If we encounter
1681 # unicode chars, discard them.
1681 # unicode chars, discard them.
1682 delims = readline.get_completer_delims().encode("ascii", "ignore")
1682 delims = readline.get_completer_delims().encode("ascii", "ignore")
1683 for d in self.readline_remove_delims:
1683 for d in self.readline_remove_delims:
1684 delims = delims.replace(d, "")
1684 delims = delims.replace(d, "")
1685 delims = delims.replace(ESC_MAGIC, '')
1685 delims = delims.replace(ESC_MAGIC, '')
1686 readline.set_completer_delims(delims)
1686 readline.set_completer_delims(delims)
1687 # otherwise we end up with a monster history after a while:
1687 # otherwise we end up with a monster history after a while:
1688 readline.set_history_length(self.history_length)
1688 readline.set_history_length(self.history_length)
1689
1689
1690 self.refill_readline_hist()
1690 self.refill_readline_hist()
1691 self.readline_no_record = ReadlineNoRecord(self)
1691 self.readline_no_record = ReadlineNoRecord(self)
1692
1692
1693 # Configure auto-indent for all platforms
1693 # Configure auto-indent for all platforms
1694 self.set_autoindent(self.autoindent)
1694 self.set_autoindent(self.autoindent)
1695
1695
1696 def refill_readline_hist(self):
1696 def refill_readline_hist(self):
1697 # Load the last 1000 lines from history
1697 # Load the last 1000 lines from history
1698 self.readline.clear_history()
1698 self.readline.clear_history()
1699 stdin_encoding = sys.stdin.encoding or "utf-8"
1699 stdin_encoding = sys.stdin.encoding or "utf-8"
1700 for _, _, cell in self.history_manager.get_tail(1000,
1700 for _, _, cell in self.history_manager.get_tail(1000,
1701 include_latest=True):
1701 include_latest=True):
1702 if cell.strip(): # Ignore blank lines
1702 if cell.strip(): # Ignore blank lines
1703 for line in cell.splitlines():
1703 for line in cell.splitlines():
1704 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1704 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1705
1705
1706 def set_next_input(self, s):
1706 def set_next_input(self, s):
1707 """ Sets the 'default' input string for the next command line.
1707 """ Sets the 'default' input string for the next command line.
1708
1708
1709 Requires readline.
1709 Requires readline.
1710
1710
1711 Example:
1711 Example:
1712
1712
1713 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1713 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1714 [D:\ipython]|2> Hello Word_ # cursor is here
1714 [D:\ipython]|2> Hello Word_ # cursor is here
1715 """
1715 """
1716 if isinstance(s, unicode):
1716 if isinstance(s, unicode):
1717 s = s.encode(self.stdin_encoding, 'replace')
1717 s = s.encode(self.stdin_encoding, 'replace')
1718 self.rl_next_input = s
1718 self.rl_next_input = s
1719
1719
1720 # Maybe move this to the terminal subclass?
1720 # Maybe move this to the terminal subclass?
1721 def pre_readline(self):
1721 def pre_readline(self):
1722 """readline hook to be used at the start of each line.
1722 """readline hook to be used at the start of each line.
1723
1723
1724 Currently it handles auto-indent only."""
1724 Currently it handles auto-indent only."""
1725
1725
1726 if self.rl_do_indent:
1726 if self.rl_do_indent:
1727 self.readline.insert_text(self._indent_current_str())
1727 self.readline.insert_text(self._indent_current_str())
1728 if self.rl_next_input is not None:
1728 if self.rl_next_input is not None:
1729 self.readline.insert_text(self.rl_next_input)
1729 self.readline.insert_text(self.rl_next_input)
1730 self.rl_next_input = None
1730 self.rl_next_input = None
1731
1731
1732 def _indent_current_str(self):
1732 def _indent_current_str(self):
1733 """return the current level of indentation as a string"""
1733 """return the current level of indentation as a string"""
1734 return self.input_splitter.indent_spaces * ' '
1734 return self.input_splitter.indent_spaces * ' '
1735
1735
1736 #-------------------------------------------------------------------------
1736 #-------------------------------------------------------------------------
1737 # Things related to text completion
1737 # Things related to text completion
1738 #-------------------------------------------------------------------------
1738 #-------------------------------------------------------------------------
1739
1739
1740 def init_completer(self):
1740 def init_completer(self):
1741 """Initialize the completion machinery.
1741 """Initialize the completion machinery.
1742
1742
1743 This creates completion machinery that can be used by client code,
1743 This creates completion machinery that can be used by client code,
1744 either interactively in-process (typically triggered by the readline
1744 either interactively in-process (typically triggered by the readline
1745 library), programatically (such as in test suites) or out-of-prcess
1745 library), programatically (such as in test suites) or out-of-prcess
1746 (typically over the network by remote frontends).
1746 (typically over the network by remote frontends).
1747 """
1747 """
1748 from IPython.core.completer import IPCompleter
1748 from IPython.core.completer import IPCompleter
1749 from IPython.core.completerlib import (module_completer,
1749 from IPython.core.completerlib import (module_completer,
1750 magic_run_completer, cd_completer)
1750 magic_run_completer, cd_completer)
1751
1751
1752 self.Completer = IPCompleter(self,
1752 self.Completer = IPCompleter(self,
1753 self.user_ns,
1753 self.user_ns,
1754 self.user_global_ns,
1754 self.user_global_ns,
1755 self.readline_omit__names,
1755 self.readline_omit__names,
1756 self.alias_manager.alias_table,
1756 self.alias_manager.alias_table,
1757 self.has_readline)
1757 self.has_readline)
1758
1758
1759 # Add custom completers to the basic ones built into IPCompleter
1759 # Add custom completers to the basic ones built into IPCompleter
1760 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1760 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1761 self.strdispatchers['complete_command'] = sdisp
1761 self.strdispatchers['complete_command'] = sdisp
1762 self.Completer.custom_completers = sdisp
1762 self.Completer.custom_completers = sdisp
1763
1763
1764 self.set_hook('complete_command', module_completer, str_key = 'import')
1764 self.set_hook('complete_command', module_completer, str_key = 'import')
1765 self.set_hook('complete_command', module_completer, str_key = 'from')
1765 self.set_hook('complete_command', module_completer, str_key = 'from')
1766 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1766 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1767 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1767 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1768
1768
1769 # Only configure readline if we truly are using readline. IPython can
1769 # Only configure readline if we truly are using readline. IPython can
1770 # do tab-completion over the network, in GUIs, etc, where readline
1770 # do tab-completion over the network, in GUIs, etc, where readline
1771 # itself may be absent
1771 # itself may be absent
1772 if self.has_readline:
1772 if self.has_readline:
1773 self.set_readline_completer()
1773 self.set_readline_completer()
1774
1774
1775 def complete(self, text, line=None, cursor_pos=None):
1775 def complete(self, text, line=None, cursor_pos=None):
1776 """Return the completed text and a list of completions.
1776 """Return the completed text and a list of completions.
1777
1777
1778 Parameters
1778 Parameters
1779 ----------
1779 ----------
1780
1780
1781 text : string
1781 text : string
1782 A string of text to be completed on. It can be given as empty and
1782 A string of text to be completed on. It can be given as empty and
1783 instead a line/position pair are given. In this case, the
1783 instead a line/position pair are given. In this case, the
1784 completer itself will split the line like readline does.
1784 completer itself will split the line like readline does.
1785
1785
1786 line : string, optional
1786 line : string, optional
1787 The complete line that text is part of.
1787 The complete line that text is part of.
1788
1788
1789 cursor_pos : int, optional
1789 cursor_pos : int, optional
1790 The position of the cursor on the input line.
1790 The position of the cursor on the input line.
1791
1791
1792 Returns
1792 Returns
1793 -------
1793 -------
1794 text : string
1794 text : string
1795 The actual text that was completed.
1795 The actual text that was completed.
1796
1796
1797 matches : list
1797 matches : list
1798 A sorted list with all possible completions.
1798 A sorted list with all possible completions.
1799
1799
1800 The optional arguments allow the completion to take more context into
1800 The optional arguments allow the completion to take more context into
1801 account, and are part of the low-level completion API.
1801 account, and are part of the low-level completion API.
1802
1802
1803 This is a wrapper around the completion mechanism, similar to what
1803 This is a wrapper around the completion mechanism, similar to what
1804 readline does at the command line when the TAB key is hit. By
1804 readline does at the command line when the TAB key is hit. By
1805 exposing it as a method, it can be used by other non-readline
1805 exposing it as a method, it can be used by other non-readline
1806 environments (such as GUIs) for text completion.
1806 environments (such as GUIs) for text completion.
1807
1807
1808 Simple usage example:
1808 Simple usage example:
1809
1809
1810 In [1]: x = 'hello'
1810 In [1]: x = 'hello'
1811
1811
1812 In [2]: _ip.complete('x.l')
1812 In [2]: _ip.complete('x.l')
1813 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1813 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1814 """
1814 """
1815
1815
1816 # Inject names into __builtin__ so we can complete on the added names.
1816 # Inject names into __builtin__ so we can complete on the added names.
1817 with self.builtin_trap:
1817 with self.builtin_trap:
1818 return self.Completer.complete(text, line, cursor_pos)
1818 return self.Completer.complete(text, line, cursor_pos)
1819
1819
1820 def set_custom_completer(self, completer, pos=0):
1820 def set_custom_completer(self, completer, pos=0):
1821 """Adds a new custom completer function.
1821 """Adds a new custom completer function.
1822
1822
1823 The position argument (defaults to 0) is the index in the completers
1823 The position argument (defaults to 0) is the index in the completers
1824 list where you want the completer to be inserted."""
1824 list where you want the completer to be inserted."""
1825
1825
1826 newcomp = types.MethodType(completer,self.Completer)
1826 newcomp = types.MethodType(completer,self.Completer)
1827 self.Completer.matchers.insert(pos,newcomp)
1827 self.Completer.matchers.insert(pos,newcomp)
1828
1828
1829 def set_readline_completer(self):
1829 def set_readline_completer(self):
1830 """Reset readline's completer to be our own."""
1830 """Reset readline's completer to be our own."""
1831 self.readline.set_completer(self.Completer.rlcomplete)
1831 self.readline.set_completer(self.Completer.rlcomplete)
1832
1832
1833 def set_completer_frame(self, frame=None):
1833 def set_completer_frame(self, frame=None):
1834 """Set the frame of the completer."""
1834 """Set the frame of the completer."""
1835 if frame:
1835 if frame:
1836 self.Completer.namespace = frame.f_locals
1836 self.Completer.namespace = frame.f_locals
1837 self.Completer.global_namespace = frame.f_globals
1837 self.Completer.global_namespace = frame.f_globals
1838 else:
1838 else:
1839 self.Completer.namespace = self.user_ns
1839 self.Completer.namespace = self.user_ns
1840 self.Completer.global_namespace = self.user_global_ns
1840 self.Completer.global_namespace = self.user_global_ns
1841
1841
1842 #-------------------------------------------------------------------------
1842 #-------------------------------------------------------------------------
1843 # Things related to magics
1843 # Things related to magics
1844 #-------------------------------------------------------------------------
1844 #-------------------------------------------------------------------------
1845
1845
1846 def init_magics(self):
1846 def init_magics(self):
1847 # FIXME: Move the color initialization to the DisplayHook, which
1847 # FIXME: Move the color initialization to the DisplayHook, which
1848 # should be split into a prompt manager and displayhook. We probably
1848 # should be split into a prompt manager and displayhook. We probably
1849 # even need a centralize colors management object.
1849 # even need a centralize colors management object.
1850 self.magic_colors(self.colors)
1850 self.magic_colors(self.colors)
1851 # History was moved to a separate module
1851 # History was moved to a separate module
1852 from . import history
1852 from . import history
1853 history.init_ipython(self)
1853 history.init_ipython(self)
1854
1854
1855 def magic(self, arg_s, next_input=None):
1855 def magic(self, arg_s, next_input=None):
1856 """Call a magic function by name.
1856 """Call a magic function by name.
1857
1857
1858 Input: a string containing the name of the magic function to call and
1858 Input: a string containing the name of the magic function to call and
1859 any additional arguments to be passed to the magic.
1859 any additional arguments to be passed to the magic.
1860
1860
1861 magic('name -opt foo bar') is equivalent to typing at the ipython
1861 magic('name -opt foo bar') is equivalent to typing at the ipython
1862 prompt:
1862 prompt:
1863
1863
1864 In[1]: %name -opt foo bar
1864 In[1]: %name -opt foo bar
1865
1865
1866 To call a magic without arguments, simply use magic('name').
1866 To call a magic without arguments, simply use magic('name').
1867
1867
1868 This provides a proper Python function to call IPython's magics in any
1868 This provides a proper Python function to call IPython's magics in any
1869 valid Python code you can type at the interpreter, including loops and
1869 valid Python code you can type at the interpreter, including loops and
1870 compound statements.
1870 compound statements.
1871 """
1871 """
1872 # Allow setting the next input - this is used if the user does `a=abs?`.
1872 # Allow setting the next input - this is used if the user does `a=abs?`.
1873 # We do this first so that magic functions can override it.
1873 # We do this first so that magic functions can override it.
1874 if next_input:
1874 if next_input:
1875 self.set_next_input(next_input)
1875 self.set_next_input(next_input)
1876
1876
1877 args = arg_s.split(' ',1)
1877 args = arg_s.split(' ',1)
1878 magic_name = args[0]
1878 magic_name = args[0]
1879 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1879 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1880
1880
1881 try:
1881 try:
1882 magic_args = args[1]
1882 magic_args = args[1]
1883 except IndexError:
1883 except IndexError:
1884 magic_args = ''
1884 magic_args = ''
1885 fn = getattr(self,'magic_'+magic_name,None)
1885 fn = getattr(self,'magic_'+magic_name,None)
1886 if fn is None:
1886 if fn is None:
1887 error("Magic function `%s` not found." % magic_name)
1887 error("Magic function `%s` not found." % magic_name)
1888 else:
1888 else:
1889 magic_args = self.var_expand(magic_args,1)
1889 magic_args = self.var_expand(magic_args,1)
1890 # Grab local namespace if we need it:
1890 # Grab local namespace if we need it:
1891 if getattr(fn, "needs_local_scope", False):
1891 if getattr(fn, "needs_local_scope", False):
1892 self._magic_locals = sys._getframe(1).f_locals
1892 self._magic_locals = sys._getframe(1).f_locals
1893 with self.builtin_trap:
1893 with self.builtin_trap:
1894 result = fn(magic_args)
1894 result = fn(magic_args)
1895 # Ensure we're not keeping object references around:
1895 # Ensure we're not keeping object references around:
1896 self._magic_locals = {}
1896 self._magic_locals = {}
1897 return result
1897 return result
1898
1898
1899 def define_magic(self, magicname, func):
1899 def define_magic(self, magicname, func):
1900 """Expose own function as magic function for ipython
1900 """Expose own function as magic function for ipython
1901
1901
1902 def foo_impl(self,parameter_s=''):
1902 def foo_impl(self,parameter_s=''):
1903 'My very own magic!. (Use docstrings, IPython reads them).'
1903 'My very own magic!. (Use docstrings, IPython reads them).'
1904 print 'Magic function. Passed parameter is between < >:'
1904 print 'Magic function. Passed parameter is between < >:'
1905 print '<%s>' % parameter_s
1905 print '<%s>' % parameter_s
1906 print 'The self object is:',self
1906 print 'The self object is:',self
1907
1907
1908 self.define_magic('foo',foo_impl)
1908 self.define_magic('foo',foo_impl)
1909 """
1909 """
1910
1910
1911 import new
1911 import new
1912 im = types.MethodType(func,self)
1912 im = types.MethodType(func,self)
1913 old = getattr(self, "magic_" + magicname, None)
1913 old = getattr(self, "magic_" + magicname, None)
1914 setattr(self, "magic_" + magicname, im)
1914 setattr(self, "magic_" + magicname, im)
1915 return old
1915 return old
1916
1916
1917 #-------------------------------------------------------------------------
1917 #-------------------------------------------------------------------------
1918 # Things related to macros
1918 # Things related to macros
1919 #-------------------------------------------------------------------------
1919 #-------------------------------------------------------------------------
1920
1920
1921 def define_macro(self, name, themacro):
1921 def define_macro(self, name, themacro):
1922 """Define a new macro
1922 """Define a new macro
1923
1923
1924 Parameters
1924 Parameters
1925 ----------
1925 ----------
1926 name : str
1926 name : str
1927 The name of the macro.
1927 The name of the macro.
1928 themacro : str or Macro
1928 themacro : str or Macro
1929 The action to do upon invoking the macro. If a string, a new
1929 The action to do upon invoking the macro. If a string, a new
1930 Macro object is created by passing the string to it.
1930 Macro object is created by passing the string to it.
1931 """
1931 """
1932
1932
1933 from IPython.core import macro
1933 from IPython.core import macro
1934
1934
1935 if isinstance(themacro, basestring):
1935 if isinstance(themacro, basestring):
1936 themacro = macro.Macro(themacro)
1936 themacro = macro.Macro(themacro)
1937 if not isinstance(themacro, macro.Macro):
1937 if not isinstance(themacro, macro.Macro):
1938 raise ValueError('A macro must be a string or a Macro instance.')
1938 raise ValueError('A macro must be a string or a Macro instance.')
1939 self.user_ns[name] = themacro
1939 self.user_ns[name] = themacro
1940
1940
1941 #-------------------------------------------------------------------------
1941 #-------------------------------------------------------------------------
1942 # Things related to the running of system commands
1942 # Things related to the running of system commands
1943 #-------------------------------------------------------------------------
1943 #-------------------------------------------------------------------------
1944
1944
1945 def system_piped(self, cmd):
1945 def system_piped(self, cmd):
1946 """Call the given cmd in a subprocess, piping stdout/err
1946 """Call the given cmd in a subprocess, piping stdout/err
1947
1947
1948 Parameters
1948 Parameters
1949 ----------
1949 ----------
1950 cmd : str
1950 cmd : str
1951 Command to execute (can not end in '&', as background processes are
1951 Command to execute (can not end in '&', as background processes are
1952 not supported. Should not be a command that expects input
1952 not supported. Should not be a command that expects input
1953 other than simple text.
1953 other than simple text.
1954 """
1954 """
1955 if cmd.rstrip().endswith('&'):
1955 if cmd.rstrip().endswith('&'):
1956 # this is *far* from a rigorous test
1956 # this is *far* from a rigorous test
1957 # We do not support backgrounding processes because we either use
1957 # We do not support backgrounding processes because we either use
1958 # pexpect or pipes to read from. Users can always just call
1958 # pexpect or pipes to read from. Users can always just call
1959 # os.system() or use ip.system=ip.system_raw
1959 # os.system() or use ip.system=ip.system_raw
1960 # if they really want a background process.
1960 # if they really want a background process.
1961 raise OSError("Background processes not supported.")
1961 raise OSError("Background processes not supported.")
1962
1962
1963 # we explicitly do NOT return the subprocess status code, because
1963 # we explicitly do NOT return the subprocess status code, because
1964 # a non-None value would trigger :func:`sys.displayhook` calls.
1964 # a non-None value would trigger :func:`sys.displayhook` calls.
1965 # Instead, we store the exit_code in user_ns.
1965 # Instead, we store the exit_code in user_ns.
1966 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1966 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1967
1967
1968 def system_raw(self, cmd):
1968 def system_raw(self, cmd):
1969 """Call the given cmd in a subprocess using os.system
1969 """Call the given cmd in a subprocess using os.system
1970
1970
1971 Parameters
1971 Parameters
1972 ----------
1972 ----------
1973 cmd : str
1973 cmd : str
1974 Command to execute.
1974 Command to execute.
1975 """
1975 """
1976 # We explicitly do NOT return the subprocess status code, because
1976 # We explicitly do NOT return the subprocess status code, because
1977 # a non-None value would trigger :func:`sys.displayhook` calls.
1977 # a non-None value would trigger :func:`sys.displayhook` calls.
1978 # Instead, we store the exit_code in user_ns.
1978 # Instead, we store the exit_code in user_ns.
1979 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1979 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1980
1980
1981 # use piped system by default, because it is better behaved
1981 # use piped system by default, because it is better behaved
1982 system = system_piped
1982 system = system_piped
1983
1983
1984 def getoutput(self, cmd, split=True):
1984 def getoutput(self, cmd, split=True):
1985 """Get output (possibly including stderr) from a subprocess.
1985 """Get output (possibly including stderr) from a subprocess.
1986
1986
1987 Parameters
1987 Parameters
1988 ----------
1988 ----------
1989 cmd : str
1989 cmd : str
1990 Command to execute (can not end in '&', as background processes are
1990 Command to execute (can not end in '&', as background processes are
1991 not supported.
1991 not supported.
1992 split : bool, optional
1992 split : bool, optional
1993
1993
1994 If True, split the output into an IPython SList. Otherwise, an
1994 If True, split the output into an IPython SList. Otherwise, an
1995 IPython LSString is returned. These are objects similar to normal
1995 IPython LSString is returned. These are objects similar to normal
1996 lists and strings, with a few convenience attributes for easier
1996 lists and strings, with a few convenience attributes for easier
1997 manipulation of line-based output. You can use '?' on them for
1997 manipulation of line-based output. You can use '?' on them for
1998 details.
1998 details.
1999 """
1999 """
2000 if cmd.rstrip().endswith('&'):
2000 if cmd.rstrip().endswith('&'):
2001 # this is *far* from a rigorous test
2001 # this is *far* from a rigorous test
2002 raise OSError("Background processes not supported.")
2002 raise OSError("Background processes not supported.")
2003 out = getoutput(self.var_expand(cmd, depth=2))
2003 out = getoutput(self.var_expand(cmd, depth=2))
2004 if split:
2004 if split:
2005 out = SList(out.splitlines())
2005 out = SList(out.splitlines())
2006 else:
2006 else:
2007 out = LSString(out)
2007 out = LSString(out)
2008 return out
2008 return out
2009
2009
2010 #-------------------------------------------------------------------------
2010 #-------------------------------------------------------------------------
2011 # Things related to aliases
2011 # Things related to aliases
2012 #-------------------------------------------------------------------------
2012 #-------------------------------------------------------------------------
2013
2013
2014 def init_alias(self):
2014 def init_alias(self):
2015 self.alias_manager = AliasManager(shell=self, config=self.config)
2015 self.alias_manager = AliasManager(shell=self, config=self.config)
2016 self.ns_table['alias'] = self.alias_manager.alias_table,
2016 self.ns_table['alias'] = self.alias_manager.alias_table,
2017
2017
2018 #-------------------------------------------------------------------------
2018 #-------------------------------------------------------------------------
2019 # Things related to extensions and plugins
2019 # Things related to extensions and plugins
2020 #-------------------------------------------------------------------------
2020 #-------------------------------------------------------------------------
2021
2021
2022 def init_extension_manager(self):
2022 def init_extension_manager(self):
2023 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2023 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2024
2024
2025 def init_plugin_manager(self):
2025 def init_plugin_manager(self):
2026 self.plugin_manager = PluginManager(config=self.config)
2026 self.plugin_manager = PluginManager(config=self.config)
2027
2027
2028 #-------------------------------------------------------------------------
2028 #-------------------------------------------------------------------------
2029 # Things related to payloads
2029 # Things related to payloads
2030 #-------------------------------------------------------------------------
2030 #-------------------------------------------------------------------------
2031
2031
2032 def init_payload(self):
2032 def init_payload(self):
2033 self.payload_manager = PayloadManager(config=self.config)
2033 self.payload_manager = PayloadManager(config=self.config)
2034
2034
2035 #-------------------------------------------------------------------------
2035 #-------------------------------------------------------------------------
2036 # Things related to the prefilter
2036 # Things related to the prefilter
2037 #-------------------------------------------------------------------------
2037 #-------------------------------------------------------------------------
2038
2038
2039 def init_prefilter(self):
2039 def init_prefilter(self):
2040 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2040 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2041 # Ultimately this will be refactored in the new interpreter code, but
2041 # Ultimately this will be refactored in the new interpreter code, but
2042 # for now, we should expose the main prefilter method (there's legacy
2042 # for now, we should expose the main prefilter method (there's legacy
2043 # code out there that may rely on this).
2043 # code out there that may rely on this).
2044 self.prefilter = self.prefilter_manager.prefilter_lines
2044 self.prefilter = self.prefilter_manager.prefilter_lines
2045
2045
2046 def auto_rewrite_input(self, cmd):
2046 def auto_rewrite_input(self, cmd):
2047 """Print to the screen the rewritten form of the user's command.
2047 """Print to the screen the rewritten form of the user's command.
2048
2048
2049 This shows visual feedback by rewriting input lines that cause
2049 This shows visual feedback by rewriting input lines that cause
2050 automatic calling to kick in, like::
2050 automatic calling to kick in, like::
2051
2051
2052 /f x
2052 /f x
2053
2053
2054 into::
2054 into::
2055
2055
2056 ------> f(x)
2056 ------> f(x)
2057
2057
2058 after the user's input prompt. This helps the user understand that the
2058 after the user's input prompt. This helps the user understand that the
2059 input line was transformed automatically by IPython.
2059 input line was transformed automatically by IPython.
2060 """
2060 """
2061 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2061 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2062
2062
2063 try:
2063 try:
2064 # plain ascii works better w/ pyreadline, on some machines, so
2064 # plain ascii works better w/ pyreadline, on some machines, so
2065 # we use it and only print uncolored rewrite if we have unicode
2065 # we use it and only print uncolored rewrite if we have unicode
2066 rw = str(rw)
2066 rw = str(rw)
2067 print >> io.stdout, rw
2067 print >> io.stdout, rw
2068 except UnicodeEncodeError:
2068 except UnicodeEncodeError:
2069 print "------> " + cmd
2069 print "------> " + cmd
2070
2070
2071 #-------------------------------------------------------------------------
2071 #-------------------------------------------------------------------------
2072 # Things related to extracting values/expressions from kernel and user_ns
2072 # Things related to extracting values/expressions from kernel and user_ns
2073 #-------------------------------------------------------------------------
2073 #-------------------------------------------------------------------------
2074
2074
2075 def _simple_error(self):
2075 def _simple_error(self):
2076 etype, value = sys.exc_info()[:2]
2076 etype, value = sys.exc_info()[:2]
2077 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2077 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2078
2078
2079 def user_variables(self, names):
2079 def user_variables(self, names):
2080 """Get a list of variable names from the user's namespace.
2080 """Get a list of variable names from the user's namespace.
2081
2081
2082 Parameters
2082 Parameters
2083 ----------
2083 ----------
2084 names : list of strings
2084 names : list of strings
2085 A list of names of variables to be read from the user namespace.
2085 A list of names of variables to be read from the user namespace.
2086
2086
2087 Returns
2087 Returns
2088 -------
2088 -------
2089 A dict, keyed by the input names and with the repr() of each value.
2089 A dict, keyed by the input names and with the repr() of each value.
2090 """
2090 """
2091 out = {}
2091 out = {}
2092 user_ns = self.user_ns
2092 user_ns = self.user_ns
2093 for varname in names:
2093 for varname in names:
2094 try:
2094 try:
2095 value = repr(user_ns[varname])
2095 value = repr(user_ns[varname])
2096 except:
2096 except:
2097 value = self._simple_error()
2097 value = self._simple_error()
2098 out[varname] = value
2098 out[varname] = value
2099 return out
2099 return out
2100
2100
2101 def user_expressions(self, expressions):
2101 def user_expressions(self, expressions):
2102 """Evaluate a dict of expressions in the user's namespace.
2102 """Evaluate a dict of expressions in the user's namespace.
2103
2103
2104 Parameters
2104 Parameters
2105 ----------
2105 ----------
2106 expressions : dict
2106 expressions : dict
2107 A dict with string keys and string values. The expression values
2107 A dict with string keys and string values. The expression values
2108 should be valid Python expressions, each of which will be evaluated
2108 should be valid Python expressions, each of which will be evaluated
2109 in the user namespace.
2109 in the user namespace.
2110
2110
2111 Returns
2111 Returns
2112 -------
2112 -------
2113 A dict, keyed like the input expressions dict, with the repr() of each
2113 A dict, keyed like the input expressions dict, with the repr() of each
2114 value.
2114 value.
2115 """
2115 """
2116 out = {}
2116 out = {}
2117 user_ns = self.user_ns
2117 user_ns = self.user_ns
2118 global_ns = self.user_global_ns
2118 global_ns = self.user_global_ns
2119 for key, expr in expressions.iteritems():
2119 for key, expr in expressions.iteritems():
2120 try:
2120 try:
2121 value = repr(eval(expr, global_ns, user_ns))
2121 value = repr(eval(expr, global_ns, user_ns))
2122 except:
2122 except:
2123 value = self._simple_error()
2123 value = self._simple_error()
2124 out[key] = value
2124 out[key] = value
2125 return out
2125 return out
2126
2126
2127 #-------------------------------------------------------------------------
2127 #-------------------------------------------------------------------------
2128 # Things related to the running of code
2128 # Things related to the running of code
2129 #-------------------------------------------------------------------------
2129 #-------------------------------------------------------------------------
2130
2130
2131 def ex(self, cmd):
2131 def ex(self, cmd):
2132 """Execute a normal python statement in user namespace."""
2132 """Execute a normal python statement in user namespace."""
2133 with self.builtin_trap:
2133 with self.builtin_trap:
2134 exec cmd in self.user_global_ns, self.user_ns
2134 exec cmd in self.user_global_ns, self.user_ns
2135
2135
2136 def ev(self, expr):
2136 def ev(self, expr):
2137 """Evaluate python expression expr in user namespace.
2137 """Evaluate python expression expr in user namespace.
2138
2138
2139 Returns the result of evaluation
2139 Returns the result of evaluation
2140 """
2140 """
2141 with self.builtin_trap:
2141 with self.builtin_trap:
2142 return eval(expr, self.user_global_ns, self.user_ns)
2142 return eval(expr, self.user_global_ns, self.user_ns)
2143
2143
2144 def safe_execfile(self, fname, *where, **kw):
2144 def safe_execfile(self, fname, *where, **kw):
2145 """A safe version of the builtin execfile().
2145 """A safe version of the builtin execfile().
2146
2146
2147 This version will never throw an exception, but instead print
2147 This version will never throw an exception, but instead print
2148 helpful error messages to the screen. This only works on pure
2148 helpful error messages to the screen. This only works on pure
2149 Python files with the .py extension.
2149 Python files with the .py extension.
2150
2150
2151 Parameters
2151 Parameters
2152 ----------
2152 ----------
2153 fname : string
2153 fname : string
2154 The name of the file to be executed.
2154 The name of the file to be executed.
2155 where : tuple
2155 where : tuple
2156 One or two namespaces, passed to execfile() as (globals,locals).
2156 One or two namespaces, passed to execfile() as (globals,locals).
2157 If only one is given, it is passed as both.
2157 If only one is given, it is passed as both.
2158 exit_ignore : bool (False)
2158 exit_ignore : bool (False)
2159 If True, then silence SystemExit for non-zero status (it is always
2159 If True, then silence SystemExit for non-zero status (it is always
2160 silenced for zero status, as it is so common).
2160 silenced for zero status, as it is so common).
2161 """
2161 """
2162 kw.setdefault('exit_ignore', False)
2162 kw.setdefault('exit_ignore', False)
2163
2163
2164 fname = os.path.abspath(os.path.expanduser(fname))
2164 fname = os.path.abspath(os.path.expanduser(fname))
2165
2165
2166 # Make sure we can open the file
2166 # Make sure we can open the file
2167 try:
2167 try:
2168 with open(fname) as thefile:
2168 with open(fname) as thefile:
2169 pass
2169 pass
2170 except:
2170 except:
2171 warn('Could not open file <%s> for safe execution.' % fname)
2171 warn('Could not open file <%s> for safe execution.' % fname)
2172 return
2172 return
2173
2173
2174 # Find things also in current directory. This is needed to mimic the
2174 # Find things also in current directory. This is needed to mimic the
2175 # behavior of running a script from the system command line, where
2175 # behavior of running a script from the system command line, where
2176 # Python inserts the script's directory into sys.path
2176 # Python inserts the script's directory into sys.path
2177 dname = os.path.dirname(fname)
2177 dname = os.path.dirname(fname)
2178
2178
2179 if isinstance(fname, unicode):
2179 if isinstance(fname, unicode):
2180 # execfile uses default encoding instead of filesystem encoding
2180 # execfile uses default encoding instead of filesystem encoding
2181 # so unicode filenames will fail
2181 # so unicode filenames will fail
2182 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2182 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2183
2183
2184 with prepended_to_syspath(dname):
2184 with prepended_to_syspath(dname):
2185 try:
2185 try:
2186 execfile(fname,*where)
2186 execfile(fname,*where)
2187 except SystemExit, status:
2187 except SystemExit, status:
2188 # If the call was made with 0 or None exit status (sys.exit(0)
2188 # If the call was made with 0 or None exit status (sys.exit(0)
2189 # or sys.exit() ), don't bother showing a traceback, as both of
2189 # or sys.exit() ), don't bother showing a traceback, as both of
2190 # these are considered normal by the OS:
2190 # these are considered normal by the OS:
2191 # > python -c'import sys;sys.exit(0)'; echo $?
2191 # > python -c'import sys;sys.exit(0)'; echo $?
2192 # 0
2192 # 0
2193 # > python -c'import sys;sys.exit()'; echo $?
2193 # > python -c'import sys;sys.exit()'; echo $?
2194 # 0
2194 # 0
2195 # For other exit status, we show the exception unless
2195 # For other exit status, we show the exception unless
2196 # explicitly silenced, but only in short form.
2196 # explicitly silenced, but only in short form.
2197 if status.code not in (0, None) and not kw['exit_ignore']:
2197 if status.code not in (0, None) and not kw['exit_ignore']:
2198 self.showtraceback(exception_only=True)
2198 self.showtraceback(exception_only=True)
2199 except:
2199 except:
2200 self.showtraceback()
2200 self.showtraceback()
2201
2201
2202 def safe_execfile_ipy(self, fname):
2202 def safe_execfile_ipy(self, fname):
2203 """Like safe_execfile, but for .ipy files with IPython syntax.
2203 """Like safe_execfile, but for .ipy files with IPython syntax.
2204
2204
2205 Parameters
2205 Parameters
2206 ----------
2206 ----------
2207 fname : str
2207 fname : str
2208 The name of the file to execute. The filename must have a
2208 The name of the file to execute. The filename must have a
2209 .ipy extension.
2209 .ipy extension.
2210 """
2210 """
2211 fname = os.path.abspath(os.path.expanduser(fname))
2211 fname = os.path.abspath(os.path.expanduser(fname))
2212
2212
2213 # Make sure we can open the file
2213 # Make sure we can open the file
2214 try:
2214 try:
2215 with open(fname) as thefile:
2215 with open(fname) as thefile:
2216 pass
2216 pass
2217 except:
2217 except:
2218 warn('Could not open file <%s> for safe execution.' % fname)
2218 warn('Could not open file <%s> for safe execution.' % fname)
2219 return
2219 return
2220
2220
2221 # Find things also in current directory. This is needed to mimic the
2221 # Find things also in current directory. This is needed to mimic the
2222 # behavior of running a script from the system command line, where
2222 # behavior of running a script from the system command line, where
2223 # Python inserts the script's directory into sys.path
2223 # Python inserts the script's directory into sys.path
2224 dname = os.path.dirname(fname)
2224 dname = os.path.dirname(fname)
2225
2225
2226 with prepended_to_syspath(dname):
2226 with prepended_to_syspath(dname):
2227 try:
2227 try:
2228 with open(fname) as thefile:
2228 with open(fname) as thefile:
2229 # self.run_cell currently captures all exceptions
2229 # self.run_cell currently captures all exceptions
2230 # raised in user code. It would be nice if there were
2230 # raised in user code. It would be nice if there were
2231 # versions of runlines, execfile that did raise, so
2231 # versions of runlines, execfile that did raise, so
2232 # we could catch the errors.
2232 # we could catch the errors.
2233 self.run_cell(thefile.read(), store_history=False)
2233 self.run_cell(thefile.read(), store_history=False)
2234 except:
2234 except:
2235 self.showtraceback()
2235 self.showtraceback()
2236 warn('Unknown failure executing file: <%s>' % fname)
2236 warn('Unknown failure executing file: <%s>' % fname)
2237
2237
2238 def run_cell(self, raw_cell, store_history=True):
2238 def run_cell(self, raw_cell, store_history=True):
2239 """Run a complete IPython cell.
2239 """Run a complete IPython cell.
2240
2240
2241 Parameters
2241 Parameters
2242 ----------
2242 ----------
2243 raw_cell : str
2243 raw_cell : str
2244 The code (including IPython code such as %magic functions) to run.
2244 The code (including IPython code such as %magic functions) to run.
2245 store_history : bool
2245 store_history : bool
2246 If True, the raw and translated cell will be stored in IPython's
2246 If True, the raw and translated cell will be stored in IPython's
2247 history. For user code calling back into IPython's machinery, this
2247 history. For user code calling back into IPython's machinery, this
2248 should be set to False.
2248 should be set to False.
2249 """
2249 """
2250 if (not raw_cell) or raw_cell.isspace():
2250 if (not raw_cell) or raw_cell.isspace():
2251 return
2251 return
2252
2252
2253 for line in raw_cell.splitlines():
2253 for line in raw_cell.splitlines():
2254 self.input_splitter.push(line)
2254 self.input_splitter.push(line)
2255 cell = self.input_splitter.source_reset()
2255 cell = self.input_splitter.source_reset()
2256
2256
2257 with self.builtin_trap:
2257 with self.builtin_trap:
2258 prefilter_failed = False
2258 prefilter_failed = False
2259 if len(cell.splitlines()) == 1:
2259 if len(cell.splitlines()) == 1:
2260 try:
2260 try:
2261 # use prefilter_lines to handle trailing newlines
2261 # use prefilter_lines to handle trailing newlines
2262 # restore trailing newline for ast.parse
2262 # restore trailing newline for ast.parse
2263 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2263 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2264 except AliasError as e:
2264 except AliasError as e:
2265 error(e)
2265 error(e)
2266 prefilter_failed = True
2266 prefilter_failed = True
2267 except Exception:
2267 except Exception:
2268 # don't allow prefilter errors to crash IPython
2268 # don't allow prefilter errors to crash IPython
2269 self.showtraceback()
2269 self.showtraceback()
2270 prefilter_failed = True
2270 prefilter_failed = True
2271
2271
2272 # Store raw and processed history
2272 # Store raw and processed history
2273 if store_history:
2273 if store_history:
2274 self.history_manager.store_inputs(self.execution_count,
2274 self.history_manager.store_inputs(self.execution_count,
2275 cell, raw_cell)
2275 cell, raw_cell)
2276
2276
2277 self.logger.log(cell, raw_cell)
2277 self.logger.log(cell, raw_cell)
2278
2278
2279 if not prefilter_failed:
2279 if not prefilter_failed:
2280 # don't run if prefilter failed
2280 # don't run if prefilter failed
2281 cell_name = self.compile.cache(cell, self.execution_count)
2281 cell_name = self.compile.cache(cell, self.execution_count)
2282
2282
2283 with self.display_trap:
2283 with self.display_trap:
2284 try:
2284 try:
2285 code_ast = ast.parse(cell, filename=cell_name)
2285 code_ast = ast.parse(cell, filename=cell_name)
2286 except IndentationError:
2286 except IndentationError:
2287 self.showindentationerror()
2287 self.showindentationerror()
2288 self.execution_count += 1
2288 self.execution_count += 1
2289 return None
2289 return None
2290 except (OverflowError, SyntaxError, ValueError, TypeError,
2290 except (OverflowError, SyntaxError, ValueError, TypeError,
2291 MemoryError):
2291 MemoryError):
2292 self.showsyntaxerror()
2292 self.showsyntaxerror()
2293 self.execution_count += 1
2293 self.execution_count += 1
2294 return None
2294 return None
2295
2295
2296 self.run_ast_nodes(code_ast.body, cell_name,
2296 self.run_ast_nodes(code_ast.body, cell_name,
2297 interactivity="last_expr")
2297 interactivity="last_expr")
2298
2298
2299 # Execute any registered post-execution functions.
2299 # Execute any registered post-execution functions.
2300 for func, status in self._post_execute.iteritems():
2300 for func, status in self._post_execute.iteritems():
2301 if not status:
2301 if not status:
2302 continue
2302 continue
2303 try:
2303 try:
2304 func()
2304 func()
2305 except:
2305 except:
2306 self.showtraceback()
2306 self.showtraceback()
2307 # Deactivate failing function
2307 # Deactivate failing function
2308 self._post_execute[func] = False
2308 self._post_execute[func] = False
2309
2309
2310 if store_history:
2310 if store_history:
2311 # Write output to the database. Does nothing unless
2311 # Write output to the database. Does nothing unless
2312 # history output logging is enabled.
2312 # history output logging is enabled.
2313 self.history_manager.store_output(self.execution_count)
2313 self.history_manager.store_output(self.execution_count)
2314 # Each cell is a *single* input, regardless of how many lines it has
2314 # Each cell is a *single* input, regardless of how many lines it has
2315 self.execution_count += 1
2315 self.execution_count += 1
2316
2316
2317 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2317 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2318 """Run a sequence of AST nodes. The execution mode depends on the
2318 """Run a sequence of AST nodes. The execution mode depends on the
2319 interactivity parameter.
2319 interactivity parameter.
2320
2320
2321 Parameters
2321 Parameters
2322 ----------
2322 ----------
2323 nodelist : list
2323 nodelist : list
2324 A sequence of AST nodes to run.
2324 A sequence of AST nodes to run.
2325 cell_name : str
2325 cell_name : str
2326 Will be passed to the compiler as the filename of the cell. Typically
2326 Will be passed to the compiler as the filename of the cell. Typically
2327 the value returned by ip.compile.cache(cell).
2327 the value returned by ip.compile.cache(cell).
2328 interactivity : str
2328 interactivity : str
2329 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2329 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2330 run interactively (displaying output from expressions). 'last_expr'
2330 run interactively (displaying output from expressions). 'last_expr'
2331 will run the last node interactively only if it is an expression (i.e.
2331 will run the last node interactively only if it is an expression (i.e.
2332 expressions in loops or other blocks are not displayed. Other values
2332 expressions in loops or other blocks are not displayed. Other values
2333 for this parameter will raise a ValueError.
2333 for this parameter will raise a ValueError.
2334 """
2334 """
2335 if not nodelist:
2335 if not nodelist:
2336 return
2336 return
2337
2337
2338 if interactivity == 'last_expr':
2338 if interactivity == 'last_expr':
2339 if isinstance(nodelist[-1], ast.Expr):
2339 if isinstance(nodelist[-1], ast.Expr):
2340 interactivity = "last"
2340 interactivity = "last"
2341 else:
2341 else:
2342 interactivity = "none"
2342 interactivity = "none"
2343
2343
2344 if interactivity == 'none':
2344 if interactivity == 'none':
2345 to_run_exec, to_run_interactive = nodelist, []
2345 to_run_exec, to_run_interactive = nodelist, []
2346 elif interactivity == 'last':
2346 elif interactivity == 'last':
2347 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2347 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2348 elif interactivity == 'all':
2348 elif interactivity == 'all':
2349 to_run_exec, to_run_interactive = [], nodelist
2349 to_run_exec, to_run_interactive = [], nodelist
2350 else:
2350 else:
2351 raise ValueError("Interactivity was %r" % interactivity)
2351 raise ValueError("Interactivity was %r" % interactivity)
2352
2352
2353 exec_count = self.execution_count
2353 exec_count = self.execution_count
2354
2354
2355 try:
2355 try:
2356 for i, node in enumerate(to_run_exec):
2356 for i, node in enumerate(to_run_exec):
2357 mod = ast.Module([node])
2357 mod = ast.Module([node])
2358 code = self.compile(mod, cell_name, "exec")
2358 code = self.compile(mod, cell_name, "exec")
2359 if self.run_code(code):
2359 if self.run_code(code):
2360 return True
2360 return True
2361
2361
2362 for i, node in enumerate(to_run_interactive):
2362 for i, node in enumerate(to_run_interactive):
2363 mod = ast.Interactive([node])
2363 mod = ast.Interactive([node])
2364 code = self.compile(mod, cell_name, "single")
2364 code = self.compile(mod, cell_name, "single")
2365 if self.run_code(code):
2365 if self.run_code(code):
2366 return True
2366 return True
2367 except:
2367 except:
2368 # It's possible to have exceptions raised here, typically by
2368 # It's possible to have exceptions raised here, typically by
2369 # compilation of odd code (such as a naked 'return' outside a
2369 # compilation of odd code (such as a naked 'return' outside a
2370 # function) that did parse but isn't valid. Typically the exception
2370 # function) that did parse but isn't valid. Typically the exception
2371 # is a SyntaxError, but it's safest just to catch anything and show
2371 # is a SyntaxError, but it's safest just to catch anything and show
2372 # the user a traceback.
2372 # the user a traceback.
2373
2373
2374 # We do only one try/except outside the loop to minimize the impact
2374 # We do only one try/except outside the loop to minimize the impact
2375 # on runtime, and also because if any node in the node list is
2375 # on runtime, and also because if any node in the node list is
2376 # broken, we should stop execution completely.
2376 # broken, we should stop execution completely.
2377 self.showtraceback()
2377 self.showtraceback()
2378
2378
2379 return False
2379 return False
2380
2380
2381 def run_code(self, code_obj):
2381 def run_code(self, code_obj):
2382 """Execute a code object.
2382 """Execute a code object.
2383
2383
2384 When an exception occurs, self.showtraceback() is called to display a
2384 When an exception occurs, self.showtraceback() is called to display a
2385 traceback.
2385 traceback.
2386
2386
2387 Parameters
2387 Parameters
2388 ----------
2388 ----------
2389 code_obj : code object
2389 code_obj : code object
2390 A compiled code object, to be executed
2390 A compiled code object, to be executed
2391 post_execute : bool [default: True]
2391 post_execute : bool [default: True]
2392 whether to call post_execute hooks after this particular execution.
2392 whether to call post_execute hooks after this particular execution.
2393
2393
2394 Returns
2394 Returns
2395 -------
2395 -------
2396 False : successful execution.
2396 False : successful execution.
2397 True : an error occurred.
2397 True : an error occurred.
2398 """
2398 """
2399
2399
2400 # Set our own excepthook in case the user code tries to call it
2400 # Set our own excepthook in case the user code tries to call it
2401 # directly, so that the IPython crash handler doesn't get triggered
2401 # directly, so that the IPython crash handler doesn't get triggered
2402 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2402 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2403
2403
2404 # we save the original sys.excepthook in the instance, in case config
2404 # we save the original sys.excepthook in the instance, in case config
2405 # code (such as magics) needs access to it.
2405 # code (such as magics) needs access to it.
2406 self.sys_excepthook = old_excepthook
2406 self.sys_excepthook = old_excepthook
2407 outflag = 1 # happens in more places, so it's easier as default
2407 outflag = 1 # happens in more places, so it's easier as default
2408 try:
2408 try:
2409 try:
2409 try:
2410 self.hooks.pre_run_code_hook()
2410 self.hooks.pre_run_code_hook()
2411 #rprint('Running code', repr(code_obj)) # dbg
2411 #rprint('Running code', repr(code_obj)) # dbg
2412 exec code_obj in self.user_global_ns, self.user_ns
2412 exec code_obj in self.user_global_ns, self.user_ns
2413 finally:
2413 finally:
2414 # Reset our crash handler in place
2414 # Reset our crash handler in place
2415 sys.excepthook = old_excepthook
2415 sys.excepthook = old_excepthook
2416 except SystemExit:
2416 except SystemExit:
2417 self.showtraceback(exception_only=True)
2417 self.showtraceback(exception_only=True)
2418 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2418 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2419 except self.custom_exceptions:
2419 except self.custom_exceptions:
2420 etype,value,tb = sys.exc_info()
2420 etype,value,tb = sys.exc_info()
2421 self.CustomTB(etype,value,tb)
2421 self.CustomTB(etype,value,tb)
2422 except:
2422 except:
2423 self.showtraceback()
2423 self.showtraceback()
2424 else:
2424 else:
2425 outflag = 0
2425 outflag = 0
2426 if softspace(sys.stdout, 0):
2426 if softspace(sys.stdout, 0):
2427 print
2427 print
2428
2428
2429 return outflag
2429 return outflag
2430
2430
2431 # For backwards compatibility
2431 # For backwards compatibility
2432 runcode = run_code
2432 runcode = run_code
2433
2433
2434 #-------------------------------------------------------------------------
2434 #-------------------------------------------------------------------------
2435 # Things related to GUI support and pylab
2435 # Things related to GUI support and pylab
2436 #-------------------------------------------------------------------------
2436 #-------------------------------------------------------------------------
2437
2437
2438 def enable_pylab(self, gui=None, import_all=True):
2438 def enable_pylab(self, gui=None, import_all=True):
2439 raise NotImplementedError('Implement enable_pylab in a subclass')
2439 raise NotImplementedError('Implement enable_pylab in a subclass')
2440
2440
2441 #-------------------------------------------------------------------------
2441 #-------------------------------------------------------------------------
2442 # Utilities
2442 # Utilities
2443 #-------------------------------------------------------------------------
2443 #-------------------------------------------------------------------------
2444
2444
2445 def var_expand(self,cmd,depth=0):
2445 def var_expand(self,cmd,depth=0):
2446 """Expand python variables in a string.
2446 """Expand python variables in a string.
2447
2447
2448 The depth argument indicates how many frames above the caller should
2448 The depth argument indicates how many frames above the caller should
2449 be walked to look for the local namespace where to expand variables.
2449 be walked to look for the local namespace where to expand variables.
2450
2450
2451 The global namespace for expansion is always the user's interactive
2451 The global namespace for expansion is always the user's interactive
2452 namespace.
2452 namespace.
2453 """
2453 """
2454 res = ItplNS(cmd, self.user_ns, # globals
2454 res = ItplNS(cmd, self.user_ns, # globals
2455 # Skip our own frame in searching for locals:
2455 # Skip our own frame in searching for locals:
2456 sys._getframe(depth+1).f_locals # locals
2456 sys._getframe(depth+1).f_locals # locals
2457 )
2457 )
2458 return str(res).decode(res.codec)
2458 return str(res).decode(res.codec)
2459
2459
2460 def mktempfile(self, data=None, prefix='ipython_edit_'):
2460 def mktempfile(self, data=None, prefix='ipython_edit_'):
2461 """Make a new tempfile and return its filename.
2461 """Make a new tempfile and return its filename.
2462
2462
2463 This makes a call to tempfile.mktemp, but it registers the created
2463 This makes a call to tempfile.mktemp, but it registers the created
2464 filename internally so ipython cleans it up at exit time.
2464 filename internally so ipython cleans it up at exit time.
2465
2465
2466 Optional inputs:
2466 Optional inputs:
2467
2467
2468 - data(None): if data is given, it gets written out to the temp file
2468 - data(None): if data is given, it gets written out to the temp file
2469 immediately, and the file is closed again."""
2469 immediately, and the file is closed again."""
2470
2470
2471 filename = tempfile.mktemp('.py', prefix)
2471 filename = tempfile.mktemp('.py', prefix)
2472 self.tempfiles.append(filename)
2472 self.tempfiles.append(filename)
2473
2473
2474 if data:
2474 if data:
2475 tmp_file = open(filename,'w')
2475 tmp_file = open(filename,'w')
2476 tmp_file.write(data)
2476 tmp_file.write(data)
2477 tmp_file.close()
2477 tmp_file.close()
2478 return filename
2478 return filename
2479
2479
2480 # TODO: This should be removed when Term is refactored.
2480 # TODO: This should be removed when Term is refactored.
2481 def write(self,data):
2481 def write(self,data):
2482 """Write a string to the default output"""
2482 """Write a string to the default output"""
2483 io.stdout.write(data)
2483 io.stdout.write(data)
2484
2484
2485 # TODO: This should be removed when Term is refactored.
2485 # TODO: This should be removed when Term is refactored.
2486 def write_err(self,data):
2486 def write_err(self,data):
2487 """Write a string to the default error output"""
2487 """Write a string to the default error output"""
2488 io.stderr.write(data)
2488 io.stderr.write(data)
2489
2489
2490 def ask_yes_no(self,prompt,default=True):
2490 def ask_yes_no(self,prompt,default=True):
2491 if self.quiet:
2491 if self.quiet:
2492 return True
2492 return True
2493 return ask_yes_no(prompt,default)
2493 return ask_yes_no(prompt,default)
2494
2494
2495 def show_usage(self):
2495 def show_usage(self):
2496 """Show a usage message"""
2496 """Show a usage message"""
2497 page.page(IPython.core.usage.interactive_usage)
2497 page.page(IPython.core.usage.interactive_usage)
2498
2498
2499 def find_user_code(self, target, raw=True):
2499 def find_user_code(self, target, raw=True):
2500 """Get a code string from history, file, or a string or macro.
2500 """Get a code string from history, file, or a string or macro.
2501
2501
2502 This is mainly used by magic functions.
2502 This is mainly used by magic functions.
2503
2503
2504 Parameters
2504 Parameters
2505 ----------
2505 ----------
2506 target : str
2506 target : str
2507 A string specifying code to retrieve. This will be tried respectively
2507 A string specifying code to retrieve. This will be tried respectively
2508 as: ranges of input history (see %history for syntax), a filename, or
2508 as: ranges of input history (see %history for syntax), a filename, or
2509 an expression evaluating to a string or Macro in the user namespace.
2509 an expression evaluating to a string or Macro in the user namespace.
2510 raw : bool
2510 raw : bool
2511 If true (default), retrieve raw history. Has no effect on the other
2511 If true (default), retrieve raw history. Has no effect on the other
2512 retrieval mechanisms.
2512 retrieval mechanisms.
2513
2513
2514 Returns
2514 Returns
2515 -------
2515 -------
2516 A string of code.
2516 A string of code.
2517
2517
2518 ValueError is raised if nothing is found, and TypeError if it evaluates
2518 ValueError is raised if nothing is found, and TypeError if it evaluates
2519 to an object of another type. In each case, .args[0] is a printable
2519 to an object of another type. In each case, .args[0] is a printable
2520 message.
2520 message.
2521 """
2521 """
2522 code = self.extract_input_lines(target, raw=raw) # Grab history
2522 code = self.extract_input_lines(target, raw=raw) # Grab history
2523 if code:
2523 if code:
2524 return code
2524 return code
2525 if os.path.isfile(target): # Read file
2525 if os.path.isfile(target): # Read file
2526 return open(target, "r").read()
2526 return open(target, "r").read()
2527
2527
2528 try: # User namespace
2528 try: # User namespace
2529 codeobj = eval(target, self.user_ns)
2529 codeobj = eval(target, self.user_ns)
2530 except Exception:
2530 except Exception:
2531 raise ValueError(("'%s' was not found in history, as a file, nor in"
2531 raise ValueError(("'%s' was not found in history, as a file, nor in"
2532 " the user namespace.") % target)
2532 " the user namespace.") % target)
2533 if isinstance(codeobj, basestring):
2533 if isinstance(codeobj, basestring):
2534 return codeobj
2534 return codeobj
2535 elif isinstance(codeobj, Macro):
2535 elif isinstance(codeobj, Macro):
2536 return codeobj.value
2536 return codeobj.value
2537
2537
2538 raise TypeError("%s is neither a string nor a macro." % target,
2538 raise TypeError("%s is neither a string nor a macro." % target,
2539 codeobj)
2539 codeobj)
2540
2540
2541 #-------------------------------------------------------------------------
2541 #-------------------------------------------------------------------------
2542 # Things related to IPython exiting
2542 # Things related to IPython exiting
2543 #-------------------------------------------------------------------------
2543 #-------------------------------------------------------------------------
2544 def atexit_operations(self):
2544 def atexit_operations(self):
2545 """This will be executed at the time of exit.
2545 """This will be executed at the time of exit.
2546
2546
2547 Cleanup operations and saving of persistent data that is done
2547 Cleanup operations and saving of persistent data that is done
2548 unconditionally by IPython should be performed here.
2548 unconditionally by IPython should be performed here.
2549
2549
2550 For things that may depend on startup flags or platform specifics (such
2550 For things that may depend on startup flags or platform specifics (such
2551 as having readline or not), register a separate atexit function in the
2551 as having readline or not), register a separate atexit function in the
2552 code that has the appropriate information, rather than trying to
2552 code that has the appropriate information, rather than trying to
2553 clutter
2553 clutter
2554 """
2554 """
2555 # Close the history session (this stores the end time and line count)
2555 # Close the history session (this stores the end time and line count)
2556 # this must be *before* the tempfile cleanup, in case of temporary
2556 # this must be *before* the tempfile cleanup, in case of temporary
2557 # history db
2557 # history db
2558 self.history_manager.end_session()
2558 self.history_manager.end_session()
2559
2559
2560 # Cleanup all tempfiles left around
2560 # Cleanup all tempfiles left around
2561 for tfile in self.tempfiles:
2561 for tfile in self.tempfiles:
2562 try:
2562 try:
2563 os.unlink(tfile)
2563 os.unlink(tfile)
2564 except OSError:
2564 except OSError:
2565 pass
2565 pass
2566
2566
2567 # Clear all user namespaces to release all references cleanly.
2567 # Clear all user namespaces to release all references cleanly.
2568 self.reset(new_session=False)
2568 self.reset(new_session=False)
2569
2569
2570 # Run user hooks
2570 # Run user hooks
2571 self.hooks.shutdown_hook()
2571 self.hooks.shutdown_hook()
2572
2572
2573 def cleanup(self):
2573 def cleanup(self):
2574 self.restore_sys_module_state()
2574 self.restore_sys_module_state()
2575
2575
2576
2576
2577 class InteractiveShellABC(object):
2577 class InteractiveShellABC(object):
2578 """An abstract base class for InteractiveShell."""
2578 """An abstract base class for InteractiveShell."""
2579 __metaclass__ = abc.ABCMeta
2579 __metaclass__ = abc.ABCMeta
2580
2580
2581 InteractiveShellABC.register(InteractiveShell)
2581 InteractiveShellABC.register(InteractiveShell)
@@ -1,3498 +1,3498 b''
1 # encoding: utf-8
1 # encoding: utf-8
2 """Magic functions for InteractiveShell.
2 """Magic functions for InteractiveShell.
3 """
3 """
4
4
5 #-----------------------------------------------------------------------------
5 #-----------------------------------------------------------------------------
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
8 # Copyright (C) 2008-2009 The IPython Development Team
8 # Copyright (C) 2008-2009 The IPython Development Team
9
9
10 # Distributed under the terms of the BSD License. The full license is in
10 # Distributed under the terms of the BSD License. The full license is in
11 # the file COPYING, distributed as part of this software.
11 # the file COPYING, distributed as part of this software.
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13
13
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 # Imports
15 # Imports
16 #-----------------------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17
17
18 import __builtin__
18 import __builtin__
19 import __future__
19 import __future__
20 import bdb
20 import bdb
21 import inspect
21 import inspect
22 import os
22 import os
23 import sys
23 import sys
24 import shutil
24 import shutil
25 import re
25 import re
26 import time
26 import time
27 import textwrap
27 import textwrap
28 from cStringIO import StringIO
28 from cStringIO import StringIO
29 from getopt import getopt,GetoptError
29 from getopt import getopt,GetoptError
30 from pprint import pformat
30 from pprint import pformat
31 from xmlrpclib import ServerProxy
31 from xmlrpclib import ServerProxy
32
32
33 # cProfile was added in Python2.5
33 # cProfile was added in Python2.5
34 try:
34 try:
35 import cProfile as profile
35 import cProfile as profile
36 import pstats
36 import pstats
37 except ImportError:
37 except ImportError:
38 # profile isn't bundled by default in Debian for license reasons
38 # profile isn't bundled by default in Debian for license reasons
39 try:
39 try:
40 import profile,pstats
40 import profile,pstats
41 except ImportError:
41 except ImportError:
42 profile = pstats = None
42 profile = pstats = None
43
43
44 import IPython
44 import IPython
45 from IPython.core import debugger, oinspect
45 from IPython.core import debugger, oinspect
46 from IPython.core.error import TryNext
46 from IPython.core.error import TryNext
47 from IPython.core.error import UsageError
47 from IPython.core.error import UsageError
48 from IPython.core.fakemodule import FakeModule
48 from IPython.core.fakemodule import FakeModule
49 from IPython.core.profiledir import ProfileDir
49 from IPython.core.profiledir import ProfileDir
50 from IPython.core.macro import Macro
50 from IPython.core.macro import Macro
51 from IPython.core import page
51 from IPython.core import page
52 from IPython.core.prefilter import ESC_MAGIC
52 from IPython.core.prefilter import ESC_MAGIC
53 from IPython.lib.pylabtools import mpl_runner
53 from IPython.lib.pylabtools import mpl_runner
54 from IPython.testing.skipdoctest import skip_doctest
54 from IPython.testing.skipdoctest import skip_doctest
55 from IPython.utils.io import file_read, nlprint
55 from IPython.utils.io import file_read, nlprint
56 from IPython.utils.path import get_py_filename
56 from IPython.utils.path import get_py_filename
57 from IPython.utils.process import arg_split, abbrev_cwd
57 from IPython.utils.process import arg_split, abbrev_cwd
58 from IPython.utils.terminal import set_term_title
58 from IPython.utils.terminal import set_term_title
59 from IPython.utils.text import LSString, SList, format_screen
59 from IPython.utils.text import LSString, SList, format_screen
60 from IPython.utils.timing import clock, clock2
60 from IPython.utils.timing import clock, clock2
61 from IPython.utils.warn import warn, error
61 from IPython.utils.warn import warn, error
62 from IPython.utils.ipstruct import Struct
62 from IPython.utils.ipstruct import Struct
63 import IPython.utils.generics
63 import IPython.utils.generics
64
64
65 #-----------------------------------------------------------------------------
65 #-----------------------------------------------------------------------------
66 # Utility functions
66 # Utility functions
67 #-----------------------------------------------------------------------------
67 #-----------------------------------------------------------------------------
68
68
69 def on_off(tag):
69 def on_off(tag):
70 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
70 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
71 return ['OFF','ON'][tag]
71 return ['OFF','ON'][tag]
72
72
73 class Bunch: pass
73 class Bunch: pass
74
74
75 def compress_dhist(dh):
75 def compress_dhist(dh):
76 head, tail = dh[:-10], dh[-10:]
76 head, tail = dh[:-10], dh[-10:]
77
77
78 newhead = []
78 newhead = []
79 done = set()
79 done = set()
80 for h in head:
80 for h in head:
81 if h in done:
81 if h in done:
82 continue
82 continue
83 newhead.append(h)
83 newhead.append(h)
84 done.add(h)
84 done.add(h)
85
85
86 return newhead + tail
86 return newhead + tail
87
87
88 def needs_local_scope(func):
88 def needs_local_scope(func):
89 """Decorator to mark magic functions which need to local scope to run."""
89 """Decorator to mark magic functions which need to local scope to run."""
90 func.needs_local_scope = True
90 func.needs_local_scope = True
91 return func
91 return func
92
92
93 # Used for exception handling in magic_edit
93 # Used for exception handling in magic_edit
94 class MacroToEdit(ValueError): pass
94 class MacroToEdit(ValueError): pass
95
95
96 #***************************************************************************
96 #***************************************************************************
97 # Main class implementing Magic functionality
97 # Main class implementing Magic functionality
98
98
99 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
99 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
100 # on construction of the main InteractiveShell object. Something odd is going
100 # on construction of the main InteractiveShell object. Something odd is going
101 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
101 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
102 # eventually this needs to be clarified.
102 # eventually this needs to be clarified.
103 # BG: This is because InteractiveShell inherits from this, but is itself a
103 # BG: This is because InteractiveShell inherits from this, but is itself a
104 # Configurable. This messes up the MRO in some way. The fix is that we need to
104 # Configurable. This messes up the MRO in some way. The fix is that we need to
105 # make Magic a configurable that InteractiveShell does not subclass.
105 # make Magic a configurable that InteractiveShell does not subclass.
106
106
107 class Magic:
107 class Magic:
108 """Magic functions for InteractiveShell.
108 """Magic functions for InteractiveShell.
109
109
110 Shell functions which can be reached as %function_name. All magic
110 Shell functions which can be reached as %function_name. All magic
111 functions should accept a string, which they can parse for their own
111 functions should accept a string, which they can parse for their own
112 needs. This can make some functions easier to type, eg `%cd ../`
112 needs. This can make some functions easier to type, eg `%cd ../`
113 vs. `%cd("../")`
113 vs. `%cd("../")`
114
114
115 ALL definitions MUST begin with the prefix magic_. The user won't need it
115 ALL definitions MUST begin with the prefix magic_. The user won't need it
116 at the command line, but it is is needed in the definition. """
116 at the command line, but it is is needed in the definition. """
117
117
118 # class globals
118 # class globals
119 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
119 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
120 'Automagic is ON, % prefix NOT needed for magic functions.']
120 'Automagic is ON, % prefix NOT needed for magic functions.']
121
121
122 #......................................................................
122 #......................................................................
123 # some utility functions
123 # some utility functions
124
124
125 def __init__(self,shell):
125 def __init__(self,shell):
126
126
127 self.options_table = {}
127 self.options_table = {}
128 if profile is None:
128 if profile is None:
129 self.magic_prun = self.profile_missing_notice
129 self.magic_prun = self.profile_missing_notice
130 self.shell = shell
130 self.shell = shell
131
131
132 # namespace for holding state we may need
132 # namespace for holding state we may need
133 self._magic_state = Bunch()
133 self._magic_state = Bunch()
134
134
135 def profile_missing_notice(self, *args, **kwargs):
135 def profile_missing_notice(self, *args, **kwargs):
136 error("""\
136 error("""\
137 The profile module could not be found. It has been removed from the standard
137 The profile module could not be found. It has been removed from the standard
138 python packages because of its non-free license. To use profiling, install the
138 python packages because of its non-free license. To use profiling, install the
139 python-profiler package from non-free.""")
139 python-profiler package from non-free.""")
140
140
141 def default_option(self,fn,optstr):
141 def default_option(self,fn,optstr):
142 """Make an entry in the options_table for fn, with value optstr"""
142 """Make an entry in the options_table for fn, with value optstr"""
143
143
144 if fn not in self.lsmagic():
144 if fn not in self.lsmagic():
145 error("%s is not a magic function" % fn)
145 error("%s is not a magic function" % fn)
146 self.options_table[fn] = optstr
146 self.options_table[fn] = optstr
147
147
148 def lsmagic(self):
148 def lsmagic(self):
149 """Return a list of currently available magic functions.
149 """Return a list of currently available magic functions.
150
150
151 Gives a list of the bare names after mangling (['ls','cd', ...], not
151 Gives a list of the bare names after mangling (['ls','cd', ...], not
152 ['magic_ls','magic_cd',...]"""
152 ['magic_ls','magic_cd',...]"""
153
153
154 # FIXME. This needs a cleanup, in the way the magics list is built.
154 # FIXME. This needs a cleanup, in the way the magics list is built.
155
155
156 # magics in class definition
156 # magics in class definition
157 class_magic = lambda fn: fn.startswith('magic_') and \
157 class_magic = lambda fn: fn.startswith('magic_') and \
158 callable(Magic.__dict__[fn])
158 callable(Magic.__dict__[fn])
159 # in instance namespace (run-time user additions)
159 # in instance namespace (run-time user additions)
160 inst_magic = lambda fn: fn.startswith('magic_') and \
160 inst_magic = lambda fn: fn.startswith('magic_') and \
161 callable(self.__dict__[fn])
161 callable(self.__dict__[fn])
162 # and bound magics by user (so they can access self):
162 # and bound magics by user (so they can access self):
163 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
163 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
164 callable(self.__class__.__dict__[fn])
164 callable(self.__class__.__dict__[fn])
165 magics = filter(class_magic,Magic.__dict__.keys()) + \
165 magics = filter(class_magic,Magic.__dict__.keys()) + \
166 filter(inst_magic,self.__dict__.keys()) + \
166 filter(inst_magic,self.__dict__.keys()) + \
167 filter(inst_bound_magic,self.__class__.__dict__.keys())
167 filter(inst_bound_magic,self.__class__.__dict__.keys())
168 out = []
168 out = []
169 for fn in set(magics):
169 for fn in set(magics):
170 out.append(fn.replace('magic_','',1))
170 out.append(fn.replace('magic_','',1))
171 out.sort()
171 out.sort()
172 return out
172 return out
173
173
174 def extract_input_lines(self, range_str, raw=False):
174 def extract_input_lines(self, range_str, raw=False):
175 """Return as a string a set of input history slices.
175 """Return as a string a set of input history slices.
176
176
177 Inputs:
177 Inputs:
178
178
179 - range_str: the set of slices is given as a string, like
179 - range_str: the set of slices is given as a string, like
180 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
180 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
181 which get their arguments as strings. The number before the / is the
181 which get their arguments as strings. The number before the / is the
182 session number: ~n goes n back from the current session.
182 session number: ~n goes n back from the current session.
183
183
184 Optional inputs:
184 Optional inputs:
185
185
186 - raw(False): by default, the processed input is used. If this is
186 - raw(False): by default, the processed input is used. If this is
187 true, the raw input history is used instead.
187 true, the raw input history is used instead.
188
188
189 Note that slices can be called with two notations:
189 Note that slices can be called with two notations:
190
190
191 N:M -> standard python form, means including items N...(M-1).
191 N:M -> standard python form, means including items N...(M-1).
192
192
193 N-M -> include items N..M (closed endpoint)."""
193 N-M -> include items N..M (closed endpoint)."""
194 lines = self.shell.history_manager.\
194 lines = self.shell.history_manager.\
195 get_range_by_str(range_str, raw=raw)
195 get_range_by_str(range_str, raw=raw)
196 return "\n".join(x for _, _, x in lines)
196 return "\n".join(x for _, _, x in lines)
197
197
198 def arg_err(self,func):
198 def arg_err(self,func):
199 """Print docstring if incorrect arguments were passed"""
199 """Print docstring if incorrect arguments were passed"""
200 print 'Error in arguments:'
200 print 'Error in arguments:'
201 print oinspect.getdoc(func)
201 print oinspect.getdoc(func)
202
202
203 def format_latex(self,strng):
203 def format_latex(self,strng):
204 """Format a string for latex inclusion."""
204 """Format a string for latex inclusion."""
205
205
206 # Characters that need to be escaped for latex:
206 # Characters that need to be escaped for latex:
207 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
207 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
208 # Magic command names as headers:
208 # Magic command names as headers:
209 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
209 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
210 re.MULTILINE)
210 re.MULTILINE)
211 # Magic commands
211 # Magic commands
212 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
212 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
213 re.MULTILINE)
213 re.MULTILINE)
214 # Paragraph continue
214 # Paragraph continue
215 par_re = re.compile(r'\\$',re.MULTILINE)
215 par_re = re.compile(r'\\$',re.MULTILINE)
216
216
217 # The "\n" symbol
217 # The "\n" symbol
218 newline_re = re.compile(r'\\n')
218 newline_re = re.compile(r'\\n')
219
219
220 # Now build the string for output:
220 # Now build the string for output:
221 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
221 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
222 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
222 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
223 strng)
223 strng)
224 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
224 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
225 strng = par_re.sub(r'\\\\',strng)
225 strng = par_re.sub(r'\\\\',strng)
226 strng = escape_re.sub(r'\\\1',strng)
226 strng = escape_re.sub(r'\\\1',strng)
227 strng = newline_re.sub(r'\\textbackslash{}n',strng)
227 strng = newline_re.sub(r'\\textbackslash{}n',strng)
228 return strng
228 return strng
229
229
230 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
230 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
231 """Parse options passed to an argument string.
231 """Parse options passed to an argument string.
232
232
233 The interface is similar to that of getopt(), but it returns back a
233 The interface is similar to that of getopt(), but it returns back a
234 Struct with the options as keys and the stripped argument string still
234 Struct with the options as keys and the stripped argument string still
235 as a string.
235 as a string.
236
236
237 arg_str is quoted as a true sys.argv vector by using shlex.split.
237 arg_str is quoted as a true sys.argv vector by using shlex.split.
238 This allows us to easily expand variables, glob files, quote
238 This allows us to easily expand variables, glob files, quote
239 arguments, etc.
239 arguments, etc.
240
240
241 Options:
241 Options:
242 -mode: default 'string'. If given as 'list', the argument string is
242 -mode: default 'string'. If given as 'list', the argument string is
243 returned as a list (split on whitespace) instead of a string.
243 returned as a list (split on whitespace) instead of a string.
244
244
245 -list_all: put all option values in lists. Normally only options
245 -list_all: put all option values in lists. Normally only options
246 appearing more than once are put in a list.
246 appearing more than once are put in a list.
247
247
248 -posix (True): whether to split the input line in POSIX mode or not,
248 -posix (True): whether to split the input line in POSIX mode or not,
249 as per the conventions outlined in the shlex module from the
249 as per the conventions outlined in the shlex module from the
250 standard library."""
250 standard library."""
251
251
252 # inject default options at the beginning of the input line
252 # inject default options at the beginning of the input line
253 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
253 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
254 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
254 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
255
255
256 mode = kw.get('mode','string')
256 mode = kw.get('mode','string')
257 if mode not in ['string','list']:
257 if mode not in ['string','list']:
258 raise ValueError,'incorrect mode given: %s' % mode
258 raise ValueError,'incorrect mode given: %s' % mode
259 # Get options
259 # Get options
260 list_all = kw.get('list_all',0)
260 list_all = kw.get('list_all',0)
261 posix = kw.get('posix', os.name == 'posix')
261 posix = kw.get('posix', os.name == 'posix')
262
262
263 # Check if we have more than one argument to warrant extra processing:
263 # Check if we have more than one argument to warrant extra processing:
264 odict = {} # Dictionary with options
264 odict = {} # Dictionary with options
265 args = arg_str.split()
265 args = arg_str.split()
266 if len(args) >= 1:
266 if len(args) >= 1:
267 # If the list of inputs only has 0 or 1 thing in it, there's no
267 # If the list of inputs only has 0 or 1 thing in it, there's no
268 # need to look for options
268 # need to look for options
269 argv = arg_split(arg_str,posix)
269 argv = arg_split(arg_str,posix)
270 # Do regular option processing
270 # Do regular option processing
271 try:
271 try:
272 opts,args = getopt(argv,opt_str,*long_opts)
272 opts,args = getopt(argv,opt_str,*long_opts)
273 except GetoptError,e:
273 except GetoptError,e:
274 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
274 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
275 " ".join(long_opts)))
275 " ".join(long_opts)))
276 for o,a in opts:
276 for o,a in opts:
277 if o.startswith('--'):
277 if o.startswith('--'):
278 o = o[2:]
278 o = o[2:]
279 else:
279 else:
280 o = o[1:]
280 o = o[1:]
281 try:
281 try:
282 odict[o].append(a)
282 odict[o].append(a)
283 except AttributeError:
283 except AttributeError:
284 odict[o] = [odict[o],a]
284 odict[o] = [odict[o],a]
285 except KeyError:
285 except KeyError:
286 if list_all:
286 if list_all:
287 odict[o] = [a]
287 odict[o] = [a]
288 else:
288 else:
289 odict[o] = a
289 odict[o] = a
290
290
291 # Prepare opts,args for return
291 # Prepare opts,args for return
292 opts = Struct(odict)
292 opts = Struct(odict)
293 if mode == 'string':
293 if mode == 'string':
294 args = ' '.join(args)
294 args = ' '.join(args)
295
295
296 return opts,args
296 return opts,args
297
297
298 #......................................................................
298 #......................................................................
299 # And now the actual magic functions
299 # And now the actual magic functions
300
300
301 # Functions for IPython shell work (vars,funcs, config, etc)
301 # Functions for IPython shell work (vars,funcs, config, etc)
302 def magic_lsmagic(self, parameter_s = ''):
302 def magic_lsmagic(self, parameter_s = ''):
303 """List currently available magic functions."""
303 """List currently available magic functions."""
304 mesc = ESC_MAGIC
304 mesc = ESC_MAGIC
305 print 'Available magic functions:\n'+mesc+\
305 print 'Available magic functions:\n'+mesc+\
306 (' '+mesc).join(self.lsmagic())
306 (' '+mesc).join(self.lsmagic())
307 print '\n' + Magic.auto_status[self.shell.automagic]
307 print '\n' + Magic.auto_status[self.shell.automagic]
308 return None
308 return None
309
309
310 def magic_magic(self, parameter_s = ''):
310 def magic_magic(self, parameter_s = ''):
311 """Print information about the magic function system.
311 """Print information about the magic function system.
312
312
313 Supported formats: -latex, -brief, -rest
313 Supported formats: -latex, -brief, -rest
314 """
314 """
315
315
316 mode = ''
316 mode = ''
317 try:
317 try:
318 if parameter_s.split()[0] == '-latex':
318 if parameter_s.split()[0] == '-latex':
319 mode = 'latex'
319 mode = 'latex'
320 if parameter_s.split()[0] == '-brief':
320 if parameter_s.split()[0] == '-brief':
321 mode = 'brief'
321 mode = 'brief'
322 if parameter_s.split()[0] == '-rest':
322 if parameter_s.split()[0] == '-rest':
323 mode = 'rest'
323 mode = 'rest'
324 rest_docs = []
324 rest_docs = []
325 except:
325 except:
326 pass
326 pass
327
327
328 magic_docs = []
328 magic_docs = []
329 for fname in self.lsmagic():
329 for fname in self.lsmagic():
330 mname = 'magic_' + fname
330 mname = 'magic_' + fname
331 for space in (Magic,self,self.__class__):
331 for space in (Magic,self,self.__class__):
332 try:
332 try:
333 fn = space.__dict__[mname]
333 fn = space.__dict__[mname]
334 except KeyError:
334 except KeyError:
335 pass
335 pass
336 else:
336 else:
337 break
337 break
338 if mode == 'brief':
338 if mode == 'brief':
339 # only first line
339 # only first line
340 if fn.__doc__:
340 if fn.__doc__:
341 fndoc = fn.__doc__.split('\n',1)[0]
341 fndoc = fn.__doc__.split('\n',1)[0]
342 else:
342 else:
343 fndoc = 'No documentation'
343 fndoc = 'No documentation'
344 else:
344 else:
345 if fn.__doc__:
345 if fn.__doc__:
346 fndoc = fn.__doc__.rstrip()
346 fndoc = fn.__doc__.rstrip()
347 else:
347 else:
348 fndoc = 'No documentation'
348 fndoc = 'No documentation'
349
349
350
350
351 if mode == 'rest':
351 if mode == 'rest':
352 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
352 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
353 fname,fndoc))
353 fname,fndoc))
354
354
355 else:
355 else:
356 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
356 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
357 fname,fndoc))
357 fname,fndoc))
358
358
359 magic_docs = ''.join(magic_docs)
359 magic_docs = ''.join(magic_docs)
360
360
361 if mode == 'rest':
361 if mode == 'rest':
362 return "".join(rest_docs)
362 return "".join(rest_docs)
363
363
364 if mode == 'latex':
364 if mode == 'latex':
365 print self.format_latex(magic_docs)
365 print self.format_latex(magic_docs)
366 return
366 return
367 else:
367 else:
368 magic_docs = format_screen(magic_docs)
368 magic_docs = format_screen(magic_docs)
369 if mode == 'brief':
369 if mode == 'brief':
370 return magic_docs
370 return magic_docs
371
371
372 outmsg = """
372 outmsg = """
373 IPython's 'magic' functions
373 IPython's 'magic' functions
374 ===========================
374 ===========================
375
375
376 The magic function system provides a series of functions which allow you to
376 The magic function system provides a series of functions which allow you to
377 control the behavior of IPython itself, plus a lot of system-type
377 control the behavior of IPython itself, plus a lot of system-type
378 features. All these functions are prefixed with a % character, but parameters
378 features. All these functions are prefixed with a % character, but parameters
379 are given without parentheses or quotes.
379 are given without parentheses or quotes.
380
380
381 NOTE: If you have 'automagic' enabled (via the command line option or with the
381 NOTE: If you have 'automagic' enabled (via the command line option or with the
382 %automagic function), you don't need to type in the % explicitly. By default,
382 %automagic function), you don't need to type in the % explicitly. By default,
383 IPython ships with automagic on, so you should only rarely need the % escape.
383 IPython ships with automagic on, so you should only rarely need the % escape.
384
384
385 Example: typing '%cd mydir' (without the quotes) changes you working directory
385 Example: typing '%cd mydir' (without the quotes) changes you working directory
386 to 'mydir', if it exists.
386 to 'mydir', if it exists.
387
387
388 For a list of the available magic functions, use %lsmagic. For a description
388 For a list of the available magic functions, use %lsmagic. For a description
389 of any of them, type %magic_name?, e.g. '%cd?'.
389 of any of them, type %magic_name?, e.g. '%cd?'.
390
390
391 Currently the magic system has the following functions:\n"""
391 Currently the magic system has the following functions:\n"""
392
392
393 mesc = ESC_MAGIC
393 mesc = ESC_MAGIC
394 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
394 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
395 "\n\n%s%s\n\n%s" % (outmsg,
395 "\n\n%s%s\n\n%s" % (outmsg,
396 magic_docs,mesc,mesc,
396 magic_docs,mesc,mesc,
397 (' '+mesc).join(self.lsmagic()),
397 (' '+mesc).join(self.lsmagic()),
398 Magic.auto_status[self.shell.automagic] ) )
398 Magic.auto_status[self.shell.automagic] ) )
399 page.page(outmsg)
399 page.page(outmsg)
400
400
401 def magic_automagic(self, parameter_s = ''):
401 def magic_automagic(self, parameter_s = ''):
402 """Make magic functions callable without having to type the initial %.
402 """Make magic functions callable without having to type the initial %.
403
403
404 Without argumentsl toggles on/off (when off, you must call it as
404 Without argumentsl toggles on/off (when off, you must call it as
405 %automagic, of course). With arguments it sets the value, and you can
405 %automagic, of course). With arguments it sets the value, and you can
406 use any of (case insensitive):
406 use any of (case insensitive):
407
407
408 - on,1,True: to activate
408 - on,1,True: to activate
409
409
410 - off,0,False: to deactivate.
410 - off,0,False: to deactivate.
411
411
412 Note that magic functions have lowest priority, so if there's a
412 Note that magic functions have lowest priority, so if there's a
413 variable whose name collides with that of a magic fn, automagic won't
413 variable whose name collides with that of a magic fn, automagic won't
414 work for that function (you get the variable instead). However, if you
414 work for that function (you get the variable instead). However, if you
415 delete the variable (del var), the previously shadowed magic function
415 delete the variable (del var), the previously shadowed magic function
416 becomes visible to automagic again."""
416 becomes visible to automagic again."""
417
417
418 arg = parameter_s.lower()
418 arg = parameter_s.lower()
419 if parameter_s in ('on','1','true'):
419 if parameter_s in ('on','1','true'):
420 self.shell.automagic = True
420 self.shell.automagic = True
421 elif parameter_s in ('off','0','false'):
421 elif parameter_s in ('off','0','false'):
422 self.shell.automagic = False
422 self.shell.automagic = False
423 else:
423 else:
424 self.shell.automagic = not self.shell.automagic
424 self.shell.automagic = not self.shell.automagic
425 print '\n' + Magic.auto_status[self.shell.automagic]
425 print '\n' + Magic.auto_status[self.shell.automagic]
426
426
427 @skip_doctest
427 @skip_doctest
428 def magic_autocall(self, parameter_s = ''):
428 def magic_autocall(self, parameter_s = ''):
429 """Make functions callable without having to type parentheses.
429 """Make functions callable without having to type parentheses.
430
430
431 Usage:
431 Usage:
432
432
433 %autocall [mode]
433 %autocall [mode]
434
434
435 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
435 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
436 value is toggled on and off (remembering the previous state).
436 value is toggled on and off (remembering the previous state).
437
437
438 In more detail, these values mean:
438 In more detail, these values mean:
439
439
440 0 -> fully disabled
440 0 -> fully disabled
441
441
442 1 -> active, but do not apply if there are no arguments on the line.
442 1 -> active, but do not apply if there are no arguments on the line.
443
443
444 In this mode, you get:
444 In this mode, you get:
445
445
446 In [1]: callable
446 In [1]: callable
447 Out[1]: <built-in function callable>
447 Out[1]: <built-in function callable>
448
448
449 In [2]: callable 'hello'
449 In [2]: callable 'hello'
450 ------> callable('hello')
450 ------> callable('hello')
451 Out[2]: False
451 Out[2]: False
452
452
453 2 -> Active always. Even if no arguments are present, the callable
453 2 -> Active always. Even if no arguments are present, the callable
454 object is called:
454 object is called:
455
455
456 In [2]: float
456 In [2]: float
457 ------> float()
457 ------> float()
458 Out[2]: 0.0
458 Out[2]: 0.0
459
459
460 Note that even with autocall off, you can still use '/' at the start of
460 Note that even with autocall off, you can still use '/' at the start of
461 a line to treat the first argument on the command line as a function
461 a line to treat the first argument on the command line as a function
462 and add parentheses to it:
462 and add parentheses to it:
463
463
464 In [8]: /str 43
464 In [8]: /str 43
465 ------> str(43)
465 ------> str(43)
466 Out[8]: '43'
466 Out[8]: '43'
467
467
468 # all-random (note for auto-testing)
468 # all-random (note for auto-testing)
469 """
469 """
470
470
471 if parameter_s:
471 if parameter_s:
472 arg = int(parameter_s)
472 arg = int(parameter_s)
473 else:
473 else:
474 arg = 'toggle'
474 arg = 'toggle'
475
475
476 if not arg in (0,1,2,'toggle'):
476 if not arg in (0,1,2,'toggle'):
477 error('Valid modes: (0->Off, 1->Smart, 2->Full')
477 error('Valid modes: (0->Off, 1->Smart, 2->Full')
478 return
478 return
479
479
480 if arg in (0,1,2):
480 if arg in (0,1,2):
481 self.shell.autocall = arg
481 self.shell.autocall = arg
482 else: # toggle
482 else: # toggle
483 if self.shell.autocall:
483 if self.shell.autocall:
484 self._magic_state.autocall_save = self.shell.autocall
484 self._magic_state.autocall_save = self.shell.autocall
485 self.shell.autocall = 0
485 self.shell.autocall = 0
486 else:
486 else:
487 try:
487 try:
488 self.shell.autocall = self._magic_state.autocall_save
488 self.shell.autocall = self._magic_state.autocall_save
489 except AttributeError:
489 except AttributeError:
490 self.shell.autocall = self._magic_state.autocall_save = 1
490 self.shell.autocall = self._magic_state.autocall_save = 1
491
491
492 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
492 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
493
493
494
494
495 def magic_page(self, parameter_s=''):
495 def magic_page(self, parameter_s=''):
496 """Pretty print the object and display it through a pager.
496 """Pretty print the object and display it through a pager.
497
497
498 %page [options] OBJECT
498 %page [options] OBJECT
499
499
500 If no object is given, use _ (last output).
500 If no object is given, use _ (last output).
501
501
502 Options:
502 Options:
503
503
504 -r: page str(object), don't pretty-print it."""
504 -r: page str(object), don't pretty-print it."""
505
505
506 # After a function contributed by Olivier Aubert, slightly modified.
506 # After a function contributed by Olivier Aubert, slightly modified.
507
507
508 # Process options/args
508 # Process options/args
509 opts,args = self.parse_options(parameter_s,'r')
509 opts,args = self.parse_options(parameter_s,'r')
510 raw = 'r' in opts
510 raw = 'r' in opts
511
511
512 oname = args and args or '_'
512 oname = args and args or '_'
513 info = self._ofind(oname)
513 info = self._ofind(oname)
514 if info['found']:
514 if info['found']:
515 txt = (raw and str or pformat)( info['obj'] )
515 txt = (raw and str or pformat)( info['obj'] )
516 page.page(txt)
516 page.page(txt)
517 else:
517 else:
518 print 'Object `%s` not found' % oname
518 print 'Object `%s` not found' % oname
519
519
520 def magic_profile(self, parameter_s=''):
520 def magic_profile(self, parameter_s=''):
521 """Print your currently active IPython profile."""
521 """Print your currently active IPython profile."""
522 print self.shell.profile
522 print self.shell.profile
523
523
524 def magic_pinfo(self, parameter_s='', namespaces=None):
524 def magic_pinfo(self, parameter_s='', namespaces=None):
525 """Provide detailed information about an object.
525 """Provide detailed information about an object.
526
526
527 '%pinfo object' is just a synonym for object? or ?object."""
527 '%pinfo object' is just a synonym for object? or ?object."""
528
528
529 #print 'pinfo par: <%s>' % parameter_s # dbg
529 #print 'pinfo par: <%s>' % parameter_s # dbg
530
530
531
531
532 # detail_level: 0 -> obj? , 1 -> obj??
532 # detail_level: 0 -> obj? , 1 -> obj??
533 detail_level = 0
533 detail_level = 0
534 # We need to detect if we got called as 'pinfo pinfo foo', which can
534 # We need to detect if we got called as 'pinfo pinfo foo', which can
535 # happen if the user types 'pinfo foo?' at the cmd line.
535 # happen if the user types 'pinfo foo?' at the cmd line.
536 pinfo,qmark1,oname,qmark2 = \
536 pinfo,qmark1,oname,qmark2 = \
537 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
537 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
538 if pinfo or qmark1 or qmark2:
538 if pinfo or qmark1 or qmark2:
539 detail_level = 1
539 detail_level = 1
540 if "*" in oname:
540 if "*" in oname:
541 self.magic_psearch(oname)
541 self.magic_psearch(oname)
542 else:
542 else:
543 self.shell._inspect('pinfo', oname, detail_level=detail_level,
543 self.shell._inspect('pinfo', oname, detail_level=detail_level,
544 namespaces=namespaces)
544 namespaces=namespaces)
545
545
546 def magic_pinfo2(self, parameter_s='', namespaces=None):
546 def magic_pinfo2(self, parameter_s='', namespaces=None):
547 """Provide extra detailed information about an object.
547 """Provide extra detailed information about an object.
548
548
549 '%pinfo2 object' is just a synonym for object?? or ??object."""
549 '%pinfo2 object' is just a synonym for object?? or ??object."""
550 self.shell._inspect('pinfo', parameter_s, detail_level=1,
550 self.shell._inspect('pinfo', parameter_s, detail_level=1,
551 namespaces=namespaces)
551 namespaces=namespaces)
552
552
553 @skip_doctest
553 @skip_doctest
554 def magic_pdef(self, parameter_s='', namespaces=None):
554 def magic_pdef(self, parameter_s='', namespaces=None):
555 """Print the definition header for any callable object.
555 """Print the definition header for any callable object.
556
556
557 If the object is a class, print the constructor information.
557 If the object is a class, print the constructor information.
558
558
559 Examples
559 Examples
560 --------
560 --------
561 ::
561 ::
562
562
563 In [3]: %pdef urllib.urlopen
563 In [3]: %pdef urllib.urlopen
564 urllib.urlopen(url, data=None, proxies=None)
564 urllib.urlopen(url, data=None, proxies=None)
565 """
565 """
566 self._inspect('pdef',parameter_s, namespaces)
566 self._inspect('pdef',parameter_s, namespaces)
567
567
568 def magic_pdoc(self, parameter_s='', namespaces=None):
568 def magic_pdoc(self, parameter_s='', namespaces=None):
569 """Print the docstring for an object.
569 """Print the docstring for an object.
570
570
571 If the given object is a class, it will print both the class and the
571 If the given object is a class, it will print both the class and the
572 constructor docstrings."""
572 constructor docstrings."""
573 self._inspect('pdoc',parameter_s, namespaces)
573 self._inspect('pdoc',parameter_s, namespaces)
574
574
575 def magic_psource(self, parameter_s='', namespaces=None):
575 def magic_psource(self, parameter_s='', namespaces=None):
576 """Print (or run through pager) the source code for an object."""
576 """Print (or run through pager) the source code for an object."""
577 self._inspect('psource',parameter_s, namespaces)
577 self._inspect('psource',parameter_s, namespaces)
578
578
579 def magic_pfile(self, parameter_s=''):
579 def magic_pfile(self, parameter_s=''):
580 """Print (or run through pager) the file where an object is defined.
580 """Print (or run through pager) the file where an object is defined.
581
581
582 The file opens at the line where the object definition begins. IPython
582 The file opens at the line where the object definition begins. IPython
583 will honor the environment variable PAGER if set, and otherwise will
583 will honor the environment variable PAGER if set, and otherwise will
584 do its best to print the file in a convenient form.
584 do its best to print the file in a convenient form.
585
585
586 If the given argument is not an object currently defined, IPython will
586 If the given argument is not an object currently defined, IPython will
587 try to interpret it as a filename (automatically adding a .py extension
587 try to interpret it as a filename (automatically adding a .py extension
588 if needed). You can thus use %pfile as a syntax highlighting code
588 if needed). You can thus use %pfile as a syntax highlighting code
589 viewer."""
589 viewer."""
590
590
591 # first interpret argument as an object name
591 # first interpret argument as an object name
592 out = self._inspect('pfile',parameter_s)
592 out = self._inspect('pfile',parameter_s)
593 # if not, try the input as a filename
593 # if not, try the input as a filename
594 if out == 'not found':
594 if out == 'not found':
595 try:
595 try:
596 filename = get_py_filename(parameter_s)
596 filename = get_py_filename(parameter_s)
597 except IOError,msg:
597 except IOError,msg:
598 print msg
598 print msg
599 return
599 return
600 page.page(self.shell.inspector.format(file(filename).read()))
600 page.page(self.shell.inspector.format(file(filename).read()))
601
601
602 def magic_psearch(self, parameter_s=''):
602 def magic_psearch(self, parameter_s=''):
603 """Search for object in namespaces by wildcard.
603 """Search for object in namespaces by wildcard.
604
604
605 %psearch [options] PATTERN [OBJECT TYPE]
605 %psearch [options] PATTERN [OBJECT TYPE]
606
606
607 Note: ? can be used as a synonym for %psearch, at the beginning or at
607 Note: ? can be used as a synonym for %psearch, at the beginning or at
608 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
608 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
609 rest of the command line must be unchanged (options come first), so
609 rest of the command line must be unchanged (options come first), so
610 for example the following forms are equivalent
610 for example the following forms are equivalent
611
611
612 %psearch -i a* function
612 %psearch -i a* function
613 -i a* function?
613 -i a* function?
614 ?-i a* function
614 ?-i a* function
615
615
616 Arguments:
616 Arguments:
617
617
618 PATTERN
618 PATTERN
619
619
620 where PATTERN is a string containing * as a wildcard similar to its
620 where PATTERN is a string containing * as a wildcard similar to its
621 use in a shell. The pattern is matched in all namespaces on the
621 use in a shell. The pattern is matched in all namespaces on the
622 search path. By default objects starting with a single _ are not
622 search path. By default objects starting with a single _ are not
623 matched, many IPython generated objects have a single
623 matched, many IPython generated objects have a single
624 underscore. The default is case insensitive matching. Matching is
624 underscore. The default is case insensitive matching. Matching is
625 also done on the attributes of objects and not only on the objects
625 also done on the attributes of objects and not only on the objects
626 in a module.
626 in a module.
627
627
628 [OBJECT TYPE]
628 [OBJECT TYPE]
629
629
630 Is the name of a python type from the types module. The name is
630 Is the name of a python type from the types module. The name is
631 given in lowercase without the ending type, ex. StringType is
631 given in lowercase without the ending type, ex. StringType is
632 written string. By adding a type here only objects matching the
632 written string. By adding a type here only objects matching the
633 given type are matched. Using all here makes the pattern match all
633 given type are matched. Using all here makes the pattern match all
634 types (this is the default).
634 types (this is the default).
635
635
636 Options:
636 Options:
637
637
638 -a: makes the pattern match even objects whose names start with a
638 -a: makes the pattern match even objects whose names start with a
639 single underscore. These names are normally ommitted from the
639 single underscore. These names are normally ommitted from the
640 search.
640 search.
641
641
642 -i/-c: make the pattern case insensitive/sensitive. If neither of
642 -i/-c: make the pattern case insensitive/sensitive. If neither of
643 these options is given, the default is read from your ipythonrc
643 these options is given, the default is read from your ipythonrc
644 file. The option name which sets this value is
644 file. The option name which sets this value is
645 'wildcards_case_sensitive'. If this option is not specified in your
645 'wildcards_case_sensitive'. If this option is not specified in your
646 ipythonrc file, IPython's internal default is to do a case sensitive
646 ipythonrc file, IPython's internal default is to do a case sensitive
647 search.
647 search.
648
648
649 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
649 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
650 specifiy can be searched in any of the following namespaces:
650 specifiy can be searched in any of the following namespaces:
651 'builtin', 'user', 'user_global','internal', 'alias', where
651 'builtin', 'user', 'user_global','internal', 'alias', where
652 'builtin' and 'user' are the search defaults. Note that you should
652 'builtin' and 'user' are the search defaults. Note that you should
653 not use quotes when specifying namespaces.
653 not use quotes when specifying namespaces.
654
654
655 'Builtin' contains the python module builtin, 'user' contains all
655 'Builtin' contains the python module builtin, 'user' contains all
656 user data, 'alias' only contain the shell aliases and no python
656 user data, 'alias' only contain the shell aliases and no python
657 objects, 'internal' contains objects used by IPython. The
657 objects, 'internal' contains objects used by IPython. The
658 'user_global' namespace is only used by embedded IPython instances,
658 'user_global' namespace is only used by embedded IPython instances,
659 and it contains module-level globals. You can add namespaces to the
659 and it contains module-level globals. You can add namespaces to the
660 search with -s or exclude them with -e (these options can be given
660 search with -s or exclude them with -e (these options can be given
661 more than once).
661 more than once).
662
662
663 Examples:
663 Examples:
664
664
665 %psearch a* -> objects beginning with an a
665 %psearch a* -> objects beginning with an a
666 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
666 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
667 %psearch a* function -> all functions beginning with an a
667 %psearch a* function -> all functions beginning with an a
668 %psearch re.e* -> objects beginning with an e in module re
668 %psearch re.e* -> objects beginning with an e in module re
669 %psearch r*.e* -> objects that start with e in modules starting in r
669 %psearch r*.e* -> objects that start with e in modules starting in r
670 %psearch r*.* string -> all strings in modules beginning with r
670 %psearch r*.* string -> all strings in modules beginning with r
671
671
672 Case sensitve search:
672 Case sensitve search:
673
673
674 %psearch -c a* list all object beginning with lower case a
674 %psearch -c a* list all object beginning with lower case a
675
675
676 Show objects beginning with a single _:
676 Show objects beginning with a single _:
677
677
678 %psearch -a _* list objects beginning with a single underscore"""
678 %psearch -a _* list objects beginning with a single underscore"""
679 try:
679 try:
680 parameter_s = parameter_s.encode('ascii')
680 parameter_s = parameter_s.encode('ascii')
681 except UnicodeEncodeError:
681 except UnicodeEncodeError:
682 print 'Python identifiers can only contain ascii characters.'
682 print 'Python identifiers can only contain ascii characters.'
683 return
683 return
684
684
685 # default namespaces to be searched
685 # default namespaces to be searched
686 def_search = ['user','builtin']
686 def_search = ['user','builtin']
687
687
688 # Process options/args
688 # Process options/args
689 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
689 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
690 opt = opts.get
690 opt = opts.get
691 shell = self.shell
691 shell = self.shell
692 psearch = shell.inspector.psearch
692 psearch = shell.inspector.psearch
693
693
694 # select case options
694 # select case options
695 if opts.has_key('i'):
695 if opts.has_key('i'):
696 ignore_case = True
696 ignore_case = True
697 elif opts.has_key('c'):
697 elif opts.has_key('c'):
698 ignore_case = False
698 ignore_case = False
699 else:
699 else:
700 ignore_case = not shell.wildcards_case_sensitive
700 ignore_case = not shell.wildcards_case_sensitive
701
701
702 # Build list of namespaces to search from user options
702 # Build list of namespaces to search from user options
703 def_search.extend(opt('s',[]))
703 def_search.extend(opt('s',[]))
704 ns_exclude = ns_exclude=opt('e',[])
704 ns_exclude = ns_exclude=opt('e',[])
705 ns_search = [nm for nm in def_search if nm not in ns_exclude]
705 ns_search = [nm for nm in def_search if nm not in ns_exclude]
706
706
707 # Call the actual search
707 # Call the actual search
708 try:
708 try:
709 psearch(args,shell.ns_table,ns_search,
709 psearch(args,shell.ns_table,ns_search,
710 show_all=opt('a'),ignore_case=ignore_case)
710 show_all=opt('a'),ignore_case=ignore_case)
711 except:
711 except:
712 shell.showtraceback()
712 shell.showtraceback()
713
713
714 @skip_doctest
714 @skip_doctest
715 def magic_who_ls(self, parameter_s=''):
715 def magic_who_ls(self, parameter_s=''):
716 """Return a sorted list of all interactive variables.
716 """Return a sorted list of all interactive variables.
717
717
718 If arguments are given, only variables of types matching these
718 If arguments are given, only variables of types matching these
719 arguments are returned.
719 arguments are returned.
720
720
721 Examples
721 Examples
722 --------
722 --------
723
723
724 Define two variables and list them with who_ls::
724 Define two variables and list them with who_ls::
725
725
726 In [1]: alpha = 123
726 In [1]: alpha = 123
727
727
728 In [2]: beta = 'test'
728 In [2]: beta = 'test'
729
729
730 In [3]: %who_ls
730 In [3]: %who_ls
731 Out[3]: ['alpha', 'beta']
731 Out[3]: ['alpha', 'beta']
732
732
733 In [4]: %who_ls int
733 In [4]: %who_ls int
734 Out[4]: ['alpha']
734 Out[4]: ['alpha']
735
735
736 In [5]: %who_ls str
736 In [5]: %who_ls str
737 Out[5]: ['beta']
737 Out[5]: ['beta']
738 """
738 """
739
739
740 user_ns = self.shell.user_ns
740 user_ns = self.shell.user_ns
741 internal_ns = self.shell.internal_ns
741 internal_ns = self.shell.internal_ns
742 user_ns_hidden = self.shell.user_ns_hidden
742 user_ns_hidden = self.shell.user_ns_hidden
743 out = [ i for i in user_ns
743 out = [ i for i in user_ns
744 if not i.startswith('_') \
744 if not i.startswith('_') \
745 and not (i in internal_ns or i in user_ns_hidden) ]
745 and not (i in internal_ns or i in user_ns_hidden) ]
746
746
747 typelist = parameter_s.split()
747 typelist = parameter_s.split()
748 if typelist:
748 if typelist:
749 typeset = set(typelist)
749 typeset = set(typelist)
750 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
750 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
751
751
752 out.sort()
752 out.sort()
753 return out
753 return out
754
754
755 @skip_doctest
755 @skip_doctest
756 def magic_who(self, parameter_s=''):
756 def magic_who(self, parameter_s=''):
757 """Print all interactive variables, with some minimal formatting.
757 """Print all interactive variables, with some minimal formatting.
758
758
759 If any arguments are given, only variables whose type matches one of
759 If any arguments are given, only variables whose type matches one of
760 these are printed. For example:
760 these are printed. For example:
761
761
762 %who function str
762 %who function str
763
763
764 will only list functions and strings, excluding all other types of
764 will only list functions and strings, excluding all other types of
765 variables. To find the proper type names, simply use type(var) at a
765 variables. To find the proper type names, simply use type(var) at a
766 command line to see how python prints type names. For example:
766 command line to see how python prints type names. For example:
767
767
768 In [1]: type('hello')\\
768 In [1]: type('hello')\\
769 Out[1]: <type 'str'>
769 Out[1]: <type 'str'>
770
770
771 indicates that the type name for strings is 'str'.
771 indicates that the type name for strings is 'str'.
772
772
773 %who always excludes executed names loaded through your configuration
773 %who always excludes executed names loaded through your configuration
774 file and things which are internal to IPython.
774 file and things which are internal to IPython.
775
775
776 This is deliberate, as typically you may load many modules and the
776 This is deliberate, as typically you may load many modules and the
777 purpose of %who is to show you only what you've manually defined.
777 purpose of %who is to show you only what you've manually defined.
778
778
779 Examples
779 Examples
780 --------
780 --------
781
781
782 Define two variables and list them with who::
782 Define two variables and list them with who::
783
783
784 In [1]: alpha = 123
784 In [1]: alpha = 123
785
785
786 In [2]: beta = 'test'
786 In [2]: beta = 'test'
787
787
788 In [3]: %who
788 In [3]: %who
789 alpha beta
789 alpha beta
790
790
791 In [4]: %who int
791 In [4]: %who int
792 alpha
792 alpha
793
793
794 In [5]: %who str
794 In [5]: %who str
795 beta
795 beta
796 """
796 """
797
797
798 varlist = self.magic_who_ls(parameter_s)
798 varlist = self.magic_who_ls(parameter_s)
799 if not varlist:
799 if not varlist:
800 if parameter_s:
800 if parameter_s:
801 print 'No variables match your requested type.'
801 print 'No variables match your requested type.'
802 else:
802 else:
803 print 'Interactive namespace is empty.'
803 print 'Interactive namespace is empty.'
804 return
804 return
805
805
806 # if we have variables, move on...
806 # if we have variables, move on...
807 count = 0
807 count = 0
808 for i in varlist:
808 for i in varlist:
809 print i+'\t',
809 print i+'\t',
810 count += 1
810 count += 1
811 if count > 8:
811 if count > 8:
812 count = 0
812 count = 0
813 print
813 print
814 print
814 print
815
815
816 @skip_doctest
816 @skip_doctest
817 def magic_whos(self, parameter_s=''):
817 def magic_whos(self, parameter_s=''):
818 """Like %who, but gives some extra information about each variable.
818 """Like %who, but gives some extra information about each variable.
819
819
820 The same type filtering of %who can be applied here.
820 The same type filtering of %who can be applied here.
821
821
822 For all variables, the type is printed. Additionally it prints:
822 For all variables, the type is printed. Additionally it prints:
823
823
824 - For {},[],(): their length.
824 - For {},[],(): their length.
825
825
826 - For numpy arrays, a summary with shape, number of
826 - For numpy arrays, a summary with shape, number of
827 elements, typecode and size in memory.
827 elements, typecode and size in memory.
828
828
829 - Everything else: a string representation, snipping their middle if
829 - Everything else: a string representation, snipping their middle if
830 too long.
830 too long.
831
831
832 Examples
832 Examples
833 --------
833 --------
834
834
835 Define two variables and list them with whos::
835 Define two variables and list them with whos::
836
836
837 In [1]: alpha = 123
837 In [1]: alpha = 123
838
838
839 In [2]: beta = 'test'
839 In [2]: beta = 'test'
840
840
841 In [3]: %whos
841 In [3]: %whos
842 Variable Type Data/Info
842 Variable Type Data/Info
843 --------------------------------
843 --------------------------------
844 alpha int 123
844 alpha int 123
845 beta str test
845 beta str test
846 """
846 """
847
847
848 varnames = self.magic_who_ls(parameter_s)
848 varnames = self.magic_who_ls(parameter_s)
849 if not varnames:
849 if not varnames:
850 if parameter_s:
850 if parameter_s:
851 print 'No variables match your requested type.'
851 print 'No variables match your requested type.'
852 else:
852 else:
853 print 'Interactive namespace is empty.'
853 print 'Interactive namespace is empty.'
854 return
854 return
855
855
856 # if we have variables, move on...
856 # if we have variables, move on...
857
857
858 # for these types, show len() instead of data:
858 # for these types, show len() instead of data:
859 seq_types = ['dict', 'list', 'tuple']
859 seq_types = ['dict', 'list', 'tuple']
860
860
861 # for numpy/Numeric arrays, display summary info
861 # for numpy/Numeric arrays, display summary info
862 try:
862 try:
863 import numpy
863 import numpy
864 except ImportError:
864 except ImportError:
865 ndarray_type = None
865 ndarray_type = None
866 else:
866 else:
867 ndarray_type = numpy.ndarray.__name__
867 ndarray_type = numpy.ndarray.__name__
868 try:
868 try:
869 import Numeric
869 import Numeric
870 except ImportError:
870 except ImportError:
871 array_type = None
871 array_type = None
872 else:
872 else:
873 array_type = Numeric.ArrayType.__name__
873 array_type = Numeric.ArrayType.__name__
874
874
875 # Find all variable names and types so we can figure out column sizes
875 # Find all variable names and types so we can figure out column sizes
876 def get_vars(i):
876 def get_vars(i):
877 return self.shell.user_ns[i]
877 return self.shell.user_ns[i]
878
878
879 # some types are well known and can be shorter
879 # some types are well known and can be shorter
880 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
880 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
881 def type_name(v):
881 def type_name(v):
882 tn = type(v).__name__
882 tn = type(v).__name__
883 return abbrevs.get(tn,tn)
883 return abbrevs.get(tn,tn)
884
884
885 varlist = map(get_vars,varnames)
885 varlist = map(get_vars,varnames)
886
886
887 typelist = []
887 typelist = []
888 for vv in varlist:
888 for vv in varlist:
889 tt = type_name(vv)
889 tt = type_name(vv)
890
890
891 if tt=='instance':
891 if tt=='instance':
892 typelist.append( abbrevs.get(str(vv.__class__),
892 typelist.append( abbrevs.get(str(vv.__class__),
893 str(vv.__class__)))
893 str(vv.__class__)))
894 else:
894 else:
895 typelist.append(tt)
895 typelist.append(tt)
896
896
897 # column labels and # of spaces as separator
897 # column labels and # of spaces as separator
898 varlabel = 'Variable'
898 varlabel = 'Variable'
899 typelabel = 'Type'
899 typelabel = 'Type'
900 datalabel = 'Data/Info'
900 datalabel = 'Data/Info'
901 colsep = 3
901 colsep = 3
902 # variable format strings
902 # variable format strings
903 vformat = "{0:<{varwidth}}{1:<{typewidth}}"
903 vformat = "{0:<{varwidth}}{1:<{typewidth}}"
904 aformat = "%s: %s elems, type `%s`, %s bytes"
904 aformat = "%s: %s elems, type `%s`, %s bytes"
905 # find the size of the columns to format the output nicely
905 # find the size of the columns to format the output nicely
906 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
906 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
907 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
907 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
908 # table header
908 # table header
909 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
909 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
910 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
910 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
911 # and the table itself
911 # and the table itself
912 kb = 1024
912 kb = 1024
913 Mb = 1048576 # kb**2
913 Mb = 1048576 # kb**2
914 for vname,var,vtype in zip(varnames,varlist,typelist):
914 for vname,var,vtype in zip(varnames,varlist,typelist):
915 print vformat.format(vname, vtype, varwidth=varwidth, typewidth=typewidth),
915 print vformat.format(vname, vtype, varwidth=varwidth, typewidth=typewidth),
916 if vtype in seq_types:
916 if vtype in seq_types:
917 print "n="+str(len(var))
917 print "n="+str(len(var))
918 elif vtype in [array_type,ndarray_type]:
918 elif vtype in [array_type,ndarray_type]:
919 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
919 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
920 if vtype==ndarray_type:
920 if vtype==ndarray_type:
921 # numpy
921 # numpy
922 vsize = var.size
922 vsize = var.size
923 vbytes = vsize*var.itemsize
923 vbytes = vsize*var.itemsize
924 vdtype = var.dtype
924 vdtype = var.dtype
925 else:
925 else:
926 # Numeric
926 # Numeric
927 vsize = Numeric.size(var)
927 vsize = Numeric.size(var)
928 vbytes = vsize*var.itemsize()
928 vbytes = vsize*var.itemsize()
929 vdtype = var.typecode()
929 vdtype = var.typecode()
930
930
931 if vbytes < 100000:
931 if vbytes < 100000:
932 print aformat % (vshape,vsize,vdtype,vbytes)
932 print aformat % (vshape,vsize,vdtype,vbytes)
933 else:
933 else:
934 print aformat % (vshape,vsize,vdtype,vbytes),
934 print aformat % (vshape,vsize,vdtype,vbytes),
935 if vbytes < Mb:
935 if vbytes < Mb:
936 print '(%s kb)' % (vbytes/kb,)
936 print '(%s kb)' % (vbytes/kb,)
937 else:
937 else:
938 print '(%s Mb)' % (vbytes/Mb,)
938 print '(%s Mb)' % (vbytes/Mb,)
939 else:
939 else:
940 try:
940 try:
941 vstr = str(var)
941 vstr = str(var)
942 except UnicodeEncodeError:
942 except UnicodeEncodeError:
943 vstr = unicode(var).encode(sys.getdefaultencoding(),
943 vstr = unicode(var).encode(sys.getdefaultencoding(),
944 'backslashreplace')
944 'backslashreplace')
945 vstr = vstr.replace('\n','\\n')
945 vstr = vstr.replace('\n','\\n')
946 if len(vstr) < 50:
946 if len(vstr) < 50:
947 print vstr
947 print vstr
948 else:
948 else:
949 print vstr[:25] + "<...>" + vstr[-25:]
949 print vstr[:25] + "<...>" + vstr[-25:]
950
950
951 def magic_reset(self, parameter_s=''):
951 def magic_reset(self, parameter_s=''):
952 """Resets the namespace by removing all names defined by the user.
952 """Resets the namespace by removing all names defined by the user.
953
953
954 Parameters
954 Parameters
955 ----------
955 ----------
956 -f : force reset without asking for confirmation.
956 -f : force reset without asking for confirmation.
957
957
958 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
958 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
959 References to objects may be kept. By default (without this option),
959 References to objects may be kept. By default (without this option),
960 we do a 'hard' reset, giving you a new session and removing all
960 we do a 'hard' reset, giving you a new session and removing all
961 references to objects from the current session.
961 references to objects from the current session.
962
962
963 Examples
963 Examples
964 --------
964 --------
965 In [6]: a = 1
965 In [6]: a = 1
966
966
967 In [7]: a
967 In [7]: a
968 Out[7]: 1
968 Out[7]: 1
969
969
970 In [8]: 'a' in _ip.user_ns
970 In [8]: 'a' in _ip.user_ns
971 Out[8]: True
971 Out[8]: True
972
972
973 In [9]: %reset -f
973 In [9]: %reset -f
974
974
975 In [1]: 'a' in _ip.user_ns
975 In [1]: 'a' in _ip.user_ns
976 Out[1]: False
976 Out[1]: False
977 """
977 """
978 opts, args = self.parse_options(parameter_s,'sf')
978 opts, args = self.parse_options(parameter_s,'sf')
979 if 'f' in opts:
979 if 'f' in opts:
980 ans = True
980 ans = True
981 else:
981 else:
982 ans = self.shell.ask_yes_no(
982 ans = self.shell.ask_yes_no(
983 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
983 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
984 if not ans:
984 if not ans:
985 print 'Nothing done.'
985 print 'Nothing done.'
986 return
986 return
987
987
988 if 's' in opts: # Soft reset
988 if 's' in opts: # Soft reset
989 user_ns = self.shell.user_ns
989 user_ns = self.shell.user_ns
990 for i in self.magic_who_ls():
990 for i in self.magic_who_ls():
991 del(user_ns[i])
991 del(user_ns[i])
992
992
993 else: # Hard reset
993 else: # Hard reset
994 self.shell.reset(new_session = False)
994 self.shell.reset(new_session = False)
995
995
996
996
997
997
998 def magic_reset_selective(self, parameter_s=''):
998 def magic_reset_selective(self, parameter_s=''):
999 """Resets the namespace by removing names defined by the user.
999 """Resets the namespace by removing names defined by the user.
1000
1000
1001 Input/Output history are left around in case you need them.
1001 Input/Output history are left around in case you need them.
1002
1002
1003 %reset_selective [-f] regex
1003 %reset_selective [-f] regex
1004
1004
1005 No action is taken if regex is not included
1005 No action is taken if regex is not included
1006
1006
1007 Options
1007 Options
1008 -f : force reset without asking for confirmation.
1008 -f : force reset without asking for confirmation.
1009
1009
1010 Examples
1010 Examples
1011 --------
1011 --------
1012
1012
1013 We first fully reset the namespace so your output looks identical to
1013 We first fully reset the namespace so your output looks identical to
1014 this example for pedagogical reasons; in practice you do not need a
1014 this example for pedagogical reasons; in practice you do not need a
1015 full reset.
1015 full reset.
1016
1016
1017 In [1]: %reset -f
1017 In [1]: %reset -f
1018
1018
1019 Now, with a clean namespace we can make a few variables and use
1019 Now, with a clean namespace we can make a few variables and use
1020 %reset_selective to only delete names that match our regexp:
1020 %reset_selective to only delete names that match our regexp:
1021
1021
1022 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1022 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1023
1023
1024 In [3]: who_ls
1024 In [3]: who_ls
1025 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1025 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1026
1026
1027 In [4]: %reset_selective -f b[2-3]m
1027 In [4]: %reset_selective -f b[2-3]m
1028
1028
1029 In [5]: who_ls
1029 In [5]: who_ls
1030 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1030 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1031
1031
1032 In [6]: %reset_selective -f d
1032 In [6]: %reset_selective -f d
1033
1033
1034 In [7]: who_ls
1034 In [7]: who_ls
1035 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1035 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1036
1036
1037 In [8]: %reset_selective -f c
1037 In [8]: %reset_selective -f c
1038
1038
1039 In [9]: who_ls
1039 In [9]: who_ls
1040 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1040 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1041
1041
1042 In [10]: %reset_selective -f b
1042 In [10]: %reset_selective -f b
1043
1043
1044 In [11]: who_ls
1044 In [11]: who_ls
1045 Out[11]: ['a']
1045 Out[11]: ['a']
1046 """
1046 """
1047
1047
1048 opts, regex = self.parse_options(parameter_s,'f')
1048 opts, regex = self.parse_options(parameter_s,'f')
1049
1049
1050 if opts.has_key('f'):
1050 if opts.has_key('f'):
1051 ans = True
1051 ans = True
1052 else:
1052 else:
1053 ans = self.shell.ask_yes_no(
1053 ans = self.shell.ask_yes_no(
1054 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1054 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1055 if not ans:
1055 if not ans:
1056 print 'Nothing done.'
1056 print 'Nothing done.'
1057 return
1057 return
1058 user_ns = self.shell.user_ns
1058 user_ns = self.shell.user_ns
1059 if not regex:
1059 if not regex:
1060 print 'No regex pattern specified. Nothing done.'
1060 print 'No regex pattern specified. Nothing done.'
1061 return
1061 return
1062 else:
1062 else:
1063 try:
1063 try:
1064 m = re.compile(regex)
1064 m = re.compile(regex)
1065 except TypeError:
1065 except TypeError:
1066 raise TypeError('regex must be a string or compiled pattern')
1066 raise TypeError('regex must be a string or compiled pattern')
1067 for i in self.magic_who_ls():
1067 for i in self.magic_who_ls():
1068 if m.search(i):
1068 if m.search(i):
1069 del(user_ns[i])
1069 del(user_ns[i])
1070
1070
1071 def magic_xdel(self, parameter_s=''):
1071 def magic_xdel(self, parameter_s=''):
1072 """Delete a variable, trying to clear it from anywhere that
1072 """Delete a variable, trying to clear it from anywhere that
1073 IPython's machinery has references to it. By default, this uses
1073 IPython's machinery has references to it. By default, this uses
1074 the identity of the named object in the user namespace to remove
1074 the identity of the named object in the user namespace to remove
1075 references held under other names. The object is also removed
1075 references held under other names. The object is also removed
1076 from the output history.
1076 from the output history.
1077
1077
1078 Options
1078 Options
1079 -n : Delete the specified name from all namespaces, without
1079 -n : Delete the specified name from all namespaces, without
1080 checking their identity.
1080 checking their identity.
1081 """
1081 """
1082 opts, varname = self.parse_options(parameter_s,'n')
1082 opts, varname = self.parse_options(parameter_s,'n')
1083 try:
1083 try:
1084 self.shell.del_var(varname, ('n' in opts))
1084 self.shell.del_var(varname, ('n' in opts))
1085 except (NameError, ValueError) as e:
1085 except (NameError, ValueError) as e:
1086 print type(e).__name__ +": "+ str(e)
1086 print type(e).__name__ +": "+ str(e)
1087
1087
1088 def magic_logstart(self,parameter_s=''):
1088 def magic_logstart(self,parameter_s=''):
1089 """Start logging anywhere in a session.
1089 """Start logging anywhere in a session.
1090
1090
1091 %logstart [-o|-r|-t] [log_name [log_mode]]
1091 %logstart [-o|-r|-t] [log_name [log_mode]]
1092
1092
1093 If no name is given, it defaults to a file named 'ipython_log.py' in your
1093 If no name is given, it defaults to a file named 'ipython_log.py' in your
1094 current directory, in 'rotate' mode (see below).
1094 current directory, in 'rotate' mode (see below).
1095
1095
1096 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1096 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1097 history up to that point and then continues logging.
1097 history up to that point and then continues logging.
1098
1098
1099 %logstart takes a second optional parameter: logging mode. This can be one
1099 %logstart takes a second optional parameter: logging mode. This can be one
1100 of (note that the modes are given unquoted):\\
1100 of (note that the modes are given unquoted):\\
1101 append: well, that says it.\\
1101 append: well, that says it.\\
1102 backup: rename (if exists) to name~ and start name.\\
1102 backup: rename (if exists) to name~ and start name.\\
1103 global: single logfile in your home dir, appended to.\\
1103 global: single logfile in your home dir, appended to.\\
1104 over : overwrite existing log.\\
1104 over : overwrite existing log.\\
1105 rotate: create rotating logs name.1~, name.2~, etc.
1105 rotate: create rotating logs name.1~, name.2~, etc.
1106
1106
1107 Options:
1107 Options:
1108
1108
1109 -o: log also IPython's output. In this mode, all commands which
1109 -o: log also IPython's output. In this mode, all commands which
1110 generate an Out[NN] prompt are recorded to the logfile, right after
1110 generate an Out[NN] prompt are recorded to the logfile, right after
1111 their corresponding input line. The output lines are always
1111 their corresponding input line. The output lines are always
1112 prepended with a '#[Out]# ' marker, so that the log remains valid
1112 prepended with a '#[Out]# ' marker, so that the log remains valid
1113 Python code.
1113 Python code.
1114
1114
1115 Since this marker is always the same, filtering only the output from
1115 Since this marker is always the same, filtering only the output from
1116 a log is very easy, using for example a simple awk call:
1116 a log is very easy, using for example a simple awk call:
1117
1117
1118 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1118 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1119
1119
1120 -r: log 'raw' input. Normally, IPython's logs contain the processed
1120 -r: log 'raw' input. Normally, IPython's logs contain the processed
1121 input, so that user lines are logged in their final form, converted
1121 input, so that user lines are logged in their final form, converted
1122 into valid Python. For example, %Exit is logged as
1122 into valid Python. For example, %Exit is logged as
1123 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1123 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1124 exactly as typed, with no transformations applied.
1124 exactly as typed, with no transformations applied.
1125
1125
1126 -t: put timestamps before each input line logged (these are put in
1126 -t: put timestamps before each input line logged (these are put in
1127 comments)."""
1127 comments)."""
1128
1128
1129 opts,par = self.parse_options(parameter_s,'ort')
1129 opts,par = self.parse_options(parameter_s,'ort')
1130 log_output = 'o' in opts
1130 log_output = 'o' in opts
1131 log_raw_input = 'r' in opts
1131 log_raw_input = 'r' in opts
1132 timestamp = 't' in opts
1132 timestamp = 't' in opts
1133
1133
1134 logger = self.shell.logger
1134 logger = self.shell.logger
1135
1135
1136 # if no args are given, the defaults set in the logger constructor by
1136 # if no args are given, the defaults set in the logger constructor by
1137 # ipytohn remain valid
1137 # ipytohn remain valid
1138 if par:
1138 if par:
1139 try:
1139 try:
1140 logfname,logmode = par.split()
1140 logfname,logmode = par.split()
1141 except:
1141 except:
1142 logfname = par
1142 logfname = par
1143 logmode = 'backup'
1143 logmode = 'backup'
1144 else:
1144 else:
1145 logfname = logger.logfname
1145 logfname = logger.logfname
1146 logmode = logger.logmode
1146 logmode = logger.logmode
1147 # put logfname into rc struct as if it had been called on the command
1147 # put logfname into rc struct as if it had been called on the command
1148 # line, so it ends up saved in the log header Save it in case we need
1148 # line, so it ends up saved in the log header Save it in case we need
1149 # to restore it...
1149 # to restore it...
1150 old_logfile = self.shell.logfile
1150 old_logfile = self.shell.logfile
1151 if logfname:
1151 if logfname:
1152 logfname = os.path.expanduser(logfname)
1152 logfname = os.path.expanduser(logfname)
1153 self.shell.logfile = logfname
1153 self.shell.logfile = logfname
1154
1154
1155 loghead = '# IPython log file\n\n'
1155 loghead = '# IPython log file\n\n'
1156 try:
1156 try:
1157 started = logger.logstart(logfname,loghead,logmode,
1157 started = logger.logstart(logfname,loghead,logmode,
1158 log_output,timestamp,log_raw_input)
1158 log_output,timestamp,log_raw_input)
1159 except:
1159 except:
1160 self.shell.logfile = old_logfile
1160 self.shell.logfile = old_logfile
1161 warn("Couldn't start log: %s" % sys.exc_info()[1])
1161 warn("Couldn't start log: %s" % sys.exc_info()[1])
1162 else:
1162 else:
1163 # log input history up to this point, optionally interleaving
1163 # log input history up to this point, optionally interleaving
1164 # output if requested
1164 # output if requested
1165
1165
1166 if timestamp:
1166 if timestamp:
1167 # disable timestamping for the previous history, since we've
1167 # disable timestamping for the previous history, since we've
1168 # lost those already (no time machine here).
1168 # lost those already (no time machine here).
1169 logger.timestamp = False
1169 logger.timestamp = False
1170
1170
1171 if log_raw_input:
1171 if log_raw_input:
1172 input_hist = self.shell.history_manager.input_hist_raw
1172 input_hist = self.shell.history_manager.input_hist_raw
1173 else:
1173 else:
1174 input_hist = self.shell.history_manager.input_hist_parsed
1174 input_hist = self.shell.history_manager.input_hist_parsed
1175
1175
1176 if log_output:
1176 if log_output:
1177 log_write = logger.log_write
1177 log_write = logger.log_write
1178 output_hist = self.shell.history_manager.output_hist
1178 output_hist = self.shell.history_manager.output_hist
1179 for n in range(1,len(input_hist)-1):
1179 for n in range(1,len(input_hist)-1):
1180 log_write(input_hist[n].rstrip() + '\n')
1180 log_write(input_hist[n].rstrip() + '\n')
1181 if n in output_hist:
1181 if n in output_hist:
1182 log_write(repr(output_hist[n]),'output')
1182 log_write(repr(output_hist[n]),'output')
1183 else:
1183 else:
1184 logger.log_write('\n'.join(input_hist[1:]))
1184 logger.log_write('\n'.join(input_hist[1:]))
1185 logger.log_write('\n')
1185 logger.log_write('\n')
1186 if timestamp:
1186 if timestamp:
1187 # re-enable timestamping
1187 # re-enable timestamping
1188 logger.timestamp = True
1188 logger.timestamp = True
1189
1189
1190 print ('Activating auto-logging. '
1190 print ('Activating auto-logging. '
1191 'Current session state plus future input saved.')
1191 'Current session state plus future input saved.')
1192 logger.logstate()
1192 logger.logstate()
1193
1193
1194 def magic_logstop(self,parameter_s=''):
1194 def magic_logstop(self,parameter_s=''):
1195 """Fully stop logging and close log file.
1195 """Fully stop logging and close log file.
1196
1196
1197 In order to start logging again, a new %logstart call needs to be made,
1197 In order to start logging again, a new %logstart call needs to be made,
1198 possibly (though not necessarily) with a new filename, mode and other
1198 possibly (though not necessarily) with a new filename, mode and other
1199 options."""
1199 options."""
1200 self.logger.logstop()
1200 self.logger.logstop()
1201
1201
1202 def magic_logoff(self,parameter_s=''):
1202 def magic_logoff(self,parameter_s=''):
1203 """Temporarily stop logging.
1203 """Temporarily stop logging.
1204
1204
1205 You must have previously started logging."""
1205 You must have previously started logging."""
1206 self.shell.logger.switch_log(0)
1206 self.shell.logger.switch_log(0)
1207
1207
1208 def magic_logon(self,parameter_s=''):
1208 def magic_logon(self,parameter_s=''):
1209 """Restart logging.
1209 """Restart logging.
1210
1210
1211 This function is for restarting logging which you've temporarily
1211 This function is for restarting logging which you've temporarily
1212 stopped with %logoff. For starting logging for the first time, you
1212 stopped with %logoff. For starting logging for the first time, you
1213 must use the %logstart function, which allows you to specify an
1213 must use the %logstart function, which allows you to specify an
1214 optional log filename."""
1214 optional log filename."""
1215
1215
1216 self.shell.logger.switch_log(1)
1216 self.shell.logger.switch_log(1)
1217
1217
1218 def magic_logstate(self,parameter_s=''):
1218 def magic_logstate(self,parameter_s=''):
1219 """Print the status of the logging system."""
1219 """Print the status of the logging system."""
1220
1220
1221 self.shell.logger.logstate()
1221 self.shell.logger.logstate()
1222
1222
1223 def magic_pdb(self, parameter_s=''):
1223 def magic_pdb(self, parameter_s=''):
1224 """Control the automatic calling of the pdb interactive debugger.
1224 """Control the automatic calling of the pdb interactive debugger.
1225
1225
1226 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1226 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1227 argument it works as a toggle.
1227 argument it works as a toggle.
1228
1228
1229 When an exception is triggered, IPython can optionally call the
1229 When an exception is triggered, IPython can optionally call the
1230 interactive pdb debugger after the traceback printout. %pdb toggles
1230 interactive pdb debugger after the traceback printout. %pdb toggles
1231 this feature on and off.
1231 this feature on and off.
1232
1232
1233 The initial state of this feature is set in your ipythonrc
1233 The initial state of this feature is set in your ipythonrc
1234 configuration file (the variable is called 'pdb').
1234 configuration file (the variable is called 'pdb').
1235
1235
1236 If you want to just activate the debugger AFTER an exception has fired,
1236 If you want to just activate the debugger AFTER an exception has fired,
1237 without having to type '%pdb on' and rerunning your code, you can use
1237 without having to type '%pdb on' and rerunning your code, you can use
1238 the %debug magic."""
1238 the %debug magic."""
1239
1239
1240 par = parameter_s.strip().lower()
1240 par = parameter_s.strip().lower()
1241
1241
1242 if par:
1242 if par:
1243 try:
1243 try:
1244 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1244 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1245 except KeyError:
1245 except KeyError:
1246 print ('Incorrect argument. Use on/1, off/0, '
1246 print ('Incorrect argument. Use on/1, off/0, '
1247 'or nothing for a toggle.')
1247 'or nothing for a toggle.')
1248 return
1248 return
1249 else:
1249 else:
1250 # toggle
1250 # toggle
1251 new_pdb = not self.shell.call_pdb
1251 new_pdb = not self.shell.call_pdb
1252
1252
1253 # set on the shell
1253 # set on the shell
1254 self.shell.call_pdb = new_pdb
1254 self.shell.call_pdb = new_pdb
1255 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1255 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1256
1256
1257 def magic_debug(self, parameter_s=''):
1257 def magic_debug(self, parameter_s=''):
1258 """Activate the interactive debugger in post-mortem mode.
1258 """Activate the interactive debugger in post-mortem mode.
1259
1259
1260 If an exception has just occurred, this lets you inspect its stack
1260 If an exception has just occurred, this lets you inspect its stack
1261 frames interactively. Note that this will always work only on the last
1261 frames interactively. Note that this will always work only on the last
1262 traceback that occurred, so you must call this quickly after an
1262 traceback that occurred, so you must call this quickly after an
1263 exception that you wish to inspect has fired, because if another one
1263 exception that you wish to inspect has fired, because if another one
1264 occurs, it clobbers the previous one.
1264 occurs, it clobbers the previous one.
1265
1265
1266 If you want IPython to automatically do this on every exception, see
1266 If you want IPython to automatically do this on every exception, see
1267 the %pdb magic for more details.
1267 the %pdb magic for more details.
1268 """
1268 """
1269 self.shell.debugger(force=True)
1269 self.shell.debugger(force=True)
1270
1270
1271 @skip_doctest
1271 @skip_doctest
1272 def magic_prun(self, parameter_s ='',user_mode=1,
1272 def magic_prun(self, parameter_s ='',user_mode=1,
1273 opts=None,arg_lst=None,prog_ns=None):
1273 opts=None,arg_lst=None,prog_ns=None):
1274
1274
1275 """Run a statement through the python code profiler.
1275 """Run a statement through the python code profiler.
1276
1276
1277 Usage:
1277 Usage:
1278 %prun [options] statement
1278 %prun [options] statement
1279
1279
1280 The given statement (which doesn't require quote marks) is run via the
1280 The given statement (which doesn't require quote marks) is run via the
1281 python profiler in a manner similar to the profile.run() function.
1281 python profiler in a manner similar to the profile.run() function.
1282 Namespaces are internally managed to work correctly; profile.run
1282 Namespaces are internally managed to work correctly; profile.run
1283 cannot be used in IPython because it makes certain assumptions about
1283 cannot be used in IPython because it makes certain assumptions about
1284 namespaces which do not hold under IPython.
1284 namespaces which do not hold under IPython.
1285
1285
1286 Options:
1286 Options:
1287
1287
1288 -l <limit>: you can place restrictions on what or how much of the
1288 -l <limit>: you can place restrictions on what or how much of the
1289 profile gets printed. The limit value can be:
1289 profile gets printed. The limit value can be:
1290
1290
1291 * A string: only information for function names containing this string
1291 * A string: only information for function names containing this string
1292 is printed.
1292 is printed.
1293
1293
1294 * An integer: only these many lines are printed.
1294 * An integer: only these many lines are printed.
1295
1295
1296 * A float (between 0 and 1): this fraction of the report is printed
1296 * A float (between 0 and 1): this fraction of the report is printed
1297 (for example, use a limit of 0.4 to see the topmost 40% only).
1297 (for example, use a limit of 0.4 to see the topmost 40% only).
1298
1298
1299 You can combine several limits with repeated use of the option. For
1299 You can combine several limits with repeated use of the option. For
1300 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1300 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1301 information about class constructors.
1301 information about class constructors.
1302
1302
1303 -r: return the pstats.Stats object generated by the profiling. This
1303 -r: return the pstats.Stats object generated by the profiling. This
1304 object has all the information about the profile in it, and you can
1304 object has all the information about the profile in it, and you can
1305 later use it for further analysis or in other functions.
1305 later use it for further analysis or in other functions.
1306
1306
1307 -s <key>: sort profile by given key. You can provide more than one key
1307 -s <key>: sort profile by given key. You can provide more than one key
1308 by using the option several times: '-s key1 -s key2 -s key3...'. The
1308 by using the option several times: '-s key1 -s key2 -s key3...'. The
1309 default sorting key is 'time'.
1309 default sorting key is 'time'.
1310
1310
1311 The following is copied verbatim from the profile documentation
1311 The following is copied verbatim from the profile documentation
1312 referenced below:
1312 referenced below:
1313
1313
1314 When more than one key is provided, additional keys are used as
1314 When more than one key is provided, additional keys are used as
1315 secondary criteria when the there is equality in all keys selected
1315 secondary criteria when the there is equality in all keys selected
1316 before them.
1316 before them.
1317
1317
1318 Abbreviations can be used for any key names, as long as the
1318 Abbreviations can be used for any key names, as long as the
1319 abbreviation is unambiguous. The following are the keys currently
1319 abbreviation is unambiguous. The following are the keys currently
1320 defined:
1320 defined:
1321
1321
1322 Valid Arg Meaning
1322 Valid Arg Meaning
1323 "calls" call count
1323 "calls" call count
1324 "cumulative" cumulative time
1324 "cumulative" cumulative time
1325 "file" file name
1325 "file" file name
1326 "module" file name
1326 "module" file name
1327 "pcalls" primitive call count
1327 "pcalls" primitive call count
1328 "line" line number
1328 "line" line number
1329 "name" function name
1329 "name" function name
1330 "nfl" name/file/line
1330 "nfl" name/file/line
1331 "stdname" standard name
1331 "stdname" standard name
1332 "time" internal time
1332 "time" internal time
1333
1333
1334 Note that all sorts on statistics are in descending order (placing
1334 Note that all sorts on statistics are in descending order (placing
1335 most time consuming items first), where as name, file, and line number
1335 most time consuming items first), where as name, file, and line number
1336 searches are in ascending order (i.e., alphabetical). The subtle
1336 searches are in ascending order (i.e., alphabetical). The subtle
1337 distinction between "nfl" and "stdname" is that the standard name is a
1337 distinction between "nfl" and "stdname" is that the standard name is a
1338 sort of the name as printed, which means that the embedded line
1338 sort of the name as printed, which means that the embedded line
1339 numbers get compared in an odd way. For example, lines 3, 20, and 40
1339 numbers get compared in an odd way. For example, lines 3, 20, and 40
1340 would (if the file names were the same) appear in the string order
1340 would (if the file names were the same) appear in the string order
1341 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1341 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1342 line numbers. In fact, sort_stats("nfl") is the same as
1342 line numbers. In fact, sort_stats("nfl") is the same as
1343 sort_stats("name", "file", "line").
1343 sort_stats("name", "file", "line").
1344
1344
1345 -T <filename>: save profile results as shown on screen to a text
1345 -T <filename>: save profile results as shown on screen to a text
1346 file. The profile is still shown on screen.
1346 file. The profile is still shown on screen.
1347
1347
1348 -D <filename>: save (via dump_stats) profile statistics to given
1348 -D <filename>: save (via dump_stats) profile statistics to given
1349 filename. This data is in a format understod by the pstats module, and
1349 filename. This data is in a format understod by the pstats module, and
1350 is generated by a call to the dump_stats() method of profile
1350 is generated by a call to the dump_stats() method of profile
1351 objects. The profile is still shown on screen.
1351 objects. The profile is still shown on screen.
1352
1352
1353 If you want to run complete programs under the profiler's control, use
1353 If you want to run complete programs under the profiler's control, use
1354 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1354 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1355 contains profiler specific options as described here.
1355 contains profiler specific options as described here.
1356
1356
1357 You can read the complete documentation for the profile module with::
1357 You can read the complete documentation for the profile module with::
1358
1358
1359 In [1]: import profile; profile.help()
1359 In [1]: import profile; profile.help()
1360 """
1360 """
1361
1361
1362 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1362 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1363 # protect user quote marks
1363 # protect user quote marks
1364 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1364 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1365
1365
1366 if user_mode: # regular user call
1366 if user_mode: # regular user call
1367 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1367 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1368 list_all=1)
1368 list_all=1)
1369 namespace = self.shell.user_ns
1369 namespace = self.shell.user_ns
1370 else: # called to run a program by %run -p
1370 else: # called to run a program by %run -p
1371 try:
1371 try:
1372 filename = get_py_filename(arg_lst[0])
1372 filename = get_py_filename(arg_lst[0])
1373 except IOError,msg:
1373 except IOError,msg:
1374 error(msg)
1374 error(msg)
1375 return
1375 return
1376
1376
1377 arg_str = 'execfile(filename,prog_ns)'
1377 arg_str = 'execfile(filename,prog_ns)'
1378 namespace = locals()
1378 namespace = locals()
1379
1379
1380 opts.merge(opts_def)
1380 opts.merge(opts_def)
1381
1381
1382 prof = profile.Profile()
1382 prof = profile.Profile()
1383 try:
1383 try:
1384 prof = prof.runctx(arg_str,namespace,namespace)
1384 prof = prof.runctx(arg_str,namespace,namespace)
1385 sys_exit = ''
1385 sys_exit = ''
1386 except SystemExit:
1386 except SystemExit:
1387 sys_exit = """*** SystemExit exception caught in code being profiled."""
1387 sys_exit = """*** SystemExit exception caught in code being profiled."""
1388
1388
1389 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1389 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1390
1390
1391 lims = opts.l
1391 lims = opts.l
1392 if lims:
1392 if lims:
1393 lims = [] # rebuild lims with ints/floats/strings
1393 lims = [] # rebuild lims with ints/floats/strings
1394 for lim in opts.l:
1394 for lim in opts.l:
1395 try:
1395 try:
1396 lims.append(int(lim))
1396 lims.append(int(lim))
1397 except ValueError:
1397 except ValueError:
1398 try:
1398 try:
1399 lims.append(float(lim))
1399 lims.append(float(lim))
1400 except ValueError:
1400 except ValueError:
1401 lims.append(lim)
1401 lims.append(lim)
1402
1402
1403 # Trap output.
1403 # Trap output.
1404 stdout_trap = StringIO()
1404 stdout_trap = StringIO()
1405
1405
1406 if hasattr(stats,'stream'):
1406 if hasattr(stats,'stream'):
1407 # In newer versions of python, the stats object has a 'stream'
1407 # In newer versions of python, the stats object has a 'stream'
1408 # attribute to write into.
1408 # attribute to write into.
1409 stats.stream = stdout_trap
1409 stats.stream = stdout_trap
1410 stats.print_stats(*lims)
1410 stats.print_stats(*lims)
1411 else:
1411 else:
1412 # For older versions, we manually redirect stdout during printing
1412 # For older versions, we manually redirect stdout during printing
1413 sys_stdout = sys.stdout
1413 sys_stdout = sys.stdout
1414 try:
1414 try:
1415 sys.stdout = stdout_trap
1415 sys.stdout = stdout_trap
1416 stats.print_stats(*lims)
1416 stats.print_stats(*lims)
1417 finally:
1417 finally:
1418 sys.stdout = sys_stdout
1418 sys.stdout = sys_stdout
1419
1419
1420 output = stdout_trap.getvalue()
1420 output = stdout_trap.getvalue()
1421 output = output.rstrip()
1421 output = output.rstrip()
1422
1422
1423 page.page(output)
1423 page.page(output)
1424 print sys_exit,
1424 print sys_exit,
1425
1425
1426 dump_file = opts.D[0]
1426 dump_file = opts.D[0]
1427 text_file = opts.T[0]
1427 text_file = opts.T[0]
1428 if dump_file:
1428 if dump_file:
1429 prof.dump_stats(dump_file)
1429 prof.dump_stats(dump_file)
1430 print '\n*** Profile stats marshalled to file',\
1430 print '\n*** Profile stats marshalled to file',\
1431 `dump_file`+'.',sys_exit
1431 `dump_file`+'.',sys_exit
1432 if text_file:
1432 if text_file:
1433 pfile = file(text_file,'w')
1433 pfile = file(text_file,'w')
1434 pfile.write(output)
1434 pfile.write(output)
1435 pfile.close()
1435 pfile.close()
1436 print '\n*** Profile printout saved to text file',\
1436 print '\n*** Profile printout saved to text file',\
1437 `text_file`+'.',sys_exit
1437 `text_file`+'.',sys_exit
1438
1438
1439 if opts.has_key('r'):
1439 if opts.has_key('r'):
1440 return stats
1440 return stats
1441 else:
1441 else:
1442 return None
1442 return None
1443
1443
1444 @skip_doctest
1444 @skip_doctest
1445 def magic_run(self, parameter_s ='',runner=None,
1445 def magic_run(self, parameter_s ='',runner=None,
1446 file_finder=get_py_filename):
1446 file_finder=get_py_filename):
1447 """Run the named file inside IPython as a program.
1447 """Run the named file inside IPython as a program.
1448
1448
1449 Usage:\\
1449 Usage:\\
1450 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1450 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1451
1451
1452 Parameters after the filename are passed as command-line arguments to
1452 Parameters after the filename are passed as command-line arguments to
1453 the program (put in sys.argv). Then, control returns to IPython's
1453 the program (put in sys.argv). Then, control returns to IPython's
1454 prompt.
1454 prompt.
1455
1455
1456 This is similar to running at a system prompt:\\
1456 This is similar to running at a system prompt:\\
1457 $ python file args\\
1457 $ python file args\\
1458 but with the advantage of giving you IPython's tracebacks, and of
1458 but with the advantage of giving you IPython's tracebacks, and of
1459 loading all variables into your interactive namespace for further use
1459 loading all variables into your interactive namespace for further use
1460 (unless -p is used, see below).
1460 (unless -p is used, see below).
1461
1461
1462 The file is executed in a namespace initially consisting only of
1462 The file is executed in a namespace initially consisting only of
1463 __name__=='__main__' and sys.argv constructed as indicated. It thus
1463 __name__=='__main__' and sys.argv constructed as indicated. It thus
1464 sees its environment as if it were being run as a stand-alone program
1464 sees its environment as if it were being run as a stand-alone program
1465 (except for sharing global objects such as previously imported
1465 (except for sharing global objects such as previously imported
1466 modules). But after execution, the IPython interactive namespace gets
1466 modules). But after execution, the IPython interactive namespace gets
1467 updated with all variables defined in the program (except for __name__
1467 updated with all variables defined in the program (except for __name__
1468 and sys.argv). This allows for very convenient loading of code for
1468 and sys.argv). This allows for very convenient loading of code for
1469 interactive work, while giving each program a 'clean sheet' to run in.
1469 interactive work, while giving each program a 'clean sheet' to run in.
1470
1470
1471 Options:
1471 Options:
1472
1472
1473 -n: __name__ is NOT set to '__main__', but to the running file's name
1473 -n: __name__ is NOT set to '__main__', but to the running file's name
1474 without extension (as python does under import). This allows running
1474 without extension (as python does under import). This allows running
1475 scripts and reloading the definitions in them without calling code
1475 scripts and reloading the definitions in them without calling code
1476 protected by an ' if __name__ == "__main__" ' clause.
1476 protected by an ' if __name__ == "__main__" ' clause.
1477
1477
1478 -i: run the file in IPython's namespace instead of an empty one. This
1478 -i: run the file in IPython's namespace instead of an empty one. This
1479 is useful if you are experimenting with code written in a text editor
1479 is useful if you are experimenting with code written in a text editor
1480 which depends on variables defined interactively.
1480 which depends on variables defined interactively.
1481
1481
1482 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1482 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1483 being run. This is particularly useful if IPython is being used to
1483 being run. This is particularly useful if IPython is being used to
1484 run unittests, which always exit with a sys.exit() call. In such
1484 run unittests, which always exit with a sys.exit() call. In such
1485 cases you are interested in the output of the test results, not in
1485 cases you are interested in the output of the test results, not in
1486 seeing a traceback of the unittest module.
1486 seeing a traceback of the unittest module.
1487
1487
1488 -t: print timing information at the end of the run. IPython will give
1488 -t: print timing information at the end of the run. IPython will give
1489 you an estimated CPU time consumption for your script, which under
1489 you an estimated CPU time consumption for your script, which under
1490 Unix uses the resource module to avoid the wraparound problems of
1490 Unix uses the resource module to avoid the wraparound problems of
1491 time.clock(). Under Unix, an estimate of time spent on system tasks
1491 time.clock(). Under Unix, an estimate of time spent on system tasks
1492 is also given (for Windows platforms this is reported as 0.0).
1492 is also given (for Windows platforms this is reported as 0.0).
1493
1493
1494 If -t is given, an additional -N<N> option can be given, where <N>
1494 If -t is given, an additional -N<N> option can be given, where <N>
1495 must be an integer indicating how many times you want the script to
1495 must be an integer indicating how many times you want the script to
1496 run. The final timing report will include total and per run results.
1496 run. The final timing report will include total and per run results.
1497
1497
1498 For example (testing the script uniq_stable.py):
1498 For example (testing the script uniq_stable.py):
1499
1499
1500 In [1]: run -t uniq_stable
1500 In [1]: run -t uniq_stable
1501
1501
1502 IPython CPU timings (estimated):\\
1502 IPython CPU timings (estimated):\\
1503 User : 0.19597 s.\\
1503 User : 0.19597 s.\\
1504 System: 0.0 s.\\
1504 System: 0.0 s.\\
1505
1505
1506 In [2]: run -t -N5 uniq_stable
1506 In [2]: run -t -N5 uniq_stable
1507
1507
1508 IPython CPU timings (estimated):\\
1508 IPython CPU timings (estimated):\\
1509 Total runs performed: 5\\
1509 Total runs performed: 5\\
1510 Times : Total Per run\\
1510 Times : Total Per run\\
1511 User : 0.910862 s, 0.1821724 s.\\
1511 User : 0.910862 s, 0.1821724 s.\\
1512 System: 0.0 s, 0.0 s.
1512 System: 0.0 s, 0.0 s.
1513
1513
1514 -d: run your program under the control of pdb, the Python debugger.
1514 -d: run your program under the control of pdb, the Python debugger.
1515 This allows you to execute your program step by step, watch variables,
1515 This allows you to execute your program step by step, watch variables,
1516 etc. Internally, what IPython does is similar to calling:
1516 etc. Internally, what IPython does is similar to calling:
1517
1517
1518 pdb.run('execfile("YOURFILENAME")')
1518 pdb.run('execfile("YOURFILENAME")')
1519
1519
1520 with a breakpoint set on line 1 of your file. You can change the line
1520 with a breakpoint set on line 1 of your file. You can change the line
1521 number for this automatic breakpoint to be <N> by using the -bN option
1521 number for this automatic breakpoint to be <N> by using the -bN option
1522 (where N must be an integer). For example:
1522 (where N must be an integer). For example:
1523
1523
1524 %run -d -b40 myscript
1524 %run -d -b40 myscript
1525
1525
1526 will set the first breakpoint at line 40 in myscript.py. Note that
1526 will set the first breakpoint at line 40 in myscript.py. Note that
1527 the first breakpoint must be set on a line which actually does
1527 the first breakpoint must be set on a line which actually does
1528 something (not a comment or docstring) for it to stop execution.
1528 something (not a comment or docstring) for it to stop execution.
1529
1529
1530 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1530 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1531 first enter 'c' (without qoutes) to start execution up to the first
1531 first enter 'c' (without qoutes) to start execution up to the first
1532 breakpoint.
1532 breakpoint.
1533
1533
1534 Entering 'help' gives information about the use of the debugger. You
1534 Entering 'help' gives information about the use of the debugger. You
1535 can easily see pdb's full documentation with "import pdb;pdb.help()"
1535 can easily see pdb's full documentation with "import pdb;pdb.help()"
1536 at a prompt.
1536 at a prompt.
1537
1537
1538 -p: run program under the control of the Python profiler module (which
1538 -p: run program under the control of the Python profiler module (which
1539 prints a detailed report of execution times, function calls, etc).
1539 prints a detailed report of execution times, function calls, etc).
1540
1540
1541 You can pass other options after -p which affect the behavior of the
1541 You can pass other options after -p which affect the behavior of the
1542 profiler itself. See the docs for %prun for details.
1542 profiler itself. See the docs for %prun for details.
1543
1543
1544 In this mode, the program's variables do NOT propagate back to the
1544 In this mode, the program's variables do NOT propagate back to the
1545 IPython interactive namespace (because they remain in the namespace
1545 IPython interactive namespace (because they remain in the namespace
1546 where the profiler executes them).
1546 where the profiler executes them).
1547
1547
1548 Internally this triggers a call to %prun, see its documentation for
1548 Internally this triggers a call to %prun, see its documentation for
1549 details on the options available specifically for profiling.
1549 details on the options available specifically for profiling.
1550
1550
1551 There is one special usage for which the text above doesn't apply:
1551 There is one special usage for which the text above doesn't apply:
1552 if the filename ends with .ipy, the file is run as ipython script,
1552 if the filename ends with .ipy, the file is run as ipython script,
1553 just as if the commands were written on IPython prompt.
1553 just as if the commands were written on IPython prompt.
1554 """
1554 """
1555
1555
1556 # get arguments and set sys.argv for program to be run.
1556 # get arguments and set sys.argv for program to be run.
1557 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1557 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1558 mode='list',list_all=1)
1558 mode='list',list_all=1)
1559
1559
1560 try:
1560 try:
1561 filename = file_finder(arg_lst[0])
1561 filename = file_finder(arg_lst[0])
1562 except IndexError:
1562 except IndexError:
1563 warn('you must provide at least a filename.')
1563 warn('you must provide at least a filename.')
1564 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1564 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1565 return
1565 return
1566 except IOError,msg:
1566 except IOError,msg:
1567 error(msg)
1567 error(msg)
1568 return
1568 return
1569
1569
1570 if filename.lower().endswith('.ipy'):
1570 if filename.lower().endswith('.ipy'):
1571 self.shell.safe_execfile_ipy(filename)
1571 self.shell.safe_execfile_ipy(filename)
1572 return
1572 return
1573
1573
1574 # Control the response to exit() calls made by the script being run
1574 # Control the response to exit() calls made by the script being run
1575 exit_ignore = opts.has_key('e')
1575 exit_ignore = opts.has_key('e')
1576
1576
1577 # Make sure that the running script gets a proper sys.argv as if it
1577 # Make sure that the running script gets a proper sys.argv as if it
1578 # were run from a system shell.
1578 # were run from a system shell.
1579 save_argv = sys.argv # save it for later restoring
1579 save_argv = sys.argv # save it for later restoring
1580
1580
1581 # simulate shell expansion on arguments, at least tilde expansion
1581 # simulate shell expansion on arguments, at least tilde expansion
1582 args = [ os.path.expanduser(a) for a in arg_lst[1:] ]
1582 args = [ os.path.expanduser(a) for a in arg_lst[1:] ]
1583
1583
1584 sys.argv = [filename]+ args # put in the proper filename
1584 sys.argv = [filename]+ args # put in the proper filename
1585
1585
1586 if opts.has_key('i'):
1586 if opts.has_key('i'):
1587 # Run in user's interactive namespace
1587 # Run in user's interactive namespace
1588 prog_ns = self.shell.user_ns
1588 prog_ns = self.shell.user_ns
1589 __name__save = self.shell.user_ns['__name__']
1589 __name__save = self.shell.user_ns['__name__']
1590 prog_ns['__name__'] = '__main__'
1590 prog_ns['__name__'] = '__main__'
1591 main_mod = self.shell.new_main_mod(prog_ns)
1591 main_mod = self.shell.new_main_mod(prog_ns)
1592 else:
1592 else:
1593 # Run in a fresh, empty namespace
1593 # Run in a fresh, empty namespace
1594 if opts.has_key('n'):
1594 if opts.has_key('n'):
1595 name = os.path.splitext(os.path.basename(filename))[0]
1595 name = os.path.splitext(os.path.basename(filename))[0]
1596 else:
1596 else:
1597 name = '__main__'
1597 name = '__main__'
1598
1598
1599 main_mod = self.shell.new_main_mod()
1599 main_mod = self.shell.new_main_mod()
1600 prog_ns = main_mod.__dict__
1600 prog_ns = main_mod.__dict__
1601 prog_ns['__name__'] = name
1601 prog_ns['__name__'] = name
1602
1602
1603 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1603 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1604 # set the __file__ global in the script's namespace
1604 # set the __file__ global in the script's namespace
1605 prog_ns['__file__'] = filename
1605 prog_ns['__file__'] = filename
1606
1606
1607 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1607 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1608 # that, if we overwrite __main__, we replace it at the end
1608 # that, if we overwrite __main__, we replace it at the end
1609 main_mod_name = prog_ns['__name__']
1609 main_mod_name = prog_ns['__name__']
1610
1610
1611 if main_mod_name == '__main__':
1611 if main_mod_name == '__main__':
1612 restore_main = sys.modules['__main__']
1612 restore_main = sys.modules['__main__']
1613 else:
1613 else:
1614 restore_main = False
1614 restore_main = False
1615
1615
1616 # This needs to be undone at the end to prevent holding references to
1616 # This needs to be undone at the end to prevent holding references to
1617 # every single object ever created.
1617 # every single object ever created.
1618 sys.modules[main_mod_name] = main_mod
1618 sys.modules[main_mod_name] = main_mod
1619
1619
1620 try:
1620 try:
1621 stats = None
1621 stats = None
1622 with self.readline_no_record:
1622 with self.readline_no_record:
1623 if opts.has_key('p'):
1623 if opts.has_key('p'):
1624 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1624 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1625 else:
1625 else:
1626 if opts.has_key('d'):
1626 if opts.has_key('d'):
1627 deb = debugger.Pdb(self.shell.colors)
1627 deb = debugger.Pdb(self.shell.colors)
1628 # reset Breakpoint state, which is moronically kept
1628 # reset Breakpoint state, which is moronically kept
1629 # in a class
1629 # in a class
1630 bdb.Breakpoint.next = 1
1630 bdb.Breakpoint.next = 1
1631 bdb.Breakpoint.bplist = {}
1631 bdb.Breakpoint.bplist = {}
1632 bdb.Breakpoint.bpbynumber = [None]
1632 bdb.Breakpoint.bpbynumber = [None]
1633 # Set an initial breakpoint to stop execution
1633 # Set an initial breakpoint to stop execution
1634 maxtries = 10
1634 maxtries = 10
1635 bp = int(opts.get('b',[1])[0])
1635 bp = int(opts.get('b',[1])[0])
1636 checkline = deb.checkline(filename,bp)
1636 checkline = deb.checkline(filename,bp)
1637 if not checkline:
1637 if not checkline:
1638 for bp in range(bp+1,bp+maxtries+1):
1638 for bp in range(bp+1,bp+maxtries+1):
1639 if deb.checkline(filename,bp):
1639 if deb.checkline(filename,bp):
1640 break
1640 break
1641 else:
1641 else:
1642 msg = ("\nI failed to find a valid line to set "
1642 msg = ("\nI failed to find a valid line to set "
1643 "a breakpoint\n"
1643 "a breakpoint\n"
1644 "after trying up to line: %s.\n"
1644 "after trying up to line: %s.\n"
1645 "Please set a valid breakpoint manually "
1645 "Please set a valid breakpoint manually "
1646 "with the -b option." % bp)
1646 "with the -b option." % bp)
1647 error(msg)
1647 error(msg)
1648 return
1648 return
1649 # if we find a good linenumber, set the breakpoint
1649 # if we find a good linenumber, set the breakpoint
1650 deb.do_break('%s:%s' % (filename,bp))
1650 deb.do_break('%s:%s' % (filename,bp))
1651 # Start file run
1651 # Start file run
1652 print "NOTE: Enter 'c' at the",
1652 print "NOTE: Enter 'c' at the",
1653 print "%s prompt to start your script." % deb.prompt
1653 print "%s prompt to start your script." % deb.prompt
1654 try:
1654 try:
1655 deb.run('execfile("%s")' % filename,prog_ns)
1655 deb.run('execfile("%s")' % filename,prog_ns)
1656
1656
1657 except:
1657 except:
1658 etype, value, tb = sys.exc_info()
1658 etype, value, tb = sys.exc_info()
1659 # Skip three frames in the traceback: the %run one,
1659 # Skip three frames in the traceback: the %run one,
1660 # one inside bdb.py, and the command-line typed by the
1660 # one inside bdb.py, and the command-line typed by the
1661 # user (run by exec in pdb itself).
1661 # user (run by exec in pdb itself).
1662 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1662 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1663 else:
1663 else:
1664 if runner is None:
1664 if runner is None:
1665 runner = self.shell.safe_execfile
1665 runner = self.shell.safe_execfile
1666 if opts.has_key('t'):
1666 if opts.has_key('t'):
1667 # timed execution
1667 # timed execution
1668 try:
1668 try:
1669 nruns = int(opts['N'][0])
1669 nruns = int(opts['N'][0])
1670 if nruns < 1:
1670 if nruns < 1:
1671 error('Number of runs must be >=1')
1671 error('Number of runs must be >=1')
1672 return
1672 return
1673 except (KeyError):
1673 except (KeyError):
1674 nruns = 1
1674 nruns = 1
1675 twall0 = time.time()
1675 twall0 = time.time()
1676 if nruns == 1:
1676 if nruns == 1:
1677 t0 = clock2()
1677 t0 = clock2()
1678 runner(filename,prog_ns,prog_ns,
1678 runner(filename,prog_ns,prog_ns,
1679 exit_ignore=exit_ignore)
1679 exit_ignore=exit_ignore)
1680 t1 = clock2()
1680 t1 = clock2()
1681 t_usr = t1[0]-t0[0]
1681 t_usr = t1[0]-t0[0]
1682 t_sys = t1[1]-t0[1]
1682 t_sys = t1[1]-t0[1]
1683 print "\nIPython CPU timings (estimated):"
1683 print "\nIPython CPU timings (estimated):"
1684 print " User : %10.2f s." % t_usr
1684 print " User : %10.2f s." % t_usr
1685 print " System : %10.2f s." % t_sys
1685 print " System : %10.2f s." % t_sys
1686 else:
1686 else:
1687 runs = range(nruns)
1687 runs = range(nruns)
1688 t0 = clock2()
1688 t0 = clock2()
1689 for nr in runs:
1689 for nr in runs:
1690 runner(filename,prog_ns,prog_ns,
1690 runner(filename,prog_ns,prog_ns,
1691 exit_ignore=exit_ignore)
1691 exit_ignore=exit_ignore)
1692 t1 = clock2()
1692 t1 = clock2()
1693 t_usr = t1[0]-t0[0]
1693 t_usr = t1[0]-t0[0]
1694 t_sys = t1[1]-t0[1]
1694 t_sys = t1[1]-t0[1]
1695 print "\nIPython CPU timings (estimated):"
1695 print "\nIPython CPU timings (estimated):"
1696 print "Total runs performed:",nruns
1696 print "Total runs performed:",nruns
1697 print " Times : %10.2f %10.2f" % ('Total','Per run')
1697 print " Times : %10.2f %10.2f" % ('Total','Per run')
1698 print " User : %10.2f s, %10.2f s." % (t_usr,t_usr/nruns)
1698 print " User : %10.2f s, %10.2f s." % (t_usr,t_usr/nruns)
1699 print " System : %10.2f s, %10.2f s." % (t_sys,t_sys/nruns)
1699 print " System : %10.2f s, %10.2f s." % (t_sys,t_sys/nruns)
1700 twall1 = time.time()
1700 twall1 = time.time()
1701 print "Wall time: %10.2f s." % (twall1-twall0)
1701 print "Wall time: %10.2f s." % (twall1-twall0)
1702
1702
1703 else:
1703 else:
1704 # regular execution
1704 # regular execution
1705 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1705 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1706
1706
1707 if opts.has_key('i'):
1707 if opts.has_key('i'):
1708 self.shell.user_ns['__name__'] = __name__save
1708 self.shell.user_ns['__name__'] = __name__save
1709 else:
1709 else:
1710 # The shell MUST hold a reference to prog_ns so after %run
1710 # The shell MUST hold a reference to prog_ns so after %run
1711 # exits, the python deletion mechanism doesn't zero it out
1711 # exits, the python deletion mechanism doesn't zero it out
1712 # (leaving dangling references).
1712 # (leaving dangling references).
1713 self.shell.cache_main_mod(prog_ns,filename)
1713 self.shell.cache_main_mod(prog_ns,filename)
1714 # update IPython interactive namespace
1714 # update IPython interactive namespace
1715
1715
1716 # Some forms of read errors on the file may mean the
1716 # Some forms of read errors on the file may mean the
1717 # __name__ key was never set; using pop we don't have to
1717 # __name__ key was never set; using pop we don't have to
1718 # worry about a possible KeyError.
1718 # worry about a possible KeyError.
1719 prog_ns.pop('__name__', None)
1719 prog_ns.pop('__name__', None)
1720
1720
1721 self.shell.user_ns.update(prog_ns)
1721 self.shell.user_ns.update(prog_ns)
1722 finally:
1722 finally:
1723 # It's a bit of a mystery why, but __builtins__ can change from
1723 # It's a bit of a mystery why, but __builtins__ can change from
1724 # being a module to becoming a dict missing some key data after
1724 # being a module to becoming a dict missing some key data after
1725 # %run. As best I can see, this is NOT something IPython is doing
1725 # %run. As best I can see, this is NOT something IPython is doing
1726 # at all, and similar problems have been reported before:
1726 # at all, and similar problems have been reported before:
1727 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1727 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1728 # Since this seems to be done by the interpreter itself, the best
1728 # Since this seems to be done by the interpreter itself, the best
1729 # we can do is to at least restore __builtins__ for the user on
1729 # we can do is to at least restore __builtins__ for the user on
1730 # exit.
1730 # exit.
1731 self.shell.user_ns['__builtins__'] = __builtin__
1731 self.shell.user_ns['__builtins__'] = __builtin__
1732
1732
1733 # Ensure key global structures are restored
1733 # Ensure key global structures are restored
1734 sys.argv = save_argv
1734 sys.argv = save_argv
1735 if restore_main:
1735 if restore_main:
1736 sys.modules['__main__'] = restore_main
1736 sys.modules['__main__'] = restore_main
1737 else:
1737 else:
1738 # Remove from sys.modules the reference to main_mod we'd
1738 # Remove from sys.modules the reference to main_mod we'd
1739 # added. Otherwise it will trap references to objects
1739 # added. Otherwise it will trap references to objects
1740 # contained therein.
1740 # contained therein.
1741 del sys.modules[main_mod_name]
1741 del sys.modules[main_mod_name]
1742
1742
1743 return stats
1743 return stats
1744
1744
1745 @skip_doctest
1745 @skip_doctest
1746 def magic_timeit(self, parameter_s =''):
1746 def magic_timeit(self, parameter_s =''):
1747 """Time execution of a Python statement or expression
1747 """Time execution of a Python statement or expression
1748
1748
1749 Usage:\\
1749 Usage:\\
1750 %timeit [-n<N> -r<R> [-t|-c]] statement
1750 %timeit [-n<N> -r<R> [-t|-c]] statement
1751
1751
1752 Time execution of a Python statement or expression using the timeit
1752 Time execution of a Python statement or expression using the timeit
1753 module.
1753 module.
1754
1754
1755 Options:
1755 Options:
1756 -n<N>: execute the given statement <N> times in a loop. If this value
1756 -n<N>: execute the given statement <N> times in a loop. If this value
1757 is not given, a fitting value is chosen.
1757 is not given, a fitting value is chosen.
1758
1758
1759 -r<R>: repeat the loop iteration <R> times and take the best result.
1759 -r<R>: repeat the loop iteration <R> times and take the best result.
1760 Default: 3
1760 Default: 3
1761
1761
1762 -t: use time.time to measure the time, which is the default on Unix.
1762 -t: use time.time to measure the time, which is the default on Unix.
1763 This function measures wall time.
1763 This function measures wall time.
1764
1764
1765 -c: use time.clock to measure the time, which is the default on
1765 -c: use time.clock to measure the time, which is the default on
1766 Windows and measures wall time. On Unix, resource.getrusage is used
1766 Windows and measures wall time. On Unix, resource.getrusage is used
1767 instead and returns the CPU user time.
1767 instead and returns the CPU user time.
1768
1768
1769 -p<P>: use a precision of <P> digits to display the timing result.
1769 -p<P>: use a precision of <P> digits to display the timing result.
1770 Default: 3
1770 Default: 3
1771
1771
1772
1772
1773 Examples:
1773 Examples:
1774
1774
1775 In [1]: %timeit pass
1775 In [1]: %timeit pass
1776 10000000 loops, best of 3: 53.3 ns per loop
1776 10000000 loops, best of 3: 53.3 ns per loop
1777
1777
1778 In [2]: u = None
1778 In [2]: u = None
1779
1779
1780 In [3]: %timeit u is None
1780 In [3]: %timeit u is None
1781 10000000 loops, best of 3: 184 ns per loop
1781 10000000 loops, best of 3: 184 ns per loop
1782
1782
1783 In [4]: %timeit -r 4 u == None
1783 In [4]: %timeit -r 4 u == None
1784 1000000 loops, best of 4: 242 ns per loop
1784 1000000 loops, best of 4: 242 ns per loop
1785
1785
1786 In [5]: import time
1786 In [5]: import time
1787
1787
1788 In [6]: %timeit -n1 time.sleep(2)
1788 In [6]: %timeit -n1 time.sleep(2)
1789 1 loops, best of 3: 2 s per loop
1789 1 loops, best of 3: 2 s per loop
1790
1790
1791
1791
1792 The times reported by %timeit will be slightly higher than those
1792 The times reported by %timeit will be slightly higher than those
1793 reported by the timeit.py script when variables are accessed. This is
1793 reported by the timeit.py script when variables are accessed. This is
1794 due to the fact that %timeit executes the statement in the namespace
1794 due to the fact that %timeit executes the statement in the namespace
1795 of the shell, compared with timeit.py, which uses a single setup
1795 of the shell, compared with timeit.py, which uses a single setup
1796 statement to import function or create variables. Generally, the bias
1796 statement to import function or create variables. Generally, the bias
1797 does not matter as long as results from timeit.py are not mixed with
1797 does not matter as long as results from timeit.py are not mixed with
1798 those from %timeit."""
1798 those from %timeit."""
1799
1799
1800 import timeit
1800 import timeit
1801 import math
1801 import math
1802
1802
1803 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1803 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1804 # certain terminals. Until we figure out a robust way of
1804 # certain terminals. Until we figure out a robust way of
1805 # auto-detecting if the terminal can deal with it, use plain 'us' for
1805 # auto-detecting if the terminal can deal with it, use plain 'us' for
1806 # microseconds. I am really NOT happy about disabling the proper
1806 # microseconds. I am really NOT happy about disabling the proper
1807 # 'micro' prefix, but crashing is worse... If anyone knows what the
1807 # 'micro' prefix, but crashing is worse... If anyone knows what the
1808 # right solution for this is, I'm all ears...
1808 # right solution for this is, I'm all ears...
1809 #
1809 #
1810 # Note: using
1810 # Note: using
1811 #
1811 #
1812 # s = u'\xb5'
1812 # s = u'\xb5'
1813 # s.encode(sys.getdefaultencoding())
1813 # s.encode(sys.getdefaultencoding())
1814 #
1814 #
1815 # is not sufficient, as I've seen terminals where that fails but
1815 # is not sufficient, as I've seen terminals where that fails but
1816 # print s
1816 # print s
1817 #
1817 #
1818 # succeeds
1818 # succeeds
1819 #
1819 #
1820 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1820 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1821
1821
1822 #units = [u"s", u"ms",u'\xb5',"ns"]
1822 #units = [u"s", u"ms",u'\xb5',"ns"]
1823 units = [u"s", u"ms",u'us',"ns"]
1823 units = [u"s", u"ms",u'us',"ns"]
1824
1824
1825 scaling = [1, 1e3, 1e6, 1e9]
1825 scaling = [1, 1e3, 1e6, 1e9]
1826
1826
1827 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1827 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1828 posix=False)
1828 posix=False)
1829 if stmt == "":
1829 if stmt == "":
1830 return
1830 return
1831 timefunc = timeit.default_timer
1831 timefunc = timeit.default_timer
1832 number = int(getattr(opts, "n", 0))
1832 number = int(getattr(opts, "n", 0))
1833 repeat = int(getattr(opts, "r", timeit.default_repeat))
1833 repeat = int(getattr(opts, "r", timeit.default_repeat))
1834 precision = int(getattr(opts, "p", 3))
1834 precision = int(getattr(opts, "p", 3))
1835 if hasattr(opts, "t"):
1835 if hasattr(opts, "t"):
1836 timefunc = time.time
1836 timefunc = time.time
1837 if hasattr(opts, "c"):
1837 if hasattr(opts, "c"):
1838 timefunc = clock
1838 timefunc = clock
1839
1839
1840 timer = timeit.Timer(timer=timefunc)
1840 timer = timeit.Timer(timer=timefunc)
1841 # this code has tight coupling to the inner workings of timeit.Timer,
1841 # this code has tight coupling to the inner workings of timeit.Timer,
1842 # but is there a better way to achieve that the code stmt has access
1842 # but is there a better way to achieve that the code stmt has access
1843 # to the shell namespace?
1843 # to the shell namespace?
1844
1844
1845 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1845 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1846 'setup': "pass"}
1846 'setup': "pass"}
1847 # Track compilation time so it can be reported if too long
1847 # Track compilation time so it can be reported if too long
1848 # Minimum time above which compilation time will be reported
1848 # Minimum time above which compilation time will be reported
1849 tc_min = 0.1
1849 tc_min = 0.1
1850
1850
1851 t0 = clock()
1851 t0 = clock()
1852 code = compile(src, "<magic-timeit>", "exec")
1852 code = compile(src, "<magic-timeit>", "exec")
1853 tc = clock()-t0
1853 tc = clock()-t0
1854
1854
1855 ns = {}
1855 ns = {}
1856 exec code in self.shell.user_ns, ns
1856 exec code in self.shell.user_ns, ns
1857 timer.inner = ns["inner"]
1857 timer.inner = ns["inner"]
1858
1858
1859 if number == 0:
1859 if number == 0:
1860 # determine number so that 0.2 <= total time < 2.0
1860 # determine number so that 0.2 <= total time < 2.0
1861 number = 1
1861 number = 1
1862 for i in range(1, 10):
1862 for i in range(1, 10):
1863 if timer.timeit(number) >= 0.2:
1863 if timer.timeit(number) >= 0.2:
1864 break
1864 break
1865 number *= 10
1865 number *= 10
1866
1866
1867 best = min(timer.repeat(repeat, number)) / number
1867 best = min(timer.repeat(repeat, number)) / number
1868
1868
1869 if best > 0.0 and best < 1000.0:
1869 if best > 0.0 and best < 1000.0:
1870 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1870 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1871 elif best >= 1000.0:
1871 elif best >= 1000.0:
1872 order = 0
1872 order = 0
1873 else:
1873 else:
1874 order = 3
1874 order = 3
1875 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1875 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1876 precision,
1876 precision,
1877 best * scaling[order],
1877 best * scaling[order],
1878 units[order])
1878 units[order])
1879 if tc > tc_min:
1879 if tc > tc_min:
1880 print "Compiler time: %.2f s" % tc
1880 print "Compiler time: %.2f s" % tc
1881
1881
1882 @skip_doctest
1882 @skip_doctest
1883 @needs_local_scope
1883 @needs_local_scope
1884 def magic_time(self,parameter_s = ''):
1884 def magic_time(self,parameter_s = ''):
1885 """Time execution of a Python statement or expression.
1885 """Time execution of a Python statement or expression.
1886
1886
1887 The CPU and wall clock times are printed, and the value of the
1887 The CPU and wall clock times are printed, and the value of the
1888 expression (if any) is returned. Note that under Win32, system time
1888 expression (if any) is returned. Note that under Win32, system time
1889 is always reported as 0, since it can not be measured.
1889 is always reported as 0, since it can not be measured.
1890
1890
1891 This function provides very basic timing functionality. In Python
1891 This function provides very basic timing functionality. In Python
1892 2.3, the timeit module offers more control and sophistication, so this
1892 2.3, the timeit module offers more control and sophistication, so this
1893 could be rewritten to use it (patches welcome).
1893 could be rewritten to use it (patches welcome).
1894
1894
1895 Some examples:
1895 Some examples:
1896
1896
1897 In [1]: time 2**128
1897 In [1]: time 2**128
1898 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1898 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1899 Wall time: 0.00
1899 Wall time: 0.00
1900 Out[1]: 340282366920938463463374607431768211456L
1900 Out[1]: 340282366920938463463374607431768211456L
1901
1901
1902 In [2]: n = 1000000
1902 In [2]: n = 1000000
1903
1903
1904 In [3]: time sum(range(n))
1904 In [3]: time sum(range(n))
1905 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1905 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1906 Wall time: 1.37
1906 Wall time: 1.37
1907 Out[3]: 499999500000L
1907 Out[3]: 499999500000L
1908
1908
1909 In [4]: time print 'hello world'
1909 In [4]: time print 'hello world'
1910 hello world
1910 hello world
1911 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1911 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1912 Wall time: 0.00
1912 Wall time: 0.00
1913
1913
1914 Note that the time needed by Python to compile the given expression
1914 Note that the time needed by Python to compile the given expression
1915 will be reported if it is more than 0.1s. In this example, the
1915 will be reported if it is more than 0.1s. In this example, the
1916 actual exponentiation is done by Python at compilation time, so while
1916 actual exponentiation is done by Python at compilation time, so while
1917 the expression can take a noticeable amount of time to compute, that
1917 the expression can take a noticeable amount of time to compute, that
1918 time is purely due to the compilation:
1918 time is purely due to the compilation:
1919
1919
1920 In [5]: time 3**9999;
1920 In [5]: time 3**9999;
1921 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1921 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1922 Wall time: 0.00 s
1922 Wall time: 0.00 s
1923
1923
1924 In [6]: time 3**999999;
1924 In [6]: time 3**999999;
1925 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1925 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1926 Wall time: 0.00 s
1926 Wall time: 0.00 s
1927 Compiler : 0.78 s
1927 Compiler : 0.78 s
1928 """
1928 """
1929
1929
1930 # fail immediately if the given expression can't be compiled
1930 # fail immediately if the given expression can't be compiled
1931
1931
1932 expr = self.shell.prefilter(parameter_s,False)
1932 expr = self.shell.prefilter(parameter_s,False)
1933
1933
1934 # Minimum time above which compilation time will be reported
1934 # Minimum time above which compilation time will be reported
1935 tc_min = 0.1
1935 tc_min = 0.1
1936
1936
1937 try:
1937 try:
1938 mode = 'eval'
1938 mode = 'eval'
1939 t0 = clock()
1939 t0 = clock()
1940 code = compile(expr,'<timed eval>',mode)
1940 code = compile(expr,'<timed eval>',mode)
1941 tc = clock()-t0
1941 tc = clock()-t0
1942 except SyntaxError:
1942 except SyntaxError:
1943 mode = 'exec'
1943 mode = 'exec'
1944 t0 = clock()
1944 t0 = clock()
1945 code = compile(expr,'<timed exec>',mode)
1945 code = compile(expr,'<timed exec>',mode)
1946 tc = clock()-t0
1946 tc = clock()-t0
1947 # skew measurement as little as possible
1947 # skew measurement as little as possible
1948 glob = self.shell.user_ns
1948 glob = self.shell.user_ns
1949 locs = self._magic_locals
1949 locs = self._magic_locals
1950 clk = clock2
1950 clk = clock2
1951 wtime = time.time
1951 wtime = time.time
1952 # time execution
1952 # time execution
1953 wall_st = wtime()
1953 wall_st = wtime()
1954 if mode=='eval':
1954 if mode=='eval':
1955 st = clk()
1955 st = clk()
1956 out = eval(code, glob, locs)
1956 out = eval(code, glob, locs)
1957 end = clk()
1957 end = clk()
1958 else:
1958 else:
1959 st = clk()
1959 st = clk()
1960 exec code in glob, locs
1960 exec code in glob, locs
1961 end = clk()
1961 end = clk()
1962 out = None
1962 out = None
1963 wall_end = wtime()
1963 wall_end = wtime()
1964 # Compute actual times and report
1964 # Compute actual times and report
1965 wall_time = wall_end-wall_st
1965 wall_time = wall_end-wall_st
1966 cpu_user = end[0]-st[0]
1966 cpu_user = end[0]-st[0]
1967 cpu_sys = end[1]-st[1]
1967 cpu_sys = end[1]-st[1]
1968 cpu_tot = cpu_user+cpu_sys
1968 cpu_tot = cpu_user+cpu_sys
1969 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1969 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1970 (cpu_user,cpu_sys,cpu_tot)
1970 (cpu_user,cpu_sys,cpu_tot)
1971 print "Wall time: %.2f s" % wall_time
1971 print "Wall time: %.2f s" % wall_time
1972 if tc > tc_min:
1972 if tc > tc_min:
1973 print "Compiler : %.2f s" % tc
1973 print "Compiler : %.2f s" % tc
1974 return out
1974 return out
1975
1975
1976 @skip_doctest
1976 @skip_doctest
1977 def magic_macro(self,parameter_s = ''):
1977 def magic_macro(self,parameter_s = ''):
1978 """Define a macro for future re-execution. It accepts ranges of history,
1978 """Define a macro for future re-execution. It accepts ranges of history,
1979 filenames or string objects.
1979 filenames or string objects.
1980
1980
1981 Usage:\\
1981 Usage:\\
1982 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1982 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1983
1983
1984 Options:
1984 Options:
1985
1985
1986 -r: use 'raw' input. By default, the 'processed' history is used,
1986 -r: use 'raw' input. By default, the 'processed' history is used,
1987 so that magics are loaded in their transformed version to valid
1987 so that magics are loaded in their transformed version to valid
1988 Python. If this option is given, the raw input as typed as the
1988 Python. If this option is given, the raw input as typed as the
1989 command line is used instead.
1989 command line is used instead.
1990
1990
1991 This will define a global variable called `name` which is a string
1991 This will define a global variable called `name` which is a string
1992 made of joining the slices and lines you specify (n1,n2,... numbers
1992 made of joining the slices and lines you specify (n1,n2,... numbers
1993 above) from your input history into a single string. This variable
1993 above) from your input history into a single string. This variable
1994 acts like an automatic function which re-executes those lines as if
1994 acts like an automatic function which re-executes those lines as if
1995 you had typed them. You just type 'name' at the prompt and the code
1995 you had typed them. You just type 'name' at the prompt and the code
1996 executes.
1996 executes.
1997
1997
1998 The syntax for indicating input ranges is described in %history.
1998 The syntax for indicating input ranges is described in %history.
1999
1999
2000 Note: as a 'hidden' feature, you can also use traditional python slice
2000 Note: as a 'hidden' feature, you can also use traditional python slice
2001 notation, where N:M means numbers N through M-1.
2001 notation, where N:M means numbers N through M-1.
2002
2002
2003 For example, if your history contains (%hist prints it):
2003 For example, if your history contains (%hist prints it):
2004
2004
2005 44: x=1
2005 44: x=1
2006 45: y=3
2006 45: y=3
2007 46: z=x+y
2007 46: z=x+y
2008 47: print x
2008 47: print x
2009 48: a=5
2009 48: a=5
2010 49: print 'x',x,'y',y
2010 49: print 'x',x,'y',y
2011
2011
2012 you can create a macro with lines 44 through 47 (included) and line 49
2012 you can create a macro with lines 44 through 47 (included) and line 49
2013 called my_macro with:
2013 called my_macro with:
2014
2014
2015 In [55]: %macro my_macro 44-47 49
2015 In [55]: %macro my_macro 44-47 49
2016
2016
2017 Now, typing `my_macro` (without quotes) will re-execute all this code
2017 Now, typing `my_macro` (without quotes) will re-execute all this code
2018 in one pass.
2018 in one pass.
2019
2019
2020 You don't need to give the line-numbers in order, and any given line
2020 You don't need to give the line-numbers in order, and any given line
2021 number can appear multiple times. You can assemble macros with any
2021 number can appear multiple times. You can assemble macros with any
2022 lines from your input history in any order.
2022 lines from your input history in any order.
2023
2023
2024 The macro is a simple object which holds its value in an attribute,
2024 The macro is a simple object which holds its value in an attribute,
2025 but IPython's display system checks for macros and executes them as
2025 but IPython's display system checks for macros and executes them as
2026 code instead of printing them when you type their name.
2026 code instead of printing them when you type their name.
2027
2027
2028 You can view a macro's contents by explicitly printing it with:
2028 You can view a macro's contents by explicitly printing it with:
2029
2029
2030 'print macro_name'.
2030 'print macro_name'.
2031
2031
2032 """
2032 """
2033 opts,args = self.parse_options(parameter_s,'r',mode='list')
2033 opts,args = self.parse_options(parameter_s,'r',mode='list')
2034 if not args: # List existing macros
2034 if not args: # List existing macros
2035 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2035 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2036 isinstance(v, Macro))
2036 isinstance(v, Macro))
2037 if len(args) == 1:
2037 if len(args) == 1:
2038 raise UsageError(
2038 raise UsageError(
2039 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2039 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2040 name, codefrom = args[0], " ".join(args[1:])
2040 name, codefrom = args[0], " ".join(args[1:])
2041
2041
2042 #print 'rng',ranges # dbg
2042 #print 'rng',ranges # dbg
2043 try:
2043 try:
2044 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2044 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2045 except (ValueError, TypeError) as e:
2045 except (ValueError, TypeError) as e:
2046 print e.args[0]
2046 print e.args[0]
2047 return
2047 return
2048 macro = Macro(lines)
2048 macro = Macro(lines)
2049 self.shell.define_macro(name, macro)
2049 self.shell.define_macro(name, macro)
2050 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2050 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2051 print '=== Macro contents: ==='
2051 print '=== Macro contents: ==='
2052 print macro,
2052 print macro,
2053
2053
2054 def magic_save(self,parameter_s = ''):
2054 def magic_save(self,parameter_s = ''):
2055 """Save a set of lines or a macro to a given filename.
2055 """Save a set of lines or a macro to a given filename.
2056
2056
2057 Usage:\\
2057 Usage:\\
2058 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2058 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2059
2059
2060 Options:
2060 Options:
2061
2061
2062 -r: use 'raw' input. By default, the 'processed' history is used,
2062 -r: use 'raw' input. By default, the 'processed' history is used,
2063 so that magics are loaded in their transformed version to valid
2063 so that magics are loaded in their transformed version to valid
2064 Python. If this option is given, the raw input as typed as the
2064 Python. If this option is given, the raw input as typed as the
2065 command line is used instead.
2065 command line is used instead.
2066
2066
2067 This function uses the same syntax as %history for input ranges,
2067 This function uses the same syntax as %history for input ranges,
2068 then saves the lines to the filename you specify.
2068 then saves the lines to the filename you specify.
2069
2069
2070 It adds a '.py' extension to the file if you don't do so yourself, and
2070 It adds a '.py' extension to the file if you don't do so yourself, and
2071 it asks for confirmation before overwriting existing files."""
2071 it asks for confirmation before overwriting existing files."""
2072
2072
2073 opts,args = self.parse_options(parameter_s,'r',mode='list')
2073 opts,args = self.parse_options(parameter_s,'r',mode='list')
2074 fname, codefrom = args[0], " ".join(args[1:])
2074 fname, codefrom = args[0], " ".join(args[1:])
2075 if not fname.endswith('.py'):
2075 if not fname.endswith('.py'):
2076 fname += '.py'
2076 fname += '.py'
2077 if os.path.isfile(fname):
2077 if os.path.isfile(fname):
2078 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2078 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2079 if ans.lower() not in ['y','yes']:
2079 if ans.lower() not in ['y','yes']:
2080 print 'Operation cancelled.'
2080 print 'Operation cancelled.'
2081 return
2081 return
2082 try:
2082 try:
2083 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2083 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2084 except (TypeError, ValueError) as e:
2084 except (TypeError, ValueError) as e:
2085 print e.args[0]
2085 print e.args[0]
2086 return
2086 return
2087 if isinstance(cmds, unicode):
2087 if isinstance(cmds, unicode):
2088 cmds = cmds.encode("utf-8")
2088 cmds = cmds.encode("utf-8")
2089 with open(fname,'w') as f:
2089 with open(fname,'w') as f:
2090 f.write("# coding: utf-8\n")
2090 f.write("# coding: utf-8\n")
2091 f.write(cmds)
2091 f.write(cmds)
2092 print 'The following commands were written to file `%s`:' % fname
2092 print 'The following commands were written to file `%s`:' % fname
2093 print cmds
2093 print cmds
2094
2094
2095 def magic_pastebin(self, parameter_s = ''):
2095 def magic_pastebin(self, parameter_s = ''):
2096 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2096 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2097 try:
2097 try:
2098 code = self.shell.find_user_code(parameter_s)
2098 code = self.shell.find_user_code(parameter_s)
2099 except (ValueError, TypeError) as e:
2099 except (ValueError, TypeError) as e:
2100 print e.args[0]
2100 print e.args[0]
2101 return
2101 return
2102 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2102 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2103 id = pbserver.pastes.newPaste("python", code)
2103 id = pbserver.pastes.newPaste("python", code)
2104 return "http://paste.pocoo.org/show/" + id
2104 return "http://paste.pocoo.org/show/" + id
2105
2105
2106 def magic_loadpy(self, arg_s):
2106 def magic_loadpy(self, arg_s):
2107 """Load a .py python script into the GUI console.
2107 """Load a .py python script into the GUI console.
2108
2108
2109 This magic command can either take a local filename or a url::
2109 This magic command can either take a local filename or a url::
2110
2110
2111 %loadpy myscript.py
2111 %loadpy myscript.py
2112 %loadpy http://www.example.com/myscript.py
2112 %loadpy http://www.example.com/myscript.py
2113 """
2113 """
2114 if not arg_s.endswith('.py'):
2114 if not arg_s.endswith('.py'):
2115 raise ValueError('%%load only works with .py files: %s' % arg_s)
2115 raise ValueError('%%load only works with .py files: %s' % arg_s)
2116 if arg_s.startswith('http'):
2116 if arg_s.startswith('http'):
2117 import urllib2
2117 import urllib2
2118 response = urllib2.urlopen(arg_s)
2118 response = urllib2.urlopen(arg_s)
2119 content = response.read()
2119 content = response.read()
2120 else:
2120 else:
2121 content = open(arg_s).read()
2121 content = open(arg_s).read()
2122 self.set_next_input(content)
2122 self.set_next_input(content)
2123
2123
2124 def _find_edit_target(self, args, opts, last_call):
2124 def _find_edit_target(self, args, opts, last_call):
2125 """Utility method used by magic_edit to find what to edit."""
2125 """Utility method used by magic_edit to find what to edit."""
2126
2126
2127 def make_filename(arg):
2127 def make_filename(arg):
2128 "Make a filename from the given args"
2128 "Make a filename from the given args"
2129 try:
2129 try:
2130 filename = get_py_filename(arg)
2130 filename = get_py_filename(arg)
2131 except IOError:
2131 except IOError:
2132 # If it ends with .py but doesn't already exist, assume we want
2132 # If it ends with .py but doesn't already exist, assume we want
2133 # a new file.
2133 # a new file.
2134 if args.endswith('.py'):
2134 if args.endswith('.py'):
2135 filename = arg
2135 filename = arg
2136 else:
2136 else:
2137 filename = None
2137 filename = None
2138 return filename
2138 return filename
2139
2139
2140 # Set a few locals from the options for convenience:
2140 # Set a few locals from the options for convenience:
2141 opts_prev = 'p' in opts
2141 opts_prev = 'p' in opts
2142 opts_raw = 'r' in opts
2142 opts_raw = 'r' in opts
2143
2143
2144 # custom exceptions
2144 # custom exceptions
2145 class DataIsObject(Exception): pass
2145 class DataIsObject(Exception): pass
2146
2146
2147 # Default line number value
2147 # Default line number value
2148 lineno = opts.get('n',None)
2148 lineno = opts.get('n',None)
2149
2149
2150 if opts_prev:
2150 if opts_prev:
2151 args = '_%s' % last_call[0]
2151 args = '_%s' % last_call[0]
2152 if not self.shell.user_ns.has_key(args):
2152 if not self.shell.user_ns.has_key(args):
2153 args = last_call[1]
2153 args = last_call[1]
2154
2154
2155 # use last_call to remember the state of the previous call, but don't
2155 # use last_call to remember the state of the previous call, but don't
2156 # let it be clobbered by successive '-p' calls.
2156 # let it be clobbered by successive '-p' calls.
2157 try:
2157 try:
2158 last_call[0] = self.shell.displayhook.prompt_count
2158 last_call[0] = self.shell.displayhook.prompt_count
2159 if not opts_prev:
2159 if not opts_prev:
2160 last_call[1] = parameter_s
2160 last_call[1] = parameter_s
2161 except:
2161 except:
2162 pass
2162 pass
2163
2163
2164 # by default this is done with temp files, except when the given
2164 # by default this is done with temp files, except when the given
2165 # arg is a filename
2165 # arg is a filename
2166 use_temp = True
2166 use_temp = True
2167
2167
2168 data = ''
2168 data = ''
2169
2169
2170 # First, see if the arguments should be a filename.
2170 # First, see if the arguments should be a filename.
2171 filename = make_filename(args)
2171 filename = make_filename(args)
2172 if filename:
2172 if filename:
2173 use_temp = False
2173 use_temp = False
2174 elif args:
2174 elif args:
2175 # Mode where user specifies ranges of lines, like in %macro.
2175 # Mode where user specifies ranges of lines, like in %macro.
2176 data = self.extract_input_lines(args, opts_raw)
2176 data = self.extract_input_lines(args, opts_raw)
2177 if not data:
2177 if not data:
2178 try:
2178 try:
2179 # Load the parameter given as a variable. If not a string,
2179 # Load the parameter given as a variable. If not a string,
2180 # process it as an object instead (below)
2180 # process it as an object instead (below)
2181
2181
2182 #print '*** args',args,'type',type(args) # dbg
2182 #print '*** args',args,'type',type(args) # dbg
2183 data = eval(args, self.shell.user_ns)
2183 data = eval(args, self.shell.user_ns)
2184 if not isinstance(data, basestring):
2184 if not isinstance(data, basestring):
2185 raise DataIsObject
2185 raise DataIsObject
2186
2186
2187 except (NameError,SyntaxError):
2187 except (NameError,SyntaxError):
2188 # given argument is not a variable, try as a filename
2188 # given argument is not a variable, try as a filename
2189 filename = make_filename(args)
2189 filename = make_filename(args)
2190 if filename is None:
2190 if filename is None:
2191 warn("Argument given (%s) can't be found as a variable "
2191 warn("Argument given (%s) can't be found as a variable "
2192 "or as a filename." % args)
2192 "or as a filename." % args)
2193 return
2193 return
2194 use_temp = False
2194 use_temp = False
2195
2195
2196 except DataIsObject:
2196 except DataIsObject:
2197 # macros have a special edit function
2197 # macros have a special edit function
2198 if isinstance(data, Macro):
2198 if isinstance(data, Macro):
2199 raise MacroToEdit(data)
2199 raise MacroToEdit(data)
2200
2200
2201 # For objects, try to edit the file where they are defined
2201 # For objects, try to edit the file where they are defined
2202 try:
2202 try:
2203 filename = inspect.getabsfile(data)
2203 filename = inspect.getabsfile(data)
2204 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2204 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2205 # class created by %edit? Try to find source
2205 # class created by %edit? Try to find source
2206 # by looking for method definitions instead, the
2206 # by looking for method definitions instead, the
2207 # __module__ in those classes is FakeModule.
2207 # __module__ in those classes is FakeModule.
2208 attrs = [getattr(data, aname) for aname in dir(data)]
2208 attrs = [getattr(data, aname) for aname in dir(data)]
2209 for attr in attrs:
2209 for attr in attrs:
2210 if not inspect.ismethod(attr):
2210 if not inspect.ismethod(attr):
2211 continue
2211 continue
2212 filename = inspect.getabsfile(attr)
2212 filename = inspect.getabsfile(attr)
2213 if filename and 'fakemodule' not in filename.lower():
2213 if filename and 'fakemodule' not in filename.lower():
2214 # change the attribute to be the edit target instead
2214 # change the attribute to be the edit target instead
2215 data = attr
2215 data = attr
2216 break
2216 break
2217
2217
2218 datafile = 1
2218 datafile = 1
2219 except TypeError:
2219 except TypeError:
2220 filename = make_filename(args)
2220 filename = make_filename(args)
2221 datafile = 1
2221 datafile = 1
2222 warn('Could not find file where `%s` is defined.\n'
2222 warn('Could not find file where `%s` is defined.\n'
2223 'Opening a file named `%s`' % (args,filename))
2223 'Opening a file named `%s`' % (args,filename))
2224 # Now, make sure we can actually read the source (if it was in
2224 # Now, make sure we can actually read the source (if it was in
2225 # a temp file it's gone by now).
2225 # a temp file it's gone by now).
2226 if datafile:
2226 if datafile:
2227 try:
2227 try:
2228 if lineno is None:
2228 if lineno is None:
2229 lineno = inspect.getsourcelines(data)[1]
2229 lineno = inspect.getsourcelines(data)[1]
2230 except IOError:
2230 except IOError:
2231 filename = make_filename(args)
2231 filename = make_filename(args)
2232 if filename is None:
2232 if filename is None:
2233 warn('The file `%s` where `%s` was defined cannot '
2233 warn('The file `%s` where `%s` was defined cannot '
2234 'be read.' % (filename,data))
2234 'be read.' % (filename,data))
2235 return
2235 return
2236 use_temp = False
2236 use_temp = False
2237
2237
2238 if use_temp:
2238 if use_temp:
2239 filename = self.shell.mktempfile(data)
2239 filename = self.shell.mktempfile(data)
2240 print 'IPython will make a temporary file named:',filename
2240 print 'IPython will make a temporary file named:',filename
2241
2241
2242 return filename, lineno, use_temp
2242 return filename, lineno, use_temp
2243
2243
2244 def _edit_macro(self,mname,macro):
2244 def _edit_macro(self,mname,macro):
2245 """open an editor with the macro data in a file"""
2245 """open an editor with the macro data in a file"""
2246 filename = self.shell.mktempfile(macro.value)
2246 filename = self.shell.mktempfile(macro.value)
2247 self.shell.hooks.editor(filename)
2247 self.shell.hooks.editor(filename)
2248
2248
2249 # and make a new macro object, to replace the old one
2249 # and make a new macro object, to replace the old one
2250 mfile = open(filename)
2250 mfile = open(filename)
2251 mvalue = mfile.read()
2251 mvalue = mfile.read()
2252 mfile.close()
2252 mfile.close()
2253 self.shell.user_ns[mname] = Macro(mvalue)
2253 self.shell.user_ns[mname] = Macro(mvalue)
2254
2254
2255 def magic_ed(self,parameter_s=''):
2255 def magic_ed(self,parameter_s=''):
2256 """Alias to %edit."""
2256 """Alias to %edit."""
2257 return self.magic_edit(parameter_s)
2257 return self.magic_edit(parameter_s)
2258
2258
2259 @skip_doctest
2259 @skip_doctest
2260 def magic_edit(self,parameter_s='',last_call=['','']):
2260 def magic_edit(self,parameter_s='',last_call=['','']):
2261 """Bring up an editor and execute the resulting code.
2261 """Bring up an editor and execute the resulting code.
2262
2262
2263 Usage:
2263 Usage:
2264 %edit [options] [args]
2264 %edit [options] [args]
2265
2265
2266 %edit runs IPython's editor hook. The default version of this hook is
2266 %edit runs IPython's editor hook. The default version of this hook is
2267 set to call the __IPYTHON__.rc.editor command. This is read from your
2267 set to call the __IPYTHON__.rc.editor command. This is read from your
2268 environment variable $EDITOR. If this isn't found, it will default to
2268 environment variable $EDITOR. If this isn't found, it will default to
2269 vi under Linux/Unix and to notepad under Windows. See the end of this
2269 vi under Linux/Unix and to notepad under Windows. See the end of this
2270 docstring for how to change the editor hook.
2270 docstring for how to change the editor hook.
2271
2271
2272 You can also set the value of this editor via the command line option
2272 You can also set the value of this editor via the command line option
2273 '-editor' or in your ipythonrc file. This is useful if you wish to use
2273 '-editor' or in your ipythonrc file. This is useful if you wish to use
2274 specifically for IPython an editor different from your typical default
2274 specifically for IPython an editor different from your typical default
2275 (and for Windows users who typically don't set environment variables).
2275 (and for Windows users who typically don't set environment variables).
2276
2276
2277 This command allows you to conveniently edit multi-line code right in
2277 This command allows you to conveniently edit multi-line code right in
2278 your IPython session.
2278 your IPython session.
2279
2279
2280 If called without arguments, %edit opens up an empty editor with a
2280 If called without arguments, %edit opens up an empty editor with a
2281 temporary file and will execute the contents of this file when you
2281 temporary file and will execute the contents of this file when you
2282 close it (don't forget to save it!).
2282 close it (don't forget to save it!).
2283
2283
2284
2284
2285 Options:
2285 Options:
2286
2286
2287 -n <number>: open the editor at a specified line number. By default,
2287 -n <number>: open the editor at a specified line number. By default,
2288 the IPython editor hook uses the unix syntax 'editor +N filename', but
2288 the IPython editor hook uses the unix syntax 'editor +N filename', but
2289 you can configure this by providing your own modified hook if your
2289 you can configure this by providing your own modified hook if your
2290 favorite editor supports line-number specifications with a different
2290 favorite editor supports line-number specifications with a different
2291 syntax.
2291 syntax.
2292
2292
2293 -p: this will call the editor with the same data as the previous time
2293 -p: this will call the editor with the same data as the previous time
2294 it was used, regardless of how long ago (in your current session) it
2294 it was used, regardless of how long ago (in your current session) it
2295 was.
2295 was.
2296
2296
2297 -r: use 'raw' input. This option only applies to input taken from the
2297 -r: use 'raw' input. This option only applies to input taken from the
2298 user's history. By default, the 'processed' history is used, so that
2298 user's history. By default, the 'processed' history is used, so that
2299 magics are loaded in their transformed version to valid Python. If
2299 magics are loaded in their transformed version to valid Python. If
2300 this option is given, the raw input as typed as the command line is
2300 this option is given, the raw input as typed as the command line is
2301 used instead. When you exit the editor, it will be executed by
2301 used instead. When you exit the editor, it will be executed by
2302 IPython's own processor.
2302 IPython's own processor.
2303
2303
2304 -x: do not execute the edited code immediately upon exit. This is
2304 -x: do not execute the edited code immediately upon exit. This is
2305 mainly useful if you are editing programs which need to be called with
2305 mainly useful if you are editing programs which need to be called with
2306 command line arguments, which you can then do using %run.
2306 command line arguments, which you can then do using %run.
2307
2307
2308
2308
2309 Arguments:
2309 Arguments:
2310
2310
2311 If arguments are given, the following possibilites exist:
2311 If arguments are given, the following possibilites exist:
2312
2312
2313 - If the argument is a filename, IPython will load that into the
2313 - If the argument is a filename, IPython will load that into the
2314 editor. It will execute its contents with execfile() when you exit,
2314 editor. It will execute its contents with execfile() when you exit,
2315 loading any code in the file into your interactive namespace.
2315 loading any code in the file into your interactive namespace.
2316
2316
2317 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2317 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2318 The syntax is the same as in the %history magic.
2318 The syntax is the same as in the %history magic.
2319
2319
2320 - If the argument is a string variable, its contents are loaded
2320 - If the argument is a string variable, its contents are loaded
2321 into the editor. You can thus edit any string which contains
2321 into the editor. You can thus edit any string which contains
2322 python code (including the result of previous edits).
2322 python code (including the result of previous edits).
2323
2323
2324 - If the argument is the name of an object (other than a string),
2324 - If the argument is the name of an object (other than a string),
2325 IPython will try to locate the file where it was defined and open the
2325 IPython will try to locate the file where it was defined and open the
2326 editor at the point where it is defined. You can use `%edit function`
2326 editor at the point where it is defined. You can use `%edit function`
2327 to load an editor exactly at the point where 'function' is defined,
2327 to load an editor exactly at the point where 'function' is defined,
2328 edit it and have the file be executed automatically.
2328 edit it and have the file be executed automatically.
2329
2329
2330 If the object is a macro (see %macro for details), this opens up your
2330 If the object is a macro (see %macro for details), this opens up your
2331 specified editor with a temporary file containing the macro's data.
2331 specified editor with a temporary file containing the macro's data.
2332 Upon exit, the macro is reloaded with the contents of the file.
2332 Upon exit, the macro is reloaded with the contents of the file.
2333
2333
2334 Note: opening at an exact line is only supported under Unix, and some
2334 Note: opening at an exact line is only supported under Unix, and some
2335 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2335 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2336 '+NUMBER' parameter necessary for this feature. Good editors like
2336 '+NUMBER' parameter necessary for this feature. Good editors like
2337 (X)Emacs, vi, jed, pico and joe all do.
2337 (X)Emacs, vi, jed, pico and joe all do.
2338
2338
2339 After executing your code, %edit will return as output the code you
2339 After executing your code, %edit will return as output the code you
2340 typed in the editor (except when it was an existing file). This way
2340 typed in the editor (except when it was an existing file). This way
2341 you can reload the code in further invocations of %edit as a variable,
2341 you can reload the code in further invocations of %edit as a variable,
2342 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2342 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2343 the output.
2343 the output.
2344
2344
2345 Note that %edit is also available through the alias %ed.
2345 Note that %edit is also available through the alias %ed.
2346
2346
2347 This is an example of creating a simple function inside the editor and
2347 This is an example of creating a simple function inside the editor and
2348 then modifying it. First, start up the editor:
2348 then modifying it. First, start up the editor:
2349
2349
2350 In [1]: ed
2350 In [1]: ed
2351 Editing... done. Executing edited code...
2351 Editing... done. Executing edited code...
2352 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2352 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2353
2353
2354 We can then call the function foo():
2354 We can then call the function foo():
2355
2355
2356 In [2]: foo()
2356 In [2]: foo()
2357 foo() was defined in an editing session
2357 foo() was defined in an editing session
2358
2358
2359 Now we edit foo. IPython automatically loads the editor with the
2359 Now we edit foo. IPython automatically loads the editor with the
2360 (temporary) file where foo() was previously defined:
2360 (temporary) file where foo() was previously defined:
2361
2361
2362 In [3]: ed foo
2362 In [3]: ed foo
2363 Editing... done. Executing edited code...
2363 Editing... done. Executing edited code...
2364
2364
2365 And if we call foo() again we get the modified version:
2365 And if we call foo() again we get the modified version:
2366
2366
2367 In [4]: foo()
2367 In [4]: foo()
2368 foo() has now been changed!
2368 foo() has now been changed!
2369
2369
2370 Here is an example of how to edit a code snippet successive
2370 Here is an example of how to edit a code snippet successive
2371 times. First we call the editor:
2371 times. First we call the editor:
2372
2372
2373 In [5]: ed
2373 In [5]: ed
2374 Editing... done. Executing edited code...
2374 Editing... done. Executing edited code...
2375 hello
2375 hello
2376 Out[5]: "print 'hello'n"
2376 Out[5]: "print 'hello'n"
2377
2377
2378 Now we call it again with the previous output (stored in _):
2378 Now we call it again with the previous output (stored in _):
2379
2379
2380 In [6]: ed _
2380 In [6]: ed _
2381 Editing... done. Executing edited code...
2381 Editing... done. Executing edited code...
2382 hello world
2382 hello world
2383 Out[6]: "print 'hello world'n"
2383 Out[6]: "print 'hello world'n"
2384
2384
2385 Now we call it with the output #8 (stored in _8, also as Out[8]):
2385 Now we call it with the output #8 (stored in _8, also as Out[8]):
2386
2386
2387 In [7]: ed _8
2387 In [7]: ed _8
2388 Editing... done. Executing edited code...
2388 Editing... done. Executing edited code...
2389 hello again
2389 hello again
2390 Out[7]: "print 'hello again'n"
2390 Out[7]: "print 'hello again'n"
2391
2391
2392
2392
2393 Changing the default editor hook:
2393 Changing the default editor hook:
2394
2394
2395 If you wish to write your own editor hook, you can put it in a
2395 If you wish to write your own editor hook, you can put it in a
2396 configuration file which you load at startup time. The default hook
2396 configuration file which you load at startup time. The default hook
2397 is defined in the IPython.core.hooks module, and you can use that as a
2397 is defined in the IPython.core.hooks module, and you can use that as a
2398 starting example for further modifications. That file also has
2398 starting example for further modifications. That file also has
2399 general instructions on how to set a new hook for use once you've
2399 general instructions on how to set a new hook for use once you've
2400 defined it."""
2400 defined it."""
2401 opts,args = self.parse_options(parameter_s,'prxn:')
2401 opts,args = self.parse_options(parameter_s,'prxn:')
2402
2402
2403 try:
2403 try:
2404 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2404 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2405 except MacroToEdit as e:
2405 except MacroToEdit as e:
2406 self._edit_macro(args, e.args[0])
2406 self._edit_macro(args, e.args[0])
2407 return
2407 return
2408
2408
2409 # do actual editing here
2409 # do actual editing here
2410 print 'Editing...',
2410 print 'Editing...',
2411 sys.stdout.flush()
2411 sys.stdout.flush()
2412 try:
2412 try:
2413 # Quote filenames that may have spaces in them
2413 # Quote filenames that may have spaces in them
2414 if ' ' in filename:
2414 if ' ' in filename:
2415 filename = "'%s'" % filename
2415 filename = "'%s'" % filename
2416 self.shell.hooks.editor(filename,lineno)
2416 self.shell.hooks.editor(filename,lineno)
2417 except TryNext:
2417 except TryNext:
2418 warn('Could not open editor')
2418 warn('Could not open editor')
2419 return
2419 return
2420
2420
2421 # XXX TODO: should this be generalized for all string vars?
2421 # XXX TODO: should this be generalized for all string vars?
2422 # For now, this is special-cased to blocks created by cpaste
2422 # For now, this is special-cased to blocks created by cpaste
2423 if args.strip() == 'pasted_block':
2423 if args.strip() == 'pasted_block':
2424 self.shell.user_ns['pasted_block'] = file_read(filename)
2424 self.shell.user_ns['pasted_block'] = file_read(filename)
2425
2425
2426 if 'x' in opts: # -x prevents actual execution
2426 if 'x' in opts: # -x prevents actual execution
2427 print
2427 print
2428 else:
2428 else:
2429 print 'done. Executing edited code...'
2429 print 'done. Executing edited code...'
2430 if 'r' in opts: # Untranslated IPython code
2430 if 'r' in opts: # Untranslated IPython code
2431 self.shell.run_cell(file_read(filename),
2431 self.shell.run_cell(file_read(filename),
2432 store_history=False)
2432 store_history=False)
2433 else:
2433 else:
2434 self.shell.safe_execfile(filename,self.shell.user_ns,
2434 self.shell.safe_execfile(filename,self.shell.user_ns,
2435 self.shell.user_ns)
2435 self.shell.user_ns)
2436
2436
2437 if is_temp:
2437 if is_temp:
2438 try:
2438 try:
2439 return open(filename).read()
2439 return open(filename).read()
2440 except IOError,msg:
2440 except IOError,msg:
2441 if msg.filename == filename:
2441 if msg.filename == filename:
2442 warn('File not found. Did you forget to save?')
2442 warn('File not found. Did you forget to save?')
2443 return
2443 return
2444 else:
2444 else:
2445 self.shell.showtraceback()
2445 self.shell.showtraceback()
2446
2446
2447 def magic_xmode(self,parameter_s = ''):
2447 def magic_xmode(self,parameter_s = ''):
2448 """Switch modes for the exception handlers.
2448 """Switch modes for the exception handlers.
2449
2449
2450 Valid modes: Plain, Context and Verbose.
2450 Valid modes: Plain, Context and Verbose.
2451
2451
2452 If called without arguments, acts as a toggle."""
2452 If called without arguments, acts as a toggle."""
2453
2453
2454 def xmode_switch_err(name):
2454 def xmode_switch_err(name):
2455 warn('Error changing %s exception modes.\n%s' %
2455 warn('Error changing %s exception modes.\n%s' %
2456 (name,sys.exc_info()[1]))
2456 (name,sys.exc_info()[1]))
2457
2457
2458 shell = self.shell
2458 shell = self.shell
2459 new_mode = parameter_s.strip().capitalize()
2459 new_mode = parameter_s.strip().capitalize()
2460 try:
2460 try:
2461 shell.InteractiveTB.set_mode(mode=new_mode)
2461 shell.InteractiveTB.set_mode(mode=new_mode)
2462 print 'Exception reporting mode:',shell.InteractiveTB.mode
2462 print 'Exception reporting mode:',shell.InteractiveTB.mode
2463 except:
2463 except:
2464 xmode_switch_err('user')
2464 xmode_switch_err('user')
2465
2465
2466 def magic_colors(self,parameter_s = ''):
2466 def magic_colors(self,parameter_s = ''):
2467 """Switch color scheme for prompts, info system and exception handlers.
2467 """Switch color scheme for prompts, info system and exception handlers.
2468
2468
2469 Currently implemented schemes: NoColor, Linux, LightBG.
2469 Currently implemented schemes: NoColor, Linux, LightBG.
2470
2470
2471 Color scheme names are not case-sensitive.
2471 Color scheme names are not case-sensitive.
2472
2472
2473 Examples
2473 Examples
2474 --------
2474 --------
2475 To get a plain black and white terminal::
2475 To get a plain black and white terminal::
2476
2476
2477 %colors nocolor
2477 %colors nocolor
2478 """
2478 """
2479
2479
2480 def color_switch_err(name):
2480 def color_switch_err(name):
2481 warn('Error changing %s color schemes.\n%s' %
2481 warn('Error changing %s color schemes.\n%s' %
2482 (name,sys.exc_info()[1]))
2482 (name,sys.exc_info()[1]))
2483
2483
2484
2484
2485 new_scheme = parameter_s.strip()
2485 new_scheme = parameter_s.strip()
2486 if not new_scheme:
2486 if not new_scheme:
2487 raise UsageError(
2487 raise UsageError(
2488 "%colors: you must specify a color scheme. See '%colors?'")
2488 "%colors: you must specify a color scheme. See '%colors?'")
2489 return
2489 return
2490 # local shortcut
2490 # local shortcut
2491 shell = self.shell
2491 shell = self.shell
2492
2492
2493 import IPython.utils.rlineimpl as readline
2493 import IPython.utils.rlineimpl as readline
2494
2494
2495 if not readline.have_readline and sys.platform == "win32":
2495 if not readline.have_readline and sys.platform == "win32":
2496 msg = """\
2496 msg = """\
2497 Proper color support under MS Windows requires the pyreadline library.
2497 Proper color support under MS Windows requires the pyreadline library.
2498 You can find it at:
2498 You can find it at:
2499 http://ipython.scipy.org/moin/PyReadline/Intro
2499 http://ipython.scipy.org/moin/PyReadline/Intro
2500 Gary's readline needs the ctypes module, from:
2500 Gary's readline needs the ctypes module, from:
2501 http://starship.python.net/crew/theller/ctypes
2501 http://starship.python.net/crew/theller/ctypes
2502 (Note that ctypes is already part of Python versions 2.5 and newer).
2502 (Note that ctypes is already part of Python versions 2.5 and newer).
2503
2503
2504 Defaulting color scheme to 'NoColor'"""
2504 Defaulting color scheme to 'NoColor'"""
2505 new_scheme = 'NoColor'
2505 new_scheme = 'NoColor'
2506 warn(msg)
2506 warn(msg)
2507
2507
2508 # readline option is 0
2508 # readline option is 0
2509 if not shell.has_readline:
2509 if not shell.has_readline:
2510 new_scheme = 'NoColor'
2510 new_scheme = 'NoColor'
2511
2511
2512 # Set prompt colors
2512 # Set prompt colors
2513 try:
2513 try:
2514 shell.displayhook.set_colors(new_scheme)
2514 shell.displayhook.set_colors(new_scheme)
2515 except:
2515 except:
2516 color_switch_err('prompt')
2516 color_switch_err('prompt')
2517 else:
2517 else:
2518 shell.colors = \
2518 shell.colors = \
2519 shell.displayhook.color_table.active_scheme_name
2519 shell.displayhook.color_table.active_scheme_name
2520 # Set exception colors
2520 # Set exception colors
2521 try:
2521 try:
2522 shell.InteractiveTB.set_colors(scheme = new_scheme)
2522 shell.InteractiveTB.set_colors(scheme = new_scheme)
2523 shell.SyntaxTB.set_colors(scheme = new_scheme)
2523 shell.SyntaxTB.set_colors(scheme = new_scheme)
2524 except:
2524 except:
2525 color_switch_err('exception')
2525 color_switch_err('exception')
2526
2526
2527 # Set info (for 'object?') colors
2527 # Set info (for 'object?') colors
2528 if shell.color_info:
2528 if shell.color_info:
2529 try:
2529 try:
2530 shell.inspector.set_active_scheme(new_scheme)
2530 shell.inspector.set_active_scheme(new_scheme)
2531 except:
2531 except:
2532 color_switch_err('object inspector')
2532 color_switch_err('object inspector')
2533 else:
2533 else:
2534 shell.inspector.set_active_scheme('NoColor')
2534 shell.inspector.set_active_scheme('NoColor')
2535
2535
2536 def magic_pprint(self, parameter_s=''):
2536 def magic_pprint(self, parameter_s=''):
2537 """Toggle pretty printing on/off."""
2537 """Toggle pretty printing on/off."""
2538 ptformatter = self.shell.display_formatter.formatters['text/plain']
2538 ptformatter = self.shell.display_formatter.formatters['text/plain']
2539 ptformatter.pprint = bool(1 - ptformatter.pprint)
2539 ptformatter.pprint = bool(1 - ptformatter.pprint)
2540 print 'Pretty printing has been turned', \
2540 print 'Pretty printing has been turned', \
2541 ['OFF','ON'][ptformatter.pprint]
2541 ['OFF','ON'][ptformatter.pprint]
2542
2542
2543 #......................................................................
2543 #......................................................................
2544 # Functions to implement unix shell-type things
2544 # Functions to implement unix shell-type things
2545
2545
2546 @skip_doctest
2546 @skip_doctest
2547 def magic_alias(self, parameter_s = ''):
2547 def magic_alias(self, parameter_s = ''):
2548 """Define an alias for a system command.
2548 """Define an alias for a system command.
2549
2549
2550 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2550 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2551
2551
2552 Then, typing 'alias_name params' will execute the system command 'cmd
2552 Then, typing 'alias_name params' will execute the system command 'cmd
2553 params' (from your underlying operating system).
2553 params' (from your underlying operating system).
2554
2554
2555 Aliases have lower precedence than magic functions and Python normal
2555 Aliases have lower precedence than magic functions and Python normal
2556 variables, so if 'foo' is both a Python variable and an alias, the
2556 variables, so if 'foo' is both a Python variable and an alias, the
2557 alias can not be executed until 'del foo' removes the Python variable.
2557 alias can not be executed until 'del foo' removes the Python variable.
2558
2558
2559 You can use the %l specifier in an alias definition to represent the
2559 You can use the %l specifier in an alias definition to represent the
2560 whole line when the alias is called. For example:
2560 whole line when the alias is called. For example:
2561
2561
2562 In [2]: alias bracket echo "Input in brackets: <%l>"
2562 In [2]: alias bracket echo "Input in brackets: <%l>"
2563 In [3]: bracket hello world
2563 In [3]: bracket hello world
2564 Input in brackets: <hello world>
2564 Input in brackets: <hello world>
2565
2565
2566 You can also define aliases with parameters using %s specifiers (one
2566 You can also define aliases with parameters using %s specifiers (one
2567 per parameter):
2567 per parameter):
2568
2568
2569 In [1]: alias parts echo first %s second %s
2569 In [1]: alias parts echo first %s second %s
2570 In [2]: %parts A B
2570 In [2]: %parts A B
2571 first A second B
2571 first A second B
2572 In [3]: %parts A
2572 In [3]: %parts A
2573 Incorrect number of arguments: 2 expected.
2573 Incorrect number of arguments: 2 expected.
2574 parts is an alias to: 'echo first %s second %s'
2574 parts is an alias to: 'echo first %s second %s'
2575
2575
2576 Note that %l and %s are mutually exclusive. You can only use one or
2576 Note that %l and %s are mutually exclusive. You can only use one or
2577 the other in your aliases.
2577 the other in your aliases.
2578
2578
2579 Aliases expand Python variables just like system calls using ! or !!
2579 Aliases expand Python variables just like system calls using ! or !!
2580 do: all expressions prefixed with '$' get expanded. For details of
2580 do: all expressions prefixed with '$' get expanded. For details of
2581 the semantic rules, see PEP-215:
2581 the semantic rules, see PEP-215:
2582 http://www.python.org/peps/pep-0215.html. This is the library used by
2582 http://www.python.org/peps/pep-0215.html. This is the library used by
2583 IPython for variable expansion. If you want to access a true shell
2583 IPython for variable expansion. If you want to access a true shell
2584 variable, an extra $ is necessary to prevent its expansion by IPython:
2584 variable, an extra $ is necessary to prevent its expansion by IPython:
2585
2585
2586 In [6]: alias show echo
2586 In [6]: alias show echo
2587 In [7]: PATH='A Python string'
2587 In [7]: PATH='A Python string'
2588 In [8]: show $PATH
2588 In [8]: show $PATH
2589 A Python string
2589 A Python string
2590 In [9]: show $$PATH
2590 In [9]: show $$PATH
2591 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2591 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2592
2592
2593 You can use the alias facility to acess all of $PATH. See the %rehash
2593 You can use the alias facility to acess all of $PATH. See the %rehash
2594 and %rehashx functions, which automatically create aliases for the
2594 and %rehashx functions, which automatically create aliases for the
2595 contents of your $PATH.
2595 contents of your $PATH.
2596
2596
2597 If called with no parameters, %alias prints the current alias table."""
2597 If called with no parameters, %alias prints the current alias table."""
2598
2598
2599 par = parameter_s.strip()
2599 par = parameter_s.strip()
2600 if not par:
2600 if not par:
2601 stored = self.db.get('stored_aliases', {} )
2601 stored = self.db.get('stored_aliases', {} )
2602 aliases = sorted(self.shell.alias_manager.aliases)
2602 aliases = sorted(self.shell.alias_manager.aliases)
2603 # for k, v in stored:
2603 # for k, v in stored:
2604 # atab.append(k, v[0])
2604 # atab.append(k, v[0])
2605
2605
2606 print "Total number of aliases:", len(aliases)
2606 print "Total number of aliases:", len(aliases)
2607 sys.stdout.flush()
2607 sys.stdout.flush()
2608 return aliases
2608 return aliases
2609
2609
2610 # Now try to define a new one
2610 # Now try to define a new one
2611 try:
2611 try:
2612 alias,cmd = par.split(None, 1)
2612 alias,cmd = par.split(None, 1)
2613 except:
2613 except:
2614 print oinspect.getdoc(self.magic_alias)
2614 print oinspect.getdoc(self.magic_alias)
2615 else:
2615 else:
2616 self.shell.alias_manager.soft_define_alias(alias, cmd)
2616 self.shell.alias_manager.soft_define_alias(alias, cmd)
2617 # end magic_alias
2617 # end magic_alias
2618
2618
2619 def magic_unalias(self, parameter_s = ''):
2619 def magic_unalias(self, parameter_s = ''):
2620 """Remove an alias"""
2620 """Remove an alias"""
2621
2621
2622 aname = parameter_s.strip()
2622 aname = parameter_s.strip()
2623 self.shell.alias_manager.undefine_alias(aname)
2623 self.shell.alias_manager.undefine_alias(aname)
2624 stored = self.db.get('stored_aliases', {} )
2624 stored = self.db.get('stored_aliases', {} )
2625 if aname in stored:
2625 if aname in stored:
2626 print "Removing %stored alias",aname
2626 print "Removing %stored alias",aname
2627 del stored[aname]
2627 del stored[aname]
2628 self.db['stored_aliases'] = stored
2628 self.db['stored_aliases'] = stored
2629
2629
2630 def magic_rehashx(self, parameter_s = ''):
2630 def magic_rehashx(self, parameter_s = ''):
2631 """Update the alias table with all executable files in $PATH.
2631 """Update the alias table with all executable files in $PATH.
2632
2632
2633 This version explicitly checks that every entry in $PATH is a file
2633 This version explicitly checks that every entry in $PATH is a file
2634 with execute access (os.X_OK), so it is much slower than %rehash.
2634 with execute access (os.X_OK), so it is much slower than %rehash.
2635
2635
2636 Under Windows, it checks executability as a match agains a
2636 Under Windows, it checks executability as a match agains a
2637 '|'-separated string of extensions, stored in the IPython config
2637 '|'-separated string of extensions, stored in the IPython config
2638 variable win_exec_ext. This defaults to 'exe|com|bat'.
2638 variable win_exec_ext. This defaults to 'exe|com|bat'.
2639
2639
2640 This function also resets the root module cache of module completer,
2640 This function also resets the root module cache of module completer,
2641 used on slow filesystems.
2641 used on slow filesystems.
2642 """
2642 """
2643 from IPython.core.alias import InvalidAliasError
2643 from IPython.core.alias import InvalidAliasError
2644
2644
2645 # for the benefit of module completer in ipy_completers.py
2645 # for the benefit of module completer in ipy_completers.py
2646 del self.db['rootmodules']
2646 del self.db['rootmodules']
2647
2647
2648 path = [os.path.abspath(os.path.expanduser(p)) for p in
2648 path = [os.path.abspath(os.path.expanduser(p)) for p in
2649 os.environ.get('PATH','').split(os.pathsep)]
2649 os.environ.get('PATH','').split(os.pathsep)]
2650 path = filter(os.path.isdir,path)
2650 path = filter(os.path.isdir,path)
2651
2651
2652 syscmdlist = []
2652 syscmdlist = []
2653 # Now define isexec in a cross platform manner.
2653 # Now define isexec in a cross platform manner.
2654 if os.name == 'posix':
2654 if os.name == 'posix':
2655 isexec = lambda fname:os.path.isfile(fname) and \
2655 isexec = lambda fname:os.path.isfile(fname) and \
2656 os.access(fname,os.X_OK)
2656 os.access(fname,os.X_OK)
2657 else:
2657 else:
2658 try:
2658 try:
2659 winext = os.environ['pathext'].replace(';','|').replace('.','')
2659 winext = os.environ['pathext'].replace(';','|').replace('.','')
2660 except KeyError:
2660 except KeyError:
2661 winext = 'exe|com|bat|py'
2661 winext = 'exe|com|bat|py'
2662 if 'py' not in winext:
2662 if 'py' not in winext:
2663 winext += '|py'
2663 winext += '|py'
2664 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2664 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2665 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2665 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2666 savedir = os.getcwdu()
2666 savedir = os.getcwdu()
2667
2667
2668 # Now walk the paths looking for executables to alias.
2668 # Now walk the paths looking for executables to alias.
2669 try:
2669 try:
2670 # write the whole loop for posix/Windows so we don't have an if in
2670 # write the whole loop for posix/Windows so we don't have an if in
2671 # the innermost part
2671 # the innermost part
2672 if os.name == 'posix':
2672 if os.name == 'posix':
2673 for pdir in path:
2673 for pdir in path:
2674 os.chdir(pdir)
2674 os.chdir(pdir)
2675 for ff in os.listdir(pdir):
2675 for ff in os.listdir(pdir):
2676 if isexec(ff):
2676 if isexec(ff):
2677 try:
2677 try:
2678 # Removes dots from the name since ipython
2678 # Removes dots from the name since ipython
2679 # will assume names with dots to be python.
2679 # will assume names with dots to be python.
2680 self.shell.alias_manager.define_alias(
2680 self.shell.alias_manager.define_alias(
2681 ff.replace('.',''), ff)
2681 ff.replace('.',''), ff)
2682 except InvalidAliasError:
2682 except InvalidAliasError:
2683 pass
2683 pass
2684 else:
2684 else:
2685 syscmdlist.append(ff)
2685 syscmdlist.append(ff)
2686 else:
2686 else:
2687 no_alias = self.shell.alias_manager.no_alias
2687 no_alias = self.shell.alias_manager.no_alias
2688 for pdir in path:
2688 for pdir in path:
2689 os.chdir(pdir)
2689 os.chdir(pdir)
2690 for ff in os.listdir(pdir):
2690 for ff in os.listdir(pdir):
2691 base, ext = os.path.splitext(ff)
2691 base, ext = os.path.splitext(ff)
2692 if isexec(ff) and base.lower() not in no_alias:
2692 if isexec(ff) and base.lower() not in no_alias:
2693 if ext.lower() == '.exe':
2693 if ext.lower() == '.exe':
2694 ff = base
2694 ff = base
2695 try:
2695 try:
2696 # Removes dots from the name since ipython
2696 # Removes dots from the name since ipython
2697 # will assume names with dots to be python.
2697 # will assume names with dots to be python.
2698 self.shell.alias_manager.define_alias(
2698 self.shell.alias_manager.define_alias(
2699 base.lower().replace('.',''), ff)
2699 base.lower().replace('.',''), ff)
2700 except InvalidAliasError:
2700 except InvalidAliasError:
2701 pass
2701 pass
2702 syscmdlist.append(ff)
2702 syscmdlist.append(ff)
2703 db = self.db
2703 db = self.db
2704 db['syscmdlist'] = syscmdlist
2704 db['syscmdlist'] = syscmdlist
2705 finally:
2705 finally:
2706 os.chdir(savedir)
2706 os.chdir(savedir)
2707
2707
2708 @skip_doctest
2708 @skip_doctest
2709 def magic_pwd(self, parameter_s = ''):
2709 def magic_pwd(self, parameter_s = ''):
2710 """Return the current working directory path.
2710 """Return the current working directory path.
2711
2711
2712 Examples
2712 Examples
2713 --------
2713 --------
2714 ::
2714 ::
2715
2715
2716 In [9]: pwd
2716 In [9]: pwd
2717 Out[9]: '/home/tsuser/sprint/ipython'
2717 Out[9]: '/home/tsuser/sprint/ipython'
2718 """
2718 """
2719 return os.getcwdu()
2719 return os.getcwdu()
2720
2720
2721 @skip_doctest
2721 @skip_doctest
2722 def magic_cd(self, parameter_s=''):
2722 def magic_cd(self, parameter_s=''):
2723 """Change the current working directory.
2723 """Change the current working directory.
2724
2724
2725 This command automatically maintains an internal list of directories
2725 This command automatically maintains an internal list of directories
2726 you visit during your IPython session, in the variable _dh. The
2726 you visit during your IPython session, in the variable _dh. The
2727 command %dhist shows this history nicely formatted. You can also
2727 command %dhist shows this history nicely formatted. You can also
2728 do 'cd -<tab>' to see directory history conveniently.
2728 do 'cd -<tab>' to see directory history conveniently.
2729
2729
2730 Usage:
2730 Usage:
2731
2731
2732 cd 'dir': changes to directory 'dir'.
2732 cd 'dir': changes to directory 'dir'.
2733
2733
2734 cd -: changes to the last visited directory.
2734 cd -: changes to the last visited directory.
2735
2735
2736 cd -<n>: changes to the n-th directory in the directory history.
2736 cd -<n>: changes to the n-th directory in the directory history.
2737
2737
2738 cd --foo: change to directory that matches 'foo' in history
2738 cd --foo: change to directory that matches 'foo' in history
2739
2739
2740 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2740 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2741 (note: cd <bookmark_name> is enough if there is no
2741 (note: cd <bookmark_name> is enough if there is no
2742 directory <bookmark_name>, but a bookmark with the name exists.)
2742 directory <bookmark_name>, but a bookmark with the name exists.)
2743 'cd -b <tab>' allows you to tab-complete bookmark names.
2743 'cd -b <tab>' allows you to tab-complete bookmark names.
2744
2744
2745 Options:
2745 Options:
2746
2746
2747 -q: quiet. Do not print the working directory after the cd command is
2747 -q: quiet. Do not print the working directory after the cd command is
2748 executed. By default IPython's cd command does print this directory,
2748 executed. By default IPython's cd command does print this directory,
2749 since the default prompts do not display path information.
2749 since the default prompts do not display path information.
2750
2750
2751 Note that !cd doesn't work for this purpose because the shell where
2751 Note that !cd doesn't work for this purpose because the shell where
2752 !command runs is immediately discarded after executing 'command'.
2752 !command runs is immediately discarded after executing 'command'.
2753
2753
2754 Examples
2754 Examples
2755 --------
2755 --------
2756 ::
2756 ::
2757
2757
2758 In [10]: cd parent/child
2758 In [10]: cd parent/child
2759 /home/tsuser/parent/child
2759 /home/tsuser/parent/child
2760 """
2760 """
2761
2761
2762 parameter_s = parameter_s.strip()
2762 parameter_s = parameter_s.strip()
2763 #bkms = self.shell.persist.get("bookmarks",{})
2763 #bkms = self.shell.persist.get("bookmarks",{})
2764
2764
2765 oldcwd = os.getcwdu()
2765 oldcwd = os.getcwdu()
2766 numcd = re.match(r'(-)(\d+)$',parameter_s)
2766 numcd = re.match(r'(-)(\d+)$',parameter_s)
2767 # jump in directory history by number
2767 # jump in directory history by number
2768 if numcd:
2768 if numcd:
2769 nn = int(numcd.group(2))
2769 nn = int(numcd.group(2))
2770 try:
2770 try:
2771 ps = self.shell.user_ns['_dh'][nn]
2771 ps = self.shell.user_ns['_dh'][nn]
2772 except IndexError:
2772 except IndexError:
2773 print 'The requested directory does not exist in history.'
2773 print 'The requested directory does not exist in history.'
2774 return
2774 return
2775 else:
2775 else:
2776 opts = {}
2776 opts = {}
2777 elif parameter_s.startswith('--'):
2777 elif parameter_s.startswith('--'):
2778 ps = None
2778 ps = None
2779 fallback = None
2779 fallback = None
2780 pat = parameter_s[2:]
2780 pat = parameter_s[2:]
2781 dh = self.shell.user_ns['_dh']
2781 dh = self.shell.user_ns['_dh']
2782 # first search only by basename (last component)
2782 # first search only by basename (last component)
2783 for ent in reversed(dh):
2783 for ent in reversed(dh):
2784 if pat in os.path.basename(ent) and os.path.isdir(ent):
2784 if pat in os.path.basename(ent) and os.path.isdir(ent):
2785 ps = ent
2785 ps = ent
2786 break
2786 break
2787
2787
2788 if fallback is None and pat in ent and os.path.isdir(ent):
2788 if fallback is None and pat in ent and os.path.isdir(ent):
2789 fallback = ent
2789 fallback = ent
2790
2790
2791 # if we have no last part match, pick the first full path match
2791 # if we have no last part match, pick the first full path match
2792 if ps is None:
2792 if ps is None:
2793 ps = fallback
2793 ps = fallback
2794
2794
2795 if ps is None:
2795 if ps is None:
2796 print "No matching entry in directory history"
2796 print "No matching entry in directory history"
2797 return
2797 return
2798 else:
2798 else:
2799 opts = {}
2799 opts = {}
2800
2800
2801
2801
2802 else:
2802 else:
2803 #turn all non-space-escaping backslashes to slashes,
2803 #turn all non-space-escaping backslashes to slashes,
2804 # for c:\windows\directory\names\
2804 # for c:\windows\directory\names\
2805 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2805 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2806 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2806 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2807 # jump to previous
2807 # jump to previous
2808 if ps == '-':
2808 if ps == '-':
2809 try:
2809 try:
2810 ps = self.shell.user_ns['_dh'][-2]
2810 ps = self.shell.user_ns['_dh'][-2]
2811 except IndexError:
2811 except IndexError:
2812 raise UsageError('%cd -: No previous directory to change to.')
2812 raise UsageError('%cd -: No previous directory to change to.')
2813 # jump to bookmark if needed
2813 # jump to bookmark if needed
2814 else:
2814 else:
2815 if not os.path.isdir(ps) or opts.has_key('b'):
2815 if not os.path.isdir(ps) or opts.has_key('b'):
2816 bkms = self.db.get('bookmarks', {})
2816 bkms = self.db.get('bookmarks', {})
2817
2817
2818 if bkms.has_key(ps):
2818 if bkms.has_key(ps):
2819 target = bkms[ps]
2819 target = bkms[ps]
2820 print '(bookmark:%s) -> %s' % (ps,target)
2820 print '(bookmark:%s) -> %s' % (ps,target)
2821 ps = target
2821 ps = target
2822 else:
2822 else:
2823 if opts.has_key('b'):
2823 if opts.has_key('b'):
2824 raise UsageError("Bookmark '%s' not found. "
2824 raise UsageError("Bookmark '%s' not found. "
2825 "Use '%%bookmark -l' to see your bookmarks." % ps)
2825 "Use '%%bookmark -l' to see your bookmarks." % ps)
2826
2826
2827 # strip extra quotes on Windows, because os.chdir doesn't like them
2827 # strip extra quotes on Windows, because os.chdir doesn't like them
2828 if sys.platform == 'win32':
2828 if sys.platform == 'win32':
2829 ps = ps.strip('\'"')
2829 ps = ps.strip('\'"')
2830 # at this point ps should point to the target dir
2830 # at this point ps should point to the target dir
2831 if ps:
2831 if ps:
2832 try:
2832 try:
2833 os.chdir(os.path.expanduser(ps))
2833 os.chdir(os.path.expanduser(ps))
2834 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2834 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2835 set_term_title('IPython: ' + abbrev_cwd())
2835 set_term_title('IPython: ' + abbrev_cwd())
2836 except OSError:
2836 except OSError:
2837 print sys.exc_info()[1]
2837 print sys.exc_info()[1]
2838 else:
2838 else:
2839 cwd = os.getcwdu()
2839 cwd = os.getcwdu()
2840 dhist = self.shell.user_ns['_dh']
2840 dhist = self.shell.user_ns['_dh']
2841 if oldcwd != cwd:
2841 if oldcwd != cwd:
2842 dhist.append(cwd)
2842 dhist.append(cwd)
2843 self.db['dhist'] = compress_dhist(dhist)[-100:]
2843 self.db['dhist'] = compress_dhist(dhist)[-100:]
2844
2844
2845 else:
2845 else:
2846 os.chdir(self.shell.home_dir)
2846 os.chdir(self.shell.home_dir)
2847 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2847 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2848 set_term_title('IPython: ' + '~')
2848 set_term_title('IPython: ' + '~')
2849 cwd = os.getcwdu()
2849 cwd = os.getcwdu()
2850 dhist = self.shell.user_ns['_dh']
2850 dhist = self.shell.user_ns['_dh']
2851
2851
2852 if oldcwd != cwd:
2852 if oldcwd != cwd:
2853 dhist.append(cwd)
2853 dhist.append(cwd)
2854 self.db['dhist'] = compress_dhist(dhist)[-100:]
2854 self.db['dhist'] = compress_dhist(dhist)[-100:]
2855 if not 'q' in opts and self.shell.user_ns['_dh']:
2855 if not 'q' in opts and self.shell.user_ns['_dh']:
2856 print self.shell.user_ns['_dh'][-1]
2856 print self.shell.user_ns['_dh'][-1]
2857
2857
2858
2858
2859 def magic_env(self, parameter_s=''):
2859 def magic_env(self, parameter_s=''):
2860 """List environment variables."""
2860 """List environment variables."""
2861
2861
2862 return os.environ.data
2862 return os.environ.data
2863
2863
2864 def magic_pushd(self, parameter_s=''):
2864 def magic_pushd(self, parameter_s=''):
2865 """Place the current dir on stack and change directory.
2865 """Place the current dir on stack and change directory.
2866
2866
2867 Usage:\\
2867 Usage:\\
2868 %pushd ['dirname']
2868 %pushd ['dirname']
2869 """
2869 """
2870
2870
2871 dir_s = self.shell.dir_stack
2871 dir_s = self.shell.dir_stack
2872 tgt = os.path.expanduser(parameter_s)
2872 tgt = os.path.expanduser(parameter_s)
2873 cwd = os.getcwdu().replace(self.home_dir,'~')
2873 cwd = os.getcwdu().replace(self.home_dir,'~')
2874 if tgt:
2874 if tgt:
2875 self.magic_cd(parameter_s)
2875 self.magic_cd(parameter_s)
2876 dir_s.insert(0,cwd)
2876 dir_s.insert(0,cwd)
2877 return self.magic_dirs()
2877 return self.magic_dirs()
2878
2878
2879 def magic_popd(self, parameter_s=''):
2879 def magic_popd(self, parameter_s=''):
2880 """Change to directory popped off the top of the stack.
2880 """Change to directory popped off the top of the stack.
2881 """
2881 """
2882 if not self.shell.dir_stack:
2882 if not self.shell.dir_stack:
2883 raise UsageError("%popd on empty stack")
2883 raise UsageError("%popd on empty stack")
2884 top = self.shell.dir_stack.pop(0)
2884 top = self.shell.dir_stack.pop(0)
2885 self.magic_cd(top)
2885 self.magic_cd(top)
2886 print "popd ->",top
2886 print "popd ->",top
2887
2887
2888 def magic_dirs(self, parameter_s=''):
2888 def magic_dirs(self, parameter_s=''):
2889 """Return the current directory stack."""
2889 """Return the current directory stack."""
2890
2890
2891 return self.shell.dir_stack
2891 return self.shell.dir_stack
2892
2892
2893 def magic_dhist(self, parameter_s=''):
2893 def magic_dhist(self, parameter_s=''):
2894 """Print your history of visited directories.
2894 """Print your history of visited directories.
2895
2895
2896 %dhist -> print full history\\
2896 %dhist -> print full history\\
2897 %dhist n -> print last n entries only\\
2897 %dhist n -> print last n entries only\\
2898 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2898 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2899
2899
2900 This history is automatically maintained by the %cd command, and
2900 This history is automatically maintained by the %cd command, and
2901 always available as the global list variable _dh. You can use %cd -<n>
2901 always available as the global list variable _dh. You can use %cd -<n>
2902 to go to directory number <n>.
2902 to go to directory number <n>.
2903
2903
2904 Note that most of time, you should view directory history by entering
2904 Note that most of time, you should view directory history by entering
2905 cd -<TAB>.
2905 cd -<TAB>.
2906
2906
2907 """
2907 """
2908
2908
2909 dh = self.shell.user_ns['_dh']
2909 dh = self.shell.user_ns['_dh']
2910 if parameter_s:
2910 if parameter_s:
2911 try:
2911 try:
2912 args = map(int,parameter_s.split())
2912 args = map(int,parameter_s.split())
2913 except:
2913 except:
2914 self.arg_err(Magic.magic_dhist)
2914 self.arg_err(Magic.magic_dhist)
2915 return
2915 return
2916 if len(args) == 1:
2916 if len(args) == 1:
2917 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2917 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2918 elif len(args) == 2:
2918 elif len(args) == 2:
2919 ini,fin = args
2919 ini,fin = args
2920 else:
2920 else:
2921 self.arg_err(Magic.magic_dhist)
2921 self.arg_err(Magic.magic_dhist)
2922 return
2922 return
2923 else:
2923 else:
2924 ini,fin = 0,len(dh)
2924 ini,fin = 0,len(dh)
2925 nlprint(dh,
2925 nlprint(dh,
2926 header = 'Directory history (kept in _dh)',
2926 header = 'Directory history (kept in _dh)',
2927 start=ini,stop=fin)
2927 start=ini,stop=fin)
2928
2928
2929 @skip_doctest
2929 @skip_doctest
2930 def magic_sc(self, parameter_s=''):
2930 def magic_sc(self, parameter_s=''):
2931 """Shell capture - execute a shell command and capture its output.
2931 """Shell capture - execute a shell command and capture its output.
2932
2932
2933 DEPRECATED. Suboptimal, retained for backwards compatibility.
2933 DEPRECATED. Suboptimal, retained for backwards compatibility.
2934
2934
2935 You should use the form 'var = !command' instead. Example:
2935 You should use the form 'var = !command' instead. Example:
2936
2936
2937 "%sc -l myfiles = ls ~" should now be written as
2937 "%sc -l myfiles = ls ~" should now be written as
2938
2938
2939 "myfiles = !ls ~"
2939 "myfiles = !ls ~"
2940
2940
2941 myfiles.s, myfiles.l and myfiles.n still apply as documented
2941 myfiles.s, myfiles.l and myfiles.n still apply as documented
2942 below.
2942 below.
2943
2943
2944 --
2944 --
2945 %sc [options] varname=command
2945 %sc [options] varname=command
2946
2946
2947 IPython will run the given command using commands.getoutput(), and
2947 IPython will run the given command using commands.getoutput(), and
2948 will then update the user's interactive namespace with a variable
2948 will then update the user's interactive namespace with a variable
2949 called varname, containing the value of the call. Your command can
2949 called varname, containing the value of the call. Your command can
2950 contain shell wildcards, pipes, etc.
2950 contain shell wildcards, pipes, etc.
2951
2951
2952 The '=' sign in the syntax is mandatory, and the variable name you
2952 The '=' sign in the syntax is mandatory, and the variable name you
2953 supply must follow Python's standard conventions for valid names.
2953 supply must follow Python's standard conventions for valid names.
2954
2954
2955 (A special format without variable name exists for internal use)
2955 (A special format without variable name exists for internal use)
2956
2956
2957 Options:
2957 Options:
2958
2958
2959 -l: list output. Split the output on newlines into a list before
2959 -l: list output. Split the output on newlines into a list before
2960 assigning it to the given variable. By default the output is stored
2960 assigning it to the given variable. By default the output is stored
2961 as a single string.
2961 as a single string.
2962
2962
2963 -v: verbose. Print the contents of the variable.
2963 -v: verbose. Print the contents of the variable.
2964
2964
2965 In most cases you should not need to split as a list, because the
2965 In most cases you should not need to split as a list, because the
2966 returned value is a special type of string which can automatically
2966 returned value is a special type of string which can automatically
2967 provide its contents either as a list (split on newlines) or as a
2967 provide its contents either as a list (split on newlines) or as a
2968 space-separated string. These are convenient, respectively, either
2968 space-separated string. These are convenient, respectively, either
2969 for sequential processing or to be passed to a shell command.
2969 for sequential processing or to be passed to a shell command.
2970
2970
2971 For example:
2971 For example:
2972
2972
2973 # all-random
2973 # all-random
2974
2974
2975 # Capture into variable a
2975 # Capture into variable a
2976 In [1]: sc a=ls *py
2976 In [1]: sc a=ls *py
2977
2977
2978 # a is a string with embedded newlines
2978 # a is a string with embedded newlines
2979 In [2]: a
2979 In [2]: a
2980 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2980 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2981
2981
2982 # which can be seen as a list:
2982 # which can be seen as a list:
2983 In [3]: a.l
2983 In [3]: a.l
2984 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2984 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2985
2985
2986 # or as a whitespace-separated string:
2986 # or as a whitespace-separated string:
2987 In [4]: a.s
2987 In [4]: a.s
2988 Out[4]: 'setup.py win32_manual_post_install.py'
2988 Out[4]: 'setup.py win32_manual_post_install.py'
2989
2989
2990 # a.s is useful to pass as a single command line:
2990 # a.s is useful to pass as a single command line:
2991 In [5]: !wc -l $a.s
2991 In [5]: !wc -l $a.s
2992 146 setup.py
2992 146 setup.py
2993 130 win32_manual_post_install.py
2993 130 win32_manual_post_install.py
2994 276 total
2994 276 total
2995
2995
2996 # while the list form is useful to loop over:
2996 # while the list form is useful to loop over:
2997 In [6]: for f in a.l:
2997 In [6]: for f in a.l:
2998 ...: !wc -l $f
2998 ...: !wc -l $f
2999 ...:
2999 ...:
3000 146 setup.py
3000 146 setup.py
3001 130 win32_manual_post_install.py
3001 130 win32_manual_post_install.py
3002
3002
3003 Similiarly, the lists returned by the -l option are also special, in
3003 Similiarly, the lists returned by the -l option are also special, in
3004 the sense that you can equally invoke the .s attribute on them to
3004 the sense that you can equally invoke the .s attribute on them to
3005 automatically get a whitespace-separated string from their contents:
3005 automatically get a whitespace-separated string from their contents:
3006
3006
3007 In [7]: sc -l b=ls *py
3007 In [7]: sc -l b=ls *py
3008
3008
3009 In [8]: b
3009 In [8]: b
3010 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3010 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3011
3011
3012 In [9]: b.s
3012 In [9]: b.s
3013 Out[9]: 'setup.py win32_manual_post_install.py'
3013 Out[9]: 'setup.py win32_manual_post_install.py'
3014
3014
3015 In summary, both the lists and strings used for ouptut capture have
3015 In summary, both the lists and strings used for ouptut capture have
3016 the following special attributes:
3016 the following special attributes:
3017
3017
3018 .l (or .list) : value as list.
3018 .l (or .list) : value as list.
3019 .n (or .nlstr): value as newline-separated string.
3019 .n (or .nlstr): value as newline-separated string.
3020 .s (or .spstr): value as space-separated string.
3020 .s (or .spstr): value as space-separated string.
3021 """
3021 """
3022
3022
3023 opts,args = self.parse_options(parameter_s,'lv')
3023 opts,args = self.parse_options(parameter_s,'lv')
3024 # Try to get a variable name and command to run
3024 # Try to get a variable name and command to run
3025 try:
3025 try:
3026 # the variable name must be obtained from the parse_options
3026 # the variable name must be obtained from the parse_options
3027 # output, which uses shlex.split to strip options out.
3027 # output, which uses shlex.split to strip options out.
3028 var,_ = args.split('=',1)
3028 var,_ = args.split('=',1)
3029 var = var.strip()
3029 var = var.strip()
3030 # But the the command has to be extracted from the original input
3030 # But the the command has to be extracted from the original input
3031 # parameter_s, not on what parse_options returns, to avoid the
3031 # parameter_s, not on what parse_options returns, to avoid the
3032 # quote stripping which shlex.split performs on it.
3032 # quote stripping which shlex.split performs on it.
3033 _,cmd = parameter_s.split('=',1)
3033 _,cmd = parameter_s.split('=',1)
3034 except ValueError:
3034 except ValueError:
3035 var,cmd = '',''
3035 var,cmd = '',''
3036 # If all looks ok, proceed
3036 # If all looks ok, proceed
3037 split = 'l' in opts
3037 split = 'l' in opts
3038 out = self.shell.getoutput(cmd, split=split)
3038 out = self.shell.getoutput(cmd, split=split)
3039 if opts.has_key('v'):
3039 if opts.has_key('v'):
3040 print '%s ==\n%s' % (var,pformat(out))
3040 print '%s ==\n%s' % (var,pformat(out))
3041 if var:
3041 if var:
3042 self.shell.user_ns.update({var:out})
3042 self.shell.user_ns.update({var:out})
3043 else:
3043 else:
3044 return out
3044 return out
3045
3045
3046 def magic_sx(self, parameter_s=''):
3046 def magic_sx(self, parameter_s=''):
3047 """Shell execute - run a shell command and capture its output.
3047 """Shell execute - run a shell command and capture its output.
3048
3048
3049 %sx command
3049 %sx command
3050
3050
3051 IPython will run the given command using commands.getoutput(), and
3051 IPython will run the given command using commands.getoutput(), and
3052 return the result formatted as a list (split on '\\n'). Since the
3052 return the result formatted as a list (split on '\\n'). Since the
3053 output is _returned_, it will be stored in ipython's regular output
3053 output is _returned_, it will be stored in ipython's regular output
3054 cache Out[N] and in the '_N' automatic variables.
3054 cache Out[N] and in the '_N' automatic variables.
3055
3055
3056 Notes:
3056 Notes:
3057
3057
3058 1) If an input line begins with '!!', then %sx is automatically
3058 1) If an input line begins with '!!', then %sx is automatically
3059 invoked. That is, while:
3059 invoked. That is, while:
3060 !ls
3060 !ls
3061 causes ipython to simply issue system('ls'), typing
3061 causes ipython to simply issue system('ls'), typing
3062 !!ls
3062 !!ls
3063 is a shorthand equivalent to:
3063 is a shorthand equivalent to:
3064 %sx ls
3064 %sx ls
3065
3065
3066 2) %sx differs from %sc in that %sx automatically splits into a list,
3066 2) %sx differs from %sc in that %sx automatically splits into a list,
3067 like '%sc -l'. The reason for this is to make it as easy as possible
3067 like '%sc -l'. The reason for this is to make it as easy as possible
3068 to process line-oriented shell output via further python commands.
3068 to process line-oriented shell output via further python commands.
3069 %sc is meant to provide much finer control, but requires more
3069 %sc is meant to provide much finer control, but requires more
3070 typing.
3070 typing.
3071
3071
3072 3) Just like %sc -l, this is a list with special attributes:
3072 3) Just like %sc -l, this is a list with special attributes:
3073
3073
3074 .l (or .list) : value as list.
3074 .l (or .list) : value as list.
3075 .n (or .nlstr): value as newline-separated string.
3075 .n (or .nlstr): value as newline-separated string.
3076 .s (or .spstr): value as whitespace-separated string.
3076 .s (or .spstr): value as whitespace-separated string.
3077
3077
3078 This is very useful when trying to use such lists as arguments to
3078 This is very useful when trying to use such lists as arguments to
3079 system commands."""
3079 system commands."""
3080
3080
3081 if parameter_s:
3081 if parameter_s:
3082 return self.shell.getoutput(parameter_s)
3082 return self.shell.getoutput(parameter_s)
3083
3083
3084
3084
3085 def magic_bookmark(self, parameter_s=''):
3085 def magic_bookmark(self, parameter_s=''):
3086 """Manage IPython's bookmark system.
3086 """Manage IPython's bookmark system.
3087
3087
3088 %bookmark <name> - set bookmark to current dir
3088 %bookmark <name> - set bookmark to current dir
3089 %bookmark <name> <dir> - set bookmark to <dir>
3089 %bookmark <name> <dir> - set bookmark to <dir>
3090 %bookmark -l - list all bookmarks
3090 %bookmark -l - list all bookmarks
3091 %bookmark -d <name> - remove bookmark
3091 %bookmark -d <name> - remove bookmark
3092 %bookmark -r - remove all bookmarks
3092 %bookmark -r - remove all bookmarks
3093
3093
3094 You can later on access a bookmarked folder with:
3094 You can later on access a bookmarked folder with:
3095 %cd -b <name>
3095 %cd -b <name>
3096 or simply '%cd <name>' if there is no directory called <name> AND
3096 or simply '%cd <name>' if there is no directory called <name> AND
3097 there is such a bookmark defined.
3097 there is such a bookmark defined.
3098
3098
3099 Your bookmarks persist through IPython sessions, but they are
3099 Your bookmarks persist through IPython sessions, but they are
3100 associated with each profile."""
3100 associated with each profile."""
3101
3101
3102 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3102 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3103 if len(args) > 2:
3103 if len(args) > 2:
3104 raise UsageError("%bookmark: too many arguments")
3104 raise UsageError("%bookmark: too many arguments")
3105
3105
3106 bkms = self.db.get('bookmarks',{})
3106 bkms = self.db.get('bookmarks',{})
3107
3107
3108 if opts.has_key('d'):
3108 if opts.has_key('d'):
3109 try:
3109 try:
3110 todel = args[0]
3110 todel = args[0]
3111 except IndexError:
3111 except IndexError:
3112 raise UsageError(
3112 raise UsageError(
3113 "%bookmark -d: must provide a bookmark to delete")
3113 "%bookmark -d: must provide a bookmark to delete")
3114 else:
3114 else:
3115 try:
3115 try:
3116 del bkms[todel]
3116 del bkms[todel]
3117 except KeyError:
3117 except KeyError:
3118 raise UsageError(
3118 raise UsageError(
3119 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3119 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3120
3120
3121 elif opts.has_key('r'):
3121 elif opts.has_key('r'):
3122 bkms = {}
3122 bkms = {}
3123 elif opts.has_key('l'):
3123 elif opts.has_key('l'):
3124 bks = bkms.keys()
3124 bks = bkms.keys()
3125 bks.sort()
3125 bks.sort()
3126 if bks:
3126 if bks:
3127 size = max(map(len,bks))
3127 size = max(map(len,bks))
3128 else:
3128 else:
3129 size = 0
3129 size = 0
3130 fmt = '%-'+str(size)+'s -> %s'
3130 fmt = '%-'+str(size)+'s -> %s'
3131 print 'Current bookmarks:'
3131 print 'Current bookmarks:'
3132 for bk in bks:
3132 for bk in bks:
3133 print fmt % (bk,bkms[bk])
3133 print fmt % (bk,bkms[bk])
3134 else:
3134 else:
3135 if not args:
3135 if not args:
3136 raise UsageError("%bookmark: You must specify the bookmark name")
3136 raise UsageError("%bookmark: You must specify the bookmark name")
3137 elif len(args)==1:
3137 elif len(args)==1:
3138 bkms[args[0]] = os.getcwdu()
3138 bkms[args[0]] = os.getcwdu()
3139 elif len(args)==2:
3139 elif len(args)==2:
3140 bkms[args[0]] = args[1]
3140 bkms[args[0]] = args[1]
3141 self.db['bookmarks'] = bkms
3141 self.db['bookmarks'] = bkms
3142
3142
3143 def magic_pycat(self, parameter_s=''):
3143 def magic_pycat(self, parameter_s=''):
3144 """Show a syntax-highlighted file through a pager.
3144 """Show a syntax-highlighted file through a pager.
3145
3145
3146 This magic is similar to the cat utility, but it will assume the file
3146 This magic is similar to the cat utility, but it will assume the file
3147 to be Python source and will show it with syntax highlighting. """
3147 to be Python source and will show it with syntax highlighting. """
3148
3148
3149 try:
3149 try:
3150 filename = get_py_filename(parameter_s)
3150 filename = get_py_filename(parameter_s)
3151 cont = file_read(filename)
3151 cont = file_read(filename)
3152 except IOError:
3152 except IOError:
3153 try:
3153 try:
3154 cont = eval(parameter_s,self.user_ns)
3154 cont = eval(parameter_s,self.user_ns)
3155 except NameError:
3155 except NameError:
3156 cont = None
3156 cont = None
3157 if cont is None:
3157 if cont is None:
3158 print "Error: no such file or variable"
3158 print "Error: no such file or variable"
3159 return
3159 return
3160
3160
3161 page.page(self.shell.pycolorize(cont))
3161 page.page(self.shell.pycolorize(cont))
3162
3162
3163 def _rerun_pasted(self):
3163 def _rerun_pasted(self):
3164 """ Rerun a previously pasted command.
3164 """ Rerun a previously pasted command.
3165 """
3165 """
3166 b = self.user_ns.get('pasted_block', None)
3166 b = self.user_ns.get('pasted_block', None)
3167 if b is None:
3167 if b is None:
3168 raise UsageError('No previous pasted block available')
3168 raise UsageError('No previous pasted block available')
3169 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3169 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3170 exec b in self.user_ns
3170 exec b in self.user_ns
3171
3171
3172 def _get_pasted_lines(self, sentinel):
3172 def _get_pasted_lines(self, sentinel):
3173 """ Yield pasted lines until the user enters the given sentinel value.
3173 """ Yield pasted lines until the user enters the given sentinel value.
3174 """
3174 """
3175 from IPython.core import interactiveshell
3175 from IPython.core import interactiveshell
3176 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3176 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3177 while True:
3177 while True:
3178 l = interactiveshell.raw_input_original(':')
3178 l = self.shell.raw_input_original(':')
3179 if l == sentinel:
3179 if l == sentinel:
3180 return
3180 return
3181 else:
3181 else:
3182 yield l
3182 yield l
3183
3183
3184 def _strip_pasted_lines_for_code(self, raw_lines):
3184 def _strip_pasted_lines_for_code(self, raw_lines):
3185 """ Strip non-code parts of a sequence of lines to return a block of
3185 """ Strip non-code parts of a sequence of lines to return a block of
3186 code.
3186 code.
3187 """
3187 """
3188 # Regular expressions that declare text we strip from the input:
3188 # Regular expressions that declare text we strip from the input:
3189 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3189 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3190 r'^\s*(\s?>)+', # Python input prompt
3190 r'^\s*(\s?>)+', # Python input prompt
3191 r'^\s*\.{3,}', # Continuation prompts
3191 r'^\s*\.{3,}', # Continuation prompts
3192 r'^\++',
3192 r'^\++',
3193 ]
3193 ]
3194
3194
3195 strip_from_start = map(re.compile,strip_re)
3195 strip_from_start = map(re.compile,strip_re)
3196
3196
3197 lines = []
3197 lines = []
3198 for l in raw_lines:
3198 for l in raw_lines:
3199 for pat in strip_from_start:
3199 for pat in strip_from_start:
3200 l = pat.sub('',l)
3200 l = pat.sub('',l)
3201 lines.append(l)
3201 lines.append(l)
3202
3202
3203 block = "\n".join(lines) + '\n'
3203 block = "\n".join(lines) + '\n'
3204 #print "block:\n",block
3204 #print "block:\n",block
3205 return block
3205 return block
3206
3206
3207 def _execute_block(self, block, par):
3207 def _execute_block(self, block, par):
3208 """ Execute a block, or store it in a variable, per the user's request.
3208 """ Execute a block, or store it in a variable, per the user's request.
3209 """
3209 """
3210 if not par:
3210 if not par:
3211 b = textwrap.dedent(block)
3211 b = textwrap.dedent(block)
3212 self.user_ns['pasted_block'] = b
3212 self.user_ns['pasted_block'] = b
3213 exec b in self.user_ns
3213 exec b in self.user_ns
3214 else:
3214 else:
3215 self.user_ns[par] = SList(block.splitlines())
3215 self.user_ns[par] = SList(block.splitlines())
3216 print "Block assigned to '%s'" % par
3216 print "Block assigned to '%s'" % par
3217
3217
3218 def magic_quickref(self,arg):
3218 def magic_quickref(self,arg):
3219 """ Show a quick reference sheet """
3219 """ Show a quick reference sheet """
3220 import IPython.core.usage
3220 import IPython.core.usage
3221 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3221 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3222
3222
3223 page.page(qr)
3223 page.page(qr)
3224
3224
3225 def magic_doctest_mode(self,parameter_s=''):
3225 def magic_doctest_mode(self,parameter_s=''):
3226 """Toggle doctest mode on and off.
3226 """Toggle doctest mode on and off.
3227
3227
3228 This mode is intended to make IPython behave as much as possible like a
3228 This mode is intended to make IPython behave as much as possible like a
3229 plain Python shell, from the perspective of how its prompts, exceptions
3229 plain Python shell, from the perspective of how its prompts, exceptions
3230 and output look. This makes it easy to copy and paste parts of a
3230 and output look. This makes it easy to copy and paste parts of a
3231 session into doctests. It does so by:
3231 session into doctests. It does so by:
3232
3232
3233 - Changing the prompts to the classic ``>>>`` ones.
3233 - Changing the prompts to the classic ``>>>`` ones.
3234 - Changing the exception reporting mode to 'Plain'.
3234 - Changing the exception reporting mode to 'Plain'.
3235 - Disabling pretty-printing of output.
3235 - Disabling pretty-printing of output.
3236
3236
3237 Note that IPython also supports the pasting of code snippets that have
3237 Note that IPython also supports the pasting of code snippets that have
3238 leading '>>>' and '...' prompts in them. This means that you can paste
3238 leading '>>>' and '...' prompts in them. This means that you can paste
3239 doctests from files or docstrings (even if they have leading
3239 doctests from files or docstrings (even if they have leading
3240 whitespace), and the code will execute correctly. You can then use
3240 whitespace), and the code will execute correctly. You can then use
3241 '%history -t' to see the translated history; this will give you the
3241 '%history -t' to see the translated history; this will give you the
3242 input after removal of all the leading prompts and whitespace, which
3242 input after removal of all the leading prompts and whitespace, which
3243 can be pasted back into an editor.
3243 can be pasted back into an editor.
3244
3244
3245 With these features, you can switch into this mode easily whenever you
3245 With these features, you can switch into this mode easily whenever you
3246 need to do testing and changes to doctests, without having to leave
3246 need to do testing and changes to doctests, without having to leave
3247 your existing IPython session.
3247 your existing IPython session.
3248 """
3248 """
3249
3249
3250 from IPython.utils.ipstruct import Struct
3250 from IPython.utils.ipstruct import Struct
3251
3251
3252 # Shorthands
3252 # Shorthands
3253 shell = self.shell
3253 shell = self.shell
3254 oc = shell.displayhook
3254 oc = shell.displayhook
3255 meta = shell.meta
3255 meta = shell.meta
3256 disp_formatter = self.shell.display_formatter
3256 disp_formatter = self.shell.display_formatter
3257 ptformatter = disp_formatter.formatters['text/plain']
3257 ptformatter = disp_formatter.formatters['text/plain']
3258 # dstore is a data store kept in the instance metadata bag to track any
3258 # dstore is a data store kept in the instance metadata bag to track any
3259 # changes we make, so we can undo them later.
3259 # changes we make, so we can undo them later.
3260 dstore = meta.setdefault('doctest_mode',Struct())
3260 dstore = meta.setdefault('doctest_mode',Struct())
3261 save_dstore = dstore.setdefault
3261 save_dstore = dstore.setdefault
3262
3262
3263 # save a few values we'll need to recover later
3263 # save a few values we'll need to recover later
3264 mode = save_dstore('mode',False)
3264 mode = save_dstore('mode',False)
3265 save_dstore('rc_pprint',ptformatter.pprint)
3265 save_dstore('rc_pprint',ptformatter.pprint)
3266 save_dstore('xmode',shell.InteractiveTB.mode)
3266 save_dstore('xmode',shell.InteractiveTB.mode)
3267 save_dstore('rc_separate_out',shell.separate_out)
3267 save_dstore('rc_separate_out',shell.separate_out)
3268 save_dstore('rc_separate_out2',shell.separate_out2)
3268 save_dstore('rc_separate_out2',shell.separate_out2)
3269 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3269 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3270 save_dstore('rc_separate_in',shell.separate_in)
3270 save_dstore('rc_separate_in',shell.separate_in)
3271 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3271 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3272
3272
3273 if mode == False:
3273 if mode == False:
3274 # turn on
3274 # turn on
3275 oc.prompt1.p_template = '>>> '
3275 oc.prompt1.p_template = '>>> '
3276 oc.prompt2.p_template = '... '
3276 oc.prompt2.p_template = '... '
3277 oc.prompt_out.p_template = ''
3277 oc.prompt_out.p_template = ''
3278
3278
3279 # Prompt separators like plain python
3279 # Prompt separators like plain python
3280 oc.input_sep = oc.prompt1.sep = ''
3280 oc.input_sep = oc.prompt1.sep = ''
3281 oc.output_sep = ''
3281 oc.output_sep = ''
3282 oc.output_sep2 = ''
3282 oc.output_sep2 = ''
3283
3283
3284 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3284 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3285 oc.prompt_out.pad_left = False
3285 oc.prompt_out.pad_left = False
3286
3286
3287 ptformatter.pprint = False
3287 ptformatter.pprint = False
3288 disp_formatter.plain_text_only = True
3288 disp_formatter.plain_text_only = True
3289
3289
3290 shell.magic_xmode('Plain')
3290 shell.magic_xmode('Plain')
3291 else:
3291 else:
3292 # turn off
3292 # turn off
3293 oc.prompt1.p_template = shell.prompt_in1
3293 oc.prompt1.p_template = shell.prompt_in1
3294 oc.prompt2.p_template = shell.prompt_in2
3294 oc.prompt2.p_template = shell.prompt_in2
3295 oc.prompt_out.p_template = shell.prompt_out
3295 oc.prompt_out.p_template = shell.prompt_out
3296
3296
3297 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3297 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3298
3298
3299 oc.output_sep = dstore.rc_separate_out
3299 oc.output_sep = dstore.rc_separate_out
3300 oc.output_sep2 = dstore.rc_separate_out2
3300 oc.output_sep2 = dstore.rc_separate_out2
3301
3301
3302 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3302 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3303 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3303 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3304
3304
3305 ptformatter.pprint = dstore.rc_pprint
3305 ptformatter.pprint = dstore.rc_pprint
3306 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3306 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3307
3307
3308 shell.magic_xmode(dstore.xmode)
3308 shell.magic_xmode(dstore.xmode)
3309
3309
3310 # Store new mode and inform
3310 # Store new mode and inform
3311 dstore.mode = bool(1-int(mode))
3311 dstore.mode = bool(1-int(mode))
3312 mode_label = ['OFF','ON'][dstore.mode]
3312 mode_label = ['OFF','ON'][dstore.mode]
3313 print 'Doctest mode is:', mode_label
3313 print 'Doctest mode is:', mode_label
3314
3314
3315 def magic_gui(self, parameter_s=''):
3315 def magic_gui(self, parameter_s=''):
3316 """Enable or disable IPython GUI event loop integration.
3316 """Enable or disable IPython GUI event loop integration.
3317
3317
3318 %gui [GUINAME]
3318 %gui [GUINAME]
3319
3319
3320 This magic replaces IPython's threaded shells that were activated
3320 This magic replaces IPython's threaded shells that were activated
3321 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3321 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3322 can now be enabled, disabled and changed at runtime and keyboard
3322 can now be enabled, disabled and changed at runtime and keyboard
3323 interrupts should work without any problems. The following toolkits
3323 interrupts should work without any problems. The following toolkits
3324 are supported: wxPython, PyQt4, PyGTK, and Tk::
3324 are supported: wxPython, PyQt4, PyGTK, and Tk::
3325
3325
3326 %gui wx # enable wxPython event loop integration
3326 %gui wx # enable wxPython event loop integration
3327 %gui qt4|qt # enable PyQt4 event loop integration
3327 %gui qt4|qt # enable PyQt4 event loop integration
3328 %gui gtk # enable PyGTK event loop integration
3328 %gui gtk # enable PyGTK event loop integration
3329 %gui tk # enable Tk event loop integration
3329 %gui tk # enable Tk event loop integration
3330 %gui # disable all event loop integration
3330 %gui # disable all event loop integration
3331
3331
3332 WARNING: after any of these has been called you can simply create
3332 WARNING: after any of these has been called you can simply create
3333 an application object, but DO NOT start the event loop yourself, as
3333 an application object, but DO NOT start the event loop yourself, as
3334 we have already handled that.
3334 we have already handled that.
3335 """
3335 """
3336 from IPython.lib.inputhook import enable_gui
3336 from IPython.lib.inputhook import enable_gui
3337 opts, arg = self.parse_options(parameter_s, '')
3337 opts, arg = self.parse_options(parameter_s, '')
3338 if arg=='': arg = None
3338 if arg=='': arg = None
3339 return enable_gui(arg)
3339 return enable_gui(arg)
3340
3340
3341 def magic_load_ext(self, module_str):
3341 def magic_load_ext(self, module_str):
3342 """Load an IPython extension by its module name."""
3342 """Load an IPython extension by its module name."""
3343 return self.extension_manager.load_extension(module_str)
3343 return self.extension_manager.load_extension(module_str)
3344
3344
3345 def magic_unload_ext(self, module_str):
3345 def magic_unload_ext(self, module_str):
3346 """Unload an IPython extension by its module name."""
3346 """Unload an IPython extension by its module name."""
3347 self.extension_manager.unload_extension(module_str)
3347 self.extension_manager.unload_extension(module_str)
3348
3348
3349 def magic_reload_ext(self, module_str):
3349 def magic_reload_ext(self, module_str):
3350 """Reload an IPython extension by its module name."""
3350 """Reload an IPython extension by its module name."""
3351 self.extension_manager.reload_extension(module_str)
3351 self.extension_manager.reload_extension(module_str)
3352
3352
3353 @skip_doctest
3353 @skip_doctest
3354 def magic_install_profiles(self, s):
3354 def magic_install_profiles(self, s):
3355 """Install the default IPython profiles into the .ipython dir.
3355 """Install the default IPython profiles into the .ipython dir.
3356
3356
3357 If the default profiles have already been installed, they will not
3357 If the default profiles have already been installed, they will not
3358 be overwritten. You can force overwriting them by using the ``-o``
3358 be overwritten. You can force overwriting them by using the ``-o``
3359 option::
3359 option::
3360
3360
3361 In [1]: %install_profiles -o
3361 In [1]: %install_profiles -o
3362 """
3362 """
3363 if '-o' in s:
3363 if '-o' in s:
3364 overwrite = True
3364 overwrite = True
3365 else:
3365 else:
3366 overwrite = False
3366 overwrite = False
3367 from IPython.config import profile
3367 from IPython.config import profile
3368 profile_dir = os.path.dirname(profile.__file__)
3368 profile_dir = os.path.dirname(profile.__file__)
3369 ipython_dir = self.ipython_dir
3369 ipython_dir = self.ipython_dir
3370 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3370 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3371 for src in os.listdir(profile_dir):
3371 for src in os.listdir(profile_dir):
3372 if src.startswith('profile_'):
3372 if src.startswith('profile_'):
3373 name = src.replace('profile_', '')
3373 name = src.replace('profile_', '')
3374 print " %s"%name
3374 print " %s"%name
3375 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3375 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3376 pd.copy_config_file('ipython_config.py', path=src,
3376 pd.copy_config_file('ipython_config.py', path=src,
3377 overwrite=overwrite)
3377 overwrite=overwrite)
3378
3378
3379 @skip_doctest
3379 @skip_doctest
3380 def magic_install_default_config(self, s):
3380 def magic_install_default_config(self, s):
3381 """Install IPython's default config file into the .ipython dir.
3381 """Install IPython's default config file into the .ipython dir.
3382
3382
3383 If the default config file (:file:`ipython_config.py`) is already
3383 If the default config file (:file:`ipython_config.py`) is already
3384 installed, it will not be overwritten. You can force overwriting
3384 installed, it will not be overwritten. You can force overwriting
3385 by using the ``-o`` option::
3385 by using the ``-o`` option::
3386
3386
3387 In [1]: %install_default_config
3387 In [1]: %install_default_config
3388 """
3388 """
3389 if '-o' in s:
3389 if '-o' in s:
3390 overwrite = True
3390 overwrite = True
3391 else:
3391 else:
3392 overwrite = False
3392 overwrite = False
3393 pd = self.shell.profile_dir
3393 pd = self.shell.profile_dir
3394 print "Installing default config file in: %s" % pd.location
3394 print "Installing default config file in: %s" % pd.location
3395 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3395 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3396
3396
3397 # Pylab support: simple wrappers that activate pylab, load gui input
3397 # Pylab support: simple wrappers that activate pylab, load gui input
3398 # handling and modify slightly %run
3398 # handling and modify slightly %run
3399
3399
3400 @skip_doctest
3400 @skip_doctest
3401 def _pylab_magic_run(self, parameter_s=''):
3401 def _pylab_magic_run(self, parameter_s=''):
3402 Magic.magic_run(self, parameter_s,
3402 Magic.magic_run(self, parameter_s,
3403 runner=mpl_runner(self.shell.safe_execfile))
3403 runner=mpl_runner(self.shell.safe_execfile))
3404
3404
3405 _pylab_magic_run.__doc__ = magic_run.__doc__
3405 _pylab_magic_run.__doc__ = magic_run.__doc__
3406
3406
3407 @skip_doctest
3407 @skip_doctest
3408 def magic_pylab(self, s):
3408 def magic_pylab(self, s):
3409 """Load numpy and matplotlib to work interactively.
3409 """Load numpy and matplotlib to work interactively.
3410
3410
3411 %pylab [GUINAME]
3411 %pylab [GUINAME]
3412
3412
3413 This function lets you activate pylab (matplotlib, numpy and
3413 This function lets you activate pylab (matplotlib, numpy and
3414 interactive support) at any point during an IPython session.
3414 interactive support) at any point during an IPython session.
3415
3415
3416 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3416 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3417 pylab and mlab, as well as all names from numpy and pylab.
3417 pylab and mlab, as well as all names from numpy and pylab.
3418
3418
3419 Parameters
3419 Parameters
3420 ----------
3420 ----------
3421 guiname : optional
3421 guiname : optional
3422 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3422 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3423 'tk'). If given, the corresponding Matplotlib backend is used,
3423 'tk'). If given, the corresponding Matplotlib backend is used,
3424 otherwise matplotlib's default (which you can override in your
3424 otherwise matplotlib's default (which you can override in your
3425 matplotlib config file) is used.
3425 matplotlib config file) is used.
3426
3426
3427 Examples
3427 Examples
3428 --------
3428 --------
3429 In this case, where the MPL default is TkAgg:
3429 In this case, where the MPL default is TkAgg:
3430 In [2]: %pylab
3430 In [2]: %pylab
3431
3431
3432 Welcome to pylab, a matplotlib-based Python environment.
3432 Welcome to pylab, a matplotlib-based Python environment.
3433 Backend in use: TkAgg
3433 Backend in use: TkAgg
3434 For more information, type 'help(pylab)'.
3434 For more information, type 'help(pylab)'.
3435
3435
3436 But you can explicitly request a different backend:
3436 But you can explicitly request a different backend:
3437 In [3]: %pylab qt
3437 In [3]: %pylab qt
3438
3438
3439 Welcome to pylab, a matplotlib-based Python environment.
3439 Welcome to pylab, a matplotlib-based Python environment.
3440 Backend in use: Qt4Agg
3440 Backend in use: Qt4Agg
3441 For more information, type 'help(pylab)'.
3441 For more information, type 'help(pylab)'.
3442 """
3442 """
3443 self.shell.enable_pylab(s)
3443 self.shell.enable_pylab(s)
3444
3444
3445 def magic_tb(self, s):
3445 def magic_tb(self, s):
3446 """Print the last traceback with the currently active exception mode.
3446 """Print the last traceback with the currently active exception mode.
3447
3447
3448 See %xmode for changing exception reporting modes."""
3448 See %xmode for changing exception reporting modes."""
3449 self.shell.showtraceback()
3449 self.shell.showtraceback()
3450
3450
3451 @skip_doctest
3451 @skip_doctest
3452 def magic_precision(self, s=''):
3452 def magic_precision(self, s=''):
3453 """Set floating point precision for pretty printing.
3453 """Set floating point precision for pretty printing.
3454
3454
3455 Can set either integer precision or a format string.
3455 Can set either integer precision or a format string.
3456
3456
3457 If numpy has been imported and precision is an int,
3457 If numpy has been imported and precision is an int,
3458 numpy display precision will also be set, via ``numpy.set_printoptions``.
3458 numpy display precision will also be set, via ``numpy.set_printoptions``.
3459
3459
3460 If no argument is given, defaults will be restored.
3460 If no argument is given, defaults will be restored.
3461
3461
3462 Examples
3462 Examples
3463 --------
3463 --------
3464 ::
3464 ::
3465
3465
3466 In [1]: from math import pi
3466 In [1]: from math import pi
3467
3467
3468 In [2]: %precision 3
3468 In [2]: %precision 3
3469 Out[2]: u'%.3f'
3469 Out[2]: u'%.3f'
3470
3470
3471 In [3]: pi
3471 In [3]: pi
3472 Out[3]: 3.142
3472 Out[3]: 3.142
3473
3473
3474 In [4]: %precision %i
3474 In [4]: %precision %i
3475 Out[4]: u'%i'
3475 Out[4]: u'%i'
3476
3476
3477 In [5]: pi
3477 In [5]: pi
3478 Out[5]: 3
3478 Out[5]: 3
3479
3479
3480 In [6]: %precision %e
3480 In [6]: %precision %e
3481 Out[6]: u'%e'
3481 Out[6]: u'%e'
3482
3482
3483 In [7]: pi**10
3483 In [7]: pi**10
3484 Out[7]: 9.364805e+04
3484 Out[7]: 9.364805e+04
3485
3485
3486 In [8]: %precision
3486 In [8]: %precision
3487 Out[8]: u'%r'
3487 Out[8]: u'%r'
3488
3488
3489 In [9]: pi**10
3489 In [9]: pi**10
3490 Out[9]: 93648.047476082982
3490 Out[9]: 93648.047476082982
3491
3491
3492 """
3492 """
3493
3493
3494 ptformatter = self.shell.display_formatter.formatters['text/plain']
3494 ptformatter = self.shell.display_formatter.formatters['text/plain']
3495 ptformatter.float_precision = s
3495 ptformatter.float_precision = s
3496 return ptformatter.float_format
3496 return ptformatter.float_format
3497
3497
3498 # end Magic
3498 # end Magic
@@ -1,597 +1,592 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Subclass of InteractiveShell for terminal based frontends."""
2 """Subclass of InteractiveShell for terminal based frontends."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 # Copyright (C) 2008-2010 The IPython Development Team
7 # Copyright (C) 2008-2010 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 import __builtin__
17 import __builtin__
18 import bdb
18 import bdb
19 from contextlib import nested
19 from contextlib import nested
20 import os
20 import os
21 import re
21 import re
22 import sys
22 import sys
23
23
24 from IPython.core.error import TryNext
24 from IPython.core.error import TryNext
25 from IPython.core.usage import interactive_usage, default_banner
25 from IPython.core.usage import interactive_usage, default_banner
26 from IPython.core.interactiveshell import InteractiveShell, InteractiveShellABC
26 from IPython.core.interactiveshell import InteractiveShell, InteractiveShellABC
27 from IPython.lib.inputhook import enable_gui
27 from IPython.lib.inputhook import enable_gui
28 from IPython.lib.pylabtools import pylab_activate
28 from IPython.lib.pylabtools import pylab_activate
29 from IPython.testing.skipdoctest import skip_doctest
29 from IPython.testing.skipdoctest import skip_doctest
30 from IPython.utils.terminal import toggle_set_term_title, set_term_title
30 from IPython.utils.terminal import toggle_set_term_title, set_term_title
31 from IPython.utils.process import abbrev_cwd
31 from IPython.utils.process import abbrev_cwd
32 from IPython.utils.warn import warn
32 from IPython.utils.warn import warn
33 from IPython.utils.text import num_ini_spaces
33 from IPython.utils.text import num_ini_spaces
34 from IPython.utils.traitlets import Int, CBool, Unicode
34 from IPython.utils.traitlets import Int, CBool, Unicode
35
35
36 #-----------------------------------------------------------------------------
36 #-----------------------------------------------------------------------------
37 # Utilities
37 # Utilities
38 #-----------------------------------------------------------------------------
38 #-----------------------------------------------------------------------------
39
39
40 def get_default_editor():
40 def get_default_editor():
41 try:
41 try:
42 ed = os.environ['EDITOR']
42 ed = os.environ['EDITOR']
43 except KeyError:
43 except KeyError:
44 if os.name == 'posix':
44 if os.name == 'posix':
45 ed = 'vi' # the only one guaranteed to be there!
45 ed = 'vi' # the only one guaranteed to be there!
46 else:
46 else:
47 ed = 'notepad' # same in Windows!
47 ed = 'notepad' # same in Windows!
48 return ed
48 return ed
49
49
50
51 # store the builtin raw_input globally, and use this always, in case user code
52 # overwrites it (like wx.py.PyShell does)
53 raw_input_original = raw_input
54
55 #-----------------------------------------------------------------------------
50 #-----------------------------------------------------------------------------
56 # Main class
51 # Main class
57 #-----------------------------------------------------------------------------
52 #-----------------------------------------------------------------------------
58
53
59 class TerminalInteractiveShell(InteractiveShell):
54 class TerminalInteractiveShell(InteractiveShell):
60
55
61 autoedit_syntax = CBool(False, config=True,
56 autoedit_syntax = CBool(False, config=True,
62 help="auto editing of files with syntax errors.")
57 help="auto editing of files with syntax errors.")
63 banner = Unicode('')
58 banner = Unicode('')
64 banner1 = Unicode(default_banner, config=True,
59 banner1 = Unicode(default_banner, config=True,
65 help="""The part of the banner to be printed before the profile"""
60 help="""The part of the banner to be printed before the profile"""
66 )
61 )
67 banner2 = Unicode('', config=True,
62 banner2 = Unicode('', config=True,
68 help="""The part of the banner to be printed after the profile"""
63 help="""The part of the banner to be printed after the profile"""
69 )
64 )
70 confirm_exit = CBool(True, config=True,
65 confirm_exit = CBool(True, config=True,
71 help="""
66 help="""
72 Set to confirm when you try to exit IPython with an EOF (Control-D
67 Set to confirm when you try to exit IPython with an EOF (Control-D
73 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
68 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
74 you can force a direct exit without any confirmation.""",
69 you can force a direct exit without any confirmation.""",
75 )
70 )
76 # This display_banner only controls whether or not self.show_banner()
71 # This display_banner only controls whether or not self.show_banner()
77 # is called when mainloop/interact are called. The default is False
72 # is called when mainloop/interact are called. The default is False
78 # because for the terminal based application, the banner behavior
73 # because for the terminal based application, the banner behavior
79 # is controlled by Global.display_banner, which IPythonApp looks at
74 # is controlled by Global.display_banner, which IPythonApp looks at
80 # to determine if *it* should call show_banner() by hand or not.
75 # to determine if *it* should call show_banner() by hand or not.
81 display_banner = CBool(False) # This isn't configurable!
76 display_banner = CBool(False) # This isn't configurable!
82 embedded = CBool(False)
77 embedded = CBool(False)
83 embedded_active = CBool(False)
78 embedded_active = CBool(False)
84 editor = Unicode(get_default_editor(), config=True,
79 editor = Unicode(get_default_editor(), config=True,
85 help="Set the editor used by IPython (default to $EDITOR/vi/notepad)."
80 help="Set the editor used by IPython (default to $EDITOR/vi/notepad)."
86 )
81 )
87 pager = Unicode('less', config=True,
82 pager = Unicode('less', config=True,
88 help="The shell program to be used for paging.")
83 help="The shell program to be used for paging.")
89
84
90 screen_length = Int(0, config=True,
85 screen_length = Int(0, config=True,
91 help=
86 help=
92 """Number of lines of your screen, used to control printing of very
87 """Number of lines of your screen, used to control printing of very
93 long strings. Strings longer than this number of lines will be sent
88 long strings. Strings longer than this number of lines will be sent
94 through a pager instead of directly printed. The default value for
89 through a pager instead of directly printed. The default value for
95 this is 0, which means IPython will auto-detect your screen size every
90 this is 0, which means IPython will auto-detect your screen size every
96 time it needs to print certain potentially long strings (this doesn't
91 time it needs to print certain potentially long strings (this doesn't
97 change the behavior of the 'print' keyword, it's only triggered
92 change the behavior of the 'print' keyword, it's only triggered
98 internally). If for some reason this isn't working well (it needs
93 internally). If for some reason this isn't working well (it needs
99 curses support), specify it yourself. Otherwise don't change the
94 curses support), specify it yourself. Otherwise don't change the
100 default.""",
95 default.""",
101 )
96 )
102 term_title = CBool(False, config=True,
97 term_title = CBool(False, config=True,
103 help="Enable auto setting the terminal title."
98 help="Enable auto setting the terminal title."
104 )
99 )
105
100
106 def __init__(self, config=None, ipython_dir=None, profile_dir=None, user_ns=None,
101 def __init__(self, config=None, ipython_dir=None, profile_dir=None, user_ns=None,
107 user_global_ns=None, custom_exceptions=((),None),
102 user_global_ns=None, custom_exceptions=((),None),
108 usage=None, banner1=None, banner2=None,
103 usage=None, banner1=None, banner2=None,
109 display_banner=None):
104 display_banner=None):
110
105
111 super(TerminalInteractiveShell, self).__init__(
106 super(TerminalInteractiveShell, self).__init__(
112 config=config, profile_dir=profile_dir, user_ns=user_ns,
107 config=config, profile_dir=profile_dir, user_ns=user_ns,
113 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions
108 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions
114 )
109 )
115 # use os.system instead of utils.process.system by default, except on Windows
110 # use os.system instead of utils.process.system by default, except on Windows
116 if os.name == 'nt':
111 if os.name == 'nt':
117 self.system = self.system_piped
112 self.system = self.system_piped
118 else:
113 else:
119 self.system = self.system_raw
114 self.system = self.system_raw
120
115
121 self.init_term_title()
116 self.init_term_title()
122 self.init_usage(usage)
117 self.init_usage(usage)
123 self.init_banner(banner1, banner2, display_banner)
118 self.init_banner(banner1, banner2, display_banner)
124
119
125 #-------------------------------------------------------------------------
120 #-------------------------------------------------------------------------
126 # Things related to the terminal
121 # Things related to the terminal
127 #-------------------------------------------------------------------------
122 #-------------------------------------------------------------------------
128
123
129 @property
124 @property
130 def usable_screen_length(self):
125 def usable_screen_length(self):
131 if self.screen_length == 0:
126 if self.screen_length == 0:
132 return 0
127 return 0
133 else:
128 else:
134 num_lines_bot = self.separate_in.count('\n')+1
129 num_lines_bot = self.separate_in.count('\n')+1
135 return self.screen_length - num_lines_bot
130 return self.screen_length - num_lines_bot
136
131
137 def init_term_title(self):
132 def init_term_title(self):
138 # Enable or disable the terminal title.
133 # Enable or disable the terminal title.
139 if self.term_title:
134 if self.term_title:
140 toggle_set_term_title(True)
135 toggle_set_term_title(True)
141 set_term_title('IPython: ' + abbrev_cwd())
136 set_term_title('IPython: ' + abbrev_cwd())
142 else:
137 else:
143 toggle_set_term_title(False)
138 toggle_set_term_title(False)
144
139
145 #-------------------------------------------------------------------------
140 #-------------------------------------------------------------------------
146 # Things related to aliases
141 # Things related to aliases
147 #-------------------------------------------------------------------------
142 #-------------------------------------------------------------------------
148
143
149 def init_alias(self):
144 def init_alias(self):
150 # The parent class defines aliases that can be safely used with any
145 # The parent class defines aliases that can be safely used with any
151 # frontend.
146 # frontend.
152 super(TerminalInteractiveShell, self).init_alias()
147 super(TerminalInteractiveShell, self).init_alias()
153
148
154 # Now define aliases that only make sense on the terminal, because they
149 # Now define aliases that only make sense on the terminal, because they
155 # need direct access to the console in a way that we can't emulate in
150 # need direct access to the console in a way that we can't emulate in
156 # GUI or web frontend
151 # GUI or web frontend
157 if os.name == 'posix':
152 if os.name == 'posix':
158 aliases = [('clear', 'clear'), ('more', 'more'), ('less', 'less'),
153 aliases = [('clear', 'clear'), ('more', 'more'), ('less', 'less'),
159 ('man', 'man')]
154 ('man', 'man')]
160 elif os.name == 'nt':
155 elif os.name == 'nt':
161 aliases = [('cls', 'cls')]
156 aliases = [('cls', 'cls')]
162
157
163
158
164 for name, cmd in aliases:
159 for name, cmd in aliases:
165 self.alias_manager.define_alias(name, cmd)
160 self.alias_manager.define_alias(name, cmd)
166
161
167 #-------------------------------------------------------------------------
162 #-------------------------------------------------------------------------
168 # Things related to the banner and usage
163 # Things related to the banner and usage
169 #-------------------------------------------------------------------------
164 #-------------------------------------------------------------------------
170
165
171 def _banner1_changed(self):
166 def _banner1_changed(self):
172 self.compute_banner()
167 self.compute_banner()
173
168
174 def _banner2_changed(self):
169 def _banner2_changed(self):
175 self.compute_banner()
170 self.compute_banner()
176
171
177 def _term_title_changed(self, name, new_value):
172 def _term_title_changed(self, name, new_value):
178 self.init_term_title()
173 self.init_term_title()
179
174
180 def init_banner(self, banner1, banner2, display_banner):
175 def init_banner(self, banner1, banner2, display_banner):
181 if banner1 is not None:
176 if banner1 is not None:
182 self.banner1 = banner1
177 self.banner1 = banner1
183 if banner2 is not None:
178 if banner2 is not None:
184 self.banner2 = banner2
179 self.banner2 = banner2
185 if display_banner is not None:
180 if display_banner is not None:
186 self.display_banner = display_banner
181 self.display_banner = display_banner
187 self.compute_banner()
182 self.compute_banner()
188
183
189 def show_banner(self, banner=None):
184 def show_banner(self, banner=None):
190 if banner is None:
185 if banner is None:
191 banner = self.banner
186 banner = self.banner
192 self.write(banner)
187 self.write(banner)
193
188
194 def compute_banner(self):
189 def compute_banner(self):
195 self.banner = self.banner1
190 self.banner = self.banner1
196 if self.profile and self.profile != 'default':
191 if self.profile and self.profile != 'default':
197 self.banner += '\nIPython profile: %s\n' % self.profile
192 self.banner += '\nIPython profile: %s\n' % self.profile
198 if self.banner2:
193 if self.banner2:
199 self.banner += '\n' + self.banner2
194 self.banner += '\n' + self.banner2
200
195
201 def init_usage(self, usage=None):
196 def init_usage(self, usage=None):
202 if usage is None:
197 if usage is None:
203 self.usage = interactive_usage
198 self.usage = interactive_usage
204 else:
199 else:
205 self.usage = usage
200 self.usage = usage
206
201
207 #-------------------------------------------------------------------------
202 #-------------------------------------------------------------------------
208 # Mainloop and code execution logic
203 # Mainloop and code execution logic
209 #-------------------------------------------------------------------------
204 #-------------------------------------------------------------------------
210
205
211 def mainloop(self, display_banner=None):
206 def mainloop(self, display_banner=None):
212 """Start the mainloop.
207 """Start the mainloop.
213
208
214 If an optional banner argument is given, it will override the
209 If an optional banner argument is given, it will override the
215 internally created default banner.
210 internally created default banner.
216 """
211 """
217
212
218 with nested(self.builtin_trap, self.display_trap):
213 with nested(self.builtin_trap, self.display_trap):
219
214
220 while 1:
215 while 1:
221 try:
216 try:
222 self.interact(display_banner=display_banner)
217 self.interact(display_banner=display_banner)
223 #self.interact_with_readline()
218 #self.interact_with_readline()
224 # XXX for testing of a readline-decoupled repl loop, call
219 # XXX for testing of a readline-decoupled repl loop, call
225 # interact_with_readline above
220 # interact_with_readline above
226 break
221 break
227 except KeyboardInterrupt:
222 except KeyboardInterrupt:
228 # this should not be necessary, but KeyboardInterrupt
223 # this should not be necessary, but KeyboardInterrupt
229 # handling seems rather unpredictable...
224 # handling seems rather unpredictable...
230 self.write("\nKeyboardInterrupt in interact()\n")
225 self.write("\nKeyboardInterrupt in interact()\n")
231
226
232 def interact(self, display_banner=None):
227 def interact(self, display_banner=None):
233 """Closely emulate the interactive Python console."""
228 """Closely emulate the interactive Python console."""
234
229
235 # batch run -> do not interact
230 # batch run -> do not interact
236 if self.exit_now:
231 if self.exit_now:
237 return
232 return
238
233
239 if display_banner is None:
234 if display_banner is None:
240 display_banner = self.display_banner
235 display_banner = self.display_banner
241
236
242 if isinstance(display_banner, basestring):
237 if isinstance(display_banner, basestring):
243 self.show_banner(display_banner)
238 self.show_banner(display_banner)
244 elif display_banner:
239 elif display_banner:
245 self.show_banner()
240 self.show_banner()
246
241
247 more = False
242 more = False
248
243
249 # Mark activity in the builtins
244 # Mark activity in the builtins
250 __builtin__.__dict__['__IPYTHON__active'] += 1
245 __builtin__.__dict__['__IPYTHON__active'] += 1
251
246
252 if self.has_readline:
247 if self.has_readline:
253 self.readline_startup_hook(self.pre_readline)
248 self.readline_startup_hook(self.pre_readline)
254 # exit_now is set by a call to %Exit or %Quit, through the
249 # exit_now is set by a call to %Exit or %Quit, through the
255 # ask_exit callback.
250 # ask_exit callback.
256
251
257 while not self.exit_now:
252 while not self.exit_now:
258 self.hooks.pre_prompt_hook()
253 self.hooks.pre_prompt_hook()
259 if more:
254 if more:
260 try:
255 try:
261 prompt = self.hooks.generate_prompt(True)
256 prompt = self.hooks.generate_prompt(True)
262 except:
257 except:
263 self.showtraceback()
258 self.showtraceback()
264 if self.autoindent:
259 if self.autoindent:
265 self.rl_do_indent = True
260 self.rl_do_indent = True
266
261
267 else:
262 else:
268 try:
263 try:
269 prompt = self.hooks.generate_prompt(False)
264 prompt = self.hooks.generate_prompt(False)
270 except:
265 except:
271 self.showtraceback()
266 self.showtraceback()
272 try:
267 try:
273 line = self.raw_input(prompt)
268 line = self.raw_input(prompt)
274 if self.exit_now:
269 if self.exit_now:
275 # quick exit on sys.std[in|out] close
270 # quick exit on sys.std[in|out] close
276 break
271 break
277 if self.autoindent:
272 if self.autoindent:
278 self.rl_do_indent = False
273 self.rl_do_indent = False
279
274
280 except KeyboardInterrupt:
275 except KeyboardInterrupt:
281 #double-guard against keyboardinterrupts during kbdint handling
276 #double-guard against keyboardinterrupts during kbdint handling
282 try:
277 try:
283 self.write('\nKeyboardInterrupt\n')
278 self.write('\nKeyboardInterrupt\n')
284 self.input_splitter.reset()
279 self.input_splitter.reset()
285 more = False
280 more = False
286 except KeyboardInterrupt:
281 except KeyboardInterrupt:
287 pass
282 pass
288 except EOFError:
283 except EOFError:
289 if self.autoindent:
284 if self.autoindent:
290 self.rl_do_indent = False
285 self.rl_do_indent = False
291 if self.has_readline:
286 if self.has_readline:
292 self.readline_startup_hook(None)
287 self.readline_startup_hook(None)
293 self.write('\n')
288 self.write('\n')
294 self.exit()
289 self.exit()
295 except bdb.BdbQuit:
290 except bdb.BdbQuit:
296 warn('The Python debugger has exited with a BdbQuit exception.\n'
291 warn('The Python debugger has exited with a BdbQuit exception.\n'
297 'Because of how pdb handles the stack, it is impossible\n'
292 'Because of how pdb handles the stack, it is impossible\n'
298 'for IPython to properly format this particular exception.\n'
293 'for IPython to properly format this particular exception.\n'
299 'IPython will resume normal operation.')
294 'IPython will resume normal operation.')
300 except:
295 except:
301 # exceptions here are VERY RARE, but they can be triggered
296 # exceptions here are VERY RARE, but they can be triggered
302 # asynchronously by signal handlers, for example.
297 # asynchronously by signal handlers, for example.
303 self.showtraceback()
298 self.showtraceback()
304 else:
299 else:
305 self.input_splitter.push(line)
300 self.input_splitter.push(line)
306 more = self.input_splitter.push_accepts_more()
301 more = self.input_splitter.push_accepts_more()
307 if (self.SyntaxTB.last_syntax_error and
302 if (self.SyntaxTB.last_syntax_error and
308 self.autoedit_syntax):
303 self.autoedit_syntax):
309 self.edit_syntax_error()
304 self.edit_syntax_error()
310 if not more:
305 if not more:
311 source_raw = self.input_splitter.source_raw_reset()[1]
306 source_raw = self.input_splitter.source_raw_reset()[1]
312 self.run_cell(source_raw)
307 self.run_cell(source_raw)
313
308
314 # We are off again...
309 # We are off again...
315 __builtin__.__dict__['__IPYTHON__active'] -= 1
310 __builtin__.__dict__['__IPYTHON__active'] -= 1
316
311
317 # Turn off the exit flag, so the mainloop can be restarted if desired
312 # Turn off the exit flag, so the mainloop can be restarted if desired
318 self.exit_now = False
313 self.exit_now = False
319
314
320 def raw_input(self, prompt=''):
315 def raw_input(self, prompt=''):
321 """Write a prompt and read a line.
316 """Write a prompt and read a line.
322
317
323 The returned line does not include the trailing newline.
318 The returned line does not include the trailing newline.
324 When the user enters the EOF key sequence, EOFError is raised.
319 When the user enters the EOF key sequence, EOFError is raised.
325
320
326 Optional inputs:
321 Optional inputs:
327
322
328 - prompt(''): a string to be printed to prompt the user.
323 - prompt(''): a string to be printed to prompt the user.
329
324
330 - continue_prompt(False): whether this line is the first one or a
325 - continue_prompt(False): whether this line is the first one or a
331 continuation in a sequence of inputs.
326 continuation in a sequence of inputs.
332 """
327 """
333 # Code run by the user may have modified the readline completer state.
328 # Code run by the user may have modified the readline completer state.
334 # We must ensure that our completer is back in place.
329 # We must ensure that our completer is back in place.
335
330
336 if self.has_readline:
331 if self.has_readline:
337 self.set_readline_completer()
332 self.set_readline_completer()
338
333
339 try:
334 try:
340 line = raw_input_original(prompt).decode(self.stdin_encoding)
335 line = self.raw_input_original(prompt).decode(self.stdin_encoding)
341 except ValueError:
336 except ValueError:
342 warn("\n********\nYou or a %run:ed script called sys.stdin.close()"
337 warn("\n********\nYou or a %run:ed script called sys.stdin.close()"
343 " or sys.stdout.close()!\nExiting IPython!")
338 " or sys.stdout.close()!\nExiting IPython!")
344 self.ask_exit()
339 self.ask_exit()
345 return ""
340 return ""
346
341
347 # Try to be reasonably smart about not re-indenting pasted input more
342 # Try to be reasonably smart about not re-indenting pasted input more
348 # than necessary. We do this by trimming out the auto-indent initial
343 # than necessary. We do this by trimming out the auto-indent initial
349 # spaces, if the user's actual input started itself with whitespace.
344 # spaces, if the user's actual input started itself with whitespace.
350 if self.autoindent:
345 if self.autoindent:
351 if num_ini_spaces(line) > self.indent_current_nsp:
346 if num_ini_spaces(line) > self.indent_current_nsp:
352 line = line[self.indent_current_nsp:]
347 line = line[self.indent_current_nsp:]
353 self.indent_current_nsp = 0
348 self.indent_current_nsp = 0
354
349
355 return line
350 return line
356
351
357 #-------------------------------------------------------------------------
352 #-------------------------------------------------------------------------
358 # Methods to support auto-editing of SyntaxErrors.
353 # Methods to support auto-editing of SyntaxErrors.
359 #-------------------------------------------------------------------------
354 #-------------------------------------------------------------------------
360
355
361 def edit_syntax_error(self):
356 def edit_syntax_error(self):
362 """The bottom half of the syntax error handler called in the main loop.
357 """The bottom half of the syntax error handler called in the main loop.
363
358
364 Loop until syntax error is fixed or user cancels.
359 Loop until syntax error is fixed or user cancels.
365 """
360 """
366
361
367 while self.SyntaxTB.last_syntax_error:
362 while self.SyntaxTB.last_syntax_error:
368 # copy and clear last_syntax_error
363 # copy and clear last_syntax_error
369 err = self.SyntaxTB.clear_err_state()
364 err = self.SyntaxTB.clear_err_state()
370 if not self._should_recompile(err):
365 if not self._should_recompile(err):
371 return
366 return
372 try:
367 try:
373 # may set last_syntax_error again if a SyntaxError is raised
368 # may set last_syntax_error again if a SyntaxError is raised
374 self.safe_execfile(err.filename,self.user_ns)
369 self.safe_execfile(err.filename,self.user_ns)
375 except:
370 except:
376 self.showtraceback()
371 self.showtraceback()
377 else:
372 else:
378 try:
373 try:
379 f = file(err.filename)
374 f = file(err.filename)
380 try:
375 try:
381 # This should be inside a display_trap block and I
376 # This should be inside a display_trap block and I
382 # think it is.
377 # think it is.
383 sys.displayhook(f.read())
378 sys.displayhook(f.read())
384 finally:
379 finally:
385 f.close()
380 f.close()
386 except:
381 except:
387 self.showtraceback()
382 self.showtraceback()
388
383
389 def _should_recompile(self,e):
384 def _should_recompile(self,e):
390 """Utility routine for edit_syntax_error"""
385 """Utility routine for edit_syntax_error"""
391
386
392 if e.filename in ('<ipython console>','<input>','<string>',
387 if e.filename in ('<ipython console>','<input>','<string>',
393 '<console>','<BackgroundJob compilation>',
388 '<console>','<BackgroundJob compilation>',
394 None):
389 None):
395
390
396 return False
391 return False
397 try:
392 try:
398 if (self.autoedit_syntax and
393 if (self.autoedit_syntax and
399 not self.ask_yes_no('Return to editor to correct syntax error? '
394 not self.ask_yes_no('Return to editor to correct syntax error? '
400 '[Y/n] ','y')):
395 '[Y/n] ','y')):
401 return False
396 return False
402 except EOFError:
397 except EOFError:
403 return False
398 return False
404
399
405 def int0(x):
400 def int0(x):
406 try:
401 try:
407 return int(x)
402 return int(x)
408 except TypeError:
403 except TypeError:
409 return 0
404 return 0
410 # always pass integer line and offset values to editor hook
405 # always pass integer line and offset values to editor hook
411 try:
406 try:
412 self.hooks.fix_error_editor(e.filename,
407 self.hooks.fix_error_editor(e.filename,
413 int0(e.lineno),int0(e.offset),e.msg)
408 int0(e.lineno),int0(e.offset),e.msg)
414 except TryNext:
409 except TryNext:
415 warn('Could not open editor')
410 warn('Could not open editor')
416 return False
411 return False
417 return True
412 return True
418
413
419 #-------------------------------------------------------------------------
414 #-------------------------------------------------------------------------
420 # Things related to GUI support and pylab
415 # Things related to GUI support and pylab
421 #-------------------------------------------------------------------------
416 #-------------------------------------------------------------------------
422
417
423 def enable_pylab(self, gui=None, import_all=True):
418 def enable_pylab(self, gui=None, import_all=True):
424 """Activate pylab support at runtime.
419 """Activate pylab support at runtime.
425
420
426 This turns on support for matplotlib, preloads into the interactive
421 This turns on support for matplotlib, preloads into the interactive
427 namespace all of numpy and pylab, and configures IPython to correcdtly
422 namespace all of numpy and pylab, and configures IPython to correcdtly
428 interact with the GUI event loop. The GUI backend to be used can be
423 interact with the GUI event loop. The GUI backend to be used can be
429 optionally selected with the optional :param:`gui` argument.
424 optionally selected with the optional :param:`gui` argument.
430
425
431 Parameters
426 Parameters
432 ----------
427 ----------
433 gui : optional, string
428 gui : optional, string
434
429
435 If given, dictates the choice of matplotlib GUI backend to use
430 If given, dictates the choice of matplotlib GUI backend to use
436 (should be one of IPython's supported backends, 'tk', 'qt', 'wx' or
431 (should be one of IPython's supported backends, 'tk', 'qt', 'wx' or
437 'gtk'), otherwise we use the default chosen by matplotlib (as
432 'gtk'), otherwise we use the default chosen by matplotlib (as
438 dictated by the matplotlib build-time options plus the user's
433 dictated by the matplotlib build-time options plus the user's
439 matplotlibrc configuration file).
434 matplotlibrc configuration file).
440 """
435 """
441 # We want to prevent the loading of pylab to pollute the user's
436 # We want to prevent the loading of pylab to pollute the user's
442 # namespace as shown by the %who* magics, so we execute the activation
437 # namespace as shown by the %who* magics, so we execute the activation
443 # code in an empty namespace, and we update *both* user_ns and
438 # code in an empty namespace, and we update *both* user_ns and
444 # user_ns_hidden with this information.
439 # user_ns_hidden with this information.
445 ns = {}
440 ns = {}
446 gui = pylab_activate(ns, gui, import_all)
441 gui = pylab_activate(ns, gui, import_all)
447 self.user_ns.update(ns)
442 self.user_ns.update(ns)
448 self.user_ns_hidden.update(ns)
443 self.user_ns_hidden.update(ns)
449 # Now we must activate the gui pylab wants to use, and fix %run to take
444 # Now we must activate the gui pylab wants to use, and fix %run to take
450 # plot updates into account
445 # plot updates into account
451 enable_gui(gui)
446 enable_gui(gui)
452 self.magic_run = self._pylab_magic_run
447 self.magic_run = self._pylab_magic_run
453
448
454 #-------------------------------------------------------------------------
449 #-------------------------------------------------------------------------
455 # Things related to exiting
450 # Things related to exiting
456 #-------------------------------------------------------------------------
451 #-------------------------------------------------------------------------
457
452
458 def ask_exit(self):
453 def ask_exit(self):
459 """ Ask the shell to exit. Can be overiden and used as a callback. """
454 """ Ask the shell to exit. Can be overiden and used as a callback. """
460 self.exit_now = True
455 self.exit_now = True
461
456
462 def exit(self):
457 def exit(self):
463 """Handle interactive exit.
458 """Handle interactive exit.
464
459
465 This method calls the ask_exit callback."""
460 This method calls the ask_exit callback."""
466 if self.confirm_exit:
461 if self.confirm_exit:
467 if self.ask_yes_no('Do you really want to exit ([y]/n)?','y'):
462 if self.ask_yes_no('Do you really want to exit ([y]/n)?','y'):
468 self.ask_exit()
463 self.ask_exit()
469 else:
464 else:
470 self.ask_exit()
465 self.ask_exit()
471
466
472 #------------------------------------------------------------------------
467 #------------------------------------------------------------------------
473 # Magic overrides
468 # Magic overrides
474 #------------------------------------------------------------------------
469 #------------------------------------------------------------------------
475 # Once the base class stops inheriting from magic, this code needs to be
470 # Once the base class stops inheriting from magic, this code needs to be
476 # moved into a separate machinery as well. For now, at least isolate here
471 # moved into a separate machinery as well. For now, at least isolate here
477 # the magics which this class needs to implement differently from the base
472 # the magics which this class needs to implement differently from the base
478 # class, or that are unique to it.
473 # class, or that are unique to it.
479
474
480 def magic_autoindent(self, parameter_s = ''):
475 def magic_autoindent(self, parameter_s = ''):
481 """Toggle autoindent on/off (if available)."""
476 """Toggle autoindent on/off (if available)."""
482
477
483 self.shell.set_autoindent()
478 self.shell.set_autoindent()
484 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
479 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
485
480
486 @skip_doctest
481 @skip_doctest
487 def magic_cpaste(self, parameter_s=''):
482 def magic_cpaste(self, parameter_s=''):
488 """Paste & execute a pre-formatted code block from clipboard.
483 """Paste & execute a pre-formatted code block from clipboard.
489
484
490 You must terminate the block with '--' (two minus-signs) alone on the
485 You must terminate the block with '--' (two minus-signs) alone on the
491 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
486 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
492 is the new sentinel for this operation)
487 is the new sentinel for this operation)
493
488
494 The block is dedented prior to execution to enable execution of method
489 The block is dedented prior to execution to enable execution of method
495 definitions. '>' and '+' characters at the beginning of a line are
490 definitions. '>' and '+' characters at the beginning of a line are
496 ignored, to allow pasting directly from e-mails, diff files and
491 ignored, to allow pasting directly from e-mails, diff files and
497 doctests (the '...' continuation prompt is also stripped). The
492 doctests (the '...' continuation prompt is also stripped). The
498 executed block is also assigned to variable named 'pasted_block' for
493 executed block is also assigned to variable named 'pasted_block' for
499 later editing with '%edit pasted_block'.
494 later editing with '%edit pasted_block'.
500
495
501 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
496 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
502 This assigns the pasted block to variable 'foo' as string, without
497 This assigns the pasted block to variable 'foo' as string, without
503 dedenting or executing it (preceding >>> and + is still stripped)
498 dedenting or executing it (preceding >>> and + is still stripped)
504
499
505 '%cpaste -r' re-executes the block previously entered by cpaste.
500 '%cpaste -r' re-executes the block previously entered by cpaste.
506
501
507 Do not be alarmed by garbled output on Windows (it's a readline bug).
502 Do not be alarmed by garbled output on Windows (it's a readline bug).
508 Just press enter and type -- (and press enter again) and the block
503 Just press enter and type -- (and press enter again) and the block
509 will be what was just pasted.
504 will be what was just pasted.
510
505
511 IPython statements (magics, shell escapes) are not supported (yet).
506 IPython statements (magics, shell escapes) are not supported (yet).
512
507
513 See also
508 See also
514 --------
509 --------
515 paste: automatically pull code from clipboard.
510 paste: automatically pull code from clipboard.
516
511
517 Examples
512 Examples
518 --------
513 --------
519 ::
514 ::
520
515
521 In [8]: %cpaste
516 In [8]: %cpaste
522 Pasting code; enter '--' alone on the line to stop.
517 Pasting code; enter '--' alone on the line to stop.
523 :>>> a = ["world!", "Hello"]
518 :>>> a = ["world!", "Hello"]
524 :>>> print " ".join(sorted(a))
519 :>>> print " ".join(sorted(a))
525 :--
520 :--
526 Hello world!
521 Hello world!
527 """
522 """
528
523
529 opts,args = self.parse_options(parameter_s,'rs:',mode='string')
524 opts,args = self.parse_options(parameter_s,'rs:',mode='string')
530 par = args.strip()
525 par = args.strip()
531 if opts.has_key('r'):
526 if opts.has_key('r'):
532 self._rerun_pasted()
527 self._rerun_pasted()
533 return
528 return
534
529
535 sentinel = opts.get('s','--')
530 sentinel = opts.get('s','--')
536
531
537 block = self._strip_pasted_lines_for_code(
532 block = self._strip_pasted_lines_for_code(
538 self._get_pasted_lines(sentinel))
533 self._get_pasted_lines(sentinel))
539
534
540 self._execute_block(block, par)
535 self._execute_block(block, par)
541
536
542 def magic_paste(self, parameter_s=''):
537 def magic_paste(self, parameter_s=''):
543 """Paste & execute a pre-formatted code block from clipboard.
538 """Paste & execute a pre-formatted code block from clipboard.
544
539
545 The text is pulled directly from the clipboard without user
540 The text is pulled directly from the clipboard without user
546 intervention and printed back on the screen before execution (unless
541 intervention and printed back on the screen before execution (unless
547 the -q flag is given to force quiet mode).
542 the -q flag is given to force quiet mode).
548
543
549 The block is dedented prior to execution to enable execution of method
544 The block is dedented prior to execution to enable execution of method
550 definitions. '>' and '+' characters at the beginning of a line are
545 definitions. '>' and '+' characters at the beginning of a line are
551 ignored, to allow pasting directly from e-mails, diff files and
546 ignored, to allow pasting directly from e-mails, diff files and
552 doctests (the '...' continuation prompt is also stripped). The
547 doctests (the '...' continuation prompt is also stripped). The
553 executed block is also assigned to variable named 'pasted_block' for
548 executed block is also assigned to variable named 'pasted_block' for
554 later editing with '%edit pasted_block'.
549 later editing with '%edit pasted_block'.
555
550
556 You can also pass a variable name as an argument, e.g. '%paste foo'.
551 You can also pass a variable name as an argument, e.g. '%paste foo'.
557 This assigns the pasted block to variable 'foo' as string, without
552 This assigns the pasted block to variable 'foo' as string, without
558 dedenting or executing it (preceding >>> and + is still stripped)
553 dedenting or executing it (preceding >>> and + is still stripped)
559
554
560 Options
555 Options
561 -------
556 -------
562
557
563 -r: re-executes the block previously entered by cpaste.
558 -r: re-executes the block previously entered by cpaste.
564
559
565 -q: quiet mode: do not echo the pasted text back to the terminal.
560 -q: quiet mode: do not echo the pasted text back to the terminal.
566
561
567 IPython statements (magics, shell escapes) are not supported (yet).
562 IPython statements (magics, shell escapes) are not supported (yet).
568
563
569 See also
564 See also
570 --------
565 --------
571 cpaste: manually paste code into terminal until you mark its end.
566 cpaste: manually paste code into terminal until you mark its end.
572 """
567 """
573 opts,args = self.parse_options(parameter_s,'rq',mode='string')
568 opts,args = self.parse_options(parameter_s,'rq',mode='string')
574 par = args.strip()
569 par = args.strip()
575 if opts.has_key('r'):
570 if opts.has_key('r'):
576 self._rerun_pasted()
571 self._rerun_pasted()
577 return
572 return
578
573
579 text = self.shell.hooks.clipboard_get()
574 text = self.shell.hooks.clipboard_get()
580 block = self._strip_pasted_lines_for_code(text.splitlines())
575 block = self._strip_pasted_lines_for_code(text.splitlines())
581
576
582 # By default, echo back to terminal unless quiet mode is requested
577 # By default, echo back to terminal unless quiet mode is requested
583 if not opts.has_key('q'):
578 if not opts.has_key('q'):
584 write = self.shell.write
579 write = self.shell.write
585 write(self.shell.pycolorize(block))
580 write(self.shell.pycolorize(block))
586 if not block.endswith('\n'):
581 if not block.endswith('\n'):
587 write('\n')
582 write('\n')
588 write("## -- End pasted text --\n")
583 write("## -- End pasted text --\n")
589
584
590 self._execute_block(block, par)
585 self._execute_block(block, par)
591
586
592 def showindentationerror(self):
587 def showindentationerror(self):
593 super(TerminalInteractiveShell, self).showindentationerror()
588 super(TerminalInteractiveShell, self).showindentationerror()
594 print("If you want to paste code into IPython, try the %paste magic function.")
589 print("If you want to paste code into IPython, try the %paste magic function.")
595
590
596
591
597 InteractiveShellABC.register(TerminalInteractiveShell)
592 InteractiveShellABC.register(TerminalInteractiveShell)
General Comments 0
You need to be logged in to leave comments. Login now