Show More
@@ -1,327 +1,330 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Displayhook for IPython. |
|
2 | """Displayhook for IPython. | |
3 |
|
3 | |||
4 | This defines a callable class that IPython uses for `sys.displayhook`. |
|
4 | This defines a callable class that IPython uses for `sys.displayhook`. | |
5 |
|
5 | |||
6 | Authors: |
|
6 | Authors: | |
7 |
|
7 | |||
8 | * Fernando Perez |
|
8 | * Fernando Perez | |
9 | * Brian Granger |
|
9 | * Brian Granger | |
10 | * Robert Kern |
|
10 | * Robert Kern | |
11 | """ |
|
11 | """ | |
12 |
|
12 | |||
13 | #----------------------------------------------------------------------------- |
|
13 | #----------------------------------------------------------------------------- | |
14 | # Copyright (C) 2008-2010 The IPython Development Team |
|
14 | # Copyright (C) 2008-2010 The IPython Development Team | |
15 | # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu> |
|
15 | # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu> | |
16 | # |
|
16 | # | |
17 | # Distributed under the terms of the BSD License. The full license is in |
|
17 | # Distributed under the terms of the BSD License. The full license is in | |
18 | # the file COPYING, distributed as part of this software. |
|
18 | # the file COPYING, distributed as part of this software. | |
19 | #----------------------------------------------------------------------------- |
|
19 | #----------------------------------------------------------------------------- | |
20 |
|
20 | |||
21 | #----------------------------------------------------------------------------- |
|
21 | #----------------------------------------------------------------------------- | |
22 | # Imports |
|
22 | # Imports | |
23 | #----------------------------------------------------------------------------- |
|
23 | #----------------------------------------------------------------------------- | |
24 |
|
24 | |||
25 | import __builtin__ |
|
25 | import __builtin__ | |
26 |
|
26 | |||
27 | from IPython.config.configurable import Configurable |
|
27 | from IPython.config.configurable import Configurable | |
28 | from IPython.core import prompts |
|
28 | from IPython.core import prompts | |
29 | import IPython.utils.generics |
|
29 | import IPython.utils.generics | |
30 | import IPython.utils.io |
|
30 | import IPython.utils.io | |
31 | from IPython.utils.traitlets import Instance, List |
|
31 | from IPython.utils.traitlets import Instance, List | |
32 | from IPython.utils.warn import warn |
|
32 | from IPython.utils.warn import warn | |
33 |
|
33 | |||
34 | #----------------------------------------------------------------------------- |
|
34 | #----------------------------------------------------------------------------- | |
35 | # Main displayhook class |
|
35 | # Main displayhook class | |
36 | #----------------------------------------------------------------------------- |
|
36 | #----------------------------------------------------------------------------- | |
37 |
|
37 | |||
38 | # TODO: The DisplayHook class should be split into two classes, one that |
|
38 | # TODO: The DisplayHook class should be split into two classes, one that | |
39 | # manages the prompts and their synchronization and another that just does the |
|
39 | # manages the prompts and their synchronization and another that just does the | |
40 | # displayhook logic and calls into the prompt manager. |
|
40 | # displayhook logic and calls into the prompt manager. | |
41 |
|
41 | |||
42 | # TODO: Move the various attributes (cache_size, colors, input_sep, |
|
42 | # TODO: Move the various attributes (cache_size, colors, input_sep, | |
43 | # output_sep, output_sep2, ps1, ps2, ps_out, pad_left). Some of these are also |
|
43 | # output_sep, output_sep2, ps1, ps2, ps_out, pad_left). Some of these are also | |
44 | # attributes of InteractiveShell. They should be on ONE object only and the |
|
44 | # attributes of InteractiveShell. They should be on ONE object only and the | |
45 | # other objects should ask that one object for their values. |
|
45 | # other objects should ask that one object for their values. | |
46 |
|
46 | |||
47 | class DisplayHook(Configurable): |
|
47 | class DisplayHook(Configurable): | |
48 | """The custom IPython displayhook to replace sys.displayhook. |
|
48 | """The custom IPython displayhook to replace sys.displayhook. | |
49 |
|
49 | |||
50 | This class does many things, but the basic idea is that it is a callable |
|
50 | This class does many things, but the basic idea is that it is a callable | |
51 | that gets called anytime user code returns a value. |
|
51 | that gets called anytime user code returns a value. | |
52 |
|
52 | |||
53 | Currently this class does more than just the displayhook logic and that |
|
53 | Currently this class does more than just the displayhook logic and that | |
54 | extra logic should eventually be moved out of here. |
|
54 | extra logic should eventually be moved out of here. | |
55 | """ |
|
55 | """ | |
56 |
|
56 | |||
57 | shell = Instance('IPython.core.interactiveshell.InteractiveShellABC') |
|
57 | shell = Instance('IPython.core.interactiveshell.InteractiveShellABC') | |
58 |
|
58 | |||
59 | def __init__(self, shell=None, cache_size=1000, |
|
59 | def __init__(self, shell=None, cache_size=1000, | |
60 | colors='NoColor', input_sep='\n', |
|
60 | colors='NoColor', input_sep='\n', | |
61 | output_sep='\n', output_sep2='', |
|
61 | output_sep='\n', output_sep2='', | |
62 | ps1 = None, ps2 = None, ps_out = None, pad_left=True, |
|
62 | ps1 = None, ps2 = None, ps_out = None, pad_left=True, | |
63 | config=None): |
|
63 | config=None): | |
64 | super(DisplayHook, self).__init__(shell=shell, config=config) |
|
64 | super(DisplayHook, self).__init__(shell=shell, config=config) | |
65 |
|
65 | |||
66 | cache_size_min = 3 |
|
66 | cache_size_min = 3 | |
67 | if cache_size <= 0: |
|
67 | if cache_size <= 0: | |
68 | self.do_full_cache = 0 |
|
68 | self.do_full_cache = 0 | |
69 | cache_size = 0 |
|
69 | cache_size = 0 | |
70 | elif cache_size < cache_size_min: |
|
70 | elif cache_size < cache_size_min: | |
71 | self.do_full_cache = 0 |
|
71 | self.do_full_cache = 0 | |
72 | cache_size = 0 |
|
72 | cache_size = 0 | |
73 | warn('caching was disabled (min value for cache size is %s).' % |
|
73 | warn('caching was disabled (min value for cache size is %s).' % | |
74 | cache_size_min,level=3) |
|
74 | cache_size_min,level=3) | |
75 | else: |
|
75 | else: | |
76 | self.do_full_cache = 1 |
|
76 | self.do_full_cache = 1 | |
77 |
|
77 | |||
78 | self.cache_size = cache_size |
|
78 | self.cache_size = cache_size | |
79 | self.input_sep = input_sep |
|
79 | self.input_sep = input_sep | |
80 |
|
80 | |||
81 | # we need a reference to the user-level namespace |
|
81 | # we need a reference to the user-level namespace | |
82 | self.shell = shell |
|
82 | self.shell = shell | |
83 |
|
83 | |||
84 | # Set input prompt strings and colors |
|
84 | # Set input prompt strings and colors | |
85 | if cache_size == 0: |
|
85 | if cache_size == 0: | |
86 | if ps1.find('%n') > -1 or ps1.find(r'\#') > -1 \ |
|
86 | if ps1.find('%n') > -1 or ps1.find(r'\#') > -1 \ | |
87 | or ps1.find(r'\N') > -1: |
|
87 | or ps1.find(r'\N') > -1: | |
88 | ps1 = '>>> ' |
|
88 | ps1 = '>>> ' | |
89 | if ps2.find('%n') > -1 or ps2.find(r'\#') > -1 \ |
|
89 | if ps2.find('%n') > -1 or ps2.find(r'\#') > -1 \ | |
90 | or ps2.find(r'\N') > -1: |
|
90 | or ps2.find(r'\N') > -1: | |
91 | ps2 = '... ' |
|
91 | ps2 = '... ' | |
92 | self.ps1_str = self._set_prompt_str(ps1,'In [\\#]: ','>>> ') |
|
92 | self.ps1_str = self._set_prompt_str(ps1,'In [\\#]: ','>>> ') | |
93 | self.ps2_str = self._set_prompt_str(ps2,' .\\D.: ','... ') |
|
93 | self.ps2_str = self._set_prompt_str(ps2,' .\\D.: ','... ') | |
94 | self.ps_out_str = self._set_prompt_str(ps_out,'Out[\\#]: ','') |
|
94 | self.ps_out_str = self._set_prompt_str(ps_out,'Out[\\#]: ','') | |
95 |
|
95 | |||
96 | self.color_table = prompts.PromptColors |
|
96 | self.color_table = prompts.PromptColors | |
97 | self.prompt1 = prompts.Prompt1(self,sep=input_sep,prompt=self.ps1_str, |
|
97 | self.prompt1 = prompts.Prompt1(self,sep=input_sep,prompt=self.ps1_str, | |
98 | pad_left=pad_left) |
|
98 | pad_left=pad_left) | |
99 | self.prompt2 = prompts.Prompt2(self,prompt=self.ps2_str,pad_left=pad_left) |
|
99 | self.prompt2 = prompts.Prompt2(self,prompt=self.ps2_str,pad_left=pad_left) | |
100 | self.prompt_out = prompts.PromptOut(self,sep='',prompt=self.ps_out_str, |
|
100 | self.prompt_out = prompts.PromptOut(self,sep='',prompt=self.ps_out_str, | |
101 | pad_left=pad_left) |
|
101 | pad_left=pad_left) | |
102 | self.set_colors(colors) |
|
102 | self.set_colors(colors) | |
103 |
|
103 | |||
104 | # Store the last prompt string each time, we need it for aligning |
|
104 | # Store the last prompt string each time, we need it for aligning | |
105 | # continuation and auto-rewrite prompts |
|
105 | # continuation and auto-rewrite prompts | |
106 | self.last_prompt = '' |
|
106 | self.last_prompt = '' | |
107 | self.output_sep = output_sep |
|
107 | self.output_sep = output_sep | |
108 | self.output_sep2 = output_sep2 |
|
108 | self.output_sep2 = output_sep2 | |
109 | self._,self.__,self.___ = '','','' |
|
109 | self._,self.__,self.___ = '','','' | |
110 |
|
110 | |||
111 | # these are deliberately global: |
|
111 | # these are deliberately global: | |
112 | to_user_ns = {'_':self._,'__':self.__,'___':self.___} |
|
112 | to_user_ns = {'_':self._,'__':self.__,'___':self.___} | |
113 | self.shell.user_ns.update(to_user_ns) |
|
113 | self.shell.user_ns.update(to_user_ns) | |
114 |
|
114 | |||
115 | @property |
|
115 | @property | |
116 | def prompt_count(self): |
|
116 | def prompt_count(self): | |
117 | return self.shell.execution_count |
|
117 | return self.shell.execution_count | |
118 |
|
118 | |||
119 | def _set_prompt_str(self,p_str,cache_def,no_cache_def): |
|
119 | def _set_prompt_str(self,p_str,cache_def,no_cache_def): | |
120 | if p_str is None: |
|
120 | if p_str is None: | |
121 | if self.do_full_cache: |
|
121 | if self.do_full_cache: | |
122 | return cache_def |
|
122 | return cache_def | |
123 | else: |
|
123 | else: | |
124 | return no_cache_def |
|
124 | return no_cache_def | |
125 | else: |
|
125 | else: | |
126 | return p_str |
|
126 | return p_str | |
127 |
|
127 | |||
128 | def set_colors(self, colors): |
|
128 | def set_colors(self, colors): | |
129 | """Set the active color scheme and configure colors for the three |
|
129 | """Set the active color scheme and configure colors for the three | |
130 | prompt subsystems.""" |
|
130 | prompt subsystems.""" | |
131 |
|
131 | |||
132 | # FIXME: This modifying of the global prompts.prompt_specials needs |
|
132 | # FIXME: This modifying of the global prompts.prompt_specials needs | |
133 | # to be fixed. We need to refactor all of the prompts stuff to use |
|
133 | # to be fixed. We need to refactor all of the prompts stuff to use | |
134 | # proper configuration and traits notifications. |
|
134 | # proper configuration and traits notifications. | |
135 | if colors.lower()=='nocolor': |
|
135 | if colors.lower()=='nocolor': | |
136 | prompts.prompt_specials = prompts.prompt_specials_nocolor |
|
136 | prompts.prompt_specials = prompts.prompt_specials_nocolor | |
137 | else: |
|
137 | else: | |
138 | prompts.prompt_specials = prompts.prompt_specials_color |
|
138 | prompts.prompt_specials = prompts.prompt_specials_color | |
139 |
|
139 | |||
140 | self.color_table.set_active_scheme(colors) |
|
140 | self.color_table.set_active_scheme(colors) | |
141 | self.prompt1.set_colors() |
|
141 | self.prompt1.set_colors() | |
142 | self.prompt2.set_colors() |
|
142 | self.prompt2.set_colors() | |
143 | self.prompt_out.set_colors() |
|
143 | self.prompt_out.set_colors() | |
144 |
|
144 | |||
145 | #------------------------------------------------------------------------- |
|
145 | #------------------------------------------------------------------------- | |
146 | # Methods used in __call__. Override these methods to modify the behavior |
|
146 | # Methods used in __call__. Override these methods to modify the behavior | |
147 | # of the displayhook. |
|
147 | # of the displayhook. | |
148 | #------------------------------------------------------------------------- |
|
148 | #------------------------------------------------------------------------- | |
149 |
|
149 | |||
150 | def check_for_underscore(self): |
|
150 | def check_for_underscore(self): | |
151 | """Check if the user has set the '_' variable by hand.""" |
|
151 | """Check if the user has set the '_' variable by hand.""" | |
152 | # If something injected a '_' variable in __builtin__, delete |
|
152 | # If something injected a '_' variable in __builtin__, delete | |
153 | # ipython's automatic one so we don't clobber that. gettext() in |
|
153 | # ipython's automatic one so we don't clobber that. gettext() in | |
154 | # particular uses _, so we need to stay away from it. |
|
154 | # particular uses _, so we need to stay away from it. | |
155 | if '_' in __builtin__.__dict__: |
|
155 | if '_' in __builtin__.__dict__: | |
156 | try: |
|
156 | try: | |
157 | del self.shell.user_ns['_'] |
|
157 | del self.shell.user_ns['_'] | |
158 | except KeyError: |
|
158 | except KeyError: | |
159 | pass |
|
159 | pass | |
160 |
|
160 | |||
161 | def quiet(self): |
|
161 | def quiet(self): | |
162 | """Should we silence the display hook because of ';'?""" |
|
162 | """Should we silence the display hook because of ';'?""" | |
163 | # do not print output if input ends in ';' |
|
163 | # do not print output if input ends in ';' | |
164 | try: |
|
164 | try: | |
165 | if self.shell.history_manager.input_hist_parsed[self.prompt_count].endswith(';\n'): |
|
165 | if self.shell.history_manager.input_hist_parsed[self.prompt_count].endswith(';\n'): | |
166 | return True |
|
166 | return True | |
167 | except IndexError: |
|
167 | except IndexError: | |
168 | # some uses of ipshellembed may fail here |
|
168 | # some uses of ipshellembed may fail here | |
169 | pass |
|
169 | pass | |
170 | return False |
|
170 | return False | |
171 |
|
171 | |||
172 | def start_displayhook(self): |
|
172 | def start_displayhook(self): | |
173 | """Start the displayhook, initializing resources.""" |
|
173 | """Start the displayhook, initializing resources.""" | |
174 | pass |
|
174 | pass | |
175 |
|
175 | |||
176 | def write_output_prompt(self): |
|
176 | def write_output_prompt(self): | |
177 | """Write the output prompt. |
|
177 | """Write the output prompt. | |
178 |
|
178 | |||
179 | The default implementation simply writes the prompt to |
|
179 | The default implementation simply writes the prompt to | |
180 | ``io.Term.cout``. |
|
180 | ``io.Term.cout``. | |
181 | """ |
|
181 | """ | |
182 | # Use write, not print which adds an extra space. |
|
182 | # Use write, not print which adds an extra space. | |
183 | IPython.utils.io.Term.cout.write(self.output_sep) |
|
183 | IPython.utils.io.Term.cout.write(self.output_sep) | |
184 | outprompt = str(self.prompt_out) |
|
184 | outprompt = str(self.prompt_out) | |
185 | if self.do_full_cache: |
|
185 | if self.do_full_cache: | |
186 | IPython.utils.io.Term.cout.write(outprompt) |
|
186 | IPython.utils.io.Term.cout.write(outprompt) | |
187 |
|
187 | |||
188 | def compute_format_data(self, result): |
|
188 | def compute_format_data(self, result): | |
189 | """Compute format data of the object to be displayed. |
|
189 | """Compute format data of the object to be displayed. | |
190 |
|
190 | |||
191 | The format data is a generalization of the :func:`repr` of an object. |
|
191 | The format data is a generalization of the :func:`repr` of an object. | |
192 | In the default implementation the format data is a :class:`dict` of |
|
192 | In the default implementation the format data is a :class:`dict` of | |
193 | key value pair where the keys are valid MIME types and the values |
|
193 | key value pair where the keys are valid MIME types and the values | |
194 | are JSON'able data structure containing the raw data for that MIME |
|
194 | are JSON'able data structure containing the raw data for that MIME | |
195 | type. It is up to frontends to determine pick a MIME to to use and |
|
195 | type. It is up to frontends to determine pick a MIME to to use and | |
196 | display that data in an appropriate manner. |
|
196 | display that data in an appropriate manner. | |
197 |
|
197 | |||
198 | This method only computes the format data for the object and should |
|
198 | This method only computes the format data for the object and should | |
199 | NOT actually print or write that to a stream. |
|
199 | NOT actually print or write that to a stream. | |
200 |
|
200 | |||
201 | Parameters |
|
201 | Parameters | |
202 | ---------- |
|
202 | ---------- | |
203 | result : object |
|
203 | result : object | |
204 | The Python object passed to the display hook, whose format will be |
|
204 | The Python object passed to the display hook, whose format will be | |
205 | computed. |
|
205 | computed. | |
206 |
|
206 | |||
207 | Returns |
|
207 | Returns | |
208 | ------- |
|
208 | ------- | |
209 | format_data : dict |
|
209 | format_data : dict | |
210 | A :class:`dict` whose keys are valid MIME types and values are |
|
210 | A :class:`dict` whose keys are valid MIME types and values are | |
211 | JSON'able raw data for that MIME type. It is recommended that |
|
211 | JSON'able raw data for that MIME type. It is recommended that | |
212 | all return values of this should always include the "text/plain" |
|
212 | all return values of this should always include the "text/plain" | |
213 | MIME type representation of the object. |
|
213 | MIME type representation of the object. | |
214 | """ |
|
214 | """ | |
215 | return self.shell.display_formatter.format(result) |
|
215 | return self.shell.display_formatter.format(result) | |
216 |
|
216 | |||
217 | def write_format_data(self, format_dict): |
|
217 | def write_format_data(self, format_dict): | |
218 | """Write the format data dict to the frontend. |
|
218 | """Write the format data dict to the frontend. | |
219 |
|
219 | |||
220 | This default version of this method simply writes the plain text |
|
220 | This default version of this method simply writes the plain text | |
221 | representation of the object to ``io.Term.cout``. Subclasses should |
|
221 | representation of the object to ``io.Term.cout``. Subclasses should | |
222 | override this method to send the entire `format_dict` to the |
|
222 | override this method to send the entire `format_dict` to the | |
223 | frontends. |
|
223 | frontends. | |
224 |
|
224 | |||
225 | Parameters |
|
225 | Parameters | |
226 | ---------- |
|
226 | ---------- | |
227 | format_dict : dict |
|
227 | format_dict : dict | |
228 | The format dict for the object passed to `sys.displayhook`. |
|
228 | The format dict for the object passed to `sys.displayhook`. | |
229 | """ |
|
229 | """ | |
230 | # We want to print because we want to always make sure we have a |
|
230 | # We want to print because we want to always make sure we have a | |
231 | # newline, even if all the prompt separators are ''. This is the |
|
231 | # newline, even if all the prompt separators are ''. This is the | |
232 | # standard IPython behavior. |
|
232 | # standard IPython behavior. | |
233 | result_repr = format_dict['text/plain'] |
|
233 | result_repr = format_dict['text/plain'] | |
234 | if '\n' in result_repr: |
|
234 | if '\n' in result_repr: | |
235 | # So that multi-line strings line up with the left column of |
|
235 | # So that multi-line strings line up with the left column of | |
236 | # the screen, instead of having the output prompt mess up |
|
236 | # the screen, instead of having the output prompt mess up | |
237 | # their first line. |
|
237 | # their first line. | |
238 | # We use the ps_out_str template instead of the expanded prompt |
|
238 | # We use the ps_out_str template instead of the expanded prompt | |
239 | # because the expansion may add ANSI escapes that will interfere |
|
239 | # because the expansion may add ANSI escapes that will interfere | |
240 | # with our ability to determine whether or not we should add |
|
240 | # with our ability to determine whether or not we should add | |
241 | # a newline. |
|
241 | # a newline. | |
242 | if self.ps_out_str and not self.ps_out_str.endswith('\n'): |
|
242 | if self.ps_out_str and not self.ps_out_str.endswith('\n'): | |
243 | # But avoid extraneous empty lines. |
|
243 | # But avoid extraneous empty lines. | |
244 | result_repr = '\n' + result_repr |
|
244 | result_repr = '\n' + result_repr | |
245 |
|
245 | |||
246 | print >>IPython.utils.io.Term.cout, result_repr |
|
246 | print >>IPython.utils.io.Term.cout, result_repr | |
247 |
|
247 | |||
248 | def update_user_ns(self, result): |
|
248 | def update_user_ns(self, result): | |
249 | """Update user_ns with various things like _, __, _1, etc.""" |
|
249 | """Update user_ns with various things like _, __, _1, etc.""" | |
250 |
|
250 | |||
251 | # Avoid recursive reference when displaying _oh/Out |
|
251 | # Avoid recursive reference when displaying _oh/Out | |
252 | if result is not self.shell.user_ns['_oh']: |
|
252 | if result is not self.shell.user_ns['_oh']: | |
253 | if len(self.shell.user_ns['_oh']) >= self.cache_size and self.do_full_cache: |
|
253 | if len(self.shell.user_ns['_oh']) >= self.cache_size and self.do_full_cache: | |
254 | warn('Output cache limit (currently '+ |
|
254 | warn('Output cache limit (currently '+ | |
255 | `self.cache_size`+' entries) hit.\n' |
|
255 | `self.cache_size`+' entries) hit.\n' | |
256 | 'Flushing cache and resetting history counter...\n' |
|
256 | 'Flushing cache and resetting history counter...\n' | |
257 | 'The only history variables available will be _,__,___ and _1\n' |
|
257 | 'The only history variables available will be _,__,___ and _1\n' | |
258 | 'with the current result.') |
|
258 | 'with the current result.') | |
259 |
|
259 | |||
260 | self.flush() |
|
260 | self.flush() | |
261 | # Don't overwrite '_' and friends if '_' is in __builtin__ (otherwise |
|
261 | # Don't overwrite '_' and friends if '_' is in __builtin__ (otherwise | |
262 | # we cause buggy behavior for things like gettext). |
|
262 | # we cause buggy behavior for things like gettext). | |
263 |
|
263 | |||
264 | if '_' not in __builtin__.__dict__: |
|
264 | if '_' not in __builtin__.__dict__: | |
265 | self.___ = self.__ |
|
265 | self.___ = self.__ | |
266 | self.__ = self._ |
|
266 | self.__ = self._ | |
267 | self._ = result |
|
267 | self._ = result | |
268 | self.shell.user_ns.update({'_':self._, |
|
268 | self.shell.user_ns.update({'_':self._, | |
269 | '__':self.__, |
|
269 | '__':self.__, | |
270 | '___':self.___}) |
|
270 | '___':self.___}) | |
271 |
|
271 | |||
272 | # hackish access to top-level namespace to create _1,_2... dynamically |
|
272 | # hackish access to top-level namespace to create _1,_2... dynamically | |
273 | to_main = {} |
|
273 | to_main = {} | |
274 | if self.do_full_cache: |
|
274 | if self.do_full_cache: | |
275 | new_result = '_'+`self.prompt_count` |
|
275 | new_result = '_'+`self.prompt_count` | |
276 | to_main[new_result] = result |
|
276 | to_main[new_result] = result | |
277 | self.shell.user_ns.update(to_main) |
|
277 | self.shell.user_ns.update(to_main) | |
278 | self.shell.user_ns['_oh'][self.prompt_count] = result |
|
278 | self.shell.user_ns['_oh'][self.prompt_count] = result | |
279 |
|
279 | |||
280 | def log_output(self, format_dict): |
|
280 | def log_output(self, format_dict): | |
281 | """Log the output.""" |
|
281 | """Log the output.""" | |
282 | if self.shell.logger.log_output: |
|
282 | if self.shell.logger.log_output: | |
283 | self.shell.logger.log_write(format_dict['text/plain'], 'output') |
|
283 | self.shell.logger.log_write(format_dict['text/plain'], 'output') | |
284 | # This is a defaultdict of lists, so we can always append |
|
284 | # This is a defaultdict of lists, so we can always append | |
285 | self.shell.history_manager.output_hist_reprs[self.prompt_count]\ |
|
285 | self.shell.history_manager.output_hist_reprs[self.prompt_count]\ | |
286 | .append(format_dict['text/plain']) |
|
286 | .append(format_dict['text/plain']) | |
287 |
|
287 | |||
288 | def finish_displayhook(self): |
|
288 | def finish_displayhook(self): | |
289 | """Finish up all displayhook activities.""" |
|
289 | """Finish up all displayhook activities.""" | |
290 | IPython.utils.io.Term.cout.write(self.output_sep2) |
|
290 | IPython.utils.io.Term.cout.write(self.output_sep2) | |
291 | IPython.utils.io.Term.cout.flush() |
|
291 | IPython.utils.io.Term.cout.flush() | |
292 |
|
292 | |||
293 | def __call__(self, result=None): |
|
293 | def __call__(self, result=None): | |
294 | """Printing with history cache management. |
|
294 | """Printing with history cache management. | |
295 |
|
295 | |||
296 | This is invoked everytime the interpreter needs to print, and is |
|
296 | This is invoked everytime the interpreter needs to print, and is | |
297 | activated by setting the variable sys.displayhook to it. |
|
297 | activated by setting the variable sys.displayhook to it. | |
298 | """ |
|
298 | """ | |
299 | self.check_for_underscore() |
|
299 | self.check_for_underscore() | |
300 | if result is not None and not self.quiet(): |
|
300 | if result is not None and not self.quiet(): | |
301 | self.start_displayhook() |
|
301 | self.start_displayhook() | |
302 | self.write_output_prompt() |
|
302 | self.write_output_prompt() | |
303 | format_dict = self.compute_format_data(result) |
|
303 | format_dict = self.compute_format_data(result) | |
304 | self.write_format_data(format_dict) |
|
304 | self.write_format_data(format_dict) | |
305 | self.update_user_ns(result) |
|
305 | self.update_user_ns(result) | |
306 | self.log_output(format_dict) |
|
306 | self.log_output(format_dict) | |
307 | self.finish_displayhook() |
|
307 | self.finish_displayhook() | |
308 |
|
308 | |||
309 | def flush(self): |
|
309 | def flush(self): | |
310 | if not self.do_full_cache: |
|
310 | if not self.do_full_cache: | |
311 | raise ValueError,"You shouldn't have reached the cache flush "\ |
|
311 | raise ValueError,"You shouldn't have reached the cache flush "\ | |
312 | "if full caching is not enabled!" |
|
312 | "if full caching is not enabled!" | |
313 | # delete auto-generated vars from global namespace |
|
313 | # delete auto-generated vars from global namespace | |
314 |
|
314 | |||
315 | for n in range(1,self.prompt_count + 1): |
|
315 | for n in range(1,self.prompt_count + 1): | |
316 | key = '_'+`n` |
|
316 | key = '_'+`n` | |
317 | try: |
|
317 | try: | |
318 | del self.shell.user_ns[key] |
|
318 | del self.shell.user_ns[key] | |
319 | except: pass |
|
319 | except: pass | |
320 | self.shell.user_ns['_oh'].clear() |
|
320 | self.shell.user_ns['_oh'].clear() | |
321 |
|
321 | |||
|
322 | # Release our own references to objects: | |||
|
323 | self._, self.__, self.___ = '', '', '' | |||
|
324 | ||||
322 | if '_' not in __builtin__.__dict__: |
|
325 | if '_' not in __builtin__.__dict__: | |
323 | self.shell.user_ns.update({'_':None,'__':None, '___':None}) |
|
326 | self.shell.user_ns.update({'_':None,'__':None, '___':None}) | |
324 | import gc |
|
327 | import gc | |
325 | # TODO: Is this really needed? |
|
328 | # TODO: Is this really needed? | |
326 | gc.collect() |
|
329 | gc.collect() | |
327 |
|
330 |
@@ -1,2595 +1,2602 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 Configurable |
|
34 | from IPython.config.configurable import Configurable | |
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 |
|
41 | from IPython.core.alias import AliasManager | |
42 | from IPython.core.builtin_trap import BuiltinTrap |
|
42 | from IPython.core.builtin_trap import BuiltinTrap | |
43 | from IPython.core.compilerop import CachingCompiler |
|
43 | from IPython.core.compilerop import CachingCompiler | |
44 | from IPython.core.display_trap import DisplayTrap |
|
44 | from IPython.core.display_trap import DisplayTrap | |
45 | from IPython.core.displayhook import DisplayHook |
|
45 | from IPython.core.displayhook import DisplayHook | |
46 | from IPython.core.displaypub import DisplayPublisher |
|
46 | from IPython.core.displaypub import DisplayPublisher | |
47 | from IPython.core.error import TryNext, UsageError |
|
47 | from IPython.core.error import TryNext, UsageError | |
48 | from IPython.core.extensions import ExtensionManager |
|
48 | from IPython.core.extensions import ExtensionManager | |
49 | from IPython.core.fakemodule import FakeModule, init_fakemod_dict |
|
49 | from IPython.core.fakemodule import FakeModule, init_fakemod_dict | |
50 | from IPython.core.formatters import DisplayFormatter |
|
50 | from IPython.core.formatters import DisplayFormatter | |
51 | from IPython.core.history import HistoryManager |
|
51 | from IPython.core.history import HistoryManager | |
52 | from IPython.core.inputsplitter import IPythonInputSplitter |
|
52 | from IPython.core.inputsplitter import IPythonInputSplitter | |
53 | from IPython.core.logger import Logger |
|
53 | from IPython.core.logger import Logger | |
54 | from IPython.core.macro import Macro |
|
54 | from IPython.core.macro import Macro | |
55 | from IPython.core.magic import Magic |
|
55 | from IPython.core.magic import Magic | |
56 | from IPython.core.payload import PayloadManager |
|
56 | from IPython.core.payload import PayloadManager | |
57 | from IPython.core.plugin import PluginManager |
|
57 | from IPython.core.plugin import PluginManager | |
58 | from IPython.core.prefilter import PrefilterManager, ESC_MAGIC |
|
58 | from IPython.core.prefilter import PrefilterManager, ESC_MAGIC | |
59 | from IPython.external.Itpl import ItplNS |
|
59 | from IPython.external.Itpl import ItplNS | |
60 | from IPython.utils import PyColorize |
|
60 | from IPython.utils import PyColorize | |
61 | from IPython.utils import io |
|
61 | from IPython.utils import io | |
62 | from IPython.utils.doctestreload import doctest_reload |
|
62 | from IPython.utils.doctestreload import doctest_reload | |
63 | from IPython.utils.io import ask_yes_no, rprint |
|
63 | from IPython.utils.io import ask_yes_no, rprint | |
64 | from IPython.utils.ipstruct import Struct |
|
64 | from IPython.utils.ipstruct import Struct | |
65 | from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError |
|
65 | from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError | |
66 | from IPython.utils.pickleshare import PickleShareDB |
|
66 | from IPython.utils.pickleshare import PickleShareDB | |
67 | from IPython.utils.process import system, getoutput |
|
67 | from IPython.utils.process import system, getoutput | |
68 | from IPython.utils.strdispatch import StrDispatch |
|
68 | from IPython.utils.strdispatch import StrDispatch | |
69 | from IPython.utils.syspathcontext import prepended_to_syspath |
|
69 | from IPython.utils.syspathcontext import prepended_to_syspath | |
70 | from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList |
|
70 | from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList | |
71 | from IPython.utils.traitlets import (Int, Str, CBool, CaselessStrEnum, Enum, |
|
71 | from IPython.utils.traitlets import (Int, Str, CBool, CaselessStrEnum, Enum, | |
72 | List, Unicode, Instance, Type) |
|
72 | List, Unicode, Instance, Type) | |
73 | from IPython.utils.warn import warn, error, fatal |
|
73 | from IPython.utils.warn import warn, error, fatal | |
74 | import IPython.core.hooks |
|
74 | import IPython.core.hooks | |
75 |
|
75 | |||
76 | #----------------------------------------------------------------------------- |
|
76 | #----------------------------------------------------------------------------- | |
77 | # Globals |
|
77 | # Globals | |
78 | #----------------------------------------------------------------------------- |
|
78 | #----------------------------------------------------------------------------- | |
79 |
|
79 | |||
80 | # compiled regexps for autoindent management |
|
80 | # compiled regexps for autoindent management | |
81 | dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass') |
|
81 | dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass') | |
82 |
|
82 | |||
83 | #----------------------------------------------------------------------------- |
|
83 | #----------------------------------------------------------------------------- | |
84 | # Utilities |
|
84 | # Utilities | |
85 | #----------------------------------------------------------------------------- |
|
85 | #----------------------------------------------------------------------------- | |
86 |
|
86 | |||
87 | # store the builtin raw_input globally, and use this always, in case user code |
|
87 | # store the builtin raw_input globally, and use this always, in case user code | |
88 | # overwrites it (like wx.py.PyShell does) |
|
88 | # overwrites it (like wx.py.PyShell does) | |
89 | raw_input_original = raw_input |
|
89 | raw_input_original = raw_input | |
90 |
|
90 | |||
91 | def softspace(file, newvalue): |
|
91 | def softspace(file, newvalue): | |
92 | """Copied from code.py, to remove the dependency""" |
|
92 | """Copied from code.py, to remove the dependency""" | |
93 |
|
93 | |||
94 | oldvalue = 0 |
|
94 | oldvalue = 0 | |
95 | try: |
|
95 | try: | |
96 | oldvalue = file.softspace |
|
96 | oldvalue = file.softspace | |
97 | except AttributeError: |
|
97 | except AttributeError: | |
98 | pass |
|
98 | pass | |
99 | try: |
|
99 | try: | |
100 | file.softspace = newvalue |
|
100 | file.softspace = newvalue | |
101 | except (AttributeError, TypeError): |
|
101 | except (AttributeError, TypeError): | |
102 | # "attribute-less object" or "read-only attributes" |
|
102 | # "attribute-less object" or "read-only attributes" | |
103 | pass |
|
103 | pass | |
104 | return oldvalue |
|
104 | return oldvalue | |
105 |
|
105 | |||
106 |
|
106 | |||
107 | def no_op(*a, **kw): pass |
|
107 | def no_op(*a, **kw): pass | |
108 |
|
108 | |||
109 | class SpaceInInput(Exception): pass |
|
109 | class SpaceInInput(Exception): pass | |
110 |
|
110 | |||
111 | class Bunch: pass |
|
111 | class Bunch: pass | |
112 |
|
112 | |||
113 |
|
113 | |||
114 | def get_default_colors(): |
|
114 | def get_default_colors(): | |
115 | if sys.platform=='darwin': |
|
115 | if sys.platform=='darwin': | |
116 | return "LightBG" |
|
116 | return "LightBG" | |
117 | elif os.name=='nt': |
|
117 | elif os.name=='nt': | |
118 | return 'Linux' |
|
118 | return 'Linux' | |
119 | else: |
|
119 | else: | |
120 | return 'Linux' |
|
120 | return 'Linux' | |
121 |
|
121 | |||
122 |
|
122 | |||
123 | class SeparateStr(Str): |
|
123 | class SeparateStr(Str): | |
124 | """A Str subclass to validate separate_in, separate_out, etc. |
|
124 | """A Str subclass to validate separate_in, separate_out, etc. | |
125 |
|
125 | |||
126 | This is a Str based trait that converts '0'->'' and '\\n'->'\n'. |
|
126 | This is a Str based trait that converts '0'->'' and '\\n'->'\n'. | |
127 | """ |
|
127 | """ | |
128 |
|
128 | |||
129 | def validate(self, obj, value): |
|
129 | def validate(self, obj, value): | |
130 | if value == '0': value = '' |
|
130 | if value == '0': value = '' | |
131 | value = value.replace('\\n','\n') |
|
131 | value = value.replace('\\n','\n') | |
132 | return super(SeparateStr, self).validate(obj, value) |
|
132 | return super(SeparateStr, self).validate(obj, value) | |
133 |
|
133 | |||
134 | class MultipleInstanceError(Exception): |
|
134 | class MultipleInstanceError(Exception): | |
135 | pass |
|
135 | pass | |
136 |
|
136 | |||
137 | class ReadlineNoRecord(object): |
|
137 | class ReadlineNoRecord(object): | |
138 | """Context manager to execute some code, then reload readline history |
|
138 | """Context manager to execute some code, then reload readline history | |
139 | so that interactive input to the code doesn't appear when pressing up.""" |
|
139 | so that interactive input to the code doesn't appear when pressing up.""" | |
140 | def __init__(self, shell): |
|
140 | def __init__(self, shell): | |
141 | self.shell = shell |
|
141 | self.shell = shell | |
142 | self._nested_level = 0 |
|
142 | self._nested_level = 0 | |
143 |
|
143 | |||
144 | def __enter__(self): |
|
144 | def __enter__(self): | |
145 | if self._nested_level == 0: |
|
145 | if self._nested_level == 0: | |
146 | self.orig_length = self.current_length() |
|
146 | self.orig_length = self.current_length() | |
147 | self.readline_tail = self.get_readline_tail() |
|
147 | self.readline_tail = self.get_readline_tail() | |
148 | self._nested_level += 1 |
|
148 | self._nested_level += 1 | |
149 |
|
149 | |||
150 | def __exit__(self, type, value, traceback): |
|
150 | def __exit__(self, type, value, traceback): | |
151 | self._nested_level -= 1 |
|
151 | self._nested_level -= 1 | |
152 | if self._nested_level == 0: |
|
152 | if self._nested_level == 0: | |
153 | # Try clipping the end if it's got longer |
|
153 | # Try clipping the end if it's got longer | |
154 | e = self.current_length() - self.orig_length |
|
154 | e = self.current_length() - self.orig_length | |
155 | if e > 0: |
|
155 | if e > 0: | |
156 | for _ in range(e): |
|
156 | for _ in range(e): | |
157 | self.shell.readline.remove_history_item(self.orig_length) |
|
157 | self.shell.readline.remove_history_item(self.orig_length) | |
158 |
|
158 | |||
159 | # If it still doesn't match, just reload readline history. |
|
159 | # If it still doesn't match, just reload readline history. | |
160 | if self.current_length() != self.orig_length \ |
|
160 | if self.current_length() != self.orig_length \ | |
161 | or self.get_readline_tail() != self.readline_tail: |
|
161 | or self.get_readline_tail() != self.readline_tail: | |
162 | self.shell.refill_readline_hist() |
|
162 | self.shell.refill_readline_hist() | |
163 | # Returning False will cause exceptions to propagate |
|
163 | # Returning False will cause exceptions to propagate | |
164 | return False |
|
164 | return False | |
165 |
|
165 | |||
166 | def current_length(self): |
|
166 | def current_length(self): | |
167 | return self.shell.readline.get_current_history_length() |
|
167 | return self.shell.readline.get_current_history_length() | |
168 |
|
168 | |||
169 | def get_readline_tail(self, n=10): |
|
169 | def get_readline_tail(self, n=10): | |
170 | """Get the last n items in readline history.""" |
|
170 | """Get the last n items in readline history.""" | |
171 | end = self.shell.readline.get_current_history_length() + 1 |
|
171 | end = self.shell.readline.get_current_history_length() + 1 | |
172 | start = max(end-n, 1) |
|
172 | start = max(end-n, 1) | |
173 | ghi = self.shell.readline.get_history_item |
|
173 | ghi = self.shell.readline.get_history_item | |
174 | return [ghi(x) for x in range(start, end)] |
|
174 | return [ghi(x) for x in range(start, end)] | |
175 |
|
175 | |||
176 |
|
176 | |||
177 | #----------------------------------------------------------------------------- |
|
177 | #----------------------------------------------------------------------------- | |
178 | # Main IPython class |
|
178 | # Main IPython class | |
179 | #----------------------------------------------------------------------------- |
|
179 | #----------------------------------------------------------------------------- | |
180 |
|
180 | |||
181 | class InteractiveShell(Configurable, Magic): |
|
181 | class InteractiveShell(Configurable, Magic): | |
182 | """An enhanced, interactive shell for Python.""" |
|
182 | """An enhanced, interactive shell for Python.""" | |
183 |
|
183 | |||
184 | _instance = None |
|
184 | _instance = None | |
185 | autocall = Enum((0,1,2), default_value=1, config=True) |
|
185 | autocall = Enum((0,1,2), default_value=1, config=True) | |
186 | # TODO: remove all autoindent logic and put into frontends. |
|
186 | # TODO: remove all autoindent logic and put into frontends. | |
187 | # We can't do this yet because even runlines uses the autoindent. |
|
187 | # We can't do this yet because even runlines uses the autoindent. | |
188 | autoindent = CBool(True, config=True) |
|
188 | autoindent = CBool(True, config=True) | |
189 | automagic = CBool(True, config=True) |
|
189 | automagic = CBool(True, config=True) | |
190 | cache_size = Int(1000, config=True) |
|
190 | cache_size = Int(1000, config=True) | |
191 | color_info = CBool(True, config=True) |
|
191 | color_info = CBool(True, config=True) | |
192 | colors = CaselessStrEnum(('NoColor','LightBG','Linux'), |
|
192 | colors = CaselessStrEnum(('NoColor','LightBG','Linux'), | |
193 | default_value=get_default_colors(), config=True) |
|
193 | default_value=get_default_colors(), config=True) | |
194 | debug = CBool(False, config=True) |
|
194 | debug = CBool(False, config=True) | |
195 | deep_reload = CBool(False, config=True) |
|
195 | deep_reload = CBool(False, config=True) | |
196 | display_formatter = Instance(DisplayFormatter) |
|
196 | display_formatter = Instance(DisplayFormatter) | |
197 | displayhook_class = Type(DisplayHook) |
|
197 | displayhook_class = Type(DisplayHook) | |
198 | display_pub_class = Type(DisplayPublisher) |
|
198 | display_pub_class = Type(DisplayPublisher) | |
199 |
|
199 | |||
200 | exit_now = CBool(False) |
|
200 | exit_now = CBool(False) | |
201 | # Monotonically increasing execution counter |
|
201 | # Monotonically increasing execution counter | |
202 | execution_count = Int(1) |
|
202 | execution_count = Int(1) | |
203 | filename = Unicode("<ipython console>") |
|
203 | filename = Unicode("<ipython console>") | |
204 | ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__ |
|
204 | ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__ | |
205 |
|
205 | |||
206 | # Input splitter, to split entire cells of input into either individual |
|
206 | # Input splitter, to split entire cells of input into either individual | |
207 | # interactive statements or whole blocks. |
|
207 | # interactive statements or whole blocks. | |
208 | input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter', |
|
208 | input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter', | |
209 | (), {}) |
|
209 | (), {}) | |
210 | logstart = CBool(False, config=True) |
|
210 | logstart = CBool(False, config=True) | |
211 | logfile = Unicode('', config=True) |
|
211 | logfile = Unicode('', config=True) | |
212 | logappend = Unicode('', config=True) |
|
212 | logappend = Unicode('', config=True) | |
213 | object_info_string_level = Enum((0,1,2), default_value=0, |
|
213 | object_info_string_level = Enum((0,1,2), default_value=0, | |
214 | config=True) |
|
214 | config=True) | |
215 | pdb = CBool(False, config=True) |
|
215 | pdb = CBool(False, config=True) | |
216 |
|
216 | |||
217 | profile = Unicode('', config=True) |
|
217 | profile = Unicode('', config=True) | |
218 | prompt_in1 = Str('In [\\#]: ', config=True) |
|
218 | prompt_in1 = Str('In [\\#]: ', config=True) | |
219 | prompt_in2 = Str(' .\\D.: ', config=True) |
|
219 | prompt_in2 = Str(' .\\D.: ', config=True) | |
220 | prompt_out = Str('Out[\\#]: ', config=True) |
|
220 | prompt_out = Str('Out[\\#]: ', config=True) | |
221 | prompts_pad_left = CBool(True, config=True) |
|
221 | prompts_pad_left = CBool(True, config=True) | |
222 | quiet = CBool(False, config=True) |
|
222 | quiet = CBool(False, config=True) | |
223 |
|
223 | |||
224 | history_length = Int(10000, config=True) |
|
224 | history_length = Int(10000, config=True) | |
225 |
|
225 | |||
226 | # The readline stuff will eventually be moved to the terminal subclass |
|
226 | # The readline stuff will eventually be moved to the terminal subclass | |
227 | # but for now, we can't do that as readline is welded in everywhere. |
|
227 | # but for now, we can't do that as readline is welded in everywhere. | |
228 | readline_use = CBool(True, config=True) |
|
228 | readline_use = CBool(True, config=True) | |
229 | readline_merge_completions = CBool(True, config=True) |
|
229 | readline_merge_completions = CBool(True, config=True) | |
230 | readline_omit__names = Enum((0,1,2), default_value=2, config=True) |
|
230 | readline_omit__names = Enum((0,1,2), default_value=2, config=True) | |
231 | readline_remove_delims = Str('-/~', config=True) |
|
231 | readline_remove_delims = Str('-/~', config=True) | |
232 | readline_parse_and_bind = List([ |
|
232 | readline_parse_and_bind = List([ | |
233 | 'tab: complete', |
|
233 | 'tab: complete', | |
234 | '"\C-l": clear-screen', |
|
234 | '"\C-l": clear-screen', | |
235 | 'set show-all-if-ambiguous on', |
|
235 | 'set show-all-if-ambiguous on', | |
236 | '"\C-o": tab-insert', |
|
236 | '"\C-o": tab-insert', | |
237 | # See bug gh-58 - with \M-i enabled, chars 0x9000-0x9fff |
|
237 | # See bug gh-58 - with \M-i enabled, chars 0x9000-0x9fff | |
238 | # crash IPython. |
|
238 | # crash IPython. | |
239 | '"\M-o": "\d\d\d\d"', |
|
239 | '"\M-o": "\d\d\d\d"', | |
240 | '"\M-I": "\d\d\d\d"', |
|
240 | '"\M-I": "\d\d\d\d"', | |
241 | '"\C-r": reverse-search-history', |
|
241 | '"\C-r": reverse-search-history', | |
242 | '"\C-s": forward-search-history', |
|
242 | '"\C-s": forward-search-history', | |
243 | '"\C-p": history-search-backward', |
|
243 | '"\C-p": history-search-backward', | |
244 | '"\C-n": history-search-forward', |
|
244 | '"\C-n": history-search-forward', | |
245 | '"\e[A": history-search-backward', |
|
245 | '"\e[A": history-search-backward', | |
246 | '"\e[B": history-search-forward', |
|
246 | '"\e[B": history-search-forward', | |
247 | '"\C-k": kill-line', |
|
247 | '"\C-k": kill-line', | |
248 | '"\C-u": unix-line-discard', |
|
248 | '"\C-u": unix-line-discard', | |
249 | ], allow_none=False, config=True) |
|
249 | ], allow_none=False, config=True) | |
250 |
|
250 | |||
251 | # TODO: this part of prompt management should be moved to the frontends. |
|
251 | # TODO: this part of prompt management should be moved to the frontends. | |
252 | # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n' |
|
252 | # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n' | |
253 | separate_in = SeparateStr('\n', config=True) |
|
253 | separate_in = SeparateStr('\n', config=True) | |
254 | separate_out = SeparateStr('', config=True) |
|
254 | separate_out = SeparateStr('', config=True) | |
255 | separate_out2 = SeparateStr('', config=True) |
|
255 | separate_out2 = SeparateStr('', config=True) | |
256 | wildcards_case_sensitive = CBool(True, config=True) |
|
256 | wildcards_case_sensitive = CBool(True, config=True) | |
257 | xmode = CaselessStrEnum(('Context','Plain', 'Verbose'), |
|
257 | xmode = CaselessStrEnum(('Context','Plain', 'Verbose'), | |
258 | default_value='Context', config=True) |
|
258 | default_value='Context', config=True) | |
259 |
|
259 | |||
260 | # Subcomponents of InteractiveShell |
|
260 | # Subcomponents of InteractiveShell | |
261 | alias_manager = Instance('IPython.core.alias.AliasManager') |
|
261 | alias_manager = Instance('IPython.core.alias.AliasManager') | |
262 | prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager') |
|
262 | prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager') | |
263 | builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap') |
|
263 | builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap') | |
264 | display_trap = Instance('IPython.core.display_trap.DisplayTrap') |
|
264 | display_trap = Instance('IPython.core.display_trap.DisplayTrap') | |
265 | extension_manager = Instance('IPython.core.extensions.ExtensionManager') |
|
265 | extension_manager = Instance('IPython.core.extensions.ExtensionManager') | |
266 | plugin_manager = Instance('IPython.core.plugin.PluginManager') |
|
266 | plugin_manager = Instance('IPython.core.plugin.PluginManager') | |
267 | payload_manager = Instance('IPython.core.payload.PayloadManager') |
|
267 | payload_manager = Instance('IPython.core.payload.PayloadManager') | |
268 | history_manager = Instance('IPython.core.history.HistoryManager') |
|
268 | history_manager = Instance('IPython.core.history.HistoryManager') | |
269 |
|
269 | |||
270 | # Private interface |
|
270 | # Private interface | |
271 | _post_execute = set() |
|
271 | _post_execute = set() | |
272 |
|
272 | |||
273 | def __init__(self, config=None, ipython_dir=None, |
|
273 | def __init__(self, config=None, ipython_dir=None, | |
274 | user_ns=None, user_global_ns=None, |
|
274 | user_ns=None, user_global_ns=None, | |
275 | custom_exceptions=((), None)): |
|
275 | custom_exceptions=((), None)): | |
276 |
|
276 | |||
277 | # This is where traits with a config_key argument are updated |
|
277 | # This is where traits with a config_key argument are updated | |
278 | # from the values on config. |
|
278 | # from the values on config. | |
279 | super(InteractiveShell, self).__init__(config=config) |
|
279 | super(InteractiveShell, self).__init__(config=config) | |
280 |
|
280 | |||
281 | # These are relatively independent and stateless |
|
281 | # These are relatively independent and stateless | |
282 | self.init_ipython_dir(ipython_dir) |
|
282 | self.init_ipython_dir(ipython_dir) | |
283 | self.init_instance_attrs() |
|
283 | self.init_instance_attrs() | |
284 | self.init_environment() |
|
284 | self.init_environment() | |
285 |
|
285 | |||
286 | # Create namespaces (user_ns, user_global_ns, etc.) |
|
286 | # Create namespaces (user_ns, user_global_ns, etc.) | |
287 | self.init_create_namespaces(user_ns, user_global_ns) |
|
287 | self.init_create_namespaces(user_ns, user_global_ns) | |
288 | # This has to be done after init_create_namespaces because it uses |
|
288 | # This has to be done after init_create_namespaces because it uses | |
289 | # something in self.user_ns, but before init_sys_modules, which |
|
289 | # something in self.user_ns, but before init_sys_modules, which | |
290 | # is the first thing to modify sys. |
|
290 | # is the first thing to modify sys. | |
291 | # TODO: When we override sys.stdout and sys.stderr before this class |
|
291 | # TODO: When we override sys.stdout and sys.stderr before this class | |
292 | # is created, we are saving the overridden ones here. Not sure if this |
|
292 | # is created, we are saving the overridden ones here. Not sure if this | |
293 | # is what we want to do. |
|
293 | # is what we want to do. | |
294 | self.save_sys_module_state() |
|
294 | self.save_sys_module_state() | |
295 | self.init_sys_modules() |
|
295 | self.init_sys_modules() | |
296 |
|
296 | |||
297 | # While we're trying to have each part of the code directly access what |
|
297 | # While we're trying to have each part of the code directly access what | |
298 | # it needs without keeping redundant references to objects, we have too |
|
298 | # it needs without keeping redundant references to objects, we have too | |
299 | # much legacy code that expects ip.db to exist. |
|
299 | # much legacy code that expects ip.db to exist. | |
300 | self.db = PickleShareDB(os.path.join(self.ipython_dir, 'db')) |
|
300 | self.db = PickleShareDB(os.path.join(self.ipython_dir, 'db')) | |
301 |
|
301 | |||
302 | self.init_history() |
|
302 | self.init_history() | |
303 | self.init_encoding() |
|
303 | self.init_encoding() | |
304 | self.init_prefilter() |
|
304 | self.init_prefilter() | |
305 |
|
305 | |||
306 | Magic.__init__(self, self) |
|
306 | Magic.__init__(self, self) | |
307 |
|
307 | |||
308 | self.init_syntax_highlighting() |
|
308 | self.init_syntax_highlighting() | |
309 | self.init_hooks() |
|
309 | self.init_hooks() | |
310 | self.init_pushd_popd_magic() |
|
310 | self.init_pushd_popd_magic() | |
311 | # self.init_traceback_handlers use to be here, but we moved it below |
|
311 | # self.init_traceback_handlers use to be here, but we moved it below | |
312 | # because it and init_io have to come after init_readline. |
|
312 | # because it and init_io have to come after init_readline. | |
313 | self.init_user_ns() |
|
313 | self.init_user_ns() | |
314 | self.init_logger() |
|
314 | self.init_logger() | |
315 | self.init_alias() |
|
315 | self.init_alias() | |
316 | self.init_builtins() |
|
316 | self.init_builtins() | |
317 |
|
317 | |||
318 | # pre_config_initialization |
|
318 | # pre_config_initialization | |
319 |
|
319 | |||
320 | # The next section should contain everything that was in ipmaker. |
|
320 | # The next section should contain everything that was in ipmaker. | |
321 | self.init_logstart() |
|
321 | self.init_logstart() | |
322 |
|
322 | |||
323 | # The following was in post_config_initialization |
|
323 | # The following was in post_config_initialization | |
324 | self.init_inspector() |
|
324 | self.init_inspector() | |
325 | # init_readline() must come before init_io(), because init_io uses |
|
325 | # init_readline() must come before init_io(), because init_io uses | |
326 | # readline related things. |
|
326 | # readline related things. | |
327 | self.init_readline() |
|
327 | self.init_readline() | |
328 | # init_completer must come after init_readline, because it needs to |
|
328 | # init_completer must come after init_readline, because it needs to | |
329 | # know whether readline is present or not system-wide to configure the |
|
329 | # know whether readline is present or not system-wide to configure the | |
330 | # completers, since the completion machinery can now operate |
|
330 | # completers, since the completion machinery can now operate | |
331 | # independently of readline (e.g. over the network) |
|
331 | # independently of readline (e.g. over the network) | |
332 | self.init_completer() |
|
332 | self.init_completer() | |
333 | # TODO: init_io() needs to happen before init_traceback handlers |
|
333 | # TODO: init_io() needs to happen before init_traceback handlers | |
334 | # because the traceback handlers hardcode the stdout/stderr streams. |
|
334 | # because the traceback handlers hardcode the stdout/stderr streams. | |
335 | # This logic in in debugger.Pdb and should eventually be changed. |
|
335 | # This logic in in debugger.Pdb and should eventually be changed. | |
336 | self.init_io() |
|
336 | self.init_io() | |
337 | self.init_traceback_handlers(custom_exceptions) |
|
337 | self.init_traceback_handlers(custom_exceptions) | |
338 | self.init_prompts() |
|
338 | self.init_prompts() | |
339 | self.init_display_formatter() |
|
339 | self.init_display_formatter() | |
340 | self.init_display_pub() |
|
340 | self.init_display_pub() | |
341 | self.init_displayhook() |
|
341 | self.init_displayhook() | |
342 | self.init_reload_doctest() |
|
342 | self.init_reload_doctest() | |
343 | self.init_magics() |
|
343 | self.init_magics() | |
344 | self.init_pdb() |
|
344 | self.init_pdb() | |
345 | self.init_extension_manager() |
|
345 | self.init_extension_manager() | |
346 | self.init_plugin_manager() |
|
346 | self.init_plugin_manager() | |
347 | self.init_payload() |
|
347 | self.init_payload() | |
348 | self.hooks.late_startup_hook() |
|
348 | self.hooks.late_startup_hook() | |
349 | atexit.register(self.atexit_operations) |
|
349 | atexit.register(self.atexit_operations) | |
350 |
|
350 | |||
351 | @classmethod |
|
351 | @classmethod | |
352 | def instance(cls, *args, **kwargs): |
|
352 | def instance(cls, *args, **kwargs): | |
353 | """Returns a global InteractiveShell instance.""" |
|
353 | """Returns a global InteractiveShell instance.""" | |
354 | if cls._instance is None: |
|
354 | if cls._instance is None: | |
355 | inst = cls(*args, **kwargs) |
|
355 | inst = cls(*args, **kwargs) | |
356 | # Now make sure that the instance will also be returned by |
|
356 | # Now make sure that the instance will also be returned by | |
357 | # the subclasses instance attribute. |
|
357 | # the subclasses instance attribute. | |
358 | for subclass in cls.mro(): |
|
358 | for subclass in cls.mro(): | |
359 | if issubclass(cls, subclass) and \ |
|
359 | if issubclass(cls, subclass) and \ | |
360 | issubclass(subclass, InteractiveShell): |
|
360 | issubclass(subclass, InteractiveShell): | |
361 | subclass._instance = inst |
|
361 | subclass._instance = inst | |
362 | else: |
|
362 | else: | |
363 | break |
|
363 | break | |
364 | if isinstance(cls._instance, cls): |
|
364 | if isinstance(cls._instance, cls): | |
365 | return cls._instance |
|
365 | return cls._instance | |
366 | else: |
|
366 | else: | |
367 | raise MultipleInstanceError( |
|
367 | raise MultipleInstanceError( | |
368 | 'Multiple incompatible subclass instances of ' |
|
368 | 'Multiple incompatible subclass instances of ' | |
369 | 'InteractiveShell are being created.' |
|
369 | 'InteractiveShell are being created.' | |
370 | ) |
|
370 | ) | |
371 |
|
371 | |||
372 | @classmethod |
|
372 | @classmethod | |
373 | def initialized(cls): |
|
373 | def initialized(cls): | |
374 | return hasattr(cls, "_instance") |
|
374 | return hasattr(cls, "_instance") | |
375 |
|
375 | |||
376 | def get_ipython(self): |
|
376 | def get_ipython(self): | |
377 | """Return the currently running IPython instance.""" |
|
377 | """Return the currently running IPython instance.""" | |
378 | return self |
|
378 | return self | |
379 |
|
379 | |||
380 | #------------------------------------------------------------------------- |
|
380 | #------------------------------------------------------------------------- | |
381 | # Trait changed handlers |
|
381 | # Trait changed handlers | |
382 | #------------------------------------------------------------------------- |
|
382 | #------------------------------------------------------------------------- | |
383 |
|
383 | |||
384 | def _ipython_dir_changed(self, name, new): |
|
384 | def _ipython_dir_changed(self, name, new): | |
385 | if not os.path.isdir(new): |
|
385 | if not os.path.isdir(new): | |
386 | os.makedirs(new, mode = 0777) |
|
386 | os.makedirs(new, mode = 0777) | |
387 |
|
387 | |||
388 | def set_autoindent(self,value=None): |
|
388 | def set_autoindent(self,value=None): | |
389 | """Set the autoindent flag, checking for readline support. |
|
389 | """Set the autoindent flag, checking for readline support. | |
390 |
|
390 | |||
391 | If called with no arguments, it acts as a toggle.""" |
|
391 | If called with no arguments, it acts as a toggle.""" | |
392 |
|
392 | |||
393 | if not self.has_readline: |
|
393 | if not self.has_readline: | |
394 | if os.name == 'posix': |
|
394 | if os.name == 'posix': | |
395 | warn("The auto-indent feature requires the readline library") |
|
395 | warn("The auto-indent feature requires the readline library") | |
396 | self.autoindent = 0 |
|
396 | self.autoindent = 0 | |
397 | return |
|
397 | return | |
398 | if value is None: |
|
398 | if value is None: | |
399 | self.autoindent = not self.autoindent |
|
399 | self.autoindent = not self.autoindent | |
400 | else: |
|
400 | else: | |
401 | self.autoindent = value |
|
401 | self.autoindent = value | |
402 |
|
402 | |||
403 | #------------------------------------------------------------------------- |
|
403 | #------------------------------------------------------------------------- | |
404 | # init_* methods called by __init__ |
|
404 | # init_* methods called by __init__ | |
405 | #------------------------------------------------------------------------- |
|
405 | #------------------------------------------------------------------------- | |
406 |
|
406 | |||
407 | def init_ipython_dir(self, ipython_dir): |
|
407 | def init_ipython_dir(self, ipython_dir): | |
408 | if ipython_dir is not None: |
|
408 | if ipython_dir is not None: | |
409 | self.ipython_dir = ipython_dir |
|
409 | self.ipython_dir = ipython_dir | |
410 | self.config.Global.ipython_dir = self.ipython_dir |
|
410 | self.config.Global.ipython_dir = self.ipython_dir | |
411 | return |
|
411 | return | |
412 |
|
412 | |||
413 | if hasattr(self.config.Global, 'ipython_dir'): |
|
413 | if hasattr(self.config.Global, 'ipython_dir'): | |
414 | self.ipython_dir = self.config.Global.ipython_dir |
|
414 | self.ipython_dir = self.config.Global.ipython_dir | |
415 | else: |
|
415 | else: | |
416 | self.ipython_dir = get_ipython_dir() |
|
416 | self.ipython_dir = get_ipython_dir() | |
417 |
|
417 | |||
418 | # All children can just read this |
|
418 | # All children can just read this | |
419 | self.config.Global.ipython_dir = self.ipython_dir |
|
419 | self.config.Global.ipython_dir = self.ipython_dir | |
420 |
|
420 | |||
421 | def init_instance_attrs(self): |
|
421 | def init_instance_attrs(self): | |
422 | self.more = False |
|
422 | self.more = False | |
423 |
|
423 | |||
424 | # command compiler |
|
424 | # command compiler | |
425 | self.compile = CachingCompiler() |
|
425 | self.compile = CachingCompiler() | |
426 |
|
426 | |||
427 | # User input buffers |
|
427 | # User input buffers | |
428 | # NOTE: these variables are slated for full removal, once we are 100% |
|
428 | # NOTE: these variables are slated for full removal, once we are 100% | |
429 | # sure that the new execution logic is solid. We will delte runlines, |
|
429 | # sure that the new execution logic is solid. We will delte runlines, | |
430 | # push_line and these buffers, as all input will be managed by the |
|
430 | # push_line and these buffers, as all input will be managed by the | |
431 | # frontends via an inputsplitter instance. |
|
431 | # frontends via an inputsplitter instance. | |
432 | self.buffer = [] |
|
432 | self.buffer = [] | |
433 | self.buffer_raw = [] |
|
433 | self.buffer_raw = [] | |
434 |
|
434 | |||
435 | # Make an empty namespace, which extension writers can rely on both |
|
435 | # Make an empty namespace, which extension writers can rely on both | |
436 | # existing and NEVER being used by ipython itself. This gives them a |
|
436 | # existing and NEVER being used by ipython itself. This gives them a | |
437 | # convenient location for storing additional information and state |
|
437 | # convenient location for storing additional information and state | |
438 | # their extensions may require, without fear of collisions with other |
|
438 | # their extensions may require, without fear of collisions with other | |
439 | # ipython names that may develop later. |
|
439 | # ipython names that may develop later. | |
440 | self.meta = Struct() |
|
440 | self.meta = Struct() | |
441 |
|
441 | |||
442 | # Object variable to store code object waiting execution. This is |
|
442 | # Object variable to store code object waiting execution. This is | |
443 | # used mainly by the multithreaded shells, but it can come in handy in |
|
443 | # used mainly by the multithreaded shells, but it can come in handy in | |
444 | # other situations. No need to use a Queue here, since it's a single |
|
444 | # other situations. No need to use a Queue here, since it's a single | |
445 | # item which gets cleared once run. |
|
445 | # item which gets cleared once run. | |
446 | self.code_to_run = None |
|
446 | self.code_to_run = None | |
447 |
|
447 | |||
448 | # Temporary files used for various purposes. Deleted at exit. |
|
448 | # Temporary files used for various purposes. Deleted at exit. | |
449 | self.tempfiles = [] |
|
449 | self.tempfiles = [] | |
450 |
|
450 | |||
451 | # Keep track of readline usage (later set by init_readline) |
|
451 | # Keep track of readline usage (later set by init_readline) | |
452 | self.has_readline = False |
|
452 | self.has_readline = False | |
453 |
|
453 | |||
454 | # keep track of where we started running (mainly for crash post-mortem) |
|
454 | # keep track of where we started running (mainly for crash post-mortem) | |
455 | # This is not being used anywhere currently. |
|
455 | # This is not being used anywhere currently. | |
456 | self.starting_dir = os.getcwd() |
|
456 | self.starting_dir = os.getcwd() | |
457 |
|
457 | |||
458 | # Indentation management |
|
458 | # Indentation management | |
459 | self.indent_current_nsp = 0 |
|
459 | self.indent_current_nsp = 0 | |
460 |
|
460 | |||
461 | def init_environment(self): |
|
461 | def init_environment(self): | |
462 | """Any changes we need to make to the user's environment.""" |
|
462 | """Any changes we need to make to the user's environment.""" | |
463 | pass |
|
463 | pass | |
464 |
|
464 | |||
465 | def init_encoding(self): |
|
465 | def init_encoding(self): | |
466 | # Get system encoding at startup time. Certain terminals (like Emacs |
|
466 | # Get system encoding at startup time. Certain terminals (like Emacs | |
467 | # under Win32 have it set to None, and we need to have a known valid |
|
467 | # under Win32 have it set to None, and we need to have a known valid | |
468 | # encoding to use in the raw_input() method |
|
468 | # encoding to use in the raw_input() method | |
469 | try: |
|
469 | try: | |
470 | self.stdin_encoding = sys.stdin.encoding or 'ascii' |
|
470 | self.stdin_encoding = sys.stdin.encoding or 'ascii' | |
471 | except AttributeError: |
|
471 | except AttributeError: | |
472 | self.stdin_encoding = 'ascii' |
|
472 | self.stdin_encoding = 'ascii' | |
473 |
|
473 | |||
474 | def init_syntax_highlighting(self): |
|
474 | def init_syntax_highlighting(self): | |
475 | # Python source parser/formatter for syntax highlighting |
|
475 | # Python source parser/formatter for syntax highlighting | |
476 | pyformat = PyColorize.Parser().format |
|
476 | pyformat = PyColorize.Parser().format | |
477 | self.pycolorize = lambda src: pyformat(src,'str',self.colors) |
|
477 | self.pycolorize = lambda src: pyformat(src,'str',self.colors) | |
478 |
|
478 | |||
479 | def init_pushd_popd_magic(self): |
|
479 | def init_pushd_popd_magic(self): | |
480 | # for pushd/popd management |
|
480 | # for pushd/popd management | |
481 | try: |
|
481 | try: | |
482 | self.home_dir = get_home_dir() |
|
482 | self.home_dir = get_home_dir() | |
483 | except HomeDirError, msg: |
|
483 | except HomeDirError, msg: | |
484 | fatal(msg) |
|
484 | fatal(msg) | |
485 |
|
485 | |||
486 | self.dir_stack = [] |
|
486 | self.dir_stack = [] | |
487 |
|
487 | |||
488 | def init_logger(self): |
|
488 | def init_logger(self): | |
489 | self.logger = Logger(self.home_dir, logfname='ipython_log.py', |
|
489 | self.logger = Logger(self.home_dir, logfname='ipython_log.py', | |
490 | logmode='rotate') |
|
490 | logmode='rotate') | |
491 |
|
491 | |||
492 | def init_logstart(self): |
|
492 | def init_logstart(self): | |
493 | """Initialize logging in case it was requested at the command line. |
|
493 | """Initialize logging in case it was requested at the command line. | |
494 | """ |
|
494 | """ | |
495 | if self.logappend: |
|
495 | if self.logappend: | |
496 | self.magic_logstart(self.logappend + ' append') |
|
496 | self.magic_logstart(self.logappend + ' append') | |
497 | elif self.logfile: |
|
497 | elif self.logfile: | |
498 | self.magic_logstart(self.logfile) |
|
498 | self.magic_logstart(self.logfile) | |
499 | elif self.logstart: |
|
499 | elif self.logstart: | |
500 | self.magic_logstart() |
|
500 | self.magic_logstart() | |
501 |
|
501 | |||
502 | def init_builtins(self): |
|
502 | def init_builtins(self): | |
503 | self.builtin_trap = BuiltinTrap(shell=self) |
|
503 | self.builtin_trap = BuiltinTrap(shell=self) | |
504 |
|
504 | |||
505 | def init_inspector(self): |
|
505 | def init_inspector(self): | |
506 | # Object inspector |
|
506 | # Object inspector | |
507 | self.inspector = oinspect.Inspector(oinspect.InspectColors, |
|
507 | self.inspector = oinspect.Inspector(oinspect.InspectColors, | |
508 | PyColorize.ANSICodeColors, |
|
508 | PyColorize.ANSICodeColors, | |
509 | 'NoColor', |
|
509 | 'NoColor', | |
510 | self.object_info_string_level) |
|
510 | self.object_info_string_level) | |
511 |
|
511 | |||
512 | def init_io(self): |
|
512 | def init_io(self): | |
513 | # This will just use sys.stdout and sys.stderr. If you want to |
|
513 | # This will just use sys.stdout and sys.stderr. If you want to | |
514 | # override sys.stdout and sys.stderr themselves, you need to do that |
|
514 | # override sys.stdout and sys.stderr themselves, you need to do that | |
515 | # *before* instantiating this class, because Term holds onto |
|
515 | # *before* instantiating this class, because Term holds onto | |
516 | # references to the underlying streams. |
|
516 | # references to the underlying streams. | |
517 | if sys.platform == 'win32' and self.has_readline: |
|
517 | if sys.platform == 'win32' and self.has_readline: | |
518 | Term = io.IOTerm(cout=self.readline._outputfile, |
|
518 | Term = io.IOTerm(cout=self.readline._outputfile, | |
519 | cerr=self.readline._outputfile) |
|
519 | cerr=self.readline._outputfile) | |
520 | else: |
|
520 | else: | |
521 | Term = io.IOTerm() |
|
521 | Term = io.IOTerm() | |
522 | io.Term = Term |
|
522 | io.Term = Term | |
523 |
|
523 | |||
524 | def init_prompts(self): |
|
524 | def init_prompts(self): | |
525 | # TODO: This is a pass for now because the prompts are managed inside |
|
525 | # TODO: This is a pass for now because the prompts are managed inside | |
526 | # the DisplayHook. Once there is a separate prompt manager, this |
|
526 | # the DisplayHook. Once there is a separate prompt manager, this | |
527 | # will initialize that object and all prompt related information. |
|
527 | # will initialize that object and all prompt related information. | |
528 | pass |
|
528 | pass | |
529 |
|
529 | |||
530 | def init_display_formatter(self): |
|
530 | def init_display_formatter(self): | |
531 | self.display_formatter = DisplayFormatter(config=self.config) |
|
531 | self.display_formatter = DisplayFormatter(config=self.config) | |
532 |
|
532 | |||
533 | def init_display_pub(self): |
|
533 | def init_display_pub(self): | |
534 | self.display_pub = self.display_pub_class(config=self.config) |
|
534 | self.display_pub = self.display_pub_class(config=self.config) | |
535 |
|
535 | |||
536 | def init_displayhook(self): |
|
536 | def init_displayhook(self): | |
537 | # Initialize displayhook, set in/out prompts and printing system |
|
537 | # Initialize displayhook, set in/out prompts and printing system | |
538 | self.displayhook = self.displayhook_class( |
|
538 | self.displayhook = self.displayhook_class( | |
539 | config=self.config, |
|
539 | config=self.config, | |
540 | shell=self, |
|
540 | shell=self, | |
541 | cache_size=self.cache_size, |
|
541 | cache_size=self.cache_size, | |
542 | input_sep = self.separate_in, |
|
542 | input_sep = self.separate_in, | |
543 | output_sep = self.separate_out, |
|
543 | output_sep = self.separate_out, | |
544 | output_sep2 = self.separate_out2, |
|
544 | output_sep2 = self.separate_out2, | |
545 | ps1 = self.prompt_in1, |
|
545 | ps1 = self.prompt_in1, | |
546 | ps2 = self.prompt_in2, |
|
546 | ps2 = self.prompt_in2, | |
547 | ps_out = self.prompt_out, |
|
547 | ps_out = self.prompt_out, | |
548 | pad_left = self.prompts_pad_left |
|
548 | pad_left = self.prompts_pad_left | |
549 | ) |
|
549 | ) | |
550 | # This is a context manager that installs/revmoes the displayhook at |
|
550 | # This is a context manager that installs/revmoes the displayhook at | |
551 | # the appropriate time. |
|
551 | # the appropriate time. | |
552 | self.display_trap = DisplayTrap(hook=self.displayhook) |
|
552 | self.display_trap = DisplayTrap(hook=self.displayhook) | |
553 |
|
553 | |||
554 | def init_reload_doctest(self): |
|
554 | def init_reload_doctest(self): | |
555 | # Do a proper resetting of doctest, including the necessary displayhook |
|
555 | # Do a proper resetting of doctest, including the necessary displayhook | |
556 | # monkeypatching |
|
556 | # monkeypatching | |
557 | try: |
|
557 | try: | |
558 | doctest_reload() |
|
558 | doctest_reload() | |
559 | except ImportError: |
|
559 | except ImportError: | |
560 | warn("doctest module does not exist.") |
|
560 | warn("doctest module does not exist.") | |
561 |
|
561 | |||
562 | #------------------------------------------------------------------------- |
|
562 | #------------------------------------------------------------------------- | |
563 | # Things related to injections into the sys module |
|
563 | # Things related to injections into the sys module | |
564 | #------------------------------------------------------------------------- |
|
564 | #------------------------------------------------------------------------- | |
565 |
|
565 | |||
566 | def save_sys_module_state(self): |
|
566 | def save_sys_module_state(self): | |
567 | """Save the state of hooks in the sys module. |
|
567 | """Save the state of hooks in the sys module. | |
568 |
|
568 | |||
569 | This has to be called after self.user_ns is created. |
|
569 | This has to be called after self.user_ns is created. | |
570 | """ |
|
570 | """ | |
571 | self._orig_sys_module_state = {} |
|
571 | self._orig_sys_module_state = {} | |
572 | self._orig_sys_module_state['stdin'] = sys.stdin |
|
572 | self._orig_sys_module_state['stdin'] = sys.stdin | |
573 | self._orig_sys_module_state['stdout'] = sys.stdout |
|
573 | self._orig_sys_module_state['stdout'] = sys.stdout | |
574 | self._orig_sys_module_state['stderr'] = sys.stderr |
|
574 | self._orig_sys_module_state['stderr'] = sys.stderr | |
575 | self._orig_sys_module_state['excepthook'] = sys.excepthook |
|
575 | self._orig_sys_module_state['excepthook'] = sys.excepthook | |
576 | try: |
|
576 | try: | |
577 | self._orig_sys_modules_main_name = self.user_ns['__name__'] |
|
577 | self._orig_sys_modules_main_name = self.user_ns['__name__'] | |
578 | except KeyError: |
|
578 | except KeyError: | |
579 | pass |
|
579 | pass | |
580 |
|
580 | |||
581 | def restore_sys_module_state(self): |
|
581 | def restore_sys_module_state(self): | |
582 | """Restore the state of the sys module.""" |
|
582 | """Restore the state of the sys module.""" | |
583 | try: |
|
583 | try: | |
584 | for k, v in self._orig_sys_module_state.iteritems(): |
|
584 | for k, v in self._orig_sys_module_state.iteritems(): | |
585 | setattr(sys, k, v) |
|
585 | setattr(sys, k, v) | |
586 | except AttributeError: |
|
586 | except AttributeError: | |
587 | pass |
|
587 | pass | |
588 | # Reset what what done in self.init_sys_modules |
|
588 | # Reset what what done in self.init_sys_modules | |
589 | try: |
|
589 | try: | |
590 | sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name |
|
590 | sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name | |
591 | except (AttributeError, KeyError): |
|
591 | except (AttributeError, KeyError): | |
592 | pass |
|
592 | pass | |
593 |
|
593 | |||
594 | #------------------------------------------------------------------------- |
|
594 | #------------------------------------------------------------------------- | |
595 | # Things related to hooks |
|
595 | # Things related to hooks | |
596 | #------------------------------------------------------------------------- |
|
596 | #------------------------------------------------------------------------- | |
597 |
|
597 | |||
598 | def init_hooks(self): |
|
598 | def init_hooks(self): | |
599 | # hooks holds pointers used for user-side customizations |
|
599 | # hooks holds pointers used for user-side customizations | |
600 | self.hooks = Struct() |
|
600 | self.hooks = Struct() | |
601 |
|
601 | |||
602 | self.strdispatchers = {} |
|
602 | self.strdispatchers = {} | |
603 |
|
603 | |||
604 | # Set all default hooks, defined in the IPython.hooks module. |
|
604 | # Set all default hooks, defined in the IPython.hooks module. | |
605 | hooks = IPython.core.hooks |
|
605 | hooks = IPython.core.hooks | |
606 | for hook_name in hooks.__all__: |
|
606 | for hook_name in hooks.__all__: | |
607 | # default hooks have priority 100, i.e. low; user hooks should have |
|
607 | # default hooks have priority 100, i.e. low; user hooks should have | |
608 | # 0-100 priority |
|
608 | # 0-100 priority | |
609 | self.set_hook(hook_name,getattr(hooks,hook_name), 100) |
|
609 | self.set_hook(hook_name,getattr(hooks,hook_name), 100) | |
610 |
|
610 | |||
611 | def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None): |
|
611 | def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None): | |
612 | """set_hook(name,hook) -> sets an internal IPython hook. |
|
612 | """set_hook(name,hook) -> sets an internal IPython hook. | |
613 |
|
613 | |||
614 | IPython exposes some of its internal API as user-modifiable hooks. By |
|
614 | IPython exposes some of its internal API as user-modifiable hooks. By | |
615 | adding your function to one of these hooks, you can modify IPython's |
|
615 | adding your function to one of these hooks, you can modify IPython's | |
616 | behavior to call at runtime your own routines.""" |
|
616 | behavior to call at runtime your own routines.""" | |
617 |
|
617 | |||
618 | # At some point in the future, this should validate the hook before it |
|
618 | # At some point in the future, this should validate the hook before it | |
619 | # accepts it. Probably at least check that the hook takes the number |
|
619 | # accepts it. Probably at least check that the hook takes the number | |
620 | # of args it's supposed to. |
|
620 | # of args it's supposed to. | |
621 |
|
621 | |||
622 | f = types.MethodType(hook,self) |
|
622 | f = types.MethodType(hook,self) | |
623 |
|
623 | |||
624 | # check if the hook is for strdispatcher first |
|
624 | # check if the hook is for strdispatcher first | |
625 | if str_key is not None: |
|
625 | if str_key is not None: | |
626 | sdp = self.strdispatchers.get(name, StrDispatch()) |
|
626 | sdp = self.strdispatchers.get(name, StrDispatch()) | |
627 | sdp.add_s(str_key, f, priority ) |
|
627 | sdp.add_s(str_key, f, priority ) | |
628 | self.strdispatchers[name] = sdp |
|
628 | self.strdispatchers[name] = sdp | |
629 | return |
|
629 | return | |
630 | if re_key is not None: |
|
630 | if re_key is not None: | |
631 | sdp = self.strdispatchers.get(name, StrDispatch()) |
|
631 | sdp = self.strdispatchers.get(name, StrDispatch()) | |
632 | sdp.add_re(re.compile(re_key), f, priority ) |
|
632 | sdp.add_re(re.compile(re_key), f, priority ) | |
633 | self.strdispatchers[name] = sdp |
|
633 | self.strdispatchers[name] = sdp | |
634 | return |
|
634 | return | |
635 |
|
635 | |||
636 | dp = getattr(self.hooks, name, None) |
|
636 | dp = getattr(self.hooks, name, None) | |
637 | if name not in IPython.core.hooks.__all__: |
|
637 | if name not in IPython.core.hooks.__all__: | |
638 | print "Warning! Hook '%s' is not one of %s" % \ |
|
638 | print "Warning! Hook '%s' is not one of %s" % \ | |
639 | (name, IPython.core.hooks.__all__ ) |
|
639 | (name, IPython.core.hooks.__all__ ) | |
640 | if not dp: |
|
640 | if not dp: | |
641 | dp = IPython.core.hooks.CommandChainDispatcher() |
|
641 | dp = IPython.core.hooks.CommandChainDispatcher() | |
642 |
|
642 | |||
643 | try: |
|
643 | try: | |
644 | dp.add(f,priority) |
|
644 | dp.add(f,priority) | |
645 | except AttributeError: |
|
645 | except AttributeError: | |
646 | # it was not commandchain, plain old func - replace |
|
646 | # it was not commandchain, plain old func - replace | |
647 | dp = f |
|
647 | dp = f | |
648 |
|
648 | |||
649 | setattr(self.hooks,name, dp) |
|
649 | setattr(self.hooks,name, dp) | |
650 |
|
650 | |||
651 | def register_post_execute(self, func): |
|
651 | def register_post_execute(self, func): | |
652 | """Register a function for calling after code execution. |
|
652 | """Register a function for calling after code execution. | |
653 | """ |
|
653 | """ | |
654 | if not callable(func): |
|
654 | if not callable(func): | |
655 | raise ValueError('argument %s must be callable' % func) |
|
655 | raise ValueError('argument %s must be callable' % func) | |
656 | self._post_execute.add(func) |
|
656 | self._post_execute.add(func) | |
657 |
|
657 | |||
658 | #------------------------------------------------------------------------- |
|
658 | #------------------------------------------------------------------------- | |
659 | # Things related to the "main" module |
|
659 | # Things related to the "main" module | |
660 | #------------------------------------------------------------------------- |
|
660 | #------------------------------------------------------------------------- | |
661 |
|
661 | |||
662 | def new_main_mod(self,ns=None): |
|
662 | def new_main_mod(self,ns=None): | |
663 | """Return a new 'main' module object for user code execution. |
|
663 | """Return a new 'main' module object for user code execution. | |
664 | """ |
|
664 | """ | |
665 | main_mod = self._user_main_module |
|
665 | main_mod = self._user_main_module | |
666 | init_fakemod_dict(main_mod,ns) |
|
666 | init_fakemod_dict(main_mod,ns) | |
667 | return main_mod |
|
667 | return main_mod | |
668 |
|
668 | |||
669 | def cache_main_mod(self,ns,fname): |
|
669 | def cache_main_mod(self,ns,fname): | |
670 | """Cache a main module's namespace. |
|
670 | """Cache a main module's namespace. | |
671 |
|
671 | |||
672 | When scripts are executed via %run, we must keep a reference to the |
|
672 | When scripts are executed via %run, we must keep a reference to the | |
673 | namespace of their __main__ module (a FakeModule instance) around so |
|
673 | namespace of their __main__ module (a FakeModule instance) around so | |
674 | that Python doesn't clear it, rendering objects defined therein |
|
674 | that Python doesn't clear it, rendering objects defined therein | |
675 | useless. |
|
675 | useless. | |
676 |
|
676 | |||
677 | This method keeps said reference in a private dict, keyed by the |
|
677 | This method keeps said reference in a private dict, keyed by the | |
678 | absolute path of the module object (which corresponds to the script |
|
678 | absolute path of the module object (which corresponds to the script | |
679 | path). This way, for multiple executions of the same script we only |
|
679 | path). This way, for multiple executions of the same script we only | |
680 | keep one copy of the namespace (the last one), thus preventing memory |
|
680 | keep one copy of the namespace (the last one), thus preventing memory | |
681 | leaks from old references while allowing the objects from the last |
|
681 | leaks from old references while allowing the objects from the last | |
682 | execution to be accessible. |
|
682 | execution to be accessible. | |
683 |
|
683 | |||
684 | Note: we can not allow the actual FakeModule instances to be deleted, |
|
684 | Note: we can not allow the actual FakeModule instances to be deleted, | |
685 | because of how Python tears down modules (it hard-sets all their |
|
685 | because of how Python tears down modules (it hard-sets all their | |
686 | references to None without regard for reference counts). This method |
|
686 | references to None without regard for reference counts). This method | |
687 | must therefore make a *copy* of the given namespace, to allow the |
|
687 | must therefore make a *copy* of the given namespace, to allow the | |
688 | original module's __dict__ to be cleared and reused. |
|
688 | original module's __dict__ to be cleared and reused. | |
689 |
|
689 | |||
690 |
|
690 | |||
691 | Parameters |
|
691 | Parameters | |
692 | ---------- |
|
692 | ---------- | |
693 | ns : a namespace (a dict, typically) |
|
693 | ns : a namespace (a dict, typically) | |
694 |
|
694 | |||
695 | fname : str |
|
695 | fname : str | |
696 | Filename associated with the namespace. |
|
696 | Filename associated with the namespace. | |
697 |
|
697 | |||
698 | Examples |
|
698 | Examples | |
699 | -------- |
|
699 | -------- | |
700 |
|
700 | |||
701 | In [10]: import IPython |
|
701 | In [10]: import IPython | |
702 |
|
702 | |||
703 | In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) |
|
703 | In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) | |
704 |
|
704 | |||
705 | In [12]: IPython.__file__ in _ip._main_ns_cache |
|
705 | In [12]: IPython.__file__ in _ip._main_ns_cache | |
706 | Out[12]: True |
|
706 | Out[12]: True | |
707 | """ |
|
707 | """ | |
708 | self._main_ns_cache[os.path.abspath(fname)] = ns.copy() |
|
708 | self._main_ns_cache[os.path.abspath(fname)] = ns.copy() | |
709 |
|
709 | |||
710 | def clear_main_mod_cache(self): |
|
710 | def clear_main_mod_cache(self): | |
711 | """Clear the cache of main modules. |
|
711 | """Clear the cache of main modules. | |
712 |
|
712 | |||
713 | Mainly for use by utilities like %reset. |
|
713 | Mainly for use by utilities like %reset. | |
714 |
|
714 | |||
715 | Examples |
|
715 | Examples | |
716 | -------- |
|
716 | -------- | |
717 |
|
717 | |||
718 | In [15]: import IPython |
|
718 | In [15]: import IPython | |
719 |
|
719 | |||
720 | In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) |
|
720 | In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) | |
721 |
|
721 | |||
722 | In [17]: len(_ip._main_ns_cache) > 0 |
|
722 | In [17]: len(_ip._main_ns_cache) > 0 | |
723 | Out[17]: True |
|
723 | Out[17]: True | |
724 |
|
724 | |||
725 | In [18]: _ip.clear_main_mod_cache() |
|
725 | In [18]: _ip.clear_main_mod_cache() | |
726 |
|
726 | |||
727 | In [19]: len(_ip._main_ns_cache) == 0 |
|
727 | In [19]: len(_ip._main_ns_cache) == 0 | |
728 | Out[19]: True |
|
728 | Out[19]: True | |
729 | """ |
|
729 | """ | |
730 | self._main_ns_cache.clear() |
|
730 | self._main_ns_cache.clear() | |
731 |
|
731 | |||
732 | #------------------------------------------------------------------------- |
|
732 | #------------------------------------------------------------------------- | |
733 | # Things related to debugging |
|
733 | # Things related to debugging | |
734 | #------------------------------------------------------------------------- |
|
734 | #------------------------------------------------------------------------- | |
735 |
|
735 | |||
736 | def init_pdb(self): |
|
736 | def init_pdb(self): | |
737 | # Set calling of pdb on exceptions |
|
737 | # Set calling of pdb on exceptions | |
738 | # self.call_pdb is a property |
|
738 | # self.call_pdb is a property | |
739 | self.call_pdb = self.pdb |
|
739 | self.call_pdb = self.pdb | |
740 |
|
740 | |||
741 | def _get_call_pdb(self): |
|
741 | def _get_call_pdb(self): | |
742 | return self._call_pdb |
|
742 | return self._call_pdb | |
743 |
|
743 | |||
744 | def _set_call_pdb(self,val): |
|
744 | def _set_call_pdb(self,val): | |
745 |
|
745 | |||
746 | if val not in (0,1,False,True): |
|
746 | if val not in (0,1,False,True): | |
747 | raise ValueError,'new call_pdb value must be boolean' |
|
747 | raise ValueError,'new call_pdb value must be boolean' | |
748 |
|
748 | |||
749 | # store value in instance |
|
749 | # store value in instance | |
750 | self._call_pdb = val |
|
750 | self._call_pdb = val | |
751 |
|
751 | |||
752 | # notify the actual exception handlers |
|
752 | # notify the actual exception handlers | |
753 | self.InteractiveTB.call_pdb = val |
|
753 | self.InteractiveTB.call_pdb = val | |
754 |
|
754 | |||
755 | call_pdb = property(_get_call_pdb,_set_call_pdb,None, |
|
755 | call_pdb = property(_get_call_pdb,_set_call_pdb,None, | |
756 | 'Control auto-activation of pdb at exceptions') |
|
756 | 'Control auto-activation of pdb at exceptions') | |
757 |
|
757 | |||
758 | def debugger(self,force=False): |
|
758 | def debugger(self,force=False): | |
759 | """Call the pydb/pdb debugger. |
|
759 | """Call the pydb/pdb debugger. | |
760 |
|
760 | |||
761 | Keywords: |
|
761 | Keywords: | |
762 |
|
762 | |||
763 | - force(False): by default, this routine checks the instance call_pdb |
|
763 | - force(False): by default, this routine checks the instance call_pdb | |
764 | flag and does not actually invoke the debugger if the flag is false. |
|
764 | flag and does not actually invoke the debugger if the flag is false. | |
765 | The 'force' option forces the debugger to activate even if the flag |
|
765 | The 'force' option forces the debugger to activate even if the flag | |
766 | is false. |
|
766 | is false. | |
767 | """ |
|
767 | """ | |
768 |
|
768 | |||
769 | if not (force or self.call_pdb): |
|
769 | if not (force or self.call_pdb): | |
770 | return |
|
770 | return | |
771 |
|
771 | |||
772 | if not hasattr(sys,'last_traceback'): |
|
772 | if not hasattr(sys,'last_traceback'): | |
773 | error('No traceback has been produced, nothing to debug.') |
|
773 | error('No traceback has been produced, nothing to debug.') | |
774 | return |
|
774 | return | |
775 |
|
775 | |||
776 | # use pydb if available |
|
776 | # use pydb if available | |
777 | if debugger.has_pydb: |
|
777 | if debugger.has_pydb: | |
778 | from pydb import pm |
|
778 | from pydb import pm | |
779 | else: |
|
779 | else: | |
780 | # fallback to our internal debugger |
|
780 | # fallback to our internal debugger | |
781 | pm = lambda : self.InteractiveTB.debugger(force=True) |
|
781 | pm = lambda : self.InteractiveTB.debugger(force=True) | |
782 |
|
782 | |||
783 | with self.readline_no_record: |
|
783 | with self.readline_no_record: | |
784 | pm() |
|
784 | pm() | |
785 |
|
785 | |||
786 | #------------------------------------------------------------------------- |
|
786 | #------------------------------------------------------------------------- | |
787 | # Things related to IPython's various namespaces |
|
787 | # Things related to IPython's various namespaces | |
788 | #------------------------------------------------------------------------- |
|
788 | #------------------------------------------------------------------------- | |
789 |
|
789 | |||
790 | def init_create_namespaces(self, user_ns=None, user_global_ns=None): |
|
790 | def init_create_namespaces(self, user_ns=None, user_global_ns=None): | |
791 | # Create the namespace where the user will operate. user_ns is |
|
791 | # Create the namespace where the user will operate. user_ns is | |
792 | # normally the only one used, and it is passed to the exec calls as |
|
792 | # normally the only one used, and it is passed to the exec calls as | |
793 | # the locals argument. But we do carry a user_global_ns namespace |
|
793 | # the locals argument. But we do carry a user_global_ns namespace | |
794 | # given as the exec 'globals' argument, This is useful in embedding |
|
794 | # given as the exec 'globals' argument, This is useful in embedding | |
795 | # situations where the ipython shell opens in a context where the |
|
795 | # situations where the ipython shell opens in a context where the | |
796 | # distinction between locals and globals is meaningful. For |
|
796 | # distinction between locals and globals is meaningful. For | |
797 | # non-embedded contexts, it is just the same object as the user_ns dict. |
|
797 | # non-embedded contexts, it is just the same object as the user_ns dict. | |
798 |
|
798 | |||
799 | # FIXME. For some strange reason, __builtins__ is showing up at user |
|
799 | # FIXME. For some strange reason, __builtins__ is showing up at user | |
800 | # level as a dict instead of a module. This is a manual fix, but I |
|
800 | # level as a dict instead of a module. This is a manual fix, but I | |
801 | # should really track down where the problem is coming from. Alex |
|
801 | # should really track down where the problem is coming from. Alex | |
802 | # Schmolck reported this problem first. |
|
802 | # Schmolck reported this problem first. | |
803 |
|
803 | |||
804 | # A useful post by Alex Martelli on this topic: |
|
804 | # A useful post by Alex Martelli on this topic: | |
805 | # Re: inconsistent value from __builtins__ |
|
805 | # Re: inconsistent value from __builtins__ | |
806 | # Von: Alex Martelli <aleaxit@yahoo.com> |
|
806 | # Von: Alex Martelli <aleaxit@yahoo.com> | |
807 | # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends |
|
807 | # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends | |
808 | # Gruppen: comp.lang.python |
|
808 | # Gruppen: comp.lang.python | |
809 |
|
809 | |||
810 | # Michael Hohn <hohn@hooknose.lbl.gov> wrote: |
|
810 | # Michael Hohn <hohn@hooknose.lbl.gov> wrote: | |
811 | # > >>> print type(builtin_check.get_global_binding('__builtins__')) |
|
811 | # > >>> print type(builtin_check.get_global_binding('__builtins__')) | |
812 | # > <type 'dict'> |
|
812 | # > <type 'dict'> | |
813 | # > >>> print type(__builtins__) |
|
813 | # > >>> print type(__builtins__) | |
814 | # > <type 'module'> |
|
814 | # > <type 'module'> | |
815 | # > Is this difference in return value intentional? |
|
815 | # > Is this difference in return value intentional? | |
816 |
|
816 | |||
817 | # Well, it's documented that '__builtins__' can be either a dictionary |
|
817 | # Well, it's documented that '__builtins__' can be either a dictionary | |
818 | # or a module, and it's been that way for a long time. Whether it's |
|
818 | # or a module, and it's been that way for a long time. Whether it's | |
819 | # intentional (or sensible), I don't know. In any case, the idea is |
|
819 | # intentional (or sensible), I don't know. In any case, the idea is | |
820 | # that if you need to access the built-in namespace directly, you |
|
820 | # that if you need to access the built-in namespace directly, you | |
821 | # should start with "import __builtin__" (note, no 's') which will |
|
821 | # should start with "import __builtin__" (note, no 's') which will | |
822 | # definitely give you a module. Yeah, it's somewhat confusing:-(. |
|
822 | # definitely give you a module. Yeah, it's somewhat confusing:-(. | |
823 |
|
823 | |||
824 | # These routines return properly built dicts as needed by the rest of |
|
824 | # These routines return properly built dicts as needed by the rest of | |
825 | # the code, and can also be used by extension writers to generate |
|
825 | # the code, and can also be used by extension writers to generate | |
826 | # properly initialized namespaces. |
|
826 | # properly initialized namespaces. | |
827 | user_ns, user_global_ns = self.make_user_namespaces(user_ns, |
|
827 | user_ns, user_global_ns = self.make_user_namespaces(user_ns, | |
828 | user_global_ns) |
|
828 | user_global_ns) | |
829 |
|
829 | |||
830 | # Assign namespaces |
|
830 | # Assign namespaces | |
831 | # This is the namespace where all normal user variables live |
|
831 | # This is the namespace where all normal user variables live | |
832 | self.user_ns = user_ns |
|
832 | self.user_ns = user_ns | |
833 | self.user_global_ns = user_global_ns |
|
833 | self.user_global_ns = user_global_ns | |
834 |
|
834 | |||
835 | # An auxiliary namespace that checks what parts of the user_ns were |
|
835 | # An auxiliary namespace that checks what parts of the user_ns were | |
836 | # loaded at startup, so we can list later only variables defined in |
|
836 | # loaded at startup, so we can list later only variables defined in | |
837 | # actual interactive use. Since it is always a subset of user_ns, it |
|
837 | # actual interactive use. Since it is always a subset of user_ns, it | |
838 | # doesn't need to be separately tracked in the ns_table. |
|
838 | # doesn't need to be separately tracked in the ns_table. | |
839 | self.user_ns_hidden = {} |
|
839 | self.user_ns_hidden = {} | |
840 |
|
840 | |||
841 | # A namespace to keep track of internal data structures to prevent |
|
841 | # A namespace to keep track of internal data structures to prevent | |
842 | # them from cluttering user-visible stuff. Will be updated later |
|
842 | # them from cluttering user-visible stuff. Will be updated later | |
843 | self.internal_ns = {} |
|
843 | self.internal_ns = {} | |
844 |
|
844 | |||
845 | # Now that FakeModule produces a real module, we've run into a nasty |
|
845 | # Now that FakeModule produces a real module, we've run into a nasty | |
846 | # problem: after script execution (via %run), the module where the user |
|
846 | # problem: after script execution (via %run), the module where the user | |
847 | # code ran is deleted. Now that this object is a true module (needed |
|
847 | # code ran is deleted. Now that this object is a true module (needed | |
848 | # so docetst and other tools work correctly), the Python module |
|
848 | # so docetst and other tools work correctly), the Python module | |
849 | # teardown mechanism runs over it, and sets to None every variable |
|
849 | # teardown mechanism runs over it, and sets to None every variable | |
850 | # present in that module. Top-level references to objects from the |
|
850 | # present in that module. Top-level references to objects from the | |
851 | # script survive, because the user_ns is updated with them. However, |
|
851 | # script survive, because the user_ns is updated with them. However, | |
852 | # calling functions defined in the script that use other things from |
|
852 | # calling functions defined in the script that use other things from | |
853 | # the script will fail, because the function's closure had references |
|
853 | # the script will fail, because the function's closure had references | |
854 | # to the original objects, which are now all None. So we must protect |
|
854 | # to the original objects, which are now all None. So we must protect | |
855 | # these modules from deletion by keeping a cache. |
|
855 | # these modules from deletion by keeping a cache. | |
856 | # |
|
856 | # | |
857 | # To avoid keeping stale modules around (we only need the one from the |
|
857 | # To avoid keeping stale modules around (we only need the one from the | |
858 | # last run), we use a dict keyed with the full path to the script, so |
|
858 | # last run), we use a dict keyed with the full path to the script, so | |
859 | # only the last version of the module is held in the cache. Note, |
|
859 | # only the last version of the module is held in the cache. Note, | |
860 | # however, that we must cache the module *namespace contents* (their |
|
860 | # however, that we must cache the module *namespace contents* (their | |
861 | # __dict__). Because if we try to cache the actual modules, old ones |
|
861 | # __dict__). Because if we try to cache the actual modules, old ones | |
862 | # (uncached) could be destroyed while still holding references (such as |
|
862 | # (uncached) could be destroyed while still holding references (such as | |
863 | # those held by GUI objects that tend to be long-lived)> |
|
863 | # those held by GUI objects that tend to be long-lived)> | |
864 | # |
|
864 | # | |
865 | # The %reset command will flush this cache. See the cache_main_mod() |
|
865 | # The %reset command will flush this cache. See the cache_main_mod() | |
866 | # and clear_main_mod_cache() methods for details on use. |
|
866 | # and clear_main_mod_cache() methods for details on use. | |
867 |
|
867 | |||
868 | # This is the cache used for 'main' namespaces |
|
868 | # This is the cache used for 'main' namespaces | |
869 | self._main_ns_cache = {} |
|
869 | self._main_ns_cache = {} | |
870 | # And this is the single instance of FakeModule whose __dict__ we keep |
|
870 | # And this is the single instance of FakeModule whose __dict__ we keep | |
871 | # copying and clearing for reuse on each %run |
|
871 | # copying and clearing for reuse on each %run | |
872 | self._user_main_module = FakeModule() |
|
872 | self._user_main_module = FakeModule() | |
873 |
|
873 | |||
874 | # A table holding all the namespaces IPython deals with, so that |
|
874 | # A table holding all the namespaces IPython deals with, so that | |
875 | # introspection facilities can search easily. |
|
875 | # introspection facilities can search easily. | |
876 | self.ns_table = {'user':user_ns, |
|
876 | self.ns_table = {'user':user_ns, | |
877 | 'user_global':user_global_ns, |
|
877 | 'user_global':user_global_ns, | |
878 | 'internal':self.internal_ns, |
|
878 | 'internal':self.internal_ns, | |
879 | 'builtin':__builtin__.__dict__ |
|
879 | 'builtin':__builtin__.__dict__ | |
880 | } |
|
880 | } | |
881 |
|
881 | |||
882 | # Similarly, track all namespaces where references can be held and that |
|
882 | # Similarly, track all namespaces where references can be held and that | |
883 | # we can safely clear (so it can NOT include builtin). This one can be |
|
883 | # we can safely clear (so it can NOT include builtin). This one can be | |
884 | # a simple list. Note that the main execution namespaces, user_ns and |
|
884 | # a simple list. Note that the main execution namespaces, user_ns and | |
885 | # user_global_ns, can NOT be listed here, as clearing them blindly |
|
885 | # user_global_ns, can NOT be listed here, as clearing them blindly | |
886 | # causes errors in object __del__ methods. Instead, the reset() method |
|
886 | # causes errors in object __del__ methods. Instead, the reset() method | |
887 | # clears them manually and carefully. |
|
887 | # clears them manually and carefully. | |
888 | self.ns_refs_table = [ self.user_ns_hidden, |
|
888 | self.ns_refs_table = [ self.user_ns_hidden, | |
889 | self.internal_ns, self._main_ns_cache ] |
|
889 | self.internal_ns, self._main_ns_cache ] | |
890 |
|
890 | |||
891 | def make_user_namespaces(self, user_ns=None, user_global_ns=None): |
|
891 | def make_user_namespaces(self, user_ns=None, user_global_ns=None): | |
892 | """Return a valid local and global user interactive namespaces. |
|
892 | """Return a valid local and global user interactive namespaces. | |
893 |
|
893 | |||
894 | This builds a dict with the minimal information needed to operate as a |
|
894 | This builds a dict with the minimal information needed to operate as a | |
895 | valid IPython user namespace, which you can pass to the various |
|
895 | valid IPython user namespace, which you can pass to the various | |
896 | embedding classes in ipython. The default implementation returns the |
|
896 | embedding classes in ipython. The default implementation returns the | |
897 | same dict for both the locals and the globals to allow functions to |
|
897 | same dict for both the locals and the globals to allow functions to | |
898 | refer to variables in the namespace. Customized implementations can |
|
898 | refer to variables in the namespace. Customized implementations can | |
899 | return different dicts. The locals dictionary can actually be anything |
|
899 | return different dicts. The locals dictionary can actually be anything | |
900 | following the basic mapping protocol of a dict, but the globals dict |
|
900 | following the basic mapping protocol of a dict, but the globals dict | |
901 | must be a true dict, not even a subclass. It is recommended that any |
|
901 | must be a true dict, not even a subclass. It is recommended that any | |
902 | custom object for the locals namespace synchronize with the globals |
|
902 | custom object for the locals namespace synchronize with the globals | |
903 | dict somehow. |
|
903 | dict somehow. | |
904 |
|
904 | |||
905 | Raises TypeError if the provided globals namespace is not a true dict. |
|
905 | Raises TypeError if the provided globals namespace is not a true dict. | |
906 |
|
906 | |||
907 | Parameters |
|
907 | Parameters | |
908 | ---------- |
|
908 | ---------- | |
909 | user_ns : dict-like, optional |
|
909 | user_ns : dict-like, optional | |
910 | The current user namespace. The items in this namespace should |
|
910 | The current user namespace. The items in this namespace should | |
911 | be included in the output. If None, an appropriate blank |
|
911 | be included in the output. If None, an appropriate blank | |
912 | namespace should be created. |
|
912 | namespace should be created. | |
913 | user_global_ns : dict, optional |
|
913 | user_global_ns : dict, optional | |
914 | The current user global namespace. The items in this namespace |
|
914 | The current user global namespace. The items in this namespace | |
915 | should be included in the output. If None, an appropriate |
|
915 | should be included in the output. If None, an appropriate | |
916 | blank namespace should be created. |
|
916 | blank namespace should be created. | |
917 |
|
917 | |||
918 | Returns |
|
918 | Returns | |
919 | ------- |
|
919 | ------- | |
920 | A pair of dictionary-like object to be used as the local namespace |
|
920 | A pair of dictionary-like object to be used as the local namespace | |
921 | of the interpreter and a dict to be used as the global namespace. |
|
921 | of the interpreter and a dict to be used as the global namespace. | |
922 | """ |
|
922 | """ | |
923 |
|
923 | |||
924 |
|
924 | |||
925 | # We must ensure that __builtin__ (without the final 's') is always |
|
925 | # We must ensure that __builtin__ (without the final 's') is always | |
926 | # available and pointing to the __builtin__ *module*. For more details: |
|
926 | # available and pointing to the __builtin__ *module*. For more details: | |
927 | # http://mail.python.org/pipermail/python-dev/2001-April/014068.html |
|
927 | # http://mail.python.org/pipermail/python-dev/2001-April/014068.html | |
928 |
|
928 | |||
929 | if user_ns is None: |
|
929 | if user_ns is None: | |
930 | # Set __name__ to __main__ to better match the behavior of the |
|
930 | # Set __name__ to __main__ to better match the behavior of the | |
931 | # normal interpreter. |
|
931 | # normal interpreter. | |
932 | user_ns = {'__name__' :'__main__', |
|
932 | user_ns = {'__name__' :'__main__', | |
933 | '__builtin__' : __builtin__, |
|
933 | '__builtin__' : __builtin__, | |
934 | '__builtins__' : __builtin__, |
|
934 | '__builtins__' : __builtin__, | |
935 | } |
|
935 | } | |
936 | else: |
|
936 | else: | |
937 | user_ns.setdefault('__name__','__main__') |
|
937 | user_ns.setdefault('__name__','__main__') | |
938 | user_ns.setdefault('__builtin__',__builtin__) |
|
938 | user_ns.setdefault('__builtin__',__builtin__) | |
939 | user_ns.setdefault('__builtins__',__builtin__) |
|
939 | user_ns.setdefault('__builtins__',__builtin__) | |
940 |
|
940 | |||
941 | if user_global_ns is None: |
|
941 | if user_global_ns is None: | |
942 | user_global_ns = user_ns |
|
942 | user_global_ns = user_ns | |
943 | if type(user_global_ns) is not dict: |
|
943 | if type(user_global_ns) is not dict: | |
944 | raise TypeError("user_global_ns must be a true dict; got %r" |
|
944 | raise TypeError("user_global_ns must be a true dict; got %r" | |
945 | % type(user_global_ns)) |
|
945 | % type(user_global_ns)) | |
946 |
|
946 | |||
947 | return user_ns, user_global_ns |
|
947 | return user_ns, user_global_ns | |
948 |
|
948 | |||
949 | def init_sys_modules(self): |
|
949 | def init_sys_modules(self): | |
950 | # We need to insert into sys.modules something that looks like a |
|
950 | # We need to insert into sys.modules something that looks like a | |
951 | # module but which accesses the IPython namespace, for shelve and |
|
951 | # module but which accesses the IPython namespace, for shelve and | |
952 | # pickle to work interactively. Normally they rely on getting |
|
952 | # pickle to work interactively. Normally they rely on getting | |
953 | # everything out of __main__, but for embedding purposes each IPython |
|
953 | # everything out of __main__, but for embedding purposes each IPython | |
954 | # instance has its own private namespace, so we can't go shoving |
|
954 | # instance has its own private namespace, so we can't go shoving | |
955 | # everything into __main__. |
|
955 | # everything into __main__. | |
956 |
|
956 | |||
957 | # note, however, that we should only do this for non-embedded |
|
957 | # note, however, that we should only do this for non-embedded | |
958 | # ipythons, which really mimic the __main__.__dict__ with their own |
|
958 | # ipythons, which really mimic the __main__.__dict__ with their own | |
959 | # namespace. Embedded instances, on the other hand, should not do |
|
959 | # namespace. Embedded instances, on the other hand, should not do | |
960 | # this because they need to manage the user local/global namespaces |
|
960 | # this because they need to manage the user local/global namespaces | |
961 | # only, but they live within a 'normal' __main__ (meaning, they |
|
961 | # only, but they live within a 'normal' __main__ (meaning, they | |
962 | # shouldn't overtake the execution environment of the script they're |
|
962 | # shouldn't overtake the execution environment of the script they're | |
963 | # embedded in). |
|
963 | # embedded in). | |
964 |
|
964 | |||
965 | # This is overridden in the InteractiveShellEmbed subclass to a no-op. |
|
965 | # This is overridden in the InteractiveShellEmbed subclass to a no-op. | |
966 |
|
966 | |||
967 | try: |
|
967 | try: | |
968 | main_name = self.user_ns['__name__'] |
|
968 | main_name = self.user_ns['__name__'] | |
969 | except KeyError: |
|
969 | except KeyError: | |
970 | raise KeyError('user_ns dictionary MUST have a "__name__" key') |
|
970 | raise KeyError('user_ns dictionary MUST have a "__name__" key') | |
971 | else: |
|
971 | else: | |
972 | sys.modules[main_name] = FakeModule(self.user_ns) |
|
972 | sys.modules[main_name] = FakeModule(self.user_ns) | |
973 |
|
973 | |||
974 | def init_user_ns(self): |
|
974 | def init_user_ns(self): | |
975 | """Initialize all user-visible namespaces to their minimum defaults. |
|
975 | """Initialize all user-visible namespaces to their minimum defaults. | |
976 |
|
976 | |||
977 | Certain history lists are also initialized here, as they effectively |
|
977 | Certain history lists are also initialized here, as they effectively | |
978 | act as user namespaces. |
|
978 | act as user namespaces. | |
979 |
|
979 | |||
980 | Notes |
|
980 | Notes | |
981 | ----- |
|
981 | ----- | |
982 | All data structures here are only filled in, they are NOT reset by this |
|
982 | All data structures here are only filled in, they are NOT reset by this | |
983 | method. If they were not empty before, data will simply be added to |
|
983 | method. If they were not empty before, data will simply be added to | |
984 | therm. |
|
984 | therm. | |
985 | """ |
|
985 | """ | |
986 | # This function works in two parts: first we put a few things in |
|
986 | # This function works in two parts: first we put a few things in | |
987 | # user_ns, and we sync that contents into user_ns_hidden so that these |
|
987 | # user_ns, and we sync that contents into user_ns_hidden so that these | |
988 | # initial variables aren't shown by %who. After the sync, we add the |
|
988 | # initial variables aren't shown by %who. After the sync, we add the | |
989 | # rest of what we *do* want the user to see with %who even on a new |
|
989 | # rest of what we *do* want the user to see with %who even on a new | |
990 | # session (probably nothing, so theye really only see their own stuff) |
|
990 | # session (probably nothing, so theye really only see their own stuff) | |
991 |
|
991 | |||
992 | # The user dict must *always* have a __builtin__ reference to the |
|
992 | # The user dict must *always* have a __builtin__ reference to the | |
993 | # Python standard __builtin__ namespace, which must be imported. |
|
993 | # Python standard __builtin__ namespace, which must be imported. | |
994 | # This is so that certain operations in prompt evaluation can be |
|
994 | # This is so that certain operations in prompt evaluation can be | |
995 | # reliably executed with builtins. Note that we can NOT use |
|
995 | # reliably executed with builtins. Note that we can NOT use | |
996 | # __builtins__ (note the 's'), because that can either be a dict or a |
|
996 | # __builtins__ (note the 's'), because that can either be a dict or a | |
997 | # module, and can even mutate at runtime, depending on the context |
|
997 | # module, and can even mutate at runtime, depending on the context | |
998 | # (Python makes no guarantees on it). In contrast, __builtin__ is |
|
998 | # (Python makes no guarantees on it). In contrast, __builtin__ is | |
999 | # always a module object, though it must be explicitly imported. |
|
999 | # always a module object, though it must be explicitly imported. | |
1000 |
|
1000 | |||
1001 | # For more details: |
|
1001 | # For more details: | |
1002 | # http://mail.python.org/pipermail/python-dev/2001-April/014068.html |
|
1002 | # http://mail.python.org/pipermail/python-dev/2001-April/014068.html | |
1003 | ns = dict(__builtin__ = __builtin__) |
|
1003 | ns = dict(__builtin__ = __builtin__) | |
1004 |
|
1004 | |||
1005 | # Put 'help' in the user namespace |
|
1005 | # Put 'help' in the user namespace | |
1006 | try: |
|
1006 | try: | |
1007 | from site import _Helper |
|
1007 | from site import _Helper | |
1008 | ns['help'] = _Helper() |
|
1008 | ns['help'] = _Helper() | |
1009 | except ImportError: |
|
1009 | except ImportError: | |
1010 | warn('help() not available - check site.py') |
|
1010 | warn('help() not available - check site.py') | |
1011 |
|
1011 | |||
1012 | # make global variables for user access to the histories |
|
1012 | # make global variables for user access to the histories | |
1013 | ns['_ih'] = self.history_manager.input_hist_parsed |
|
1013 | ns['_ih'] = self.history_manager.input_hist_parsed | |
1014 | ns['_oh'] = self.history_manager.output_hist |
|
1014 | ns['_oh'] = self.history_manager.output_hist | |
1015 | ns['_dh'] = self.history_manager.dir_hist |
|
1015 | ns['_dh'] = self.history_manager.dir_hist | |
1016 |
|
1016 | |||
1017 | ns['_sh'] = shadowns |
|
1017 | ns['_sh'] = shadowns | |
1018 |
|
1018 | |||
1019 | # user aliases to input and output histories. These shouldn't show up |
|
1019 | # user aliases to input and output histories. These shouldn't show up | |
1020 | # in %who, as they can have very large reprs. |
|
1020 | # in %who, as they can have very large reprs. | |
1021 | ns['In'] = self.history_manager.input_hist_parsed |
|
1021 | ns['In'] = self.history_manager.input_hist_parsed | |
1022 | ns['Out'] = self.history_manager.output_hist |
|
1022 | ns['Out'] = self.history_manager.output_hist | |
1023 |
|
1023 | |||
1024 | # Store myself as the public api!!! |
|
1024 | # Store myself as the public api!!! | |
1025 | ns['get_ipython'] = self.get_ipython |
|
1025 | ns['get_ipython'] = self.get_ipython | |
1026 |
|
1026 | |||
1027 | # Sync what we've added so far to user_ns_hidden so these aren't seen |
|
1027 | # Sync what we've added so far to user_ns_hidden so these aren't seen | |
1028 | # by %who |
|
1028 | # by %who | |
1029 | self.user_ns_hidden.update(ns) |
|
1029 | self.user_ns_hidden.update(ns) | |
1030 |
|
1030 | |||
1031 | # Anything put into ns now would show up in %who. Think twice before |
|
1031 | # Anything put into ns now would show up in %who. Think twice before | |
1032 | # putting anything here, as we really want %who to show the user their |
|
1032 | # putting anything here, as we really want %who to show the user their | |
1033 | # stuff, not our variables. |
|
1033 | # stuff, not our variables. | |
1034 |
|
1034 | |||
1035 | # Finally, update the real user's namespace |
|
1035 | # Finally, update the real user's namespace | |
1036 | self.user_ns.update(ns) |
|
1036 | self.user_ns.update(ns) | |
1037 |
|
1037 | |||
1038 | def reset(self, new_session=True): |
|
1038 | def reset(self, new_session=True): | |
1039 | """Clear all internal namespaces. |
|
1039 | """Clear all internal namespaces. | |
1040 |
|
1040 | |||
1041 | Note that this is much more aggressive than %reset, since it clears |
|
1041 | Note that this is much more aggressive than %reset, since it clears | |
1042 | fully all namespaces, as well as all input/output lists. |
|
1042 | fully all namespaces, as well as all input/output lists. | |
1043 |
|
1043 | |||
1044 | If new_session is True, a new history session will be opened. |
|
1044 | If new_session is True, a new history session will be opened. | |
1045 | """ |
|
1045 | """ | |
1046 | # Clear histories |
|
1046 | # Clear histories | |
1047 | self.history_manager.reset(new_session) |
|
1047 | self.history_manager.reset(new_session) | |
|
1048 | ||||
|
1049 | # Flush cached output items | |||
|
1050 | self.displayhook.flush() | |||
1048 |
|
1051 | |||
1049 | # Reset counter used to index all histories |
|
1052 | # Reset counter used to index all histories | |
1050 | self.execution_count = 0 |
|
1053 | self.execution_count = 0 | |
1051 |
|
1054 | |||
1052 | # Restore the user namespaces to minimal usability |
|
1055 | # Restore the user namespaces to minimal usability | |
1053 | for ns in self.ns_refs_table: |
|
1056 | for ns in self.ns_refs_table: | |
1054 | ns.clear() |
|
1057 | ns.clear() | |
1055 |
|
1058 | |||
1056 | # The main execution namespaces must be cleared very carefully, |
|
1059 | # The main execution namespaces must be cleared very carefully, | |
1057 | # skipping the deletion of the builtin-related keys, because doing so |
|
1060 | # skipping the deletion of the builtin-related keys, because doing so | |
1058 | # would cause errors in many object's __del__ methods. |
|
1061 | # would cause errors in many object's __del__ methods. | |
1059 | for ns in [self.user_ns, self.user_global_ns]: |
|
1062 | for ns in [self.user_ns, self.user_global_ns]: | |
1060 | drop_keys = set(ns.keys()) |
|
1063 | drop_keys = set(ns.keys()) | |
1061 | drop_keys.discard('__builtin__') |
|
1064 | drop_keys.discard('__builtin__') | |
1062 | drop_keys.discard('__builtins__') |
|
1065 | drop_keys.discard('__builtins__') | |
1063 | for k in drop_keys: |
|
1066 | for k in drop_keys: | |
1064 | del ns[k] |
|
1067 | del ns[k] | |
1065 |
|
1068 | |||
1066 | # Restore the user namespaces to minimal usability |
|
1069 | # Restore the user namespaces to minimal usability | |
1067 | self.init_user_ns() |
|
1070 | self.init_user_ns() | |
1068 |
|
1071 | |||
1069 | # Restore the default and user aliases |
|
1072 | # Restore the default and user aliases | |
1070 | self.alias_manager.clear_aliases() |
|
1073 | self.alias_manager.clear_aliases() | |
1071 | self.alias_manager.init_aliases() |
|
1074 | self.alias_manager.init_aliases() | |
|
1075 | ||||
|
1076 | # Flush the private list of module references kept for script | |||
|
1077 | # execution protection | |||
|
1078 | self.clear_main_mod_cache() | |||
1072 |
|
1079 | |||
1073 | def reset_selective(self, regex=None): |
|
1080 | def reset_selective(self, regex=None): | |
1074 | """Clear selective variables from internal namespaces based on a |
|
1081 | """Clear selective variables from internal namespaces based on a | |
1075 | specified regular expression. |
|
1082 | specified regular expression. | |
1076 |
|
1083 | |||
1077 | Parameters |
|
1084 | Parameters | |
1078 | ---------- |
|
1085 | ---------- | |
1079 | regex : string or compiled pattern, optional |
|
1086 | regex : string or compiled pattern, optional | |
1080 | A regular expression pattern that will be used in searching |
|
1087 | A regular expression pattern that will be used in searching | |
1081 | variable names in the users namespaces. |
|
1088 | variable names in the users namespaces. | |
1082 | """ |
|
1089 | """ | |
1083 | if regex is not None: |
|
1090 | if regex is not None: | |
1084 | try: |
|
1091 | try: | |
1085 | m = re.compile(regex) |
|
1092 | m = re.compile(regex) | |
1086 | except TypeError: |
|
1093 | except TypeError: | |
1087 | raise TypeError('regex must be a string or compiled pattern') |
|
1094 | raise TypeError('regex must be a string or compiled pattern') | |
1088 | # Search for keys in each namespace that match the given regex |
|
1095 | # Search for keys in each namespace that match the given regex | |
1089 | # If a match is found, delete the key/value pair. |
|
1096 | # If a match is found, delete the key/value pair. | |
1090 | for ns in self.ns_refs_table: |
|
1097 | for ns in self.ns_refs_table: | |
1091 | for var in ns: |
|
1098 | for var in ns: | |
1092 | if m.search(var): |
|
1099 | if m.search(var): | |
1093 | del ns[var] |
|
1100 | del ns[var] | |
1094 |
|
1101 | |||
1095 | def push(self, variables, interactive=True): |
|
1102 | def push(self, variables, interactive=True): | |
1096 | """Inject a group of variables into the IPython user namespace. |
|
1103 | """Inject a group of variables into the IPython user namespace. | |
1097 |
|
1104 | |||
1098 | Parameters |
|
1105 | Parameters | |
1099 | ---------- |
|
1106 | ---------- | |
1100 | variables : dict, str or list/tuple of str |
|
1107 | variables : dict, str or list/tuple of str | |
1101 | The variables to inject into the user's namespace. If a dict, a |
|
1108 | The variables to inject into the user's namespace. If a dict, a | |
1102 | simple update is done. If a str, the string is assumed to have |
|
1109 | simple update is done. If a str, the string is assumed to have | |
1103 | variable names separated by spaces. A list/tuple of str can also |
|
1110 | variable names separated by spaces. A list/tuple of str can also | |
1104 | be used to give the variable names. If just the variable names are |
|
1111 | be used to give the variable names. If just the variable names are | |
1105 | give (list/tuple/str) then the variable values looked up in the |
|
1112 | give (list/tuple/str) then the variable values looked up in the | |
1106 | callers frame. |
|
1113 | callers frame. | |
1107 | interactive : bool |
|
1114 | interactive : bool | |
1108 | If True (default), the variables will be listed with the ``who`` |
|
1115 | If True (default), the variables will be listed with the ``who`` | |
1109 | magic. |
|
1116 | magic. | |
1110 | """ |
|
1117 | """ | |
1111 | vdict = None |
|
1118 | vdict = None | |
1112 |
|
1119 | |||
1113 | # We need a dict of name/value pairs to do namespace updates. |
|
1120 | # We need a dict of name/value pairs to do namespace updates. | |
1114 | if isinstance(variables, dict): |
|
1121 | if isinstance(variables, dict): | |
1115 | vdict = variables |
|
1122 | vdict = variables | |
1116 | elif isinstance(variables, (basestring, list, tuple)): |
|
1123 | elif isinstance(variables, (basestring, list, tuple)): | |
1117 | if isinstance(variables, basestring): |
|
1124 | if isinstance(variables, basestring): | |
1118 | vlist = variables.split() |
|
1125 | vlist = variables.split() | |
1119 | else: |
|
1126 | else: | |
1120 | vlist = variables |
|
1127 | vlist = variables | |
1121 | vdict = {} |
|
1128 | vdict = {} | |
1122 | cf = sys._getframe(1) |
|
1129 | cf = sys._getframe(1) | |
1123 | for name in vlist: |
|
1130 | for name in vlist: | |
1124 | try: |
|
1131 | try: | |
1125 | vdict[name] = eval(name, cf.f_globals, cf.f_locals) |
|
1132 | vdict[name] = eval(name, cf.f_globals, cf.f_locals) | |
1126 | except: |
|
1133 | except: | |
1127 | print ('Could not get variable %s from %s' % |
|
1134 | print ('Could not get variable %s from %s' % | |
1128 | (name,cf.f_code.co_name)) |
|
1135 | (name,cf.f_code.co_name)) | |
1129 | else: |
|
1136 | else: | |
1130 | raise ValueError('variables must be a dict/str/list/tuple') |
|
1137 | raise ValueError('variables must be a dict/str/list/tuple') | |
1131 |
|
1138 | |||
1132 | # Propagate variables to user namespace |
|
1139 | # Propagate variables to user namespace | |
1133 | self.user_ns.update(vdict) |
|
1140 | self.user_ns.update(vdict) | |
1134 |
|
1141 | |||
1135 | # And configure interactive visibility |
|
1142 | # And configure interactive visibility | |
1136 | config_ns = self.user_ns_hidden |
|
1143 | config_ns = self.user_ns_hidden | |
1137 | if interactive: |
|
1144 | if interactive: | |
1138 | for name, val in vdict.iteritems(): |
|
1145 | for name, val in vdict.iteritems(): | |
1139 | config_ns.pop(name, None) |
|
1146 | config_ns.pop(name, None) | |
1140 | else: |
|
1147 | else: | |
1141 | for name,val in vdict.iteritems(): |
|
1148 | for name,val in vdict.iteritems(): | |
1142 | config_ns[name] = val |
|
1149 | config_ns[name] = val | |
1143 |
|
1150 | |||
1144 | #------------------------------------------------------------------------- |
|
1151 | #------------------------------------------------------------------------- | |
1145 | # Things related to object introspection |
|
1152 | # Things related to object introspection | |
1146 | #------------------------------------------------------------------------- |
|
1153 | #------------------------------------------------------------------------- | |
1147 |
|
1154 | |||
1148 | def _ofind(self, oname, namespaces=None): |
|
1155 | def _ofind(self, oname, namespaces=None): | |
1149 | """Find an object in the available namespaces. |
|
1156 | """Find an object in the available namespaces. | |
1150 |
|
1157 | |||
1151 | self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic |
|
1158 | self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic | |
1152 |
|
1159 | |||
1153 | Has special code to detect magic functions. |
|
1160 | Has special code to detect magic functions. | |
1154 | """ |
|
1161 | """ | |
1155 | #oname = oname.strip() |
|
1162 | #oname = oname.strip() | |
1156 | #print '1- oname: <%r>' % oname # dbg |
|
1163 | #print '1- oname: <%r>' % oname # dbg | |
1157 | try: |
|
1164 | try: | |
1158 | oname = oname.strip().encode('ascii') |
|
1165 | oname = oname.strip().encode('ascii') | |
1159 | #print '2- oname: <%r>' % oname # dbg |
|
1166 | #print '2- oname: <%r>' % oname # dbg | |
1160 | except UnicodeEncodeError: |
|
1167 | except UnicodeEncodeError: | |
1161 | print 'Python identifiers can only contain ascii characters.' |
|
1168 | print 'Python identifiers can only contain ascii characters.' | |
1162 | return dict(found=False) |
|
1169 | return dict(found=False) | |
1163 |
|
1170 | |||
1164 | alias_ns = None |
|
1171 | alias_ns = None | |
1165 | if namespaces is None: |
|
1172 | if namespaces is None: | |
1166 | # Namespaces to search in: |
|
1173 | # Namespaces to search in: | |
1167 | # Put them in a list. The order is important so that we |
|
1174 | # Put them in a list. The order is important so that we | |
1168 | # find things in the same order that Python finds them. |
|
1175 | # find things in the same order that Python finds them. | |
1169 | namespaces = [ ('Interactive', self.user_ns), |
|
1176 | namespaces = [ ('Interactive', self.user_ns), | |
1170 | ('IPython internal', self.internal_ns), |
|
1177 | ('IPython internal', self.internal_ns), | |
1171 | ('Python builtin', __builtin__.__dict__), |
|
1178 | ('Python builtin', __builtin__.__dict__), | |
1172 | ('Alias', self.alias_manager.alias_table), |
|
1179 | ('Alias', self.alias_manager.alias_table), | |
1173 | ] |
|
1180 | ] | |
1174 | alias_ns = self.alias_manager.alias_table |
|
1181 | alias_ns = self.alias_manager.alias_table | |
1175 |
|
1182 | |||
1176 | # initialize results to 'null' |
|
1183 | # initialize results to 'null' | |
1177 | found = False; obj = None; ospace = None; ds = None; |
|
1184 | found = False; obj = None; ospace = None; ds = None; | |
1178 | ismagic = False; isalias = False; parent = None |
|
1185 | ismagic = False; isalias = False; parent = None | |
1179 |
|
1186 | |||
1180 | # We need to special-case 'print', which as of python2.6 registers as a |
|
1187 | # We need to special-case 'print', which as of python2.6 registers as a | |
1181 | # function but should only be treated as one if print_function was |
|
1188 | # function but should only be treated as one if print_function was | |
1182 | # loaded with a future import. In this case, just bail. |
|
1189 | # loaded with a future import. In this case, just bail. | |
1183 | if (oname == 'print' and not (self.compile.compiler_flags & |
|
1190 | if (oname == 'print' and not (self.compile.compiler_flags & | |
1184 | __future__.CO_FUTURE_PRINT_FUNCTION)): |
|
1191 | __future__.CO_FUTURE_PRINT_FUNCTION)): | |
1185 | return {'found':found, 'obj':obj, 'namespace':ospace, |
|
1192 | return {'found':found, 'obj':obj, 'namespace':ospace, | |
1186 | 'ismagic':ismagic, 'isalias':isalias, 'parent':parent} |
|
1193 | 'ismagic':ismagic, 'isalias':isalias, 'parent':parent} | |
1187 |
|
1194 | |||
1188 | # Look for the given name by splitting it in parts. If the head is |
|
1195 | # Look for the given name by splitting it in parts. If the head is | |
1189 | # found, then we look for all the remaining parts as members, and only |
|
1196 | # found, then we look for all the remaining parts as members, and only | |
1190 | # declare success if we can find them all. |
|
1197 | # declare success if we can find them all. | |
1191 | oname_parts = oname.split('.') |
|
1198 | oname_parts = oname.split('.') | |
1192 | oname_head, oname_rest = oname_parts[0],oname_parts[1:] |
|
1199 | oname_head, oname_rest = oname_parts[0],oname_parts[1:] | |
1193 | for nsname,ns in namespaces: |
|
1200 | for nsname,ns in namespaces: | |
1194 | try: |
|
1201 | try: | |
1195 | obj = ns[oname_head] |
|
1202 | obj = ns[oname_head] | |
1196 | except KeyError: |
|
1203 | except KeyError: | |
1197 | continue |
|
1204 | continue | |
1198 | else: |
|
1205 | else: | |
1199 | #print 'oname_rest:', oname_rest # dbg |
|
1206 | #print 'oname_rest:', oname_rest # dbg | |
1200 | for part in oname_rest: |
|
1207 | for part in oname_rest: | |
1201 | try: |
|
1208 | try: | |
1202 | parent = obj |
|
1209 | parent = obj | |
1203 | obj = getattr(obj,part) |
|
1210 | obj = getattr(obj,part) | |
1204 | except: |
|
1211 | except: | |
1205 | # Blanket except b/c some badly implemented objects |
|
1212 | # Blanket except b/c some badly implemented objects | |
1206 | # allow __getattr__ to raise exceptions other than |
|
1213 | # allow __getattr__ to raise exceptions other than | |
1207 | # AttributeError, which then crashes IPython. |
|
1214 | # AttributeError, which then crashes IPython. | |
1208 | break |
|
1215 | break | |
1209 | else: |
|
1216 | else: | |
1210 | # If we finish the for loop (no break), we got all members |
|
1217 | # If we finish the for loop (no break), we got all members | |
1211 | found = True |
|
1218 | found = True | |
1212 | ospace = nsname |
|
1219 | ospace = nsname | |
1213 | if ns == alias_ns: |
|
1220 | if ns == alias_ns: | |
1214 | isalias = True |
|
1221 | isalias = True | |
1215 | break # namespace loop |
|
1222 | break # namespace loop | |
1216 |
|
1223 | |||
1217 | # Try to see if it's magic |
|
1224 | # Try to see if it's magic | |
1218 | if not found: |
|
1225 | if not found: | |
1219 | if oname.startswith(ESC_MAGIC): |
|
1226 | if oname.startswith(ESC_MAGIC): | |
1220 | oname = oname[1:] |
|
1227 | oname = oname[1:] | |
1221 | obj = getattr(self,'magic_'+oname,None) |
|
1228 | obj = getattr(self,'magic_'+oname,None) | |
1222 | if obj is not None: |
|
1229 | if obj is not None: | |
1223 | found = True |
|
1230 | found = True | |
1224 | ospace = 'IPython internal' |
|
1231 | ospace = 'IPython internal' | |
1225 | ismagic = True |
|
1232 | ismagic = True | |
1226 |
|
1233 | |||
1227 | # Last try: special-case some literals like '', [], {}, etc: |
|
1234 | # Last try: special-case some literals like '', [], {}, etc: | |
1228 | if not found and oname_head in ["''",'""','[]','{}','()']: |
|
1235 | if not found and oname_head in ["''",'""','[]','{}','()']: | |
1229 | obj = eval(oname_head) |
|
1236 | obj = eval(oname_head) | |
1230 | found = True |
|
1237 | found = True | |
1231 | ospace = 'Interactive' |
|
1238 | ospace = 'Interactive' | |
1232 |
|
1239 | |||
1233 | return {'found':found, 'obj':obj, 'namespace':ospace, |
|
1240 | return {'found':found, 'obj':obj, 'namespace':ospace, | |
1234 | 'ismagic':ismagic, 'isalias':isalias, 'parent':parent} |
|
1241 | 'ismagic':ismagic, 'isalias':isalias, 'parent':parent} | |
1235 |
|
1242 | |||
1236 | def _ofind_property(self, oname, info): |
|
1243 | def _ofind_property(self, oname, info): | |
1237 | """Second part of object finding, to look for property details.""" |
|
1244 | """Second part of object finding, to look for property details.""" | |
1238 | if info.found: |
|
1245 | if info.found: | |
1239 | # Get the docstring of the class property if it exists. |
|
1246 | # Get the docstring of the class property if it exists. | |
1240 | path = oname.split('.') |
|
1247 | path = oname.split('.') | |
1241 | root = '.'.join(path[:-1]) |
|
1248 | root = '.'.join(path[:-1]) | |
1242 | if info.parent is not None: |
|
1249 | if info.parent is not None: | |
1243 | try: |
|
1250 | try: | |
1244 | target = getattr(info.parent, '__class__') |
|
1251 | target = getattr(info.parent, '__class__') | |
1245 | # The object belongs to a class instance. |
|
1252 | # The object belongs to a class instance. | |
1246 | try: |
|
1253 | try: | |
1247 | target = getattr(target, path[-1]) |
|
1254 | target = getattr(target, path[-1]) | |
1248 | # The class defines the object. |
|
1255 | # The class defines the object. | |
1249 | if isinstance(target, property): |
|
1256 | if isinstance(target, property): | |
1250 | oname = root + '.__class__.' + path[-1] |
|
1257 | oname = root + '.__class__.' + path[-1] | |
1251 | info = Struct(self._ofind(oname)) |
|
1258 | info = Struct(self._ofind(oname)) | |
1252 | except AttributeError: pass |
|
1259 | except AttributeError: pass | |
1253 | except AttributeError: pass |
|
1260 | except AttributeError: pass | |
1254 |
|
1261 | |||
1255 | # We return either the new info or the unmodified input if the object |
|
1262 | # We return either the new info or the unmodified input if the object | |
1256 | # hadn't been found |
|
1263 | # hadn't been found | |
1257 | return info |
|
1264 | return info | |
1258 |
|
1265 | |||
1259 | def _object_find(self, oname, namespaces=None): |
|
1266 | def _object_find(self, oname, namespaces=None): | |
1260 | """Find an object and return a struct with info about it.""" |
|
1267 | """Find an object and return a struct with info about it.""" | |
1261 | inf = Struct(self._ofind(oname, namespaces)) |
|
1268 | inf = Struct(self._ofind(oname, namespaces)) | |
1262 | return Struct(self._ofind_property(oname, inf)) |
|
1269 | return Struct(self._ofind_property(oname, inf)) | |
1263 |
|
1270 | |||
1264 | def _inspect(self, meth, oname, namespaces=None, **kw): |
|
1271 | def _inspect(self, meth, oname, namespaces=None, **kw): | |
1265 | """Generic interface to the inspector system. |
|
1272 | """Generic interface to the inspector system. | |
1266 |
|
1273 | |||
1267 | This function is meant to be called by pdef, pdoc & friends.""" |
|
1274 | This function is meant to be called by pdef, pdoc & friends.""" | |
1268 | info = self._object_find(oname) |
|
1275 | info = self._object_find(oname) | |
1269 | if info.found: |
|
1276 | if info.found: | |
1270 | pmethod = getattr(self.inspector, meth) |
|
1277 | pmethod = getattr(self.inspector, meth) | |
1271 | formatter = format_screen if info.ismagic else None |
|
1278 | formatter = format_screen if info.ismagic else None | |
1272 | if meth == 'pdoc': |
|
1279 | if meth == 'pdoc': | |
1273 | pmethod(info.obj, oname, formatter) |
|
1280 | pmethod(info.obj, oname, formatter) | |
1274 | elif meth == 'pinfo': |
|
1281 | elif meth == 'pinfo': | |
1275 | pmethod(info.obj, oname, formatter, info, **kw) |
|
1282 | pmethod(info.obj, oname, formatter, info, **kw) | |
1276 | else: |
|
1283 | else: | |
1277 | pmethod(info.obj, oname) |
|
1284 | pmethod(info.obj, oname) | |
1278 | else: |
|
1285 | else: | |
1279 | print 'Object `%s` not found.' % oname |
|
1286 | print 'Object `%s` not found.' % oname | |
1280 | return 'not found' # so callers can take other action |
|
1287 | return 'not found' # so callers can take other action | |
1281 |
|
1288 | |||
1282 | def object_inspect(self, oname): |
|
1289 | def object_inspect(self, oname): | |
1283 | info = self._object_find(oname) |
|
1290 | info = self._object_find(oname) | |
1284 | if info.found: |
|
1291 | if info.found: | |
1285 | return self.inspector.info(info.obj, oname, info=info) |
|
1292 | return self.inspector.info(info.obj, oname, info=info) | |
1286 | else: |
|
1293 | else: | |
1287 | return oinspect.object_info(name=oname, found=False) |
|
1294 | return oinspect.object_info(name=oname, found=False) | |
1288 |
|
1295 | |||
1289 | #------------------------------------------------------------------------- |
|
1296 | #------------------------------------------------------------------------- | |
1290 | # Things related to history management |
|
1297 | # Things related to history management | |
1291 | #------------------------------------------------------------------------- |
|
1298 | #------------------------------------------------------------------------- | |
1292 |
|
1299 | |||
1293 | def init_history(self): |
|
1300 | def init_history(self): | |
1294 | """Sets up the command history, and starts regular autosaves.""" |
|
1301 | """Sets up the command history, and starts regular autosaves.""" | |
1295 | self.history_manager = HistoryManager(shell=self, config=self.config) |
|
1302 | self.history_manager = HistoryManager(shell=self, config=self.config) | |
1296 |
|
1303 | |||
1297 | #------------------------------------------------------------------------- |
|
1304 | #------------------------------------------------------------------------- | |
1298 | # Things related to exception handling and tracebacks (not debugging) |
|
1305 | # Things related to exception handling and tracebacks (not debugging) | |
1299 | #------------------------------------------------------------------------- |
|
1306 | #------------------------------------------------------------------------- | |
1300 |
|
1307 | |||
1301 | def init_traceback_handlers(self, custom_exceptions): |
|
1308 | def init_traceback_handlers(self, custom_exceptions): | |
1302 | # Syntax error handler. |
|
1309 | # Syntax error handler. | |
1303 | self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor') |
|
1310 | self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor') | |
1304 |
|
1311 | |||
1305 | # The interactive one is initialized with an offset, meaning we always |
|
1312 | # The interactive one is initialized with an offset, meaning we always | |
1306 | # want to remove the topmost item in the traceback, which is our own |
|
1313 | # want to remove the topmost item in the traceback, which is our own | |
1307 | # internal code. Valid modes: ['Plain','Context','Verbose'] |
|
1314 | # internal code. Valid modes: ['Plain','Context','Verbose'] | |
1308 | self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain', |
|
1315 | self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain', | |
1309 | color_scheme='NoColor', |
|
1316 | color_scheme='NoColor', | |
1310 | tb_offset = 1, |
|
1317 | tb_offset = 1, | |
1311 | check_cache=self.compile.check_cache) |
|
1318 | check_cache=self.compile.check_cache) | |
1312 |
|
1319 | |||
1313 | # The instance will store a pointer to the system-wide exception hook, |
|
1320 | # The instance will store a pointer to the system-wide exception hook, | |
1314 | # so that runtime code (such as magics) can access it. This is because |
|
1321 | # so that runtime code (such as magics) can access it. This is because | |
1315 | # during the read-eval loop, it may get temporarily overwritten. |
|
1322 | # during the read-eval loop, it may get temporarily overwritten. | |
1316 | self.sys_excepthook = sys.excepthook |
|
1323 | self.sys_excepthook = sys.excepthook | |
1317 |
|
1324 | |||
1318 | # and add any custom exception handlers the user may have specified |
|
1325 | # and add any custom exception handlers the user may have specified | |
1319 | self.set_custom_exc(*custom_exceptions) |
|
1326 | self.set_custom_exc(*custom_exceptions) | |
1320 |
|
1327 | |||
1321 | # Set the exception mode |
|
1328 | # Set the exception mode | |
1322 | self.InteractiveTB.set_mode(mode=self.xmode) |
|
1329 | self.InteractiveTB.set_mode(mode=self.xmode) | |
1323 |
|
1330 | |||
1324 | def set_custom_exc(self, exc_tuple, handler): |
|
1331 | def set_custom_exc(self, exc_tuple, handler): | |
1325 | """set_custom_exc(exc_tuple,handler) |
|
1332 | """set_custom_exc(exc_tuple,handler) | |
1326 |
|
1333 | |||
1327 | Set a custom exception handler, which will be called if any of the |
|
1334 | Set a custom exception handler, which will be called if any of the | |
1328 | exceptions in exc_tuple occur in the mainloop (specifically, in the |
|
1335 | exceptions in exc_tuple occur in the mainloop (specifically, in the | |
1329 | run_code() method. |
|
1336 | run_code() method. | |
1330 |
|
1337 | |||
1331 | Inputs: |
|
1338 | Inputs: | |
1332 |
|
1339 | |||
1333 | - exc_tuple: a *tuple* of valid exceptions to call the defined |
|
1340 | - exc_tuple: a *tuple* of valid exceptions to call the defined | |
1334 | handler for. It is very important that you use a tuple, and NOT A |
|
1341 | handler for. It is very important that you use a tuple, and NOT A | |
1335 | LIST here, because of the way Python's except statement works. If |
|
1342 | LIST here, because of the way Python's except statement works. If | |
1336 | you only want to trap a single exception, use a singleton tuple: |
|
1343 | you only want to trap a single exception, use a singleton tuple: | |
1337 |
|
1344 | |||
1338 | exc_tuple == (MyCustomException,) |
|
1345 | exc_tuple == (MyCustomException,) | |
1339 |
|
1346 | |||
1340 | - handler: this must be defined as a function with the following |
|
1347 | - handler: this must be defined as a function with the following | |
1341 | basic interface:: |
|
1348 | basic interface:: | |
1342 |
|
1349 | |||
1343 | def my_handler(self, etype, value, tb, tb_offset=None) |
|
1350 | def my_handler(self, etype, value, tb, tb_offset=None) | |
1344 | ... |
|
1351 | ... | |
1345 | # The return value must be |
|
1352 | # The return value must be | |
1346 | return structured_traceback |
|
1353 | return structured_traceback | |
1347 |
|
1354 | |||
1348 | This will be made into an instance method (via types.MethodType) |
|
1355 | This will be made into an instance method (via types.MethodType) | |
1349 | of IPython itself, and it will be called if any of the exceptions |
|
1356 | of IPython itself, and it will be called if any of the exceptions | |
1350 | listed in the exc_tuple are caught. If the handler is None, an |
|
1357 | listed in the exc_tuple are caught. If the handler is None, an | |
1351 | internal basic one is used, which just prints basic info. |
|
1358 | internal basic one is used, which just prints basic info. | |
1352 |
|
1359 | |||
1353 | WARNING: by putting in your own exception handler into IPython's main |
|
1360 | WARNING: by putting in your own exception handler into IPython's main | |
1354 | execution loop, you run a very good chance of nasty crashes. This |
|
1361 | execution loop, you run a very good chance of nasty crashes. This | |
1355 | facility should only be used if you really know what you are doing.""" |
|
1362 | facility should only be used if you really know what you are doing.""" | |
1356 |
|
1363 | |||
1357 | assert type(exc_tuple)==type(()) , \ |
|
1364 | assert type(exc_tuple)==type(()) , \ | |
1358 | "The custom exceptions must be given AS A TUPLE." |
|
1365 | "The custom exceptions must be given AS A TUPLE." | |
1359 |
|
1366 | |||
1360 | def dummy_handler(self,etype,value,tb): |
|
1367 | def dummy_handler(self,etype,value,tb): | |
1361 | print '*** Simple custom exception handler ***' |
|
1368 | print '*** Simple custom exception handler ***' | |
1362 | print 'Exception type :',etype |
|
1369 | print 'Exception type :',etype | |
1363 | print 'Exception value:',value |
|
1370 | print 'Exception value:',value | |
1364 | print 'Traceback :',tb |
|
1371 | print 'Traceback :',tb | |
1365 | print 'Source code :','\n'.join(self.buffer) |
|
1372 | print 'Source code :','\n'.join(self.buffer) | |
1366 |
|
1373 | |||
1367 | if handler is None: handler = dummy_handler |
|
1374 | if handler is None: handler = dummy_handler | |
1368 |
|
1375 | |||
1369 | self.CustomTB = types.MethodType(handler,self) |
|
1376 | self.CustomTB = types.MethodType(handler,self) | |
1370 | self.custom_exceptions = exc_tuple |
|
1377 | self.custom_exceptions = exc_tuple | |
1371 |
|
1378 | |||
1372 | def excepthook(self, etype, value, tb): |
|
1379 | def excepthook(self, etype, value, tb): | |
1373 | """One more defense for GUI apps that call sys.excepthook. |
|
1380 | """One more defense for GUI apps that call sys.excepthook. | |
1374 |
|
1381 | |||
1375 | GUI frameworks like wxPython trap exceptions and call |
|
1382 | GUI frameworks like wxPython trap exceptions and call | |
1376 | sys.excepthook themselves. I guess this is a feature that |
|
1383 | sys.excepthook themselves. I guess this is a feature that | |
1377 | enables them to keep running after exceptions that would |
|
1384 | enables them to keep running after exceptions that would | |
1378 | otherwise kill their mainloop. This is a bother for IPython |
|
1385 | otherwise kill their mainloop. This is a bother for IPython | |
1379 | which excepts to catch all of the program exceptions with a try: |
|
1386 | which excepts to catch all of the program exceptions with a try: | |
1380 | except: statement. |
|
1387 | except: statement. | |
1381 |
|
1388 | |||
1382 | Normally, IPython sets sys.excepthook to a CrashHandler instance, so if |
|
1389 | Normally, IPython sets sys.excepthook to a CrashHandler instance, so if | |
1383 | any app directly invokes sys.excepthook, it will look to the user like |
|
1390 | any app directly invokes sys.excepthook, it will look to the user like | |
1384 | IPython crashed. In order to work around this, we can disable the |
|
1391 | IPython crashed. In order to work around this, we can disable the | |
1385 | CrashHandler and replace it with this excepthook instead, which prints a |
|
1392 | CrashHandler and replace it with this excepthook instead, which prints a | |
1386 | regular traceback using our InteractiveTB. In this fashion, apps which |
|
1393 | regular traceback using our InteractiveTB. In this fashion, apps which | |
1387 | call sys.excepthook will generate a regular-looking exception from |
|
1394 | call sys.excepthook will generate a regular-looking exception from | |
1388 | IPython, and the CrashHandler will only be triggered by real IPython |
|
1395 | IPython, and the CrashHandler will only be triggered by real IPython | |
1389 | crashes. |
|
1396 | crashes. | |
1390 |
|
1397 | |||
1391 | This hook should be used sparingly, only in places which are not likely |
|
1398 | This hook should be used sparingly, only in places which are not likely | |
1392 | to be true IPython errors. |
|
1399 | to be true IPython errors. | |
1393 | """ |
|
1400 | """ | |
1394 | self.showtraceback((etype,value,tb),tb_offset=0) |
|
1401 | self.showtraceback((etype,value,tb),tb_offset=0) | |
1395 |
|
1402 | |||
1396 | def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None, |
|
1403 | def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None, | |
1397 | exception_only=False): |
|
1404 | exception_only=False): | |
1398 | """Display the exception that just occurred. |
|
1405 | """Display the exception that just occurred. | |
1399 |
|
1406 | |||
1400 | If nothing is known about the exception, this is the method which |
|
1407 | If nothing is known about the exception, this is the method which | |
1401 | should be used throughout the code for presenting user tracebacks, |
|
1408 | should be used throughout the code for presenting user tracebacks, | |
1402 | rather than directly invoking the InteractiveTB object. |
|
1409 | rather than directly invoking the InteractiveTB object. | |
1403 |
|
1410 | |||
1404 | A specific showsyntaxerror() also exists, but this method can take |
|
1411 | A specific showsyntaxerror() also exists, but this method can take | |
1405 | care of calling it if needed, so unless you are explicitly catching a |
|
1412 | care of calling it if needed, so unless you are explicitly catching a | |
1406 | SyntaxError exception, don't try to analyze the stack manually and |
|
1413 | SyntaxError exception, don't try to analyze the stack manually and | |
1407 | simply call this method.""" |
|
1414 | simply call this method.""" | |
1408 |
|
1415 | |||
1409 | try: |
|
1416 | try: | |
1410 | if exc_tuple is None: |
|
1417 | if exc_tuple is None: | |
1411 | etype, value, tb = sys.exc_info() |
|
1418 | etype, value, tb = sys.exc_info() | |
1412 | else: |
|
1419 | else: | |
1413 | etype, value, tb = exc_tuple |
|
1420 | etype, value, tb = exc_tuple | |
1414 |
|
1421 | |||
1415 | if etype is None: |
|
1422 | if etype is None: | |
1416 | if hasattr(sys, 'last_type'): |
|
1423 | if hasattr(sys, 'last_type'): | |
1417 | etype, value, tb = sys.last_type, sys.last_value, \ |
|
1424 | etype, value, tb = sys.last_type, sys.last_value, \ | |
1418 | sys.last_traceback |
|
1425 | sys.last_traceback | |
1419 | else: |
|
1426 | else: | |
1420 | self.write_err('No traceback available to show.\n') |
|
1427 | self.write_err('No traceback available to show.\n') | |
1421 | return |
|
1428 | return | |
1422 |
|
1429 | |||
1423 | if etype is SyntaxError: |
|
1430 | if etype is SyntaxError: | |
1424 | # Though this won't be called by syntax errors in the input |
|
1431 | # Though this won't be called by syntax errors in the input | |
1425 | # line, there may be SyntaxError cases whith imported code. |
|
1432 | # line, there may be SyntaxError cases whith imported code. | |
1426 | self.showsyntaxerror(filename) |
|
1433 | self.showsyntaxerror(filename) | |
1427 | elif etype is UsageError: |
|
1434 | elif etype is UsageError: | |
1428 | print "UsageError:", value |
|
1435 | print "UsageError:", value | |
1429 | else: |
|
1436 | else: | |
1430 | # WARNING: these variables are somewhat deprecated and not |
|
1437 | # WARNING: these variables are somewhat deprecated and not | |
1431 | # necessarily safe to use in a threaded environment, but tools |
|
1438 | # necessarily safe to use in a threaded environment, but tools | |
1432 | # like pdb depend on their existence, so let's set them. If we |
|
1439 | # like pdb depend on their existence, so let's set them. If we | |
1433 | # find problems in the field, we'll need to revisit their use. |
|
1440 | # find problems in the field, we'll need to revisit their use. | |
1434 | sys.last_type = etype |
|
1441 | sys.last_type = etype | |
1435 | sys.last_value = value |
|
1442 | sys.last_value = value | |
1436 | sys.last_traceback = tb |
|
1443 | sys.last_traceback = tb | |
1437 |
|
1444 | |||
1438 | if etype in self.custom_exceptions: |
|
1445 | if etype in self.custom_exceptions: | |
1439 | # FIXME: Old custom traceback objects may just return a |
|
1446 | # FIXME: Old custom traceback objects may just return a | |
1440 | # string, in that case we just put it into a list |
|
1447 | # string, in that case we just put it into a list | |
1441 | stb = self.CustomTB(etype, value, tb, tb_offset) |
|
1448 | stb = self.CustomTB(etype, value, tb, tb_offset) | |
1442 | if isinstance(ctb, basestring): |
|
1449 | if isinstance(ctb, basestring): | |
1443 | stb = [stb] |
|
1450 | stb = [stb] | |
1444 | else: |
|
1451 | else: | |
1445 | if exception_only: |
|
1452 | if exception_only: | |
1446 | stb = ['An exception has occurred, use %tb to see ' |
|
1453 | stb = ['An exception has occurred, use %tb to see ' | |
1447 | 'the full traceback.\n'] |
|
1454 | 'the full traceback.\n'] | |
1448 | stb.extend(self.InteractiveTB.get_exception_only(etype, |
|
1455 | stb.extend(self.InteractiveTB.get_exception_only(etype, | |
1449 | value)) |
|
1456 | value)) | |
1450 | else: |
|
1457 | else: | |
1451 | stb = self.InteractiveTB.structured_traceback(etype, |
|
1458 | stb = self.InteractiveTB.structured_traceback(etype, | |
1452 | value, tb, tb_offset=tb_offset) |
|
1459 | value, tb, tb_offset=tb_offset) | |
1453 | # FIXME: the pdb calling should be done by us, not by |
|
1460 | # FIXME: the pdb calling should be done by us, not by | |
1454 | # the code computing the traceback. |
|
1461 | # the code computing the traceback. | |
1455 | if self.InteractiveTB.call_pdb: |
|
1462 | if self.InteractiveTB.call_pdb: | |
1456 | # pdb mucks up readline, fix it back |
|
1463 | # pdb mucks up readline, fix it back | |
1457 | self.set_readline_completer() |
|
1464 | self.set_readline_completer() | |
1458 |
|
1465 | |||
1459 | # Actually show the traceback |
|
1466 | # Actually show the traceback | |
1460 | self._showtraceback(etype, value, stb) |
|
1467 | self._showtraceback(etype, value, stb) | |
1461 |
|
1468 | |||
1462 | except KeyboardInterrupt: |
|
1469 | except KeyboardInterrupt: | |
1463 | self.write_err("\nKeyboardInterrupt\n") |
|
1470 | self.write_err("\nKeyboardInterrupt\n") | |
1464 |
|
1471 | |||
1465 | def _showtraceback(self, etype, evalue, stb): |
|
1472 | def _showtraceback(self, etype, evalue, stb): | |
1466 | """Actually show a traceback. |
|
1473 | """Actually show a traceback. | |
1467 |
|
1474 | |||
1468 | Subclasses may override this method to put the traceback on a different |
|
1475 | Subclasses may override this method to put the traceback on a different | |
1469 | place, like a side channel. |
|
1476 | place, like a side channel. | |
1470 | """ |
|
1477 | """ | |
1471 | print >> io.Term.cout, self.InteractiveTB.stb2text(stb) |
|
1478 | print >> io.Term.cout, self.InteractiveTB.stb2text(stb) | |
1472 |
|
1479 | |||
1473 | def showsyntaxerror(self, filename=None): |
|
1480 | def showsyntaxerror(self, filename=None): | |
1474 | """Display the syntax error that just occurred. |
|
1481 | """Display the syntax error that just occurred. | |
1475 |
|
1482 | |||
1476 | This doesn't display a stack trace because there isn't one. |
|
1483 | This doesn't display a stack trace because there isn't one. | |
1477 |
|
1484 | |||
1478 | If a filename is given, it is stuffed in the exception instead |
|
1485 | If a filename is given, it is stuffed in the exception instead | |
1479 | of what was there before (because Python's parser always uses |
|
1486 | of what was there before (because Python's parser always uses | |
1480 | "<string>" when reading from a string). |
|
1487 | "<string>" when reading from a string). | |
1481 | """ |
|
1488 | """ | |
1482 | etype, value, last_traceback = sys.exc_info() |
|
1489 | etype, value, last_traceback = sys.exc_info() | |
1483 |
|
1490 | |||
1484 | # See note about these variables in showtraceback() above |
|
1491 | # See note about these variables in showtraceback() above | |
1485 | sys.last_type = etype |
|
1492 | sys.last_type = etype | |
1486 | sys.last_value = value |
|
1493 | sys.last_value = value | |
1487 | sys.last_traceback = last_traceback |
|
1494 | sys.last_traceback = last_traceback | |
1488 |
|
1495 | |||
1489 | if filename and etype is SyntaxError: |
|
1496 | if filename and etype is SyntaxError: | |
1490 | # Work hard to stuff the correct filename in the exception |
|
1497 | # Work hard to stuff the correct filename in the exception | |
1491 | try: |
|
1498 | try: | |
1492 | msg, (dummy_filename, lineno, offset, line) = value |
|
1499 | msg, (dummy_filename, lineno, offset, line) = value | |
1493 | except: |
|
1500 | except: | |
1494 | # Not the format we expect; leave it alone |
|
1501 | # Not the format we expect; leave it alone | |
1495 | pass |
|
1502 | pass | |
1496 | else: |
|
1503 | else: | |
1497 | # Stuff in the right filename |
|
1504 | # Stuff in the right filename | |
1498 | try: |
|
1505 | try: | |
1499 | # Assume SyntaxError is a class exception |
|
1506 | # Assume SyntaxError is a class exception | |
1500 | value = SyntaxError(msg, (filename, lineno, offset, line)) |
|
1507 | value = SyntaxError(msg, (filename, lineno, offset, line)) | |
1501 | except: |
|
1508 | except: | |
1502 | # If that failed, assume SyntaxError is a string |
|
1509 | # If that failed, assume SyntaxError is a string | |
1503 | value = msg, (filename, lineno, offset, line) |
|
1510 | value = msg, (filename, lineno, offset, line) | |
1504 | stb = self.SyntaxTB.structured_traceback(etype, value, []) |
|
1511 | stb = self.SyntaxTB.structured_traceback(etype, value, []) | |
1505 | self._showtraceback(etype, value, stb) |
|
1512 | self._showtraceback(etype, value, stb) | |
1506 |
|
1513 | |||
1507 | #------------------------------------------------------------------------- |
|
1514 | #------------------------------------------------------------------------- | |
1508 | # Things related to readline |
|
1515 | # Things related to readline | |
1509 | #------------------------------------------------------------------------- |
|
1516 | #------------------------------------------------------------------------- | |
1510 |
|
1517 | |||
1511 | def init_readline(self): |
|
1518 | def init_readline(self): | |
1512 | """Command history completion/saving/reloading.""" |
|
1519 | """Command history completion/saving/reloading.""" | |
1513 |
|
1520 | |||
1514 | if self.readline_use: |
|
1521 | if self.readline_use: | |
1515 | import IPython.utils.rlineimpl as readline |
|
1522 | import IPython.utils.rlineimpl as readline | |
1516 |
|
1523 | |||
1517 | self.rl_next_input = None |
|
1524 | self.rl_next_input = None | |
1518 | self.rl_do_indent = False |
|
1525 | self.rl_do_indent = False | |
1519 |
|
1526 | |||
1520 | if not self.readline_use or not readline.have_readline: |
|
1527 | if not self.readline_use or not readline.have_readline: | |
1521 | self.has_readline = False |
|
1528 | self.has_readline = False | |
1522 | self.readline = None |
|
1529 | self.readline = None | |
1523 | # Set a number of methods that depend on readline to be no-op |
|
1530 | # Set a number of methods that depend on readline to be no-op | |
1524 | self.set_readline_completer = no_op |
|
1531 | self.set_readline_completer = no_op | |
1525 | self.set_custom_completer = no_op |
|
1532 | self.set_custom_completer = no_op | |
1526 | self.set_completer_frame = no_op |
|
1533 | self.set_completer_frame = no_op | |
1527 | warn('Readline services not available or not loaded.') |
|
1534 | warn('Readline services not available or not loaded.') | |
1528 | else: |
|
1535 | else: | |
1529 | self.has_readline = True |
|
1536 | self.has_readline = True | |
1530 | self.readline = readline |
|
1537 | self.readline = readline | |
1531 | sys.modules['readline'] = readline |
|
1538 | sys.modules['readline'] = readline | |
1532 |
|
1539 | |||
1533 | # Platform-specific configuration |
|
1540 | # Platform-specific configuration | |
1534 | if os.name == 'nt': |
|
1541 | if os.name == 'nt': | |
1535 | # FIXME - check with Frederick to see if we can harmonize |
|
1542 | # FIXME - check with Frederick to see if we can harmonize | |
1536 | # naming conventions with pyreadline to avoid this |
|
1543 | # naming conventions with pyreadline to avoid this | |
1537 | # platform-dependent check |
|
1544 | # platform-dependent check | |
1538 | self.readline_startup_hook = readline.set_pre_input_hook |
|
1545 | self.readline_startup_hook = readline.set_pre_input_hook | |
1539 | else: |
|
1546 | else: | |
1540 | self.readline_startup_hook = readline.set_startup_hook |
|
1547 | self.readline_startup_hook = readline.set_startup_hook | |
1541 |
|
1548 | |||
1542 | # Load user's initrc file (readline config) |
|
1549 | # Load user's initrc file (readline config) | |
1543 | # Or if libedit is used, load editrc. |
|
1550 | # Or if libedit is used, load editrc. | |
1544 | inputrc_name = os.environ.get('INPUTRC') |
|
1551 | inputrc_name = os.environ.get('INPUTRC') | |
1545 | if inputrc_name is None: |
|
1552 | if inputrc_name is None: | |
1546 | home_dir = get_home_dir() |
|
1553 | home_dir = get_home_dir() | |
1547 | if home_dir is not None: |
|
1554 | if home_dir is not None: | |
1548 | inputrc_name = '.inputrc' |
|
1555 | inputrc_name = '.inputrc' | |
1549 | if readline.uses_libedit: |
|
1556 | if readline.uses_libedit: | |
1550 | inputrc_name = '.editrc' |
|
1557 | inputrc_name = '.editrc' | |
1551 | inputrc_name = os.path.join(home_dir, inputrc_name) |
|
1558 | inputrc_name = os.path.join(home_dir, inputrc_name) | |
1552 | if os.path.isfile(inputrc_name): |
|
1559 | if os.path.isfile(inputrc_name): | |
1553 | try: |
|
1560 | try: | |
1554 | readline.read_init_file(inputrc_name) |
|
1561 | readline.read_init_file(inputrc_name) | |
1555 | except: |
|
1562 | except: | |
1556 | warn('Problems reading readline initialization file <%s>' |
|
1563 | warn('Problems reading readline initialization file <%s>' | |
1557 | % inputrc_name) |
|
1564 | % inputrc_name) | |
1558 |
|
1565 | |||
1559 | # Configure readline according to user's prefs |
|
1566 | # Configure readline according to user's prefs | |
1560 | # This is only done if GNU readline is being used. If libedit |
|
1567 | # This is only done if GNU readline is being used. If libedit | |
1561 | # is being used (as on Leopard) the readline config is |
|
1568 | # is being used (as on Leopard) the readline config is | |
1562 | # not run as the syntax for libedit is different. |
|
1569 | # not run as the syntax for libedit is different. | |
1563 | if not readline.uses_libedit: |
|
1570 | if not readline.uses_libedit: | |
1564 | for rlcommand in self.readline_parse_and_bind: |
|
1571 | for rlcommand in self.readline_parse_and_bind: | |
1565 | #print "loading rl:",rlcommand # dbg |
|
1572 | #print "loading rl:",rlcommand # dbg | |
1566 | readline.parse_and_bind(rlcommand) |
|
1573 | readline.parse_and_bind(rlcommand) | |
1567 |
|
1574 | |||
1568 | # Remove some chars from the delimiters list. If we encounter |
|
1575 | # Remove some chars from the delimiters list. If we encounter | |
1569 | # unicode chars, discard them. |
|
1576 | # unicode chars, discard them. | |
1570 | delims = readline.get_completer_delims().encode("ascii", "ignore") |
|
1577 | delims = readline.get_completer_delims().encode("ascii", "ignore") | |
1571 | delims = delims.translate(None, self.readline_remove_delims) |
|
1578 | delims = delims.translate(None, self.readline_remove_delims) | |
1572 | delims = delims.replace(ESC_MAGIC, '') |
|
1579 | delims = delims.replace(ESC_MAGIC, '') | |
1573 | readline.set_completer_delims(delims) |
|
1580 | readline.set_completer_delims(delims) | |
1574 | # otherwise we end up with a monster history after a while: |
|
1581 | # otherwise we end up with a monster history after a while: | |
1575 | readline.set_history_length(self.history_length) |
|
1582 | readline.set_history_length(self.history_length) | |
1576 |
|
1583 | |||
1577 | self.refill_readline_hist() |
|
1584 | self.refill_readline_hist() | |
1578 | self.readline_no_record = ReadlineNoRecord(self) |
|
1585 | self.readline_no_record = ReadlineNoRecord(self) | |
1579 |
|
1586 | |||
1580 | # Configure auto-indent for all platforms |
|
1587 | # Configure auto-indent for all platforms | |
1581 | self.set_autoindent(self.autoindent) |
|
1588 | self.set_autoindent(self.autoindent) | |
1582 |
|
1589 | |||
1583 | def refill_readline_hist(self): |
|
1590 | def refill_readline_hist(self): | |
1584 | # Load the last 1000 lines from history |
|
1591 | # Load the last 1000 lines from history | |
1585 | self.readline.clear_history() |
|
1592 | self.readline.clear_history() | |
1586 | stdin_encoding = sys.stdin.encoding or "utf-8" |
|
1593 | stdin_encoding = sys.stdin.encoding or "utf-8" | |
1587 | for _, _, cell in self.history_manager.get_tail(1000, |
|
1594 | for _, _, cell in self.history_manager.get_tail(1000, | |
1588 | include_latest=True): |
|
1595 | include_latest=True): | |
1589 | if cell.strip(): # Ignore blank lines |
|
1596 | if cell.strip(): # Ignore blank lines | |
1590 | for line in cell.splitlines(): |
|
1597 | for line in cell.splitlines(): | |
1591 | self.readline.add_history(line.encode(stdin_encoding)) |
|
1598 | self.readline.add_history(line.encode(stdin_encoding)) | |
1592 |
|
1599 | |||
1593 | def set_next_input(self, s): |
|
1600 | def set_next_input(self, s): | |
1594 | """ Sets the 'default' input string for the next command line. |
|
1601 | """ Sets the 'default' input string for the next command line. | |
1595 |
|
1602 | |||
1596 | Requires readline. |
|
1603 | Requires readline. | |
1597 |
|
1604 | |||
1598 | Example: |
|
1605 | Example: | |
1599 |
|
1606 | |||
1600 | [D:\ipython]|1> _ip.set_next_input("Hello Word") |
|
1607 | [D:\ipython]|1> _ip.set_next_input("Hello Word") | |
1601 | [D:\ipython]|2> Hello Word_ # cursor is here |
|
1608 | [D:\ipython]|2> Hello Word_ # cursor is here | |
1602 | """ |
|
1609 | """ | |
1603 |
|
1610 | |||
1604 | self.rl_next_input = s |
|
1611 | self.rl_next_input = s | |
1605 |
|
1612 | |||
1606 | # Maybe move this to the terminal subclass? |
|
1613 | # Maybe move this to the terminal subclass? | |
1607 | def pre_readline(self): |
|
1614 | def pre_readline(self): | |
1608 | """readline hook to be used at the start of each line. |
|
1615 | """readline hook to be used at the start of each line. | |
1609 |
|
1616 | |||
1610 | Currently it handles auto-indent only.""" |
|
1617 | Currently it handles auto-indent only.""" | |
1611 |
|
1618 | |||
1612 | if self.rl_do_indent: |
|
1619 | if self.rl_do_indent: | |
1613 | self.readline.insert_text(self._indent_current_str()) |
|
1620 | self.readline.insert_text(self._indent_current_str()) | |
1614 | if self.rl_next_input is not None: |
|
1621 | if self.rl_next_input is not None: | |
1615 | self.readline.insert_text(self.rl_next_input) |
|
1622 | self.readline.insert_text(self.rl_next_input) | |
1616 | self.rl_next_input = None |
|
1623 | self.rl_next_input = None | |
1617 |
|
1624 | |||
1618 | def _indent_current_str(self): |
|
1625 | def _indent_current_str(self): | |
1619 | """return the current level of indentation as a string""" |
|
1626 | """return the current level of indentation as a string""" | |
1620 | return self.input_splitter.indent_spaces * ' ' |
|
1627 | return self.input_splitter.indent_spaces * ' ' | |
1621 |
|
1628 | |||
1622 | #------------------------------------------------------------------------- |
|
1629 | #------------------------------------------------------------------------- | |
1623 | # Things related to text completion |
|
1630 | # Things related to text completion | |
1624 | #------------------------------------------------------------------------- |
|
1631 | #------------------------------------------------------------------------- | |
1625 |
|
1632 | |||
1626 | def init_completer(self): |
|
1633 | def init_completer(self): | |
1627 | """Initialize the completion machinery. |
|
1634 | """Initialize the completion machinery. | |
1628 |
|
1635 | |||
1629 | This creates completion machinery that can be used by client code, |
|
1636 | This creates completion machinery that can be used by client code, | |
1630 | either interactively in-process (typically triggered by the readline |
|
1637 | either interactively in-process (typically triggered by the readline | |
1631 | library), programatically (such as in test suites) or out-of-prcess |
|
1638 | library), programatically (such as in test suites) or out-of-prcess | |
1632 | (typically over the network by remote frontends). |
|
1639 | (typically over the network by remote frontends). | |
1633 | """ |
|
1640 | """ | |
1634 | from IPython.core.completer import IPCompleter |
|
1641 | from IPython.core.completer import IPCompleter | |
1635 | from IPython.core.completerlib import (module_completer, |
|
1642 | from IPython.core.completerlib import (module_completer, | |
1636 | magic_run_completer, cd_completer) |
|
1643 | magic_run_completer, cd_completer) | |
1637 |
|
1644 | |||
1638 | self.Completer = IPCompleter(self, |
|
1645 | self.Completer = IPCompleter(self, | |
1639 | self.user_ns, |
|
1646 | self.user_ns, | |
1640 | self.user_global_ns, |
|
1647 | self.user_global_ns, | |
1641 | self.readline_omit__names, |
|
1648 | self.readline_omit__names, | |
1642 | self.alias_manager.alias_table, |
|
1649 | self.alias_manager.alias_table, | |
1643 | self.has_readline) |
|
1650 | self.has_readline) | |
1644 |
|
1651 | |||
1645 | # Add custom completers to the basic ones built into IPCompleter |
|
1652 | # Add custom completers to the basic ones built into IPCompleter | |
1646 | sdisp = self.strdispatchers.get('complete_command', StrDispatch()) |
|
1653 | sdisp = self.strdispatchers.get('complete_command', StrDispatch()) | |
1647 | self.strdispatchers['complete_command'] = sdisp |
|
1654 | self.strdispatchers['complete_command'] = sdisp | |
1648 | self.Completer.custom_completers = sdisp |
|
1655 | self.Completer.custom_completers = sdisp | |
1649 |
|
1656 | |||
1650 | self.set_hook('complete_command', module_completer, str_key = 'import') |
|
1657 | self.set_hook('complete_command', module_completer, str_key = 'import') | |
1651 | self.set_hook('complete_command', module_completer, str_key = 'from') |
|
1658 | self.set_hook('complete_command', module_completer, str_key = 'from') | |
1652 | self.set_hook('complete_command', magic_run_completer, str_key = '%run') |
|
1659 | self.set_hook('complete_command', magic_run_completer, str_key = '%run') | |
1653 | self.set_hook('complete_command', cd_completer, str_key = '%cd') |
|
1660 | self.set_hook('complete_command', cd_completer, str_key = '%cd') | |
1654 |
|
1661 | |||
1655 | # Only configure readline if we truly are using readline. IPython can |
|
1662 | # Only configure readline if we truly are using readline. IPython can | |
1656 | # do tab-completion over the network, in GUIs, etc, where readline |
|
1663 | # do tab-completion over the network, in GUIs, etc, where readline | |
1657 | # itself may be absent |
|
1664 | # itself may be absent | |
1658 | if self.has_readline: |
|
1665 | if self.has_readline: | |
1659 | self.set_readline_completer() |
|
1666 | self.set_readline_completer() | |
1660 |
|
1667 | |||
1661 | def complete(self, text, line=None, cursor_pos=None): |
|
1668 | def complete(self, text, line=None, cursor_pos=None): | |
1662 | """Return the completed text and a list of completions. |
|
1669 | """Return the completed text and a list of completions. | |
1663 |
|
1670 | |||
1664 | Parameters |
|
1671 | Parameters | |
1665 | ---------- |
|
1672 | ---------- | |
1666 |
|
1673 | |||
1667 | text : string |
|
1674 | text : string | |
1668 | A string of text to be completed on. It can be given as empty and |
|
1675 | A string of text to be completed on. It can be given as empty and | |
1669 | instead a line/position pair are given. In this case, the |
|
1676 | instead a line/position pair are given. In this case, the | |
1670 | completer itself will split the line like readline does. |
|
1677 | completer itself will split the line like readline does. | |
1671 |
|
1678 | |||
1672 | line : string, optional |
|
1679 | line : string, optional | |
1673 | The complete line that text is part of. |
|
1680 | The complete line that text is part of. | |
1674 |
|
1681 | |||
1675 | cursor_pos : int, optional |
|
1682 | cursor_pos : int, optional | |
1676 | The position of the cursor on the input line. |
|
1683 | The position of the cursor on the input line. | |
1677 |
|
1684 | |||
1678 | Returns |
|
1685 | Returns | |
1679 | ------- |
|
1686 | ------- | |
1680 | text : string |
|
1687 | text : string | |
1681 | The actual text that was completed. |
|
1688 | The actual text that was completed. | |
1682 |
|
1689 | |||
1683 | matches : list |
|
1690 | matches : list | |
1684 | A sorted list with all possible completions. |
|
1691 | A sorted list with all possible completions. | |
1685 |
|
1692 | |||
1686 | The optional arguments allow the completion to take more context into |
|
1693 | The optional arguments allow the completion to take more context into | |
1687 | account, and are part of the low-level completion API. |
|
1694 | account, and are part of the low-level completion API. | |
1688 |
|
1695 | |||
1689 | This is a wrapper around the completion mechanism, similar to what |
|
1696 | This is a wrapper around the completion mechanism, similar to what | |
1690 | readline does at the command line when the TAB key is hit. By |
|
1697 | readline does at the command line when the TAB key is hit. By | |
1691 | exposing it as a method, it can be used by other non-readline |
|
1698 | exposing it as a method, it can be used by other non-readline | |
1692 | environments (such as GUIs) for text completion. |
|
1699 | environments (such as GUIs) for text completion. | |
1693 |
|
1700 | |||
1694 | Simple usage example: |
|
1701 | Simple usage example: | |
1695 |
|
1702 | |||
1696 | In [1]: x = 'hello' |
|
1703 | In [1]: x = 'hello' | |
1697 |
|
1704 | |||
1698 | In [2]: _ip.complete('x.l') |
|
1705 | In [2]: _ip.complete('x.l') | |
1699 | Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip']) |
|
1706 | Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip']) | |
1700 | """ |
|
1707 | """ | |
1701 |
|
1708 | |||
1702 | # Inject names into __builtin__ so we can complete on the added names. |
|
1709 | # Inject names into __builtin__ so we can complete on the added names. | |
1703 | with self.builtin_trap: |
|
1710 | with self.builtin_trap: | |
1704 | return self.Completer.complete(text, line, cursor_pos) |
|
1711 | return self.Completer.complete(text, line, cursor_pos) | |
1705 |
|
1712 | |||
1706 | def set_custom_completer(self, completer, pos=0): |
|
1713 | def set_custom_completer(self, completer, pos=0): | |
1707 | """Adds a new custom completer function. |
|
1714 | """Adds a new custom completer function. | |
1708 |
|
1715 | |||
1709 | The position argument (defaults to 0) is the index in the completers |
|
1716 | The position argument (defaults to 0) is the index in the completers | |
1710 | list where you want the completer to be inserted.""" |
|
1717 | list where you want the completer to be inserted.""" | |
1711 |
|
1718 | |||
1712 | newcomp = types.MethodType(completer,self.Completer) |
|
1719 | newcomp = types.MethodType(completer,self.Completer) | |
1713 | self.Completer.matchers.insert(pos,newcomp) |
|
1720 | self.Completer.matchers.insert(pos,newcomp) | |
1714 |
|
1721 | |||
1715 | def set_readline_completer(self): |
|
1722 | def set_readline_completer(self): | |
1716 | """Reset readline's completer to be our own.""" |
|
1723 | """Reset readline's completer to be our own.""" | |
1717 | self.readline.set_completer(self.Completer.rlcomplete) |
|
1724 | self.readline.set_completer(self.Completer.rlcomplete) | |
1718 |
|
1725 | |||
1719 | def set_completer_frame(self, frame=None): |
|
1726 | def set_completer_frame(self, frame=None): | |
1720 | """Set the frame of the completer.""" |
|
1727 | """Set the frame of the completer.""" | |
1721 | if frame: |
|
1728 | if frame: | |
1722 | self.Completer.namespace = frame.f_locals |
|
1729 | self.Completer.namespace = frame.f_locals | |
1723 | self.Completer.global_namespace = frame.f_globals |
|
1730 | self.Completer.global_namespace = frame.f_globals | |
1724 | else: |
|
1731 | else: | |
1725 | self.Completer.namespace = self.user_ns |
|
1732 | self.Completer.namespace = self.user_ns | |
1726 | self.Completer.global_namespace = self.user_global_ns |
|
1733 | self.Completer.global_namespace = self.user_global_ns | |
1727 |
|
1734 | |||
1728 | #------------------------------------------------------------------------- |
|
1735 | #------------------------------------------------------------------------- | |
1729 | # Things related to magics |
|
1736 | # Things related to magics | |
1730 | #------------------------------------------------------------------------- |
|
1737 | #------------------------------------------------------------------------- | |
1731 |
|
1738 | |||
1732 | def init_magics(self): |
|
1739 | def init_magics(self): | |
1733 | # FIXME: Move the color initialization to the DisplayHook, which |
|
1740 | # FIXME: Move the color initialization to the DisplayHook, which | |
1734 | # should be split into a prompt manager and displayhook. We probably |
|
1741 | # should be split into a prompt manager and displayhook. We probably | |
1735 | # even need a centralize colors management object. |
|
1742 | # even need a centralize colors management object. | |
1736 | self.magic_colors(self.colors) |
|
1743 | self.magic_colors(self.colors) | |
1737 | # History was moved to a separate module |
|
1744 | # History was moved to a separate module | |
1738 | from . import history |
|
1745 | from . import history | |
1739 | history.init_ipython(self) |
|
1746 | history.init_ipython(self) | |
1740 |
|
1747 | |||
1741 | def magic(self,arg_s): |
|
1748 | def magic(self,arg_s): | |
1742 | """Call a magic function by name. |
|
1749 | """Call a magic function by name. | |
1743 |
|
1750 | |||
1744 | Input: a string containing the name of the magic function to call and |
|
1751 | Input: a string containing the name of the magic function to call and | |
1745 | any additional arguments to be passed to the magic. |
|
1752 | any additional arguments to be passed to the magic. | |
1746 |
|
1753 | |||
1747 | magic('name -opt foo bar') is equivalent to typing at the ipython |
|
1754 | magic('name -opt foo bar') is equivalent to typing at the ipython | |
1748 | prompt: |
|
1755 | prompt: | |
1749 |
|
1756 | |||
1750 | In[1]: %name -opt foo bar |
|
1757 | In[1]: %name -opt foo bar | |
1751 |
|
1758 | |||
1752 | To call a magic without arguments, simply use magic('name'). |
|
1759 | To call a magic without arguments, simply use magic('name'). | |
1753 |
|
1760 | |||
1754 | This provides a proper Python function to call IPython's magics in any |
|
1761 | This provides a proper Python function to call IPython's magics in any | |
1755 | valid Python code you can type at the interpreter, including loops and |
|
1762 | valid Python code you can type at the interpreter, including loops and | |
1756 | compound statements. |
|
1763 | compound statements. | |
1757 | """ |
|
1764 | """ | |
1758 | args = arg_s.split(' ',1) |
|
1765 | args = arg_s.split(' ',1) | |
1759 | magic_name = args[0] |
|
1766 | magic_name = args[0] | |
1760 | magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) |
|
1767 | magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) | |
1761 |
|
1768 | |||
1762 | try: |
|
1769 | try: | |
1763 | magic_args = args[1] |
|
1770 | magic_args = args[1] | |
1764 | except IndexError: |
|
1771 | except IndexError: | |
1765 | magic_args = '' |
|
1772 | magic_args = '' | |
1766 | fn = getattr(self,'magic_'+magic_name,None) |
|
1773 | fn = getattr(self,'magic_'+magic_name,None) | |
1767 | if fn is None: |
|
1774 | if fn is None: | |
1768 | error("Magic function `%s` not found." % magic_name) |
|
1775 | error("Magic function `%s` not found." % magic_name) | |
1769 | else: |
|
1776 | else: | |
1770 | magic_args = self.var_expand(magic_args,1) |
|
1777 | magic_args = self.var_expand(magic_args,1) | |
1771 | # Grab local namespace if we need it: |
|
1778 | # Grab local namespace if we need it: | |
1772 | if getattr(fn, "needs_local_scope", False): |
|
1779 | if getattr(fn, "needs_local_scope", False): | |
1773 | self._magic_locals = sys._getframe(1).f_locals |
|
1780 | self._magic_locals = sys._getframe(1).f_locals | |
1774 | with nested(self.builtin_trap,): |
|
1781 | with nested(self.builtin_trap,): | |
1775 | result = fn(magic_args) |
|
1782 | result = fn(magic_args) | |
1776 | # Ensure we're not keeping object references around: |
|
1783 | # Ensure we're not keeping object references around: | |
1777 | self._magic_locals = {} |
|
1784 | self._magic_locals = {} | |
1778 | return result |
|
1785 | return result | |
1779 |
|
1786 | |||
1780 | def define_magic(self, magicname, func): |
|
1787 | def define_magic(self, magicname, func): | |
1781 | """Expose own function as magic function for ipython |
|
1788 | """Expose own function as magic function for ipython | |
1782 |
|
1789 | |||
1783 | def foo_impl(self,parameter_s=''): |
|
1790 | def foo_impl(self,parameter_s=''): | |
1784 | 'My very own magic!. (Use docstrings, IPython reads them).' |
|
1791 | 'My very own magic!. (Use docstrings, IPython reads them).' | |
1785 | print 'Magic function. Passed parameter is between < >:' |
|
1792 | print 'Magic function. Passed parameter is between < >:' | |
1786 | print '<%s>' % parameter_s |
|
1793 | print '<%s>' % parameter_s | |
1787 | print 'The self object is:',self |
|
1794 | print 'The self object is:',self | |
1788 |
|
1795 | |||
1789 | self.define_magic('foo',foo_impl) |
|
1796 | self.define_magic('foo',foo_impl) | |
1790 | """ |
|
1797 | """ | |
1791 |
|
1798 | |||
1792 | import new |
|
1799 | import new | |
1793 | im = types.MethodType(func,self) |
|
1800 | im = types.MethodType(func,self) | |
1794 | old = getattr(self, "magic_" + magicname, None) |
|
1801 | old = getattr(self, "magic_" + magicname, None) | |
1795 | setattr(self, "magic_" + magicname, im) |
|
1802 | setattr(self, "magic_" + magicname, im) | |
1796 | return old |
|
1803 | return old | |
1797 |
|
1804 | |||
1798 | #------------------------------------------------------------------------- |
|
1805 | #------------------------------------------------------------------------- | |
1799 | # Things related to macros |
|
1806 | # Things related to macros | |
1800 | #------------------------------------------------------------------------- |
|
1807 | #------------------------------------------------------------------------- | |
1801 |
|
1808 | |||
1802 | def define_macro(self, name, themacro): |
|
1809 | def define_macro(self, name, themacro): | |
1803 | """Define a new macro |
|
1810 | """Define a new macro | |
1804 |
|
1811 | |||
1805 | Parameters |
|
1812 | Parameters | |
1806 | ---------- |
|
1813 | ---------- | |
1807 | name : str |
|
1814 | name : str | |
1808 | The name of the macro. |
|
1815 | The name of the macro. | |
1809 | themacro : str or Macro |
|
1816 | themacro : str or Macro | |
1810 | The action to do upon invoking the macro. If a string, a new |
|
1817 | The action to do upon invoking the macro. If a string, a new | |
1811 | Macro object is created by passing the string to it. |
|
1818 | Macro object is created by passing the string to it. | |
1812 | """ |
|
1819 | """ | |
1813 |
|
1820 | |||
1814 | from IPython.core import macro |
|
1821 | from IPython.core import macro | |
1815 |
|
1822 | |||
1816 | if isinstance(themacro, basestring): |
|
1823 | if isinstance(themacro, basestring): | |
1817 | themacro = macro.Macro(themacro) |
|
1824 | themacro = macro.Macro(themacro) | |
1818 | if not isinstance(themacro, macro.Macro): |
|
1825 | if not isinstance(themacro, macro.Macro): | |
1819 | raise ValueError('A macro must be a string or a Macro instance.') |
|
1826 | raise ValueError('A macro must be a string or a Macro instance.') | |
1820 | self.user_ns[name] = themacro |
|
1827 | self.user_ns[name] = themacro | |
1821 |
|
1828 | |||
1822 | #------------------------------------------------------------------------- |
|
1829 | #------------------------------------------------------------------------- | |
1823 | # Things related to the running of system commands |
|
1830 | # Things related to the running of system commands | |
1824 | #------------------------------------------------------------------------- |
|
1831 | #------------------------------------------------------------------------- | |
1825 |
|
1832 | |||
1826 | def system(self, cmd): |
|
1833 | def system(self, cmd): | |
1827 | """Call the given cmd in a subprocess. |
|
1834 | """Call the given cmd in a subprocess. | |
1828 |
|
1835 | |||
1829 | Parameters |
|
1836 | Parameters | |
1830 | ---------- |
|
1837 | ---------- | |
1831 | cmd : str |
|
1838 | cmd : str | |
1832 | Command to execute (can not end in '&', as bacground processes are |
|
1839 | Command to execute (can not end in '&', as bacground processes are | |
1833 | not supported. |
|
1840 | not supported. | |
1834 | """ |
|
1841 | """ | |
1835 | # We do not support backgrounding processes because we either use |
|
1842 | # We do not support backgrounding processes because we either use | |
1836 | # pexpect or pipes to read from. Users can always just call |
|
1843 | # pexpect or pipes to read from. Users can always just call | |
1837 | # os.system() if they really want a background process. |
|
1844 | # os.system() if they really want a background process. | |
1838 | if cmd.endswith('&'): |
|
1845 | if cmd.endswith('&'): | |
1839 | raise OSError("Background processes not supported.") |
|
1846 | raise OSError("Background processes not supported.") | |
1840 |
|
1847 | |||
1841 | return system(self.var_expand(cmd, depth=2)) |
|
1848 | return system(self.var_expand(cmd, depth=2)) | |
1842 |
|
1849 | |||
1843 | def getoutput(self, cmd, split=True): |
|
1850 | def getoutput(self, cmd, split=True): | |
1844 | """Get output (possibly including stderr) from a subprocess. |
|
1851 | """Get output (possibly including stderr) from a subprocess. | |
1845 |
|
1852 | |||
1846 | Parameters |
|
1853 | Parameters | |
1847 | ---------- |
|
1854 | ---------- | |
1848 | cmd : str |
|
1855 | cmd : str | |
1849 | Command to execute (can not end in '&', as background processes are |
|
1856 | Command to execute (can not end in '&', as background processes are | |
1850 | not supported. |
|
1857 | not supported. | |
1851 | split : bool, optional |
|
1858 | split : bool, optional | |
1852 |
|
1859 | |||
1853 | If True, split the output into an IPython SList. Otherwise, an |
|
1860 | If True, split the output into an IPython SList. Otherwise, an | |
1854 | IPython LSString is returned. These are objects similar to normal |
|
1861 | IPython LSString is returned. These are objects similar to normal | |
1855 | lists and strings, with a few convenience attributes for easier |
|
1862 | lists and strings, with a few convenience attributes for easier | |
1856 | manipulation of line-based output. You can use '?' on them for |
|
1863 | manipulation of line-based output. You can use '?' on them for | |
1857 | details. |
|
1864 | details. | |
1858 | """ |
|
1865 | """ | |
1859 | if cmd.endswith('&'): |
|
1866 | if cmd.endswith('&'): | |
1860 | raise OSError("Background processes not supported.") |
|
1867 | raise OSError("Background processes not supported.") | |
1861 | out = getoutput(self.var_expand(cmd, depth=2)) |
|
1868 | out = getoutput(self.var_expand(cmd, depth=2)) | |
1862 | if split: |
|
1869 | if split: | |
1863 | out = SList(out.splitlines()) |
|
1870 | out = SList(out.splitlines()) | |
1864 | else: |
|
1871 | else: | |
1865 | out = LSString(out) |
|
1872 | out = LSString(out) | |
1866 | return out |
|
1873 | return out | |
1867 |
|
1874 | |||
1868 | #------------------------------------------------------------------------- |
|
1875 | #------------------------------------------------------------------------- | |
1869 | # Things related to aliases |
|
1876 | # Things related to aliases | |
1870 | #------------------------------------------------------------------------- |
|
1877 | #------------------------------------------------------------------------- | |
1871 |
|
1878 | |||
1872 | def init_alias(self): |
|
1879 | def init_alias(self): | |
1873 | self.alias_manager = AliasManager(shell=self, config=self.config) |
|
1880 | self.alias_manager = AliasManager(shell=self, config=self.config) | |
1874 | self.ns_table['alias'] = self.alias_manager.alias_table, |
|
1881 | self.ns_table['alias'] = self.alias_manager.alias_table, | |
1875 |
|
1882 | |||
1876 | #------------------------------------------------------------------------- |
|
1883 | #------------------------------------------------------------------------- | |
1877 | # Things related to extensions and plugins |
|
1884 | # Things related to extensions and plugins | |
1878 | #------------------------------------------------------------------------- |
|
1885 | #------------------------------------------------------------------------- | |
1879 |
|
1886 | |||
1880 | def init_extension_manager(self): |
|
1887 | def init_extension_manager(self): | |
1881 | self.extension_manager = ExtensionManager(shell=self, config=self.config) |
|
1888 | self.extension_manager = ExtensionManager(shell=self, config=self.config) | |
1882 |
|
1889 | |||
1883 | def init_plugin_manager(self): |
|
1890 | def init_plugin_manager(self): | |
1884 | self.plugin_manager = PluginManager(config=self.config) |
|
1891 | self.plugin_manager = PluginManager(config=self.config) | |
1885 |
|
1892 | |||
1886 | #------------------------------------------------------------------------- |
|
1893 | #------------------------------------------------------------------------- | |
1887 | # Things related to payloads |
|
1894 | # Things related to payloads | |
1888 | #------------------------------------------------------------------------- |
|
1895 | #------------------------------------------------------------------------- | |
1889 |
|
1896 | |||
1890 | def init_payload(self): |
|
1897 | def init_payload(self): | |
1891 | self.payload_manager = PayloadManager(config=self.config) |
|
1898 | self.payload_manager = PayloadManager(config=self.config) | |
1892 |
|
1899 | |||
1893 | #------------------------------------------------------------------------- |
|
1900 | #------------------------------------------------------------------------- | |
1894 | # Things related to the prefilter |
|
1901 | # Things related to the prefilter | |
1895 | #------------------------------------------------------------------------- |
|
1902 | #------------------------------------------------------------------------- | |
1896 |
|
1903 | |||
1897 | def init_prefilter(self): |
|
1904 | def init_prefilter(self): | |
1898 | self.prefilter_manager = PrefilterManager(shell=self, config=self.config) |
|
1905 | self.prefilter_manager = PrefilterManager(shell=self, config=self.config) | |
1899 | # Ultimately this will be refactored in the new interpreter code, but |
|
1906 | # Ultimately this will be refactored in the new interpreter code, but | |
1900 | # for now, we should expose the main prefilter method (there's legacy |
|
1907 | # for now, we should expose the main prefilter method (there's legacy | |
1901 | # code out there that may rely on this). |
|
1908 | # code out there that may rely on this). | |
1902 | self.prefilter = self.prefilter_manager.prefilter_lines |
|
1909 | self.prefilter = self.prefilter_manager.prefilter_lines | |
1903 |
|
1910 | |||
1904 | def auto_rewrite_input(self, cmd): |
|
1911 | def auto_rewrite_input(self, cmd): | |
1905 | """Print to the screen the rewritten form of the user's command. |
|
1912 | """Print to the screen the rewritten form of the user's command. | |
1906 |
|
1913 | |||
1907 | This shows visual feedback by rewriting input lines that cause |
|
1914 | This shows visual feedback by rewriting input lines that cause | |
1908 | automatic calling to kick in, like:: |
|
1915 | automatic calling to kick in, like:: | |
1909 |
|
1916 | |||
1910 | /f x |
|
1917 | /f x | |
1911 |
|
1918 | |||
1912 | into:: |
|
1919 | into:: | |
1913 |
|
1920 | |||
1914 | ------> f(x) |
|
1921 | ------> f(x) | |
1915 |
|
1922 | |||
1916 | after the user's input prompt. This helps the user understand that the |
|
1923 | after the user's input prompt. This helps the user understand that the | |
1917 | input line was transformed automatically by IPython. |
|
1924 | input line was transformed automatically by IPython. | |
1918 | """ |
|
1925 | """ | |
1919 | rw = self.displayhook.prompt1.auto_rewrite() + cmd |
|
1926 | rw = self.displayhook.prompt1.auto_rewrite() + cmd | |
1920 |
|
1927 | |||
1921 | try: |
|
1928 | try: | |
1922 | # plain ascii works better w/ pyreadline, on some machines, so |
|
1929 | # plain ascii works better w/ pyreadline, on some machines, so | |
1923 | # we use it and only print uncolored rewrite if we have unicode |
|
1930 | # we use it and only print uncolored rewrite if we have unicode | |
1924 | rw = str(rw) |
|
1931 | rw = str(rw) | |
1925 | print >> IPython.utils.io.Term.cout, rw |
|
1932 | print >> IPython.utils.io.Term.cout, rw | |
1926 | except UnicodeEncodeError: |
|
1933 | except UnicodeEncodeError: | |
1927 | print "------> " + cmd |
|
1934 | print "------> " + cmd | |
1928 |
|
1935 | |||
1929 | #------------------------------------------------------------------------- |
|
1936 | #------------------------------------------------------------------------- | |
1930 | # Things related to extracting values/expressions from kernel and user_ns |
|
1937 | # Things related to extracting values/expressions from kernel and user_ns | |
1931 | #------------------------------------------------------------------------- |
|
1938 | #------------------------------------------------------------------------- | |
1932 |
|
1939 | |||
1933 | def _simple_error(self): |
|
1940 | def _simple_error(self): | |
1934 | etype, value = sys.exc_info()[:2] |
|
1941 | etype, value = sys.exc_info()[:2] | |
1935 | return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value) |
|
1942 | return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value) | |
1936 |
|
1943 | |||
1937 | def user_variables(self, names): |
|
1944 | def user_variables(self, names): | |
1938 | """Get a list of variable names from the user's namespace. |
|
1945 | """Get a list of variable names from the user's namespace. | |
1939 |
|
1946 | |||
1940 | Parameters |
|
1947 | Parameters | |
1941 | ---------- |
|
1948 | ---------- | |
1942 | names : list of strings |
|
1949 | names : list of strings | |
1943 | A list of names of variables to be read from the user namespace. |
|
1950 | A list of names of variables to be read from the user namespace. | |
1944 |
|
1951 | |||
1945 | Returns |
|
1952 | Returns | |
1946 | ------- |
|
1953 | ------- | |
1947 | A dict, keyed by the input names and with the repr() of each value. |
|
1954 | A dict, keyed by the input names and with the repr() of each value. | |
1948 | """ |
|
1955 | """ | |
1949 | out = {} |
|
1956 | out = {} | |
1950 | user_ns = self.user_ns |
|
1957 | user_ns = self.user_ns | |
1951 | for varname in names: |
|
1958 | for varname in names: | |
1952 | try: |
|
1959 | try: | |
1953 | value = repr(user_ns[varname]) |
|
1960 | value = repr(user_ns[varname]) | |
1954 | except: |
|
1961 | except: | |
1955 | value = self._simple_error() |
|
1962 | value = self._simple_error() | |
1956 | out[varname] = value |
|
1963 | out[varname] = value | |
1957 | return out |
|
1964 | return out | |
1958 |
|
1965 | |||
1959 | def user_expressions(self, expressions): |
|
1966 | def user_expressions(self, expressions): | |
1960 | """Evaluate a dict of expressions in the user's namespace. |
|
1967 | """Evaluate a dict of expressions in the user's namespace. | |
1961 |
|
1968 | |||
1962 | Parameters |
|
1969 | Parameters | |
1963 | ---------- |
|
1970 | ---------- | |
1964 | expressions : dict |
|
1971 | expressions : dict | |
1965 | A dict with string keys and string values. The expression values |
|
1972 | A dict with string keys and string values. The expression values | |
1966 | should be valid Python expressions, each of which will be evaluated |
|
1973 | should be valid Python expressions, each of which will be evaluated | |
1967 | in the user namespace. |
|
1974 | in the user namespace. | |
1968 |
|
1975 | |||
1969 | Returns |
|
1976 | Returns | |
1970 | ------- |
|
1977 | ------- | |
1971 | A dict, keyed like the input expressions dict, with the repr() of each |
|
1978 | A dict, keyed like the input expressions dict, with the repr() of each | |
1972 | value. |
|
1979 | value. | |
1973 | """ |
|
1980 | """ | |
1974 | out = {} |
|
1981 | out = {} | |
1975 | user_ns = self.user_ns |
|
1982 | user_ns = self.user_ns | |
1976 | global_ns = self.user_global_ns |
|
1983 | global_ns = self.user_global_ns | |
1977 | for key, expr in expressions.iteritems(): |
|
1984 | for key, expr in expressions.iteritems(): | |
1978 | try: |
|
1985 | try: | |
1979 | value = repr(eval(expr, global_ns, user_ns)) |
|
1986 | value = repr(eval(expr, global_ns, user_ns)) | |
1980 | except: |
|
1987 | except: | |
1981 | value = self._simple_error() |
|
1988 | value = self._simple_error() | |
1982 | out[key] = value |
|
1989 | out[key] = value | |
1983 | return out |
|
1990 | return out | |
1984 |
|
1991 | |||
1985 | #------------------------------------------------------------------------- |
|
1992 | #------------------------------------------------------------------------- | |
1986 | # Things related to the running of code |
|
1993 | # Things related to the running of code | |
1987 | #------------------------------------------------------------------------- |
|
1994 | #------------------------------------------------------------------------- | |
1988 |
|
1995 | |||
1989 | def ex(self, cmd): |
|
1996 | def ex(self, cmd): | |
1990 | """Execute a normal python statement in user namespace.""" |
|
1997 | """Execute a normal python statement in user namespace.""" | |
1991 | with nested(self.builtin_trap,): |
|
1998 | with nested(self.builtin_trap,): | |
1992 | exec cmd in self.user_global_ns, self.user_ns |
|
1999 | exec cmd in self.user_global_ns, self.user_ns | |
1993 |
|
2000 | |||
1994 | def ev(self, expr): |
|
2001 | def ev(self, expr): | |
1995 | """Evaluate python expression expr in user namespace. |
|
2002 | """Evaluate python expression expr in user namespace. | |
1996 |
|
2003 | |||
1997 | Returns the result of evaluation |
|
2004 | Returns the result of evaluation | |
1998 | """ |
|
2005 | """ | |
1999 | with nested(self.builtin_trap,): |
|
2006 | with nested(self.builtin_trap,): | |
2000 | return eval(expr, self.user_global_ns, self.user_ns) |
|
2007 | return eval(expr, self.user_global_ns, self.user_ns) | |
2001 |
|
2008 | |||
2002 | def safe_execfile(self, fname, *where, **kw): |
|
2009 | def safe_execfile(self, fname, *where, **kw): | |
2003 | """A safe version of the builtin execfile(). |
|
2010 | """A safe version of the builtin execfile(). | |
2004 |
|
2011 | |||
2005 | This version will never throw an exception, but instead print |
|
2012 | This version will never throw an exception, but instead print | |
2006 | helpful error messages to the screen. This only works on pure |
|
2013 | helpful error messages to the screen. This only works on pure | |
2007 | Python files with the .py extension. |
|
2014 | Python files with the .py extension. | |
2008 |
|
2015 | |||
2009 | Parameters |
|
2016 | Parameters | |
2010 | ---------- |
|
2017 | ---------- | |
2011 | fname : string |
|
2018 | fname : string | |
2012 | The name of the file to be executed. |
|
2019 | The name of the file to be executed. | |
2013 | where : tuple |
|
2020 | where : tuple | |
2014 | One or two namespaces, passed to execfile() as (globals,locals). |
|
2021 | One or two namespaces, passed to execfile() as (globals,locals). | |
2015 | If only one is given, it is passed as both. |
|
2022 | If only one is given, it is passed as both. | |
2016 | exit_ignore : bool (False) |
|
2023 | exit_ignore : bool (False) | |
2017 | If True, then silence SystemExit for non-zero status (it is always |
|
2024 | If True, then silence SystemExit for non-zero status (it is always | |
2018 | silenced for zero status, as it is so common). |
|
2025 | silenced for zero status, as it is so common). | |
2019 | """ |
|
2026 | """ | |
2020 | kw.setdefault('exit_ignore', False) |
|
2027 | kw.setdefault('exit_ignore', False) | |
2021 |
|
2028 | |||
2022 | fname = os.path.abspath(os.path.expanduser(fname)) |
|
2029 | fname = os.path.abspath(os.path.expanduser(fname)) | |
2023 | # Make sure we have a .py file |
|
2030 | # Make sure we have a .py file | |
2024 | if not fname.endswith('.py'): |
|
2031 | if not fname.endswith('.py'): | |
2025 | warn('File must end with .py to be run using execfile: <%s>' % fname) |
|
2032 | warn('File must end with .py to be run using execfile: <%s>' % fname) | |
2026 |
|
2033 | |||
2027 | # Make sure we can open the file |
|
2034 | # Make sure we can open the file | |
2028 | try: |
|
2035 | try: | |
2029 | with open(fname) as thefile: |
|
2036 | with open(fname) as thefile: | |
2030 | pass |
|
2037 | pass | |
2031 | except: |
|
2038 | except: | |
2032 | warn('Could not open file <%s> for safe execution.' % fname) |
|
2039 | warn('Could not open file <%s> for safe execution.' % fname) | |
2033 | return |
|
2040 | return | |
2034 |
|
2041 | |||
2035 | # Find things also in current directory. This is needed to mimic the |
|
2042 | # Find things also in current directory. This is needed to mimic the | |
2036 | # behavior of running a script from the system command line, where |
|
2043 | # behavior of running a script from the system command line, where | |
2037 | # Python inserts the script's directory into sys.path |
|
2044 | # Python inserts the script's directory into sys.path | |
2038 | dname = os.path.dirname(fname) |
|
2045 | dname = os.path.dirname(fname) | |
2039 |
|
2046 | |||
2040 | if isinstance(fname, unicode): |
|
2047 | if isinstance(fname, unicode): | |
2041 | # execfile uses default encoding instead of filesystem encoding |
|
2048 | # execfile uses default encoding instead of filesystem encoding | |
2042 | # so unicode filenames will fail |
|
2049 | # so unicode filenames will fail | |
2043 | fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding()) |
|
2050 | fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding()) | |
2044 |
|
2051 | |||
2045 | with prepended_to_syspath(dname): |
|
2052 | with prepended_to_syspath(dname): | |
2046 | try: |
|
2053 | try: | |
2047 | execfile(fname,*where) |
|
2054 | execfile(fname,*where) | |
2048 | except SystemExit, status: |
|
2055 | except SystemExit, status: | |
2049 | # If the call was made with 0 or None exit status (sys.exit(0) |
|
2056 | # If the call was made with 0 or None exit status (sys.exit(0) | |
2050 | # or sys.exit() ), don't bother showing a traceback, as both of |
|
2057 | # or sys.exit() ), don't bother showing a traceback, as both of | |
2051 | # these are considered normal by the OS: |
|
2058 | # these are considered normal by the OS: | |
2052 | # > python -c'import sys;sys.exit(0)'; echo $? |
|
2059 | # > python -c'import sys;sys.exit(0)'; echo $? | |
2053 | # 0 |
|
2060 | # 0 | |
2054 | # > python -c'import sys;sys.exit()'; echo $? |
|
2061 | # > python -c'import sys;sys.exit()'; echo $? | |
2055 | # 0 |
|
2062 | # 0 | |
2056 | # For other exit status, we show the exception unless |
|
2063 | # For other exit status, we show the exception unless | |
2057 | # explicitly silenced, but only in short form. |
|
2064 | # explicitly silenced, but only in short form. | |
2058 | if status.code not in (0, None) and not kw['exit_ignore']: |
|
2065 | if status.code not in (0, None) and not kw['exit_ignore']: | |
2059 | self.showtraceback(exception_only=True) |
|
2066 | self.showtraceback(exception_only=True) | |
2060 | except: |
|
2067 | except: | |
2061 | self.showtraceback() |
|
2068 | self.showtraceback() | |
2062 |
|
2069 | |||
2063 | def safe_execfile_ipy(self, fname): |
|
2070 | def safe_execfile_ipy(self, fname): | |
2064 | """Like safe_execfile, but for .ipy files with IPython syntax. |
|
2071 | """Like safe_execfile, but for .ipy files with IPython syntax. | |
2065 |
|
2072 | |||
2066 | Parameters |
|
2073 | Parameters | |
2067 | ---------- |
|
2074 | ---------- | |
2068 | fname : str |
|
2075 | fname : str | |
2069 | The name of the file to execute. The filename must have a |
|
2076 | The name of the file to execute. The filename must have a | |
2070 | .ipy extension. |
|
2077 | .ipy extension. | |
2071 | """ |
|
2078 | """ | |
2072 | fname = os.path.abspath(os.path.expanduser(fname)) |
|
2079 | fname = os.path.abspath(os.path.expanduser(fname)) | |
2073 |
|
2080 | |||
2074 | # Make sure we have a .py file |
|
2081 | # Make sure we have a .py file | |
2075 | if not fname.endswith('.ipy'): |
|
2082 | if not fname.endswith('.ipy'): | |
2076 | warn('File must end with .py to be run using execfile: <%s>' % fname) |
|
2083 | warn('File must end with .py to be run using execfile: <%s>' % fname) | |
2077 |
|
2084 | |||
2078 | # Make sure we can open the file |
|
2085 | # Make sure we can open the file | |
2079 | try: |
|
2086 | try: | |
2080 | with open(fname) as thefile: |
|
2087 | with open(fname) as thefile: | |
2081 | pass |
|
2088 | pass | |
2082 | except: |
|
2089 | except: | |
2083 | warn('Could not open file <%s> for safe execution.' % fname) |
|
2090 | warn('Could not open file <%s> for safe execution.' % fname) | |
2084 | return |
|
2091 | return | |
2085 |
|
2092 | |||
2086 | # Find things also in current directory. This is needed to mimic the |
|
2093 | # Find things also in current directory. This is needed to mimic the | |
2087 | # behavior of running a script from the system command line, where |
|
2094 | # behavior of running a script from the system command line, where | |
2088 | # Python inserts the script's directory into sys.path |
|
2095 | # Python inserts the script's directory into sys.path | |
2089 | dname = os.path.dirname(fname) |
|
2096 | dname = os.path.dirname(fname) | |
2090 |
|
2097 | |||
2091 | with prepended_to_syspath(dname): |
|
2098 | with prepended_to_syspath(dname): | |
2092 | try: |
|
2099 | try: | |
2093 | with open(fname) as thefile: |
|
2100 | with open(fname) as thefile: | |
2094 | # self.run_cell currently captures all exceptions |
|
2101 | # self.run_cell currently captures all exceptions | |
2095 | # raised in user code. It would be nice if there were |
|
2102 | # raised in user code. It would be nice if there were | |
2096 | # versions of runlines, execfile that did raise, so |
|
2103 | # versions of runlines, execfile that did raise, so | |
2097 | # we could catch the errors. |
|
2104 | # we could catch the errors. | |
2098 | self.run_cell(thefile.read(), store_history=False) |
|
2105 | self.run_cell(thefile.read(), store_history=False) | |
2099 | except: |
|
2106 | except: | |
2100 | self.showtraceback() |
|
2107 | self.showtraceback() | |
2101 | warn('Unknown failure executing file: <%s>' % fname) |
|
2108 | warn('Unknown failure executing file: <%s>' % fname) | |
2102 |
|
2109 | |||
2103 | def run_cell(self, cell, store_history=True): |
|
2110 | def run_cell(self, cell, store_history=True): | |
2104 | """Run a complete IPython cell. |
|
2111 | """Run a complete IPython cell. | |
2105 |
|
2112 | |||
2106 | Parameters |
|
2113 | Parameters | |
2107 | ---------- |
|
2114 | ---------- | |
2108 | cell : str |
|
2115 | cell : str | |
2109 | The code (including IPython code such as %magic functions) to run. |
|
2116 | The code (including IPython code such as %magic functions) to run. | |
2110 | store_history : bool |
|
2117 | store_history : bool | |
2111 | If True, the raw and translated cell will be stored in IPython's |
|
2118 | If True, the raw and translated cell will be stored in IPython's | |
2112 | history. For user code calling back into IPython's machinery, this |
|
2119 | history. For user code calling back into IPython's machinery, this | |
2113 | should be set to False. |
|
2120 | should be set to False. | |
2114 | """ |
|
2121 | """ | |
2115 | raw_cell = cell |
|
2122 | raw_cell = cell | |
2116 | with self.builtin_trap: |
|
2123 | with self.builtin_trap: | |
2117 | cell = self.prefilter_manager.prefilter_lines(cell) |
|
2124 | cell = self.prefilter_manager.prefilter_lines(cell) | |
2118 |
|
2125 | |||
2119 | # Store raw and processed history |
|
2126 | # Store raw and processed history | |
2120 | if store_history: |
|
2127 | if store_history: | |
2121 | self.history_manager.store_inputs(self.execution_count, |
|
2128 | self.history_manager.store_inputs(self.execution_count, | |
2122 | cell, raw_cell) |
|
2129 | cell, raw_cell) | |
2123 |
|
2130 | |||
2124 | self.logger.log(cell, raw_cell) |
|
2131 | self.logger.log(cell, raw_cell) | |
2125 |
|
2132 | |||
2126 | cell_name = self.compile.cache(cell, self.execution_count) |
|
2133 | cell_name = self.compile.cache(cell, self.execution_count) | |
2127 |
|
2134 | |||
2128 | with self.display_trap: |
|
2135 | with self.display_trap: | |
2129 | try: |
|
2136 | try: | |
2130 | code_ast = ast.parse(cell, filename=cell_name) |
|
2137 | code_ast = ast.parse(cell, filename=cell_name) | |
2131 | except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError): |
|
2138 | except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError): | |
2132 | # Case 1 |
|
2139 | # Case 1 | |
2133 | self.showsyntaxerror() |
|
2140 | self.showsyntaxerror() | |
2134 | self.execution_count += 1 |
|
2141 | self.execution_count += 1 | |
2135 | return None |
|
2142 | return None | |
2136 |
|
2143 | |||
2137 | interactivity = 'last' # Last node to be run interactive |
|
2144 | interactivity = 'last' # Last node to be run interactive | |
2138 | if len(cell.splitlines()) == 1: |
|
2145 | if len(cell.splitlines()) == 1: | |
2139 | interactivity = 'all' # Single line; run fully interactive |
|
2146 | interactivity = 'all' # Single line; run fully interactive | |
2140 |
|
2147 | |||
2141 | self.run_ast_nodes(code_ast.body, cell_name, interactivity) |
|
2148 | self.run_ast_nodes(code_ast.body, cell_name, interactivity) | |
2142 |
|
2149 | |||
2143 | if store_history: |
|
2150 | if store_history: | |
2144 | # Write output to the database. Does nothing unless |
|
2151 | # Write output to the database. Does nothing unless | |
2145 | # history output logging is enabled. |
|
2152 | # history output logging is enabled. | |
2146 | self.history_manager.store_output(self.execution_count) |
|
2153 | self.history_manager.store_output(self.execution_count) | |
2147 | # Each cell is a *single* input, regardless of how many lines it has |
|
2154 | # Each cell is a *single* input, regardless of how many lines it has | |
2148 | self.execution_count += 1 |
|
2155 | self.execution_count += 1 | |
2149 |
|
2156 | |||
2150 | def run_ast_nodes(self, nodelist, cell_name, interactivity='last'): |
|
2157 | def run_ast_nodes(self, nodelist, cell_name, interactivity='last'): | |
2151 | """Run a sequence of AST nodes. The execution mode depends on the |
|
2158 | """Run a sequence of AST nodes. The execution mode depends on the | |
2152 | interactivity parameter. |
|
2159 | interactivity parameter. | |
2153 |
|
2160 | |||
2154 | Parameters |
|
2161 | Parameters | |
2155 | ---------- |
|
2162 | ---------- | |
2156 | nodelist : list |
|
2163 | nodelist : list | |
2157 | A sequence of AST nodes to run. |
|
2164 | A sequence of AST nodes to run. | |
2158 | cell_name : str |
|
2165 | cell_name : str | |
2159 | Will be passed to the compiler as the filename of the cell. Typically |
|
2166 | Will be passed to the compiler as the filename of the cell. Typically | |
2160 | the value returned by ip.compile.cache(cell). |
|
2167 | the value returned by ip.compile.cache(cell). | |
2161 | interactivity : str |
|
2168 | interactivity : str | |
2162 | 'all', 'last' or 'none', specifying which nodes should be run |
|
2169 | 'all', 'last' or 'none', specifying which nodes should be run | |
2163 | interactively (displaying output from expressions). Other values for |
|
2170 | interactively (displaying output from expressions). Other values for | |
2164 | this parameter will raise a ValueError. |
|
2171 | this parameter will raise a ValueError. | |
2165 | """ |
|
2172 | """ | |
2166 | if not nodelist: |
|
2173 | if not nodelist: | |
2167 | return |
|
2174 | return | |
2168 |
|
2175 | |||
2169 | if interactivity == 'none': |
|
2176 | if interactivity == 'none': | |
2170 | to_run_exec, to_run_interactive = nodelist, [] |
|
2177 | to_run_exec, to_run_interactive = nodelist, [] | |
2171 | elif interactivity == 'last': |
|
2178 | elif interactivity == 'last': | |
2172 | to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:] |
|
2179 | to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:] | |
2173 | elif interactivity == 'all': |
|
2180 | elif interactivity == 'all': | |
2174 | to_run_exec, to_run_interactive = [], nodelist |
|
2181 | to_run_exec, to_run_interactive = [], nodelist | |
2175 | else: |
|
2182 | else: | |
2176 | raise ValueError("Interactivity was %r" % interactivity) |
|
2183 | raise ValueError("Interactivity was %r" % interactivity) | |
2177 |
|
2184 | |||
2178 | exec_count = self.execution_count |
|
2185 | exec_count = self.execution_count | |
2179 | if to_run_exec: |
|
2186 | if to_run_exec: | |
2180 | mod = ast.Module(to_run_exec) |
|
2187 | mod = ast.Module(to_run_exec) | |
2181 | self.code_to_run = code = self.compile(mod, cell_name, "exec") |
|
2188 | self.code_to_run = code = self.compile(mod, cell_name, "exec") | |
2182 | if self.run_code(code) == 1: |
|
2189 | if self.run_code(code) == 1: | |
2183 | return |
|
2190 | return | |
2184 |
|
2191 | |||
2185 | if to_run_interactive: |
|
2192 | if to_run_interactive: | |
2186 | mod = ast.Interactive(to_run_interactive) |
|
2193 | mod = ast.Interactive(to_run_interactive) | |
2187 | self.code_to_run = code = self.compile(mod, cell_name, "single") |
|
2194 | self.code_to_run = code = self.compile(mod, cell_name, "single") | |
2188 | return self.run_code(code) |
|
2195 | return self.run_code(code) | |
2189 |
|
2196 | |||
2190 |
|
2197 | |||
2191 | # PENDING REMOVAL: this method is slated for deletion, once our new |
|
2198 | # PENDING REMOVAL: this method is slated for deletion, once our new | |
2192 | # input logic has been 100% moved to frontends and is stable. |
|
2199 | # input logic has been 100% moved to frontends and is stable. | |
2193 | def runlines(self, lines, clean=False): |
|
2200 | def runlines(self, lines, clean=False): | |
2194 | """Run a string of one or more lines of source. |
|
2201 | """Run a string of one or more lines of source. | |
2195 |
|
2202 | |||
2196 | This method is capable of running a string containing multiple source |
|
2203 | This method is capable of running a string containing multiple source | |
2197 | lines, as if they had been entered at the IPython prompt. Since it |
|
2204 | lines, as if they had been entered at the IPython prompt. Since it | |
2198 | exposes IPython's processing machinery, the given strings can contain |
|
2205 | exposes IPython's processing machinery, the given strings can contain | |
2199 | magic calls (%magic), special shell access (!cmd), etc. |
|
2206 | magic calls (%magic), special shell access (!cmd), etc. | |
2200 | """ |
|
2207 | """ | |
2201 |
|
2208 | |||
2202 | if not isinstance(lines, (list, tuple)): |
|
2209 | if not isinstance(lines, (list, tuple)): | |
2203 | lines = lines.splitlines() |
|
2210 | lines = lines.splitlines() | |
2204 |
|
2211 | |||
2205 | if clean: |
|
2212 | if clean: | |
2206 | lines = self._cleanup_ipy_script(lines) |
|
2213 | lines = self._cleanup_ipy_script(lines) | |
2207 |
|
2214 | |||
2208 | # We must start with a clean buffer, in case this is run from an |
|
2215 | # We must start with a clean buffer, in case this is run from an | |
2209 | # interactive IPython session (via a magic, for example). |
|
2216 | # interactive IPython session (via a magic, for example). | |
2210 | self.reset_buffer() |
|
2217 | self.reset_buffer() | |
2211 |
|
2218 | |||
2212 | # Since we will prefilter all lines, store the user's raw input too |
|
2219 | # Since we will prefilter all lines, store the user's raw input too | |
2213 | # before we apply any transformations |
|
2220 | # before we apply any transformations | |
2214 | self.buffer_raw[:] = [ l+'\n' for l in lines] |
|
2221 | self.buffer_raw[:] = [ l+'\n' for l in lines] | |
2215 |
|
2222 | |||
2216 | more = False |
|
2223 | more = False | |
2217 | prefilter_lines = self.prefilter_manager.prefilter_lines |
|
2224 | prefilter_lines = self.prefilter_manager.prefilter_lines | |
2218 | with nested(self.builtin_trap, self.display_trap): |
|
2225 | with nested(self.builtin_trap, self.display_trap): | |
2219 | for line in lines: |
|
2226 | for line in lines: | |
2220 | # skip blank lines so we don't mess up the prompt counter, but |
|
2227 | # skip blank lines so we don't mess up the prompt counter, but | |
2221 | # do NOT skip even a blank line if we are in a code block (more |
|
2228 | # do NOT skip even a blank line if we are in a code block (more | |
2222 | # is true) |
|
2229 | # is true) | |
2223 |
|
2230 | |||
2224 | if line or more: |
|
2231 | if line or more: | |
2225 | more = self.push_line(prefilter_lines(line, more)) |
|
2232 | more = self.push_line(prefilter_lines(line, more)) | |
2226 | # IPython's run_source returns None if there was an error |
|
2233 | # IPython's run_source returns None if there was an error | |
2227 | # compiling the code. This allows us to stop processing |
|
2234 | # compiling the code. This allows us to stop processing | |
2228 | # right away, so the user gets the error message at the |
|
2235 | # right away, so the user gets the error message at the | |
2229 | # right place. |
|
2236 | # right place. | |
2230 | if more is None: |
|
2237 | if more is None: | |
2231 | break |
|
2238 | break | |
2232 | # final newline in case the input didn't have it, so that the code |
|
2239 | # final newline in case the input didn't have it, so that the code | |
2233 | # actually does get executed |
|
2240 | # actually does get executed | |
2234 | if more: |
|
2241 | if more: | |
2235 | self.push_line('\n') |
|
2242 | self.push_line('\n') | |
2236 |
|
2243 | |||
2237 | def run_source(self, source, filename=None, |
|
2244 | def run_source(self, source, filename=None, | |
2238 | symbol='single', post_execute=True): |
|
2245 | symbol='single', post_execute=True): | |
2239 | """Compile and run some source in the interpreter. |
|
2246 | """Compile and run some source in the interpreter. | |
2240 |
|
2247 | |||
2241 | Arguments are as for compile_command(). |
|
2248 | Arguments are as for compile_command(). | |
2242 |
|
2249 | |||
2243 | One several things can happen: |
|
2250 | One several things can happen: | |
2244 |
|
2251 | |||
2245 | 1) The input is incorrect; compile_command() raised an |
|
2252 | 1) The input is incorrect; compile_command() raised an | |
2246 | exception (SyntaxError or OverflowError). A syntax traceback |
|
2253 | exception (SyntaxError or OverflowError). A syntax traceback | |
2247 | will be printed by calling the showsyntaxerror() method. |
|
2254 | will be printed by calling the showsyntaxerror() method. | |
2248 |
|
2255 | |||
2249 | 2) The input is incomplete, and more input is required; |
|
2256 | 2) The input is incomplete, and more input is required; | |
2250 | compile_command() returned None. Nothing happens. |
|
2257 | compile_command() returned None. Nothing happens. | |
2251 |
|
2258 | |||
2252 | 3) The input is complete; compile_command() returned a code |
|
2259 | 3) The input is complete; compile_command() returned a code | |
2253 | object. The code is executed by calling self.run_code() (which |
|
2260 | object. The code is executed by calling self.run_code() (which | |
2254 | also handles run-time exceptions, except for SystemExit). |
|
2261 | also handles run-time exceptions, except for SystemExit). | |
2255 |
|
2262 | |||
2256 | The return value is: |
|
2263 | The return value is: | |
2257 |
|
2264 | |||
2258 | - True in case 2 |
|
2265 | - True in case 2 | |
2259 |
|
2266 | |||
2260 | - False in the other cases, unless an exception is raised, where |
|
2267 | - False in the other cases, unless an exception is raised, where | |
2261 | None is returned instead. This can be used by external callers to |
|
2268 | None is returned instead. This can be used by external callers to | |
2262 | know whether to continue feeding input or not. |
|
2269 | know whether to continue feeding input or not. | |
2263 |
|
2270 | |||
2264 | The return value can be used to decide whether to use sys.ps1 or |
|
2271 | The return value can be used to decide whether to use sys.ps1 or | |
2265 | sys.ps2 to prompt the next line.""" |
|
2272 | sys.ps2 to prompt the next line.""" | |
2266 |
|
2273 | |||
2267 | # We need to ensure that the source is unicode from here on. |
|
2274 | # We need to ensure that the source is unicode from here on. | |
2268 | if type(source)==str: |
|
2275 | if type(source)==str: | |
2269 | usource = source.decode(self.stdin_encoding) |
|
2276 | usource = source.decode(self.stdin_encoding) | |
2270 | else: |
|
2277 | else: | |
2271 | usource = source |
|
2278 | usource = source | |
2272 |
|
2279 | |||
2273 | if False: # dbg |
|
2280 | if False: # dbg | |
2274 | print 'Source:', repr(source) # dbg |
|
2281 | print 'Source:', repr(source) # dbg | |
2275 | print 'USource:', repr(usource) # dbg |
|
2282 | print 'USource:', repr(usource) # dbg | |
2276 | print 'type:', type(source) # dbg |
|
2283 | print 'type:', type(source) # dbg | |
2277 | print 'encoding', self.stdin_encoding # dbg |
|
2284 | print 'encoding', self.stdin_encoding # dbg | |
2278 |
|
2285 | |||
2279 | try: |
|
2286 | try: | |
2280 | code_name = self.compile.cache(usource, self.execution_count) |
|
2287 | code_name = self.compile.cache(usource, self.execution_count) | |
2281 | code = self.compile(usource, code_name, symbol) |
|
2288 | code = self.compile(usource, code_name, symbol) | |
2282 | except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError): |
|
2289 | except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError): | |
2283 | # Case 1 |
|
2290 | # Case 1 | |
2284 | self.showsyntaxerror(filename) |
|
2291 | self.showsyntaxerror(filename) | |
2285 | return None |
|
2292 | return None | |
2286 |
|
2293 | |||
2287 | if code is None: |
|
2294 | if code is None: | |
2288 | # Case 2 |
|
2295 | # Case 2 | |
2289 | return True |
|
2296 | return True | |
2290 |
|
2297 | |||
2291 | # Case 3 |
|
2298 | # Case 3 | |
2292 | # We store the code object so that threaded shells and |
|
2299 | # We store the code object so that threaded shells and | |
2293 | # custom exception handlers can access all this info if needed. |
|
2300 | # custom exception handlers can access all this info if needed. | |
2294 | # The source corresponding to this can be obtained from the |
|
2301 | # The source corresponding to this can be obtained from the | |
2295 | # buffer attribute as '\n'.join(self.buffer). |
|
2302 | # buffer attribute as '\n'.join(self.buffer). | |
2296 | self.code_to_run = code |
|
2303 | self.code_to_run = code | |
2297 | # now actually execute the code object |
|
2304 | # now actually execute the code object | |
2298 | if self.run_code(code, post_execute) == 0: |
|
2305 | if self.run_code(code, post_execute) == 0: | |
2299 | return False |
|
2306 | return False | |
2300 | else: |
|
2307 | else: | |
2301 | return None |
|
2308 | return None | |
2302 |
|
2309 | |||
2303 | # For backwards compatibility |
|
2310 | # For backwards compatibility | |
2304 | runsource = run_source |
|
2311 | runsource = run_source | |
2305 |
|
2312 | |||
2306 | def run_code(self, code_obj, post_execute=True): |
|
2313 | def run_code(self, code_obj, post_execute=True): | |
2307 | """Execute a code object. |
|
2314 | """Execute a code object. | |
2308 |
|
2315 | |||
2309 | When an exception occurs, self.showtraceback() is called to display a |
|
2316 | When an exception occurs, self.showtraceback() is called to display a | |
2310 | traceback. |
|
2317 | traceback. | |
2311 |
|
2318 | |||
2312 | Return value: a flag indicating whether the code to be run completed |
|
2319 | Return value: a flag indicating whether the code to be run completed | |
2313 | successfully: |
|
2320 | successfully: | |
2314 |
|
2321 | |||
2315 | - 0: successful execution. |
|
2322 | - 0: successful execution. | |
2316 | - 1: an error occurred. |
|
2323 | - 1: an error occurred. | |
2317 | """ |
|
2324 | """ | |
2318 |
|
2325 | |||
2319 | # Set our own excepthook in case the user code tries to call it |
|
2326 | # Set our own excepthook in case the user code tries to call it | |
2320 | # directly, so that the IPython crash handler doesn't get triggered |
|
2327 | # directly, so that the IPython crash handler doesn't get triggered | |
2321 | old_excepthook,sys.excepthook = sys.excepthook, self.excepthook |
|
2328 | old_excepthook,sys.excepthook = sys.excepthook, self.excepthook | |
2322 |
|
2329 | |||
2323 | # we save the original sys.excepthook in the instance, in case config |
|
2330 | # we save the original sys.excepthook in the instance, in case config | |
2324 | # code (such as magics) needs access to it. |
|
2331 | # code (such as magics) needs access to it. | |
2325 | self.sys_excepthook = old_excepthook |
|
2332 | self.sys_excepthook = old_excepthook | |
2326 | outflag = 1 # happens in more places, so it's easier as default |
|
2333 | outflag = 1 # happens in more places, so it's easier as default | |
2327 | try: |
|
2334 | try: | |
2328 | try: |
|
2335 | try: | |
2329 | self.hooks.pre_run_code_hook() |
|
2336 | self.hooks.pre_run_code_hook() | |
2330 | #rprint('Running code', repr(code_obj)) # dbg |
|
2337 | #rprint('Running code', repr(code_obj)) # dbg | |
2331 | exec code_obj in self.user_global_ns, self.user_ns |
|
2338 | exec code_obj in self.user_global_ns, self.user_ns | |
2332 | finally: |
|
2339 | finally: | |
2333 | # Reset our crash handler in place |
|
2340 | # Reset our crash handler in place | |
2334 | sys.excepthook = old_excepthook |
|
2341 | sys.excepthook = old_excepthook | |
2335 | except SystemExit: |
|
2342 | except SystemExit: | |
2336 | self.reset_buffer() |
|
2343 | self.reset_buffer() | |
2337 | self.showtraceback(exception_only=True) |
|
2344 | self.showtraceback(exception_only=True) | |
2338 | warn("To exit: use any of 'exit', 'quit', %Exit or Ctrl-D.", level=1) |
|
2345 | warn("To exit: use any of 'exit', 'quit', %Exit or Ctrl-D.", level=1) | |
2339 | except self.custom_exceptions: |
|
2346 | except self.custom_exceptions: | |
2340 | etype,value,tb = sys.exc_info() |
|
2347 | etype,value,tb = sys.exc_info() | |
2341 | self.CustomTB(etype,value,tb) |
|
2348 | self.CustomTB(etype,value,tb) | |
2342 | except: |
|
2349 | except: | |
2343 | self.showtraceback() |
|
2350 | self.showtraceback() | |
2344 | else: |
|
2351 | else: | |
2345 | outflag = 0 |
|
2352 | outflag = 0 | |
2346 | if softspace(sys.stdout, 0): |
|
2353 | if softspace(sys.stdout, 0): | |
2347 |
|
2354 | |||
2348 |
|
2355 | |||
2349 | # Execute any registered post-execution functions. Here, any errors |
|
2356 | # Execute any registered post-execution functions. Here, any errors | |
2350 | # are reported only minimally and just on the terminal, because the |
|
2357 | # are reported only minimally and just on the terminal, because the | |
2351 | # main exception channel may be occupied with a user traceback. |
|
2358 | # main exception channel may be occupied with a user traceback. | |
2352 | # FIXME: we need to think this mechanism a little more carefully. |
|
2359 | # FIXME: we need to think this mechanism a little more carefully. | |
2353 | if post_execute: |
|
2360 | if post_execute: | |
2354 | for func in self._post_execute: |
|
2361 | for func in self._post_execute: | |
2355 | try: |
|
2362 | try: | |
2356 | func() |
|
2363 | func() | |
2357 | except: |
|
2364 | except: | |
2358 | head = '[ ERROR ] Evaluating post_execute function: %s' % \ |
|
2365 | head = '[ ERROR ] Evaluating post_execute function: %s' % \ | |
2359 | func |
|
2366 | func | |
2360 | print >> io.Term.cout, head |
|
2367 | print >> io.Term.cout, head | |
2361 | print >> io.Term.cout, self._simple_error() |
|
2368 | print >> io.Term.cout, self._simple_error() | |
2362 | print >> io.Term.cout, 'Removing from post_execute' |
|
2369 | print >> io.Term.cout, 'Removing from post_execute' | |
2363 | self._post_execute.remove(func) |
|
2370 | self._post_execute.remove(func) | |
2364 |
|
2371 | |||
2365 | # Flush out code object which has been run (and source) |
|
2372 | # Flush out code object which has been run (and source) | |
2366 | self.code_to_run = None |
|
2373 | self.code_to_run = None | |
2367 | return outflag |
|
2374 | return outflag | |
2368 |
|
2375 | |||
2369 | # For backwards compatibility |
|
2376 | # For backwards compatibility | |
2370 | runcode = run_code |
|
2377 | runcode = run_code | |
2371 |
|
2378 | |||
2372 | # PENDING REMOVAL: this method is slated for deletion, once our new |
|
2379 | # PENDING REMOVAL: this method is slated for deletion, once our new | |
2373 | # input logic has been 100% moved to frontends and is stable. |
|
2380 | # input logic has been 100% moved to frontends and is stable. | |
2374 | def push_line(self, line): |
|
2381 | def push_line(self, line): | |
2375 | """Push a line to the interpreter. |
|
2382 | """Push a line to the interpreter. | |
2376 |
|
2383 | |||
2377 | The line should not have a trailing newline; it may have |
|
2384 | The line should not have a trailing newline; it may have | |
2378 | internal newlines. The line is appended to a buffer and the |
|
2385 | internal newlines. The line is appended to a buffer and the | |
2379 | interpreter's run_source() method is called with the |
|
2386 | interpreter's run_source() method is called with the | |
2380 | concatenated contents of the buffer as source. If this |
|
2387 | concatenated contents of the buffer as source. If this | |
2381 | indicates that the command was executed or invalid, the buffer |
|
2388 | indicates that the command was executed or invalid, the buffer | |
2382 | is reset; otherwise, the command is incomplete, and the buffer |
|
2389 | is reset; otherwise, the command is incomplete, and the buffer | |
2383 | is left as it was after the line was appended. The return |
|
2390 | is left as it was after the line was appended. The return | |
2384 | value is 1 if more input is required, 0 if the line was dealt |
|
2391 | value is 1 if more input is required, 0 if the line was dealt | |
2385 | with in some way (this is the same as run_source()). |
|
2392 | with in some way (this is the same as run_source()). | |
2386 | """ |
|
2393 | """ | |
2387 |
|
2394 | |||
2388 | # autoindent management should be done here, and not in the |
|
2395 | # autoindent management should be done here, and not in the | |
2389 | # interactive loop, since that one is only seen by keyboard input. We |
|
2396 | # interactive loop, since that one is only seen by keyboard input. We | |
2390 | # need this done correctly even for code run via runlines (which uses |
|
2397 | # need this done correctly even for code run via runlines (which uses | |
2391 | # push). |
|
2398 | # push). | |
2392 |
|
2399 | |||
2393 | #print 'push line: <%s>' % line # dbg |
|
2400 | #print 'push line: <%s>' % line # dbg | |
2394 | self.buffer.append(line) |
|
2401 | self.buffer.append(line) | |
2395 | full_source = '\n'.join(self.buffer) |
|
2402 | full_source = '\n'.join(self.buffer) | |
2396 | more = self.run_source(full_source, self.filename) |
|
2403 | more = self.run_source(full_source, self.filename) | |
2397 | if not more: |
|
2404 | if not more: | |
2398 | self.history_manager.store_inputs(self.execution_count, |
|
2405 | self.history_manager.store_inputs(self.execution_count, | |
2399 | '\n'.join(self.buffer_raw), full_source) |
|
2406 | '\n'.join(self.buffer_raw), full_source) | |
2400 | self.reset_buffer() |
|
2407 | self.reset_buffer() | |
2401 | self.execution_count += 1 |
|
2408 | self.execution_count += 1 | |
2402 | return more |
|
2409 | return more | |
2403 |
|
2410 | |||
2404 | def reset_buffer(self): |
|
2411 | def reset_buffer(self): | |
2405 | """Reset the input buffer.""" |
|
2412 | """Reset the input buffer.""" | |
2406 | self.buffer[:] = [] |
|
2413 | self.buffer[:] = [] | |
2407 | self.buffer_raw[:] = [] |
|
2414 | self.buffer_raw[:] = [] | |
2408 | self.input_splitter.reset() |
|
2415 | self.input_splitter.reset() | |
2409 |
|
2416 | |||
2410 | # For backwards compatibility |
|
2417 | # For backwards compatibility | |
2411 | resetbuffer = reset_buffer |
|
2418 | resetbuffer = reset_buffer | |
2412 |
|
2419 | |||
2413 | def _is_secondary_block_start(self, s): |
|
2420 | def _is_secondary_block_start(self, s): | |
2414 | if not s.endswith(':'): |
|
2421 | if not s.endswith(':'): | |
2415 | return False |
|
2422 | return False | |
2416 | if (s.startswith('elif') or |
|
2423 | if (s.startswith('elif') or | |
2417 | s.startswith('else') or |
|
2424 | s.startswith('else') or | |
2418 | s.startswith('except') or |
|
2425 | s.startswith('except') or | |
2419 | s.startswith('finally')): |
|
2426 | s.startswith('finally')): | |
2420 | return True |
|
2427 | return True | |
2421 |
|
2428 | |||
2422 | def _cleanup_ipy_script(self, script): |
|
2429 | def _cleanup_ipy_script(self, script): | |
2423 | """Make a script safe for self.runlines() |
|
2430 | """Make a script safe for self.runlines() | |
2424 |
|
2431 | |||
2425 | Currently, IPython is lines based, with blocks being detected by |
|
2432 | Currently, IPython is lines based, with blocks being detected by | |
2426 | empty lines. This is a problem for block based scripts that may |
|
2433 | empty lines. This is a problem for block based scripts that may | |
2427 | not have empty lines after blocks. This script adds those empty |
|
2434 | not have empty lines after blocks. This script adds those empty | |
2428 | lines to make scripts safe for running in the current line based |
|
2435 | lines to make scripts safe for running in the current line based | |
2429 | IPython. |
|
2436 | IPython. | |
2430 | """ |
|
2437 | """ | |
2431 | res = [] |
|
2438 | res = [] | |
2432 | lines = script.splitlines() |
|
2439 | lines = script.splitlines() | |
2433 | level = 0 |
|
2440 | level = 0 | |
2434 |
|
2441 | |||
2435 | for l in lines: |
|
2442 | for l in lines: | |
2436 | lstripped = l.lstrip() |
|
2443 | lstripped = l.lstrip() | |
2437 | stripped = l.strip() |
|
2444 | stripped = l.strip() | |
2438 | if not stripped: |
|
2445 | if not stripped: | |
2439 | continue |
|
2446 | continue | |
2440 | newlevel = len(l) - len(lstripped) |
|
2447 | newlevel = len(l) - len(lstripped) | |
2441 | if level > 0 and newlevel == 0 and \ |
|
2448 | if level > 0 and newlevel == 0 and \ | |
2442 | not self._is_secondary_block_start(stripped): |
|
2449 | not self._is_secondary_block_start(stripped): | |
2443 | # add empty line |
|
2450 | # add empty line | |
2444 | res.append('') |
|
2451 | res.append('') | |
2445 | res.append(l) |
|
2452 | res.append(l) | |
2446 | level = newlevel |
|
2453 | level = newlevel | |
2447 |
|
2454 | |||
2448 | return '\n'.join(res) + '\n' |
|
2455 | return '\n'.join(res) + '\n' | |
2449 |
|
2456 | |||
2450 | #------------------------------------------------------------------------- |
|
2457 | #------------------------------------------------------------------------- | |
2451 | # Things related to GUI support and pylab |
|
2458 | # Things related to GUI support and pylab | |
2452 | #------------------------------------------------------------------------- |
|
2459 | #------------------------------------------------------------------------- | |
2453 |
|
2460 | |||
2454 | def enable_pylab(self, gui=None): |
|
2461 | def enable_pylab(self, gui=None): | |
2455 | raise NotImplementedError('Implement enable_pylab in a subclass') |
|
2462 | raise NotImplementedError('Implement enable_pylab in a subclass') | |
2456 |
|
2463 | |||
2457 | #------------------------------------------------------------------------- |
|
2464 | #------------------------------------------------------------------------- | |
2458 | # Utilities |
|
2465 | # Utilities | |
2459 | #------------------------------------------------------------------------- |
|
2466 | #------------------------------------------------------------------------- | |
2460 |
|
2467 | |||
2461 | def var_expand(self,cmd,depth=0): |
|
2468 | def var_expand(self,cmd,depth=0): | |
2462 | """Expand python variables in a string. |
|
2469 | """Expand python variables in a string. | |
2463 |
|
2470 | |||
2464 | The depth argument indicates how many frames above the caller should |
|
2471 | The depth argument indicates how many frames above the caller should | |
2465 | be walked to look for the local namespace where to expand variables. |
|
2472 | be walked to look for the local namespace where to expand variables. | |
2466 |
|
2473 | |||
2467 | The global namespace for expansion is always the user's interactive |
|
2474 | The global namespace for expansion is always the user's interactive | |
2468 | namespace. |
|
2475 | namespace. | |
2469 | """ |
|
2476 | """ | |
2470 | res = ItplNS(cmd, self.user_ns, # globals |
|
2477 | res = ItplNS(cmd, self.user_ns, # globals | |
2471 | # Skip our own frame in searching for locals: |
|
2478 | # Skip our own frame in searching for locals: | |
2472 | sys._getframe(depth+1).f_locals # locals |
|
2479 | sys._getframe(depth+1).f_locals # locals | |
2473 | ) |
|
2480 | ) | |
2474 | return str(res).decode(res.codec) |
|
2481 | return str(res).decode(res.codec) | |
2475 |
|
2482 | |||
2476 | def mktempfile(self, data=None, prefix='ipython_edit_'): |
|
2483 | def mktempfile(self, data=None, prefix='ipython_edit_'): | |
2477 | """Make a new tempfile and return its filename. |
|
2484 | """Make a new tempfile and return its filename. | |
2478 |
|
2485 | |||
2479 | This makes a call to tempfile.mktemp, but it registers the created |
|
2486 | This makes a call to tempfile.mktemp, but it registers the created | |
2480 | filename internally so ipython cleans it up at exit time. |
|
2487 | filename internally so ipython cleans it up at exit time. | |
2481 |
|
2488 | |||
2482 | Optional inputs: |
|
2489 | Optional inputs: | |
2483 |
|
2490 | |||
2484 | - data(None): if data is given, it gets written out to the temp file |
|
2491 | - data(None): if data is given, it gets written out to the temp file | |
2485 | immediately, and the file is closed again.""" |
|
2492 | immediately, and the file is closed again.""" | |
2486 |
|
2493 | |||
2487 | filename = tempfile.mktemp('.py', prefix) |
|
2494 | filename = tempfile.mktemp('.py', prefix) | |
2488 | self.tempfiles.append(filename) |
|
2495 | self.tempfiles.append(filename) | |
2489 |
|
2496 | |||
2490 | if data: |
|
2497 | if data: | |
2491 | tmp_file = open(filename,'w') |
|
2498 | tmp_file = open(filename,'w') | |
2492 | tmp_file.write(data) |
|
2499 | tmp_file.write(data) | |
2493 | tmp_file.close() |
|
2500 | tmp_file.close() | |
2494 | return filename |
|
2501 | return filename | |
2495 |
|
2502 | |||
2496 | # TODO: This should be removed when Term is refactored. |
|
2503 | # TODO: This should be removed when Term is refactored. | |
2497 | def write(self,data): |
|
2504 | def write(self,data): | |
2498 | """Write a string to the default output""" |
|
2505 | """Write a string to the default output""" | |
2499 | io.Term.cout.write(data) |
|
2506 | io.Term.cout.write(data) | |
2500 |
|
2507 | |||
2501 | # TODO: This should be removed when Term is refactored. |
|
2508 | # TODO: This should be removed when Term is refactored. | |
2502 | def write_err(self,data): |
|
2509 | def write_err(self,data): | |
2503 | """Write a string to the default error output""" |
|
2510 | """Write a string to the default error output""" | |
2504 | io.Term.cerr.write(data) |
|
2511 | io.Term.cerr.write(data) | |
2505 |
|
2512 | |||
2506 | def ask_yes_no(self,prompt,default=True): |
|
2513 | def ask_yes_no(self,prompt,default=True): | |
2507 | if self.quiet: |
|
2514 | if self.quiet: | |
2508 | return True |
|
2515 | return True | |
2509 | return ask_yes_no(prompt,default) |
|
2516 | return ask_yes_no(prompt,default) | |
2510 |
|
2517 | |||
2511 | def show_usage(self): |
|
2518 | def show_usage(self): | |
2512 | """Show a usage message""" |
|
2519 | """Show a usage message""" | |
2513 | page.page(IPython.core.usage.interactive_usage) |
|
2520 | page.page(IPython.core.usage.interactive_usage) | |
2514 |
|
2521 | |||
2515 | def find_user_code(self, target, raw=True): |
|
2522 | def find_user_code(self, target, raw=True): | |
2516 | """Get a code string from history, file, or a string or macro. |
|
2523 | """Get a code string from history, file, or a string or macro. | |
2517 |
|
2524 | |||
2518 | This is mainly used by magic functions. |
|
2525 | This is mainly used by magic functions. | |
2519 |
|
2526 | |||
2520 | Parameters |
|
2527 | Parameters | |
2521 | ---------- |
|
2528 | ---------- | |
2522 | target : str |
|
2529 | target : str | |
2523 | A string specifying code to retrieve. This will be tried respectively |
|
2530 | A string specifying code to retrieve. This will be tried respectively | |
2524 | as: ranges of input history (see %history for syntax), a filename, or |
|
2531 | as: ranges of input history (see %history for syntax), a filename, or | |
2525 | an expression evaluating to a string or Macro in the user namespace. |
|
2532 | an expression evaluating to a string or Macro in the user namespace. | |
2526 | raw : bool |
|
2533 | raw : bool | |
2527 | If true (default), retrieve raw history. Has no effect on the other |
|
2534 | If true (default), retrieve raw history. Has no effect on the other | |
2528 | retrieval mechanisms. |
|
2535 | retrieval mechanisms. | |
2529 |
|
2536 | |||
2530 | Returns |
|
2537 | Returns | |
2531 | ------- |
|
2538 | ------- | |
2532 | A string of code. |
|
2539 | A string of code. | |
2533 |
|
2540 | |||
2534 | ValueError is raised if nothing is found, and TypeError if it evaluates |
|
2541 | ValueError is raised if nothing is found, and TypeError if it evaluates | |
2535 | to an object of another type. In each case, .args[0] is a printable |
|
2542 | to an object of another type. In each case, .args[0] is a printable | |
2536 | message. |
|
2543 | message. | |
2537 | """ |
|
2544 | """ | |
2538 | code = self.extract_input_lines(target, raw=raw) # Grab history |
|
2545 | code = self.extract_input_lines(target, raw=raw) # Grab history | |
2539 | if code: |
|
2546 | if code: | |
2540 | return code |
|
2547 | return code | |
2541 | if os.path.isfile(target): # Read file |
|
2548 | if os.path.isfile(target): # Read file | |
2542 | return open(target, "r").read() |
|
2549 | return open(target, "r").read() | |
2543 |
|
2550 | |||
2544 | try: # User namespace |
|
2551 | try: # User namespace | |
2545 | codeobj = eval(target, self.user_ns) |
|
2552 | codeobj = eval(target, self.user_ns) | |
2546 | except Exception: |
|
2553 | except Exception: | |
2547 | raise ValueError(("'%s' was not found in history, as a file, nor in" |
|
2554 | raise ValueError(("'%s' was not found in history, as a file, nor in" | |
2548 | " the user namespace.") % target) |
|
2555 | " the user namespace.") % target) | |
2549 | if isinstance(codeobj, basestring): |
|
2556 | if isinstance(codeobj, basestring): | |
2550 | return codeobj |
|
2557 | return codeobj | |
2551 | elif isinstance(codeobj, Macro): |
|
2558 | elif isinstance(codeobj, Macro): | |
2552 | return codeobj.value |
|
2559 | return codeobj.value | |
2553 |
|
2560 | |||
2554 | raise TypeError("%s is neither a string nor a macro." % target, |
|
2561 | raise TypeError("%s is neither a string nor a macro." % target, | |
2555 | codeobj) |
|
2562 | codeobj) | |
2556 |
|
2563 | |||
2557 | #------------------------------------------------------------------------- |
|
2564 | #------------------------------------------------------------------------- | |
2558 | # Things related to IPython exiting |
|
2565 | # Things related to IPython exiting | |
2559 | #------------------------------------------------------------------------- |
|
2566 | #------------------------------------------------------------------------- | |
2560 | def atexit_operations(self): |
|
2567 | def atexit_operations(self): | |
2561 | """This will be executed at the time of exit. |
|
2568 | """This will be executed at the time of exit. | |
2562 |
|
2569 | |||
2563 | Cleanup operations and saving of persistent data that is done |
|
2570 | Cleanup operations and saving of persistent data that is done | |
2564 | unconditionally by IPython should be performed here. |
|
2571 | unconditionally by IPython should be performed here. | |
2565 |
|
2572 | |||
2566 | For things that may depend on startup flags or platform specifics (such |
|
2573 | For things that may depend on startup flags or platform specifics (such | |
2567 | as having readline or not), register a separate atexit function in the |
|
2574 | as having readline or not), register a separate atexit function in the | |
2568 | code that has the appropriate information, rather than trying to |
|
2575 | code that has the appropriate information, rather than trying to | |
2569 | clutter |
|
2576 | clutter | |
2570 | """ |
|
2577 | """ | |
2571 | # Cleanup all tempfiles left around |
|
2578 | # Cleanup all tempfiles left around | |
2572 | for tfile in self.tempfiles: |
|
2579 | for tfile in self.tempfiles: | |
2573 | try: |
|
2580 | try: | |
2574 | os.unlink(tfile) |
|
2581 | os.unlink(tfile) | |
2575 | except OSError: |
|
2582 | except OSError: | |
2576 | pass |
|
2583 | pass | |
2577 |
|
2584 | |||
2578 | # Close the history session (this stores the end time and line count) |
|
2585 | # Close the history session (this stores the end time and line count) | |
2579 | self.history_manager.end_session() |
|
2586 | self.history_manager.end_session() | |
2580 |
|
2587 | |||
2581 | # Clear all user namespaces to release all references cleanly. |
|
2588 | # Clear all user namespaces to release all references cleanly. | |
2582 | self.reset(new_session=False) |
|
2589 | self.reset(new_session=False) | |
2583 |
|
2590 | |||
2584 | # Run user hooks |
|
2591 | # Run user hooks | |
2585 | self.hooks.shutdown_hook() |
|
2592 | self.hooks.shutdown_hook() | |
2586 |
|
2593 | |||
2587 | def cleanup(self): |
|
2594 | def cleanup(self): | |
2588 | self.restore_sys_module_state() |
|
2595 | self.restore_sys_module_state() | |
2589 |
|
2596 | |||
2590 |
|
2597 | |||
2591 | class InteractiveShellABC(object): |
|
2598 | class InteractiveShellABC(object): | |
2592 | """An abstract base class for InteractiveShell.""" |
|
2599 | """An abstract base class for InteractiveShell.""" | |
2593 | __metaclass__ = abc.ABCMeta |
|
2600 | __metaclass__ = abc.ABCMeta | |
2594 |
|
2601 | |||
2595 | InteractiveShellABC.register(InteractiveShell) |
|
2602 | InteractiveShellABC.register(InteractiveShell) |
@@ -1,3472 +1,3478 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.macro import Macro |
|
49 | from IPython.core.macro import Macro | |
50 | from IPython.core import page |
|
50 | from IPython.core import page | |
51 | from IPython.core.prefilter import ESC_MAGIC |
|
51 | from IPython.core.prefilter import ESC_MAGIC | |
52 | from IPython.lib.pylabtools import mpl_runner |
|
52 | from IPython.lib.pylabtools import mpl_runner | |
53 | from IPython.external.Itpl import itpl, printpl |
|
53 | from IPython.external.Itpl import itpl, printpl | |
54 | from IPython.testing import decorators as testdec |
|
54 | from IPython.testing import decorators as testdec | |
55 | from IPython.utils.io import file_read, nlprint |
|
55 | from IPython.utils.io import file_read, nlprint | |
56 | import IPython.utils.io |
|
56 | import IPython.utils.io | |
57 | from IPython.utils.path import get_py_filename |
|
57 | from IPython.utils.path import get_py_filename | |
58 | from IPython.utils.process import arg_split, abbrev_cwd |
|
58 | from IPython.utils.process import arg_split, abbrev_cwd | |
59 | from IPython.utils.terminal import set_term_title |
|
59 | from IPython.utils.terminal import set_term_title | |
60 | from IPython.utils.text import LSString, SList, format_screen |
|
60 | from IPython.utils.text import LSString, SList, format_screen | |
61 | from IPython.utils.timing import clock, clock2 |
|
61 | from IPython.utils.timing import clock, clock2 | |
62 | from IPython.utils.warn import warn, error |
|
62 | from IPython.utils.warn import warn, error | |
63 | from IPython.utils.ipstruct import Struct |
|
63 | from IPython.utils.ipstruct import Struct | |
64 | import IPython.utils.generics |
|
64 | import IPython.utils.generics | |
65 |
|
65 | |||
66 | #----------------------------------------------------------------------------- |
|
66 | #----------------------------------------------------------------------------- | |
67 | # Utility functions |
|
67 | # Utility functions | |
68 | #----------------------------------------------------------------------------- |
|
68 | #----------------------------------------------------------------------------- | |
69 |
|
69 | |||
70 | def on_off(tag): |
|
70 | def on_off(tag): | |
71 | """Return an ON/OFF string for a 1/0 input. Simple utility function.""" |
|
71 | """Return an ON/OFF string for a 1/0 input. Simple utility function.""" | |
72 | return ['OFF','ON'][tag] |
|
72 | return ['OFF','ON'][tag] | |
73 |
|
73 | |||
74 | class Bunch: pass |
|
74 | class Bunch: pass | |
75 |
|
75 | |||
76 | def compress_dhist(dh): |
|
76 | def compress_dhist(dh): | |
77 | head, tail = dh[:-10], dh[-10:] |
|
77 | head, tail = dh[:-10], dh[-10:] | |
78 |
|
78 | |||
79 | newhead = [] |
|
79 | newhead = [] | |
80 | done = set() |
|
80 | done = set() | |
81 | for h in head: |
|
81 | for h in head: | |
82 | if h in done: |
|
82 | if h in done: | |
83 | continue |
|
83 | continue | |
84 | newhead.append(h) |
|
84 | newhead.append(h) | |
85 | done.add(h) |
|
85 | done.add(h) | |
86 |
|
86 | |||
87 | return newhead + tail |
|
87 | return newhead + tail | |
88 |
|
88 | |||
89 | def needs_local_scope(func): |
|
89 | def needs_local_scope(func): | |
90 | """Decorator to mark magic functions which need to local scope to run.""" |
|
90 | """Decorator to mark magic functions which need to local scope to run.""" | |
91 | func.needs_local_scope = True |
|
91 | func.needs_local_scope = True | |
92 | return func |
|
92 | return func | |
93 |
|
93 | |||
94 | #*************************************************************************** |
|
94 | #*************************************************************************** | |
95 | # Main class implementing Magic functionality |
|
95 | # Main class implementing Magic functionality | |
96 |
|
96 | |||
97 | # XXX - for some odd reason, if Magic is made a new-style class, we get errors |
|
97 | # XXX - for some odd reason, if Magic is made a new-style class, we get errors | |
98 | # on construction of the main InteractiveShell object. Something odd is going |
|
98 | # on construction of the main InteractiveShell object. Something odd is going | |
99 | # on with super() calls, Configurable and the MRO... For now leave it as-is, but |
|
99 | # on with super() calls, Configurable and the MRO... For now leave it as-is, but | |
100 | # eventually this needs to be clarified. |
|
100 | # eventually this needs to be clarified. | |
101 | # BG: This is because InteractiveShell inherits from this, but is itself a |
|
101 | # BG: This is because InteractiveShell inherits from this, but is itself a | |
102 | # Configurable. This messes up the MRO in some way. The fix is that we need to |
|
102 | # Configurable. This messes up the MRO in some way. The fix is that we need to | |
103 | # make Magic a configurable that InteractiveShell does not subclass. |
|
103 | # make Magic a configurable that InteractiveShell does not subclass. | |
104 |
|
104 | |||
105 | class Magic: |
|
105 | class Magic: | |
106 | """Magic functions for InteractiveShell. |
|
106 | """Magic functions for InteractiveShell. | |
107 |
|
107 | |||
108 | Shell functions which can be reached as %function_name. All magic |
|
108 | Shell functions which can be reached as %function_name. All magic | |
109 | functions should accept a string, which they can parse for their own |
|
109 | functions should accept a string, which they can parse for their own | |
110 | needs. This can make some functions easier to type, eg `%cd ../` |
|
110 | needs. This can make some functions easier to type, eg `%cd ../` | |
111 | vs. `%cd("../")` |
|
111 | vs. `%cd("../")` | |
112 |
|
112 | |||
113 | ALL definitions MUST begin with the prefix magic_. The user won't need it |
|
113 | ALL definitions MUST begin with the prefix magic_. The user won't need it | |
114 | at the command line, but it is is needed in the definition. """ |
|
114 | at the command line, but it is is needed in the definition. """ | |
115 |
|
115 | |||
116 | # class globals |
|
116 | # class globals | |
117 | auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.', |
|
117 | auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.', | |
118 | 'Automagic is ON, % prefix NOT needed for magic functions.'] |
|
118 | 'Automagic is ON, % prefix NOT needed for magic functions.'] | |
119 |
|
119 | |||
120 | #...................................................................... |
|
120 | #...................................................................... | |
121 | # some utility functions |
|
121 | # some utility functions | |
122 |
|
122 | |||
123 | def __init__(self,shell): |
|
123 | def __init__(self,shell): | |
124 |
|
124 | |||
125 | self.options_table = {} |
|
125 | self.options_table = {} | |
126 | if profile is None: |
|
126 | if profile is None: | |
127 | self.magic_prun = self.profile_missing_notice |
|
127 | self.magic_prun = self.profile_missing_notice | |
128 | self.shell = shell |
|
128 | self.shell = shell | |
129 |
|
129 | |||
130 | # namespace for holding state we may need |
|
130 | # namespace for holding state we may need | |
131 | self._magic_state = Bunch() |
|
131 | self._magic_state = Bunch() | |
132 |
|
132 | |||
133 | def profile_missing_notice(self, *args, **kwargs): |
|
133 | def profile_missing_notice(self, *args, **kwargs): | |
134 | error("""\ |
|
134 | error("""\ | |
135 | The profile module could not be found. It has been removed from the standard |
|
135 | The profile module could not be found. It has been removed from the standard | |
136 | python packages because of its non-free license. To use profiling, install the |
|
136 | python packages because of its non-free license. To use profiling, install the | |
137 | python-profiler package from non-free.""") |
|
137 | python-profiler package from non-free.""") | |
138 |
|
138 | |||
139 | def default_option(self,fn,optstr): |
|
139 | def default_option(self,fn,optstr): | |
140 | """Make an entry in the options_table for fn, with value optstr""" |
|
140 | """Make an entry in the options_table for fn, with value optstr""" | |
141 |
|
141 | |||
142 | if fn not in self.lsmagic(): |
|
142 | if fn not in self.lsmagic(): | |
143 | error("%s is not a magic function" % fn) |
|
143 | error("%s is not a magic function" % fn) | |
144 | self.options_table[fn] = optstr |
|
144 | self.options_table[fn] = optstr | |
145 |
|
145 | |||
146 | def lsmagic(self): |
|
146 | def lsmagic(self): | |
147 | """Return a list of currently available magic functions. |
|
147 | """Return a list of currently available magic functions. | |
148 |
|
148 | |||
149 | Gives a list of the bare names after mangling (['ls','cd', ...], not |
|
149 | Gives a list of the bare names after mangling (['ls','cd', ...], not | |
150 | ['magic_ls','magic_cd',...]""" |
|
150 | ['magic_ls','magic_cd',...]""" | |
151 |
|
151 | |||
152 | # FIXME. This needs a cleanup, in the way the magics list is built. |
|
152 | # FIXME. This needs a cleanup, in the way the magics list is built. | |
153 |
|
153 | |||
154 | # magics in class definition |
|
154 | # magics in class definition | |
155 | class_magic = lambda fn: fn.startswith('magic_') and \ |
|
155 | class_magic = lambda fn: fn.startswith('magic_') and \ | |
156 | callable(Magic.__dict__[fn]) |
|
156 | callable(Magic.__dict__[fn]) | |
157 | # in instance namespace (run-time user additions) |
|
157 | # in instance namespace (run-time user additions) | |
158 | inst_magic = lambda fn: fn.startswith('magic_') and \ |
|
158 | inst_magic = lambda fn: fn.startswith('magic_') and \ | |
159 | callable(self.__dict__[fn]) |
|
159 | callable(self.__dict__[fn]) | |
160 | # and bound magics by user (so they can access self): |
|
160 | # and bound magics by user (so they can access self): | |
161 | inst_bound_magic = lambda fn: fn.startswith('magic_') and \ |
|
161 | inst_bound_magic = lambda fn: fn.startswith('magic_') and \ | |
162 | callable(self.__class__.__dict__[fn]) |
|
162 | callable(self.__class__.__dict__[fn]) | |
163 | magics = filter(class_magic,Magic.__dict__.keys()) + \ |
|
163 | magics = filter(class_magic,Magic.__dict__.keys()) + \ | |
164 | filter(inst_magic,self.__dict__.keys()) + \ |
|
164 | filter(inst_magic,self.__dict__.keys()) + \ | |
165 | filter(inst_bound_magic,self.__class__.__dict__.keys()) |
|
165 | filter(inst_bound_magic,self.__class__.__dict__.keys()) | |
166 | out = [] |
|
166 | out = [] | |
167 | for fn in set(magics): |
|
167 | for fn in set(magics): | |
168 | out.append(fn.replace('magic_','',1)) |
|
168 | out.append(fn.replace('magic_','',1)) | |
169 | out.sort() |
|
169 | out.sort() | |
170 | return out |
|
170 | return out | |
171 |
|
171 | |||
172 | def extract_input_lines(self, range_str, raw=False): |
|
172 | def extract_input_lines(self, range_str, raw=False): | |
173 | """Return as a string a set of input history slices. |
|
173 | """Return as a string a set of input history slices. | |
174 |
|
174 | |||
175 | Inputs: |
|
175 | Inputs: | |
176 |
|
176 | |||
177 | - range_str: the set of slices is given as a string, like |
|
177 | - range_str: the set of slices is given as a string, like | |
178 | "~5/6-~4/2 4:8 9", since this function is for use by magic functions |
|
178 | "~5/6-~4/2 4:8 9", since this function is for use by magic functions | |
179 | which get their arguments as strings. The number before the / is the |
|
179 | which get their arguments as strings. The number before the / is the | |
180 | session number: ~n goes n back from the current session. |
|
180 | session number: ~n goes n back from the current session. | |
181 |
|
181 | |||
182 | Optional inputs: |
|
182 | Optional inputs: | |
183 |
|
183 | |||
184 | - raw(False): by default, the processed input is used. If this is |
|
184 | - raw(False): by default, the processed input is used. If this is | |
185 | true, the raw input history is used instead. |
|
185 | true, the raw input history is used instead. | |
186 |
|
186 | |||
187 | Note that slices can be called with two notations: |
|
187 | Note that slices can be called with two notations: | |
188 |
|
188 | |||
189 | N:M -> standard python form, means including items N...(M-1). |
|
189 | N:M -> standard python form, means including items N...(M-1). | |
190 |
|
190 | |||
191 | N-M -> include items N..M (closed endpoint).""" |
|
191 | N-M -> include items N..M (closed endpoint).""" | |
192 | lines = self.shell.history_manager.\ |
|
192 | lines = self.shell.history_manager.\ | |
193 | get_range_by_str(range_str, raw=raw) |
|
193 | get_range_by_str(range_str, raw=raw) | |
194 | return "\n".join(x for _, _, x in lines) |
|
194 | return "\n".join(x for _, _, x in lines) | |
195 |
|
195 | |||
196 | def arg_err(self,func): |
|
196 | def arg_err(self,func): | |
197 | """Print docstring if incorrect arguments were passed""" |
|
197 | """Print docstring if incorrect arguments were passed""" | |
198 | print 'Error in arguments:' |
|
198 | print 'Error in arguments:' | |
199 | print oinspect.getdoc(func) |
|
199 | print oinspect.getdoc(func) | |
200 |
|
200 | |||
201 | def format_latex(self,strng): |
|
201 | def format_latex(self,strng): | |
202 | """Format a string for latex inclusion.""" |
|
202 | """Format a string for latex inclusion.""" | |
203 |
|
203 | |||
204 | # Characters that need to be escaped for latex: |
|
204 | # Characters that need to be escaped for latex: | |
205 | escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE) |
|
205 | escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE) | |
206 | # Magic command names as headers: |
|
206 | # Magic command names as headers: | |
207 | cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC, |
|
207 | cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC, | |
208 | re.MULTILINE) |
|
208 | re.MULTILINE) | |
209 | # Magic commands |
|
209 | # Magic commands | |
210 | cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC, |
|
210 | cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC, | |
211 | re.MULTILINE) |
|
211 | re.MULTILINE) | |
212 | # Paragraph continue |
|
212 | # Paragraph continue | |
213 | par_re = re.compile(r'\\$',re.MULTILINE) |
|
213 | par_re = re.compile(r'\\$',re.MULTILINE) | |
214 |
|
214 | |||
215 | # The "\n" symbol |
|
215 | # The "\n" symbol | |
216 | newline_re = re.compile(r'\\n') |
|
216 | newline_re = re.compile(r'\\n') | |
217 |
|
217 | |||
218 | # Now build the string for output: |
|
218 | # Now build the string for output: | |
219 | #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng) |
|
219 | #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng) | |
220 | strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:', |
|
220 | strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:', | |
221 | strng) |
|
221 | strng) | |
222 | strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng) |
|
222 | strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng) | |
223 | strng = par_re.sub(r'\\\\',strng) |
|
223 | strng = par_re.sub(r'\\\\',strng) | |
224 | strng = escape_re.sub(r'\\\1',strng) |
|
224 | strng = escape_re.sub(r'\\\1',strng) | |
225 | strng = newline_re.sub(r'\\textbackslash{}n',strng) |
|
225 | strng = newline_re.sub(r'\\textbackslash{}n',strng) | |
226 | return strng |
|
226 | return strng | |
227 |
|
227 | |||
228 | def parse_options(self,arg_str,opt_str,*long_opts,**kw): |
|
228 | def parse_options(self,arg_str,opt_str,*long_opts,**kw): | |
229 | """Parse options passed to an argument string. |
|
229 | """Parse options passed to an argument string. | |
230 |
|
230 | |||
231 | The interface is similar to that of getopt(), but it returns back a |
|
231 | The interface is similar to that of getopt(), but it returns back a | |
232 | Struct with the options as keys and the stripped argument string still |
|
232 | Struct with the options as keys and the stripped argument string still | |
233 | as a string. |
|
233 | as a string. | |
234 |
|
234 | |||
235 | arg_str is quoted as a true sys.argv vector by using shlex.split. |
|
235 | arg_str is quoted as a true sys.argv vector by using shlex.split. | |
236 | This allows us to easily expand variables, glob files, quote |
|
236 | This allows us to easily expand variables, glob files, quote | |
237 | arguments, etc. |
|
237 | arguments, etc. | |
238 |
|
238 | |||
239 | Options: |
|
239 | Options: | |
240 | -mode: default 'string'. If given as 'list', the argument string is |
|
240 | -mode: default 'string'. If given as 'list', the argument string is | |
241 | returned as a list (split on whitespace) instead of a string. |
|
241 | returned as a list (split on whitespace) instead of a string. | |
242 |
|
242 | |||
243 | -list_all: put all option values in lists. Normally only options |
|
243 | -list_all: put all option values in lists. Normally only options | |
244 | appearing more than once are put in a list. |
|
244 | appearing more than once are put in a list. | |
245 |
|
245 | |||
246 | -posix (True): whether to split the input line in POSIX mode or not, |
|
246 | -posix (True): whether to split the input line in POSIX mode or not, | |
247 | as per the conventions outlined in the shlex module from the |
|
247 | as per the conventions outlined in the shlex module from the | |
248 | standard library.""" |
|
248 | standard library.""" | |
249 |
|
249 | |||
250 | # inject default options at the beginning of the input line |
|
250 | # inject default options at the beginning of the input line | |
251 | caller = sys._getframe(1).f_code.co_name.replace('magic_','') |
|
251 | caller = sys._getframe(1).f_code.co_name.replace('magic_','') | |
252 | arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str) |
|
252 | arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str) | |
253 |
|
253 | |||
254 | mode = kw.get('mode','string') |
|
254 | mode = kw.get('mode','string') | |
255 | if mode not in ['string','list']: |
|
255 | if mode not in ['string','list']: | |
256 | raise ValueError,'incorrect mode given: %s' % mode |
|
256 | raise ValueError,'incorrect mode given: %s' % mode | |
257 | # Get options |
|
257 | # Get options | |
258 | list_all = kw.get('list_all',0) |
|
258 | list_all = kw.get('list_all',0) | |
259 | posix = kw.get('posix', os.name == 'posix') |
|
259 | posix = kw.get('posix', os.name == 'posix') | |
260 |
|
260 | |||
261 | # Check if we have more than one argument to warrant extra processing: |
|
261 | # Check if we have more than one argument to warrant extra processing: | |
262 | odict = {} # Dictionary with options |
|
262 | odict = {} # Dictionary with options | |
263 | args = arg_str.split() |
|
263 | args = arg_str.split() | |
264 | if len(args) >= 1: |
|
264 | if len(args) >= 1: | |
265 | # If the list of inputs only has 0 or 1 thing in it, there's no |
|
265 | # If the list of inputs only has 0 or 1 thing in it, there's no | |
266 | # need to look for options |
|
266 | # need to look for options | |
267 | argv = arg_split(arg_str,posix) |
|
267 | argv = arg_split(arg_str,posix) | |
268 | # Do regular option processing |
|
268 | # Do regular option processing | |
269 | try: |
|
269 | try: | |
270 | opts,args = getopt(argv,opt_str,*long_opts) |
|
270 | opts,args = getopt(argv,opt_str,*long_opts) | |
271 | except GetoptError,e: |
|
271 | except GetoptError,e: | |
272 | raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str, |
|
272 | raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str, | |
273 | " ".join(long_opts))) |
|
273 | " ".join(long_opts))) | |
274 | for o,a in opts: |
|
274 | for o,a in opts: | |
275 | if o.startswith('--'): |
|
275 | if o.startswith('--'): | |
276 | o = o[2:] |
|
276 | o = o[2:] | |
277 | else: |
|
277 | else: | |
278 | o = o[1:] |
|
278 | o = o[1:] | |
279 | try: |
|
279 | try: | |
280 | odict[o].append(a) |
|
280 | odict[o].append(a) | |
281 | except AttributeError: |
|
281 | except AttributeError: | |
282 | odict[o] = [odict[o],a] |
|
282 | odict[o] = [odict[o],a] | |
283 | except KeyError: |
|
283 | except KeyError: | |
284 | if list_all: |
|
284 | if list_all: | |
285 | odict[o] = [a] |
|
285 | odict[o] = [a] | |
286 | else: |
|
286 | else: | |
287 | odict[o] = a |
|
287 | odict[o] = a | |
288 |
|
288 | |||
289 | # Prepare opts,args for return |
|
289 | # Prepare opts,args for return | |
290 | opts = Struct(odict) |
|
290 | opts = Struct(odict) | |
291 | if mode == 'string': |
|
291 | if mode == 'string': | |
292 | args = ' '.join(args) |
|
292 | args = ' '.join(args) | |
293 |
|
293 | |||
294 | return opts,args |
|
294 | return opts,args | |
295 |
|
295 | |||
296 | #...................................................................... |
|
296 | #...................................................................... | |
297 | # And now the actual magic functions |
|
297 | # And now the actual magic functions | |
298 |
|
298 | |||
299 | # Functions for IPython shell work (vars,funcs, config, etc) |
|
299 | # Functions for IPython shell work (vars,funcs, config, etc) | |
300 | def magic_lsmagic(self, parameter_s = ''): |
|
300 | def magic_lsmagic(self, parameter_s = ''): | |
301 | """List currently available magic functions.""" |
|
301 | """List currently available magic functions.""" | |
302 | mesc = ESC_MAGIC |
|
302 | mesc = ESC_MAGIC | |
303 | print 'Available magic functions:\n'+mesc+\ |
|
303 | print 'Available magic functions:\n'+mesc+\ | |
304 | (' '+mesc).join(self.lsmagic()) |
|
304 | (' '+mesc).join(self.lsmagic()) | |
305 | print '\n' + Magic.auto_status[self.shell.automagic] |
|
305 | print '\n' + Magic.auto_status[self.shell.automagic] | |
306 | return None |
|
306 | return None | |
307 |
|
307 | |||
308 | def magic_magic(self, parameter_s = ''): |
|
308 | def magic_magic(self, parameter_s = ''): | |
309 | """Print information about the magic function system. |
|
309 | """Print information about the magic function system. | |
310 |
|
310 | |||
311 | Supported formats: -latex, -brief, -rest |
|
311 | Supported formats: -latex, -brief, -rest | |
312 | """ |
|
312 | """ | |
313 |
|
313 | |||
314 | mode = '' |
|
314 | mode = '' | |
315 | try: |
|
315 | try: | |
316 | if parameter_s.split()[0] == '-latex': |
|
316 | if parameter_s.split()[0] == '-latex': | |
317 | mode = 'latex' |
|
317 | mode = 'latex' | |
318 | if parameter_s.split()[0] == '-brief': |
|
318 | if parameter_s.split()[0] == '-brief': | |
319 | mode = 'brief' |
|
319 | mode = 'brief' | |
320 | if parameter_s.split()[0] == '-rest': |
|
320 | if parameter_s.split()[0] == '-rest': | |
321 | mode = 'rest' |
|
321 | mode = 'rest' | |
322 | rest_docs = [] |
|
322 | rest_docs = [] | |
323 | except: |
|
323 | except: | |
324 | pass |
|
324 | pass | |
325 |
|
325 | |||
326 | magic_docs = [] |
|
326 | magic_docs = [] | |
327 | for fname in self.lsmagic(): |
|
327 | for fname in self.lsmagic(): | |
328 | mname = 'magic_' + fname |
|
328 | mname = 'magic_' + fname | |
329 | for space in (Magic,self,self.__class__): |
|
329 | for space in (Magic,self,self.__class__): | |
330 | try: |
|
330 | try: | |
331 | fn = space.__dict__[mname] |
|
331 | fn = space.__dict__[mname] | |
332 | except KeyError: |
|
332 | except KeyError: | |
333 | pass |
|
333 | pass | |
334 | else: |
|
334 | else: | |
335 | break |
|
335 | break | |
336 | if mode == 'brief': |
|
336 | if mode == 'brief': | |
337 | # only first line |
|
337 | # only first line | |
338 | if fn.__doc__: |
|
338 | if fn.__doc__: | |
339 | fndoc = fn.__doc__.split('\n',1)[0] |
|
339 | fndoc = fn.__doc__.split('\n',1)[0] | |
340 | else: |
|
340 | else: | |
341 | fndoc = 'No documentation' |
|
341 | fndoc = 'No documentation' | |
342 | else: |
|
342 | else: | |
343 | if fn.__doc__: |
|
343 | if fn.__doc__: | |
344 | fndoc = fn.__doc__.rstrip() |
|
344 | fndoc = fn.__doc__.rstrip() | |
345 | else: |
|
345 | else: | |
346 | fndoc = 'No documentation' |
|
346 | fndoc = 'No documentation' | |
347 |
|
347 | |||
348 |
|
348 | |||
349 | if mode == 'rest': |
|
349 | if mode == 'rest': | |
350 | rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC, |
|
350 | rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC, | |
351 | fname,fndoc)) |
|
351 | fname,fndoc)) | |
352 |
|
352 | |||
353 | else: |
|
353 | else: | |
354 | magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC, |
|
354 | magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC, | |
355 | fname,fndoc)) |
|
355 | fname,fndoc)) | |
356 |
|
356 | |||
357 | magic_docs = ''.join(magic_docs) |
|
357 | magic_docs = ''.join(magic_docs) | |
358 |
|
358 | |||
359 | if mode == 'rest': |
|
359 | if mode == 'rest': | |
360 | return "".join(rest_docs) |
|
360 | return "".join(rest_docs) | |
361 |
|
361 | |||
362 | if mode == 'latex': |
|
362 | if mode == 'latex': | |
363 | print self.format_latex(magic_docs) |
|
363 | print self.format_latex(magic_docs) | |
364 | return |
|
364 | return | |
365 | else: |
|
365 | else: | |
366 | magic_docs = format_screen(magic_docs) |
|
366 | magic_docs = format_screen(magic_docs) | |
367 | if mode == 'brief': |
|
367 | if mode == 'brief': | |
368 | return magic_docs |
|
368 | return magic_docs | |
369 |
|
369 | |||
370 | outmsg = """ |
|
370 | outmsg = """ | |
371 | IPython's 'magic' functions |
|
371 | IPython's 'magic' functions | |
372 | =========================== |
|
372 | =========================== | |
373 |
|
373 | |||
374 | The magic function system provides a series of functions which allow you to |
|
374 | The magic function system provides a series of functions which allow you to | |
375 | control the behavior of IPython itself, plus a lot of system-type |
|
375 | control the behavior of IPython itself, plus a lot of system-type | |
376 | features. All these functions are prefixed with a % character, but parameters |
|
376 | features. All these functions are prefixed with a % character, but parameters | |
377 | are given without parentheses or quotes. |
|
377 | are given without parentheses or quotes. | |
378 |
|
378 | |||
379 | NOTE: If you have 'automagic' enabled (via the command line option or with the |
|
379 | NOTE: If you have 'automagic' enabled (via the command line option or with the | |
380 | %automagic function), you don't need to type in the % explicitly. By default, |
|
380 | %automagic function), you don't need to type in the % explicitly. By default, | |
381 | IPython ships with automagic on, so you should only rarely need the % escape. |
|
381 | IPython ships with automagic on, so you should only rarely need the % escape. | |
382 |
|
382 | |||
383 | Example: typing '%cd mydir' (without the quotes) changes you working directory |
|
383 | Example: typing '%cd mydir' (without the quotes) changes you working directory | |
384 | to 'mydir', if it exists. |
|
384 | to 'mydir', if it exists. | |
385 |
|
385 | |||
386 | You can define your own magic functions to extend the system. See the supplied |
|
386 | You can define your own magic functions to extend the system. See the supplied | |
387 | ipythonrc and example-magic.py files for details (in your ipython |
|
387 | ipythonrc and example-magic.py files for details (in your ipython | |
388 | configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere). |
|
388 | configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere). | |
389 |
|
389 | |||
390 | You can also define your own aliased names for magic functions. In your |
|
390 | You can also define your own aliased names for magic functions. In your | |
391 | ipythonrc file, placing a line like: |
|
391 | ipythonrc file, placing a line like: | |
392 |
|
392 | |||
393 | execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile |
|
393 | execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile | |
394 |
|
394 | |||
395 | will define %pf as a new name for %profile. |
|
395 | will define %pf as a new name for %profile. | |
396 |
|
396 | |||
397 | You can also call magics in code using the magic() function, which IPython |
|
397 | You can also call magics in code using the magic() function, which IPython | |
398 | automatically adds to the builtin namespace. Type 'magic?' for details. |
|
398 | automatically adds to the builtin namespace. Type 'magic?' for details. | |
399 |
|
399 | |||
400 | For a list of the available magic functions, use %lsmagic. For a description |
|
400 | For a list of the available magic functions, use %lsmagic. For a description | |
401 | of any of them, type %magic_name?, e.g. '%cd?'. |
|
401 | of any of them, type %magic_name?, e.g. '%cd?'. | |
402 |
|
402 | |||
403 | Currently the magic system has the following functions:\n""" |
|
403 | Currently the magic system has the following functions:\n""" | |
404 |
|
404 | |||
405 | mesc = ESC_MAGIC |
|
405 | mesc = ESC_MAGIC | |
406 | outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):" |
|
406 | outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):" | |
407 | "\n\n%s%s\n\n%s" % (outmsg, |
|
407 | "\n\n%s%s\n\n%s" % (outmsg, | |
408 | magic_docs,mesc,mesc, |
|
408 | magic_docs,mesc,mesc, | |
409 | (' '+mesc).join(self.lsmagic()), |
|
409 | (' '+mesc).join(self.lsmagic()), | |
410 | Magic.auto_status[self.shell.automagic] ) ) |
|
410 | Magic.auto_status[self.shell.automagic] ) ) | |
411 | page.page(outmsg) |
|
411 | page.page(outmsg) | |
412 |
|
412 | |||
413 | def magic_automagic(self, parameter_s = ''): |
|
413 | def magic_automagic(self, parameter_s = ''): | |
414 | """Make magic functions callable without having to type the initial %. |
|
414 | """Make magic functions callable without having to type the initial %. | |
415 |
|
415 | |||
416 | Without argumentsl toggles on/off (when off, you must call it as |
|
416 | Without argumentsl toggles on/off (when off, you must call it as | |
417 | %automagic, of course). With arguments it sets the value, and you can |
|
417 | %automagic, of course). With arguments it sets the value, and you can | |
418 | use any of (case insensitive): |
|
418 | use any of (case insensitive): | |
419 |
|
419 | |||
420 | - on,1,True: to activate |
|
420 | - on,1,True: to activate | |
421 |
|
421 | |||
422 | - off,0,False: to deactivate. |
|
422 | - off,0,False: to deactivate. | |
423 |
|
423 | |||
424 | Note that magic functions have lowest priority, so if there's a |
|
424 | Note that magic functions have lowest priority, so if there's a | |
425 | variable whose name collides with that of a magic fn, automagic won't |
|
425 | variable whose name collides with that of a magic fn, automagic won't | |
426 | work for that function (you get the variable instead). However, if you |
|
426 | work for that function (you get the variable instead). However, if you | |
427 | delete the variable (del var), the previously shadowed magic function |
|
427 | delete the variable (del var), the previously shadowed magic function | |
428 | becomes visible to automagic again.""" |
|
428 | becomes visible to automagic again.""" | |
429 |
|
429 | |||
430 | arg = parameter_s.lower() |
|
430 | arg = parameter_s.lower() | |
431 | if parameter_s in ('on','1','true'): |
|
431 | if parameter_s in ('on','1','true'): | |
432 | self.shell.automagic = True |
|
432 | self.shell.automagic = True | |
433 | elif parameter_s in ('off','0','false'): |
|
433 | elif parameter_s in ('off','0','false'): | |
434 | self.shell.automagic = False |
|
434 | self.shell.automagic = False | |
435 | else: |
|
435 | else: | |
436 | self.shell.automagic = not self.shell.automagic |
|
436 | self.shell.automagic = not self.shell.automagic | |
437 | print '\n' + Magic.auto_status[self.shell.automagic] |
|
437 | print '\n' + Magic.auto_status[self.shell.automagic] | |
438 |
|
438 | |||
439 | @testdec.skip_doctest |
|
439 | @testdec.skip_doctest | |
440 | def magic_autocall(self, parameter_s = ''): |
|
440 | def magic_autocall(self, parameter_s = ''): | |
441 | """Make functions callable without having to type parentheses. |
|
441 | """Make functions callable without having to type parentheses. | |
442 |
|
442 | |||
443 | Usage: |
|
443 | Usage: | |
444 |
|
444 | |||
445 | %autocall [mode] |
|
445 | %autocall [mode] | |
446 |
|
446 | |||
447 | The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the |
|
447 | The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the | |
448 | value is toggled on and off (remembering the previous state). |
|
448 | value is toggled on and off (remembering the previous state). | |
449 |
|
449 | |||
450 | In more detail, these values mean: |
|
450 | In more detail, these values mean: | |
451 |
|
451 | |||
452 | 0 -> fully disabled |
|
452 | 0 -> fully disabled | |
453 |
|
453 | |||
454 | 1 -> active, but do not apply if there are no arguments on the line. |
|
454 | 1 -> active, but do not apply if there are no arguments on the line. | |
455 |
|
455 | |||
456 | In this mode, you get: |
|
456 | In this mode, you get: | |
457 |
|
457 | |||
458 | In [1]: callable |
|
458 | In [1]: callable | |
459 | Out[1]: <built-in function callable> |
|
459 | Out[1]: <built-in function callable> | |
460 |
|
460 | |||
461 | In [2]: callable 'hello' |
|
461 | In [2]: callable 'hello' | |
462 | ------> callable('hello') |
|
462 | ------> callable('hello') | |
463 | Out[2]: False |
|
463 | Out[2]: False | |
464 |
|
464 | |||
465 | 2 -> Active always. Even if no arguments are present, the callable |
|
465 | 2 -> Active always. Even if no arguments are present, the callable | |
466 | object is called: |
|
466 | object is called: | |
467 |
|
467 | |||
468 | In [2]: float |
|
468 | In [2]: float | |
469 | ------> float() |
|
469 | ------> float() | |
470 | Out[2]: 0.0 |
|
470 | Out[2]: 0.0 | |
471 |
|
471 | |||
472 | Note that even with autocall off, you can still use '/' at the start of |
|
472 | Note that even with autocall off, you can still use '/' at the start of | |
473 | a line to treat the first argument on the command line as a function |
|
473 | a line to treat the first argument on the command line as a function | |
474 | and add parentheses to it: |
|
474 | and add parentheses to it: | |
475 |
|
475 | |||
476 | In [8]: /str 43 |
|
476 | In [8]: /str 43 | |
477 | ------> str(43) |
|
477 | ------> str(43) | |
478 | Out[8]: '43' |
|
478 | Out[8]: '43' | |
479 |
|
479 | |||
480 | # all-random (note for auto-testing) |
|
480 | # all-random (note for auto-testing) | |
481 | """ |
|
481 | """ | |
482 |
|
482 | |||
483 | if parameter_s: |
|
483 | if parameter_s: | |
484 | arg = int(parameter_s) |
|
484 | arg = int(parameter_s) | |
485 | else: |
|
485 | else: | |
486 | arg = 'toggle' |
|
486 | arg = 'toggle' | |
487 |
|
487 | |||
488 | if not arg in (0,1,2,'toggle'): |
|
488 | if not arg in (0,1,2,'toggle'): | |
489 | error('Valid modes: (0->Off, 1->Smart, 2->Full') |
|
489 | error('Valid modes: (0->Off, 1->Smart, 2->Full') | |
490 | return |
|
490 | return | |
491 |
|
491 | |||
492 | if arg in (0,1,2): |
|
492 | if arg in (0,1,2): | |
493 | self.shell.autocall = arg |
|
493 | self.shell.autocall = arg | |
494 | else: # toggle |
|
494 | else: # toggle | |
495 | if self.shell.autocall: |
|
495 | if self.shell.autocall: | |
496 | self._magic_state.autocall_save = self.shell.autocall |
|
496 | self._magic_state.autocall_save = self.shell.autocall | |
497 | self.shell.autocall = 0 |
|
497 | self.shell.autocall = 0 | |
498 | else: |
|
498 | else: | |
499 | try: |
|
499 | try: | |
500 | self.shell.autocall = self._magic_state.autocall_save |
|
500 | self.shell.autocall = self._magic_state.autocall_save | |
501 | except AttributeError: |
|
501 | except AttributeError: | |
502 | self.shell.autocall = self._magic_state.autocall_save = 1 |
|
502 | self.shell.autocall = self._magic_state.autocall_save = 1 | |
503 |
|
503 | |||
504 | print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall] |
|
504 | print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall] | |
505 |
|
505 | |||
506 |
|
506 | |||
507 | def magic_page(self, parameter_s=''): |
|
507 | def magic_page(self, parameter_s=''): | |
508 | """Pretty print the object and display it through a pager. |
|
508 | """Pretty print the object and display it through a pager. | |
509 |
|
509 | |||
510 | %page [options] OBJECT |
|
510 | %page [options] OBJECT | |
511 |
|
511 | |||
512 | If no object is given, use _ (last output). |
|
512 | If no object is given, use _ (last output). | |
513 |
|
513 | |||
514 | Options: |
|
514 | Options: | |
515 |
|
515 | |||
516 | -r: page str(object), don't pretty-print it.""" |
|
516 | -r: page str(object), don't pretty-print it.""" | |
517 |
|
517 | |||
518 | # After a function contributed by Olivier Aubert, slightly modified. |
|
518 | # After a function contributed by Olivier Aubert, slightly modified. | |
519 |
|
519 | |||
520 | # Process options/args |
|
520 | # Process options/args | |
521 | opts,args = self.parse_options(parameter_s,'r') |
|
521 | opts,args = self.parse_options(parameter_s,'r') | |
522 | raw = 'r' in opts |
|
522 | raw = 'r' in opts | |
523 |
|
523 | |||
524 | oname = args and args or '_' |
|
524 | oname = args and args or '_' | |
525 | info = self._ofind(oname) |
|
525 | info = self._ofind(oname) | |
526 | if info['found']: |
|
526 | if info['found']: | |
527 | txt = (raw and str or pformat)( info['obj'] ) |
|
527 | txt = (raw and str or pformat)( info['obj'] ) | |
528 | page.page(txt) |
|
528 | page.page(txt) | |
529 | else: |
|
529 | else: | |
530 | print 'Object `%s` not found' % oname |
|
530 | print 'Object `%s` not found' % oname | |
531 |
|
531 | |||
532 | def magic_profile(self, parameter_s=''): |
|
532 | def magic_profile(self, parameter_s=''): | |
533 | """Print your currently active IPython profile.""" |
|
533 | """Print your currently active IPython profile.""" | |
534 | if self.shell.profile: |
|
534 | if self.shell.profile: | |
535 | printpl('Current IPython profile: $self.shell.profile.') |
|
535 | printpl('Current IPython profile: $self.shell.profile.') | |
536 | else: |
|
536 | else: | |
537 | print 'No profile active.' |
|
537 | print 'No profile active.' | |
538 |
|
538 | |||
539 | def magic_pinfo(self, parameter_s='', namespaces=None): |
|
539 | def magic_pinfo(self, parameter_s='', namespaces=None): | |
540 | """Provide detailed information about an object. |
|
540 | """Provide detailed information about an object. | |
541 |
|
541 | |||
542 | '%pinfo object' is just a synonym for object? or ?object.""" |
|
542 | '%pinfo object' is just a synonym for object? or ?object.""" | |
543 |
|
543 | |||
544 | #print 'pinfo par: <%s>' % parameter_s # dbg |
|
544 | #print 'pinfo par: <%s>' % parameter_s # dbg | |
545 |
|
545 | |||
546 |
|
546 | |||
547 | # detail_level: 0 -> obj? , 1 -> obj?? |
|
547 | # detail_level: 0 -> obj? , 1 -> obj?? | |
548 | detail_level = 0 |
|
548 | detail_level = 0 | |
549 | # We need to detect if we got called as 'pinfo pinfo foo', which can |
|
549 | # We need to detect if we got called as 'pinfo pinfo foo', which can | |
550 | # happen if the user types 'pinfo foo?' at the cmd line. |
|
550 | # happen if the user types 'pinfo foo?' at the cmd line. | |
551 | pinfo,qmark1,oname,qmark2 = \ |
|
551 | pinfo,qmark1,oname,qmark2 = \ | |
552 | re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups() |
|
552 | re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups() | |
553 | if pinfo or qmark1 or qmark2: |
|
553 | if pinfo or qmark1 or qmark2: | |
554 | detail_level = 1 |
|
554 | detail_level = 1 | |
555 | if "*" in oname: |
|
555 | if "*" in oname: | |
556 | self.magic_psearch(oname) |
|
556 | self.magic_psearch(oname) | |
557 | else: |
|
557 | else: | |
558 | self.shell._inspect('pinfo', oname, detail_level=detail_level, |
|
558 | self.shell._inspect('pinfo', oname, detail_level=detail_level, | |
559 | namespaces=namespaces) |
|
559 | namespaces=namespaces) | |
560 |
|
560 | |||
561 | def magic_pinfo2(self, parameter_s='', namespaces=None): |
|
561 | def magic_pinfo2(self, parameter_s='', namespaces=None): | |
562 | """Provide extra detailed information about an object. |
|
562 | """Provide extra detailed information about an object. | |
563 |
|
563 | |||
564 | '%pinfo2 object' is just a synonym for object?? or ??object.""" |
|
564 | '%pinfo2 object' is just a synonym for object?? or ??object.""" | |
565 | self.shell._inspect('pinfo', parameter_s, detail_level=1, |
|
565 | self.shell._inspect('pinfo', parameter_s, detail_level=1, | |
566 | namespaces=namespaces) |
|
566 | namespaces=namespaces) | |
567 |
|
567 | |||
568 | @testdec.skip_doctest |
|
568 | @testdec.skip_doctest | |
569 | def magic_pdef(self, parameter_s='', namespaces=None): |
|
569 | def magic_pdef(self, parameter_s='', namespaces=None): | |
570 | """Print the definition header for any callable object. |
|
570 | """Print the definition header for any callable object. | |
571 |
|
571 | |||
572 | If the object is a class, print the constructor information. |
|
572 | If the object is a class, print the constructor information. | |
573 |
|
573 | |||
574 | Examples |
|
574 | Examples | |
575 | -------- |
|
575 | -------- | |
576 | :: |
|
576 | :: | |
577 |
|
577 | |||
578 | In [3]: %pdef urllib.urlopen |
|
578 | In [3]: %pdef urllib.urlopen | |
579 | urllib.urlopen(url, data=None, proxies=None) |
|
579 | urllib.urlopen(url, data=None, proxies=None) | |
580 | """ |
|
580 | """ | |
581 | self._inspect('pdef',parameter_s, namespaces) |
|
581 | self._inspect('pdef',parameter_s, namespaces) | |
582 |
|
582 | |||
583 | def magic_pdoc(self, parameter_s='', namespaces=None): |
|
583 | def magic_pdoc(self, parameter_s='', namespaces=None): | |
584 | """Print the docstring for an object. |
|
584 | """Print the docstring for an object. | |
585 |
|
585 | |||
586 | If the given object is a class, it will print both the class and the |
|
586 | If the given object is a class, it will print both the class and the | |
587 | constructor docstrings.""" |
|
587 | constructor docstrings.""" | |
588 | self._inspect('pdoc',parameter_s, namespaces) |
|
588 | self._inspect('pdoc',parameter_s, namespaces) | |
589 |
|
589 | |||
590 | def magic_psource(self, parameter_s='', namespaces=None): |
|
590 | def magic_psource(self, parameter_s='', namespaces=None): | |
591 | """Print (or run through pager) the source code for an object.""" |
|
591 | """Print (or run through pager) the source code for an object.""" | |
592 | self._inspect('psource',parameter_s, namespaces) |
|
592 | self._inspect('psource',parameter_s, namespaces) | |
593 |
|
593 | |||
594 | def magic_pfile(self, parameter_s=''): |
|
594 | def magic_pfile(self, parameter_s=''): | |
595 | """Print (or run through pager) the file where an object is defined. |
|
595 | """Print (or run through pager) the file where an object is defined. | |
596 |
|
596 | |||
597 | The file opens at the line where the object definition begins. IPython |
|
597 | The file opens at the line where the object definition begins. IPython | |
598 | will honor the environment variable PAGER if set, and otherwise will |
|
598 | will honor the environment variable PAGER if set, and otherwise will | |
599 | do its best to print the file in a convenient form. |
|
599 | do its best to print the file in a convenient form. | |
600 |
|
600 | |||
601 | If the given argument is not an object currently defined, IPython will |
|
601 | If the given argument is not an object currently defined, IPython will | |
602 | try to interpret it as a filename (automatically adding a .py extension |
|
602 | try to interpret it as a filename (automatically adding a .py extension | |
603 | if needed). You can thus use %pfile as a syntax highlighting code |
|
603 | if needed). You can thus use %pfile as a syntax highlighting code | |
604 | viewer.""" |
|
604 | viewer.""" | |
605 |
|
605 | |||
606 | # first interpret argument as an object name |
|
606 | # first interpret argument as an object name | |
607 | out = self._inspect('pfile',parameter_s) |
|
607 | out = self._inspect('pfile',parameter_s) | |
608 | # if not, try the input as a filename |
|
608 | # if not, try the input as a filename | |
609 | if out == 'not found': |
|
609 | if out == 'not found': | |
610 | try: |
|
610 | try: | |
611 | filename = get_py_filename(parameter_s) |
|
611 | filename = get_py_filename(parameter_s) | |
612 | except IOError,msg: |
|
612 | except IOError,msg: | |
613 | print msg |
|
613 | print msg | |
614 | return |
|
614 | return | |
615 | page.page(self.shell.inspector.format(file(filename).read())) |
|
615 | page.page(self.shell.inspector.format(file(filename).read())) | |
616 |
|
616 | |||
617 | def magic_psearch(self, parameter_s=''): |
|
617 | def magic_psearch(self, parameter_s=''): | |
618 | """Search for object in namespaces by wildcard. |
|
618 | """Search for object in namespaces by wildcard. | |
619 |
|
619 | |||
620 | %psearch [options] PATTERN [OBJECT TYPE] |
|
620 | %psearch [options] PATTERN [OBJECT TYPE] | |
621 |
|
621 | |||
622 | Note: ? can be used as a synonym for %psearch, at the beginning or at |
|
622 | Note: ? can be used as a synonym for %psearch, at the beginning or at | |
623 | the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the |
|
623 | the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the | |
624 | rest of the command line must be unchanged (options come first), so |
|
624 | rest of the command line must be unchanged (options come first), so | |
625 | for example the following forms are equivalent |
|
625 | for example the following forms are equivalent | |
626 |
|
626 | |||
627 | %psearch -i a* function |
|
627 | %psearch -i a* function | |
628 | -i a* function? |
|
628 | -i a* function? | |
629 | ?-i a* function |
|
629 | ?-i a* function | |
630 |
|
630 | |||
631 | Arguments: |
|
631 | Arguments: | |
632 |
|
632 | |||
633 | PATTERN |
|
633 | PATTERN | |
634 |
|
634 | |||
635 | where PATTERN is a string containing * as a wildcard similar to its |
|
635 | where PATTERN is a string containing * as a wildcard similar to its | |
636 | use in a shell. The pattern is matched in all namespaces on the |
|
636 | use in a shell. The pattern is matched in all namespaces on the | |
637 | search path. By default objects starting with a single _ are not |
|
637 | search path. By default objects starting with a single _ are not | |
638 | matched, many IPython generated objects have a single |
|
638 | matched, many IPython generated objects have a single | |
639 | underscore. The default is case insensitive matching. Matching is |
|
639 | underscore. The default is case insensitive matching. Matching is | |
640 | also done on the attributes of objects and not only on the objects |
|
640 | also done on the attributes of objects and not only on the objects | |
641 | in a module. |
|
641 | in a module. | |
642 |
|
642 | |||
643 | [OBJECT TYPE] |
|
643 | [OBJECT TYPE] | |
644 |
|
644 | |||
645 | Is the name of a python type from the types module. The name is |
|
645 | Is the name of a python type from the types module. The name is | |
646 | given in lowercase without the ending type, ex. StringType is |
|
646 | given in lowercase without the ending type, ex. StringType is | |
647 | written string. By adding a type here only objects matching the |
|
647 | written string. By adding a type here only objects matching the | |
648 | given type are matched. Using all here makes the pattern match all |
|
648 | given type are matched. Using all here makes the pattern match all | |
649 | types (this is the default). |
|
649 | types (this is the default). | |
650 |
|
650 | |||
651 | Options: |
|
651 | Options: | |
652 |
|
652 | |||
653 | -a: makes the pattern match even objects whose names start with a |
|
653 | -a: makes the pattern match even objects whose names start with a | |
654 | single underscore. These names are normally ommitted from the |
|
654 | single underscore. These names are normally ommitted from the | |
655 | search. |
|
655 | search. | |
656 |
|
656 | |||
657 | -i/-c: make the pattern case insensitive/sensitive. If neither of |
|
657 | -i/-c: make the pattern case insensitive/sensitive. If neither of | |
658 | these options is given, the default is read from your ipythonrc |
|
658 | these options is given, the default is read from your ipythonrc | |
659 | file. The option name which sets this value is |
|
659 | file. The option name which sets this value is | |
660 | 'wildcards_case_sensitive'. If this option is not specified in your |
|
660 | 'wildcards_case_sensitive'. If this option is not specified in your | |
661 | ipythonrc file, IPython's internal default is to do a case sensitive |
|
661 | ipythonrc file, IPython's internal default is to do a case sensitive | |
662 | search. |
|
662 | search. | |
663 |
|
663 | |||
664 | -e/-s NAMESPACE: exclude/search a given namespace. The pattern you |
|
664 | -e/-s NAMESPACE: exclude/search a given namespace. The pattern you | |
665 | specifiy can be searched in any of the following namespaces: |
|
665 | specifiy can be searched in any of the following namespaces: | |
666 | 'builtin', 'user', 'user_global','internal', 'alias', where |
|
666 | 'builtin', 'user', 'user_global','internal', 'alias', where | |
667 | 'builtin' and 'user' are the search defaults. Note that you should |
|
667 | 'builtin' and 'user' are the search defaults. Note that you should | |
668 | not use quotes when specifying namespaces. |
|
668 | not use quotes when specifying namespaces. | |
669 |
|
669 | |||
670 | 'Builtin' contains the python module builtin, 'user' contains all |
|
670 | 'Builtin' contains the python module builtin, 'user' contains all | |
671 | user data, 'alias' only contain the shell aliases and no python |
|
671 | user data, 'alias' only contain the shell aliases and no python | |
672 | objects, 'internal' contains objects used by IPython. The |
|
672 | objects, 'internal' contains objects used by IPython. The | |
673 | 'user_global' namespace is only used by embedded IPython instances, |
|
673 | 'user_global' namespace is only used by embedded IPython instances, | |
674 | and it contains module-level globals. You can add namespaces to the |
|
674 | and it contains module-level globals. You can add namespaces to the | |
675 | search with -s or exclude them with -e (these options can be given |
|
675 | search with -s or exclude them with -e (these options can be given | |
676 | more than once). |
|
676 | more than once). | |
677 |
|
677 | |||
678 | Examples: |
|
678 | Examples: | |
679 |
|
679 | |||
680 | %psearch a* -> objects beginning with an a |
|
680 | %psearch a* -> objects beginning with an a | |
681 | %psearch -e builtin a* -> objects NOT in the builtin space starting in a |
|
681 | %psearch -e builtin a* -> objects NOT in the builtin space starting in a | |
682 | %psearch a* function -> all functions beginning with an a |
|
682 | %psearch a* function -> all functions beginning with an a | |
683 | %psearch re.e* -> objects beginning with an e in module re |
|
683 | %psearch re.e* -> objects beginning with an e in module re | |
684 | %psearch r*.e* -> objects that start with e in modules starting in r |
|
684 | %psearch r*.e* -> objects that start with e in modules starting in r | |
685 | %psearch r*.* string -> all strings in modules beginning with r |
|
685 | %psearch r*.* string -> all strings in modules beginning with r | |
686 |
|
686 | |||
687 | Case sensitve search: |
|
687 | Case sensitve search: | |
688 |
|
688 | |||
689 | %psearch -c a* list all object beginning with lower case a |
|
689 | %psearch -c a* list all object beginning with lower case a | |
690 |
|
690 | |||
691 | Show objects beginning with a single _: |
|
691 | Show objects beginning with a single _: | |
692 |
|
692 | |||
693 | %psearch -a _* list objects beginning with a single underscore""" |
|
693 | %psearch -a _* list objects beginning with a single underscore""" | |
694 | try: |
|
694 | try: | |
695 | parameter_s = parameter_s.encode('ascii') |
|
695 | parameter_s = parameter_s.encode('ascii') | |
696 | except UnicodeEncodeError: |
|
696 | except UnicodeEncodeError: | |
697 | print 'Python identifiers can only contain ascii characters.' |
|
697 | print 'Python identifiers can only contain ascii characters.' | |
698 | return |
|
698 | return | |
699 |
|
699 | |||
700 | # default namespaces to be searched |
|
700 | # default namespaces to be searched | |
701 | def_search = ['user','builtin'] |
|
701 | def_search = ['user','builtin'] | |
702 |
|
702 | |||
703 | # Process options/args |
|
703 | # Process options/args | |
704 | opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True) |
|
704 | opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True) | |
705 | opt = opts.get |
|
705 | opt = opts.get | |
706 | shell = self.shell |
|
706 | shell = self.shell | |
707 | psearch = shell.inspector.psearch |
|
707 | psearch = shell.inspector.psearch | |
708 |
|
708 | |||
709 | # select case options |
|
709 | # select case options | |
710 | if opts.has_key('i'): |
|
710 | if opts.has_key('i'): | |
711 | ignore_case = True |
|
711 | ignore_case = True | |
712 | elif opts.has_key('c'): |
|
712 | elif opts.has_key('c'): | |
713 | ignore_case = False |
|
713 | ignore_case = False | |
714 | else: |
|
714 | else: | |
715 | ignore_case = not shell.wildcards_case_sensitive |
|
715 | ignore_case = not shell.wildcards_case_sensitive | |
716 |
|
716 | |||
717 | # Build list of namespaces to search from user options |
|
717 | # Build list of namespaces to search from user options | |
718 | def_search.extend(opt('s',[])) |
|
718 | def_search.extend(opt('s',[])) | |
719 | ns_exclude = ns_exclude=opt('e',[]) |
|
719 | ns_exclude = ns_exclude=opt('e',[]) | |
720 | ns_search = [nm for nm in def_search if nm not in ns_exclude] |
|
720 | ns_search = [nm for nm in def_search if nm not in ns_exclude] | |
721 |
|
721 | |||
722 | # Call the actual search |
|
722 | # Call the actual search | |
723 | try: |
|
723 | try: | |
724 | psearch(args,shell.ns_table,ns_search, |
|
724 | psearch(args,shell.ns_table,ns_search, | |
725 | show_all=opt('a'),ignore_case=ignore_case) |
|
725 | show_all=opt('a'),ignore_case=ignore_case) | |
726 | except: |
|
726 | except: | |
727 | shell.showtraceback() |
|
727 | shell.showtraceback() | |
728 |
|
728 | |||
729 | @testdec.skip_doctest |
|
729 | @testdec.skip_doctest | |
730 | def magic_who_ls(self, parameter_s=''): |
|
730 | def magic_who_ls(self, parameter_s=''): | |
731 | """Return a sorted list of all interactive variables. |
|
731 | """Return a sorted list of all interactive variables. | |
732 |
|
732 | |||
733 | If arguments are given, only variables of types matching these |
|
733 | If arguments are given, only variables of types matching these | |
734 | arguments are returned. |
|
734 | arguments are returned. | |
735 |
|
735 | |||
736 | Examples |
|
736 | Examples | |
737 | -------- |
|
737 | -------- | |
738 |
|
738 | |||
739 | Define two variables and list them with who_ls:: |
|
739 | Define two variables and list them with who_ls:: | |
740 |
|
740 | |||
741 | In [1]: alpha = 123 |
|
741 | In [1]: alpha = 123 | |
742 |
|
742 | |||
743 | In [2]: beta = 'test' |
|
743 | In [2]: beta = 'test' | |
744 |
|
744 | |||
745 | In [3]: %who_ls |
|
745 | In [3]: %who_ls | |
746 | Out[3]: ['alpha', 'beta'] |
|
746 | Out[3]: ['alpha', 'beta'] | |
747 |
|
747 | |||
748 | In [4]: %who_ls int |
|
748 | In [4]: %who_ls int | |
749 | Out[4]: ['alpha'] |
|
749 | Out[4]: ['alpha'] | |
750 |
|
750 | |||
751 | In [5]: %who_ls str |
|
751 | In [5]: %who_ls str | |
752 | Out[5]: ['beta'] |
|
752 | Out[5]: ['beta'] | |
753 | """ |
|
753 | """ | |
754 |
|
754 | |||
755 | user_ns = self.shell.user_ns |
|
755 | user_ns = self.shell.user_ns | |
756 | internal_ns = self.shell.internal_ns |
|
756 | internal_ns = self.shell.internal_ns | |
757 | user_ns_hidden = self.shell.user_ns_hidden |
|
757 | user_ns_hidden = self.shell.user_ns_hidden | |
758 | out = [ i for i in user_ns |
|
758 | out = [ i for i in user_ns | |
759 | if not i.startswith('_') \ |
|
759 | if not i.startswith('_') \ | |
760 | and not (i in internal_ns or i in user_ns_hidden) ] |
|
760 | and not (i in internal_ns or i in user_ns_hidden) ] | |
761 |
|
761 | |||
762 | typelist = parameter_s.split() |
|
762 | typelist = parameter_s.split() | |
763 | if typelist: |
|
763 | if typelist: | |
764 | typeset = set(typelist) |
|
764 | typeset = set(typelist) | |
765 | out = [i for i in out if type(user_ns[i]).__name__ in typeset] |
|
765 | out = [i for i in out if type(user_ns[i]).__name__ in typeset] | |
766 |
|
766 | |||
767 | out.sort() |
|
767 | out.sort() | |
768 | return out |
|
768 | return out | |
769 |
|
769 | |||
770 | @testdec.skip_doctest |
|
770 | @testdec.skip_doctest | |
771 | def magic_who(self, parameter_s=''): |
|
771 | def magic_who(self, parameter_s=''): | |
772 | """Print all interactive variables, with some minimal formatting. |
|
772 | """Print all interactive variables, with some minimal formatting. | |
773 |
|
773 | |||
774 | If any arguments are given, only variables whose type matches one of |
|
774 | If any arguments are given, only variables whose type matches one of | |
775 | these are printed. For example: |
|
775 | these are printed. For example: | |
776 |
|
776 | |||
777 | %who function str |
|
777 | %who function str | |
778 |
|
778 | |||
779 | will only list functions and strings, excluding all other types of |
|
779 | will only list functions and strings, excluding all other types of | |
780 | variables. To find the proper type names, simply use type(var) at a |
|
780 | variables. To find the proper type names, simply use type(var) at a | |
781 | command line to see how python prints type names. For example: |
|
781 | command line to see how python prints type names. For example: | |
782 |
|
782 | |||
783 | In [1]: type('hello')\\ |
|
783 | In [1]: type('hello')\\ | |
784 | Out[1]: <type 'str'> |
|
784 | Out[1]: <type 'str'> | |
785 |
|
785 | |||
786 | indicates that the type name for strings is 'str'. |
|
786 | indicates that the type name for strings is 'str'. | |
787 |
|
787 | |||
788 | %who always excludes executed names loaded through your configuration |
|
788 | %who always excludes executed names loaded through your configuration | |
789 | file and things which are internal to IPython. |
|
789 | file and things which are internal to IPython. | |
790 |
|
790 | |||
791 | This is deliberate, as typically you may load many modules and the |
|
791 | This is deliberate, as typically you may load many modules and the | |
792 | purpose of %who is to show you only what you've manually defined. |
|
792 | purpose of %who is to show you only what you've manually defined. | |
793 |
|
793 | |||
794 | Examples |
|
794 | Examples | |
795 | -------- |
|
795 | -------- | |
796 |
|
796 | |||
797 | Define two variables and list them with who:: |
|
797 | Define two variables and list them with who:: | |
798 |
|
798 | |||
799 | In [1]: alpha = 123 |
|
799 | In [1]: alpha = 123 | |
800 |
|
800 | |||
801 | In [2]: beta = 'test' |
|
801 | In [2]: beta = 'test' | |
802 |
|
802 | |||
803 | In [3]: %who |
|
803 | In [3]: %who | |
804 | alpha beta |
|
804 | alpha beta | |
805 |
|
805 | |||
806 | In [4]: %who int |
|
806 | In [4]: %who int | |
807 | alpha |
|
807 | alpha | |
808 |
|
808 | |||
809 | In [5]: %who str |
|
809 | In [5]: %who str | |
810 | beta |
|
810 | beta | |
811 | """ |
|
811 | """ | |
812 |
|
812 | |||
813 | varlist = self.magic_who_ls(parameter_s) |
|
813 | varlist = self.magic_who_ls(parameter_s) | |
814 | if not varlist: |
|
814 | if not varlist: | |
815 | if parameter_s: |
|
815 | if parameter_s: | |
816 | print 'No variables match your requested type.' |
|
816 | print 'No variables match your requested type.' | |
817 | else: |
|
817 | else: | |
818 | print 'Interactive namespace is empty.' |
|
818 | print 'Interactive namespace is empty.' | |
819 | return |
|
819 | return | |
820 |
|
820 | |||
821 | # if we have variables, move on... |
|
821 | # if we have variables, move on... | |
822 | count = 0 |
|
822 | count = 0 | |
823 | for i in varlist: |
|
823 | for i in varlist: | |
824 | print i+'\t', |
|
824 | print i+'\t', | |
825 | count += 1 |
|
825 | count += 1 | |
826 | if count > 8: |
|
826 | if count > 8: | |
827 | count = 0 |
|
827 | count = 0 | |
828 |
|
828 | |||
829 |
|
829 | |||
830 |
|
830 | |||
831 | @testdec.skip_doctest |
|
831 | @testdec.skip_doctest | |
832 | def magic_whos(self, parameter_s=''): |
|
832 | def magic_whos(self, parameter_s=''): | |
833 | """Like %who, but gives some extra information about each variable. |
|
833 | """Like %who, but gives some extra information about each variable. | |
834 |
|
834 | |||
835 | The same type filtering of %who can be applied here. |
|
835 | The same type filtering of %who can be applied here. | |
836 |
|
836 | |||
837 | For all variables, the type is printed. Additionally it prints: |
|
837 | For all variables, the type is printed. Additionally it prints: | |
838 |
|
838 | |||
839 | - For {},[],(): their length. |
|
839 | - For {},[],(): their length. | |
840 |
|
840 | |||
841 | - For numpy arrays, a summary with shape, number of |
|
841 | - For numpy arrays, a summary with shape, number of | |
842 | elements, typecode and size in memory. |
|
842 | elements, typecode and size in memory. | |
843 |
|
843 | |||
844 | - Everything else: a string representation, snipping their middle if |
|
844 | - Everything else: a string representation, snipping their middle if | |
845 | too long. |
|
845 | too long. | |
846 |
|
846 | |||
847 | Examples |
|
847 | Examples | |
848 | -------- |
|
848 | -------- | |
849 |
|
849 | |||
850 | Define two variables and list them with whos:: |
|
850 | Define two variables and list them with whos:: | |
851 |
|
851 | |||
852 | In [1]: alpha = 123 |
|
852 | In [1]: alpha = 123 | |
853 |
|
853 | |||
854 | In [2]: beta = 'test' |
|
854 | In [2]: beta = 'test' | |
855 |
|
855 | |||
856 | In [3]: %whos |
|
856 | In [3]: %whos | |
857 | Variable Type Data/Info |
|
857 | Variable Type Data/Info | |
858 | -------------------------------- |
|
858 | -------------------------------- | |
859 | alpha int 123 |
|
859 | alpha int 123 | |
860 | beta str test |
|
860 | beta str test | |
861 | """ |
|
861 | """ | |
862 |
|
862 | |||
863 | varnames = self.magic_who_ls(parameter_s) |
|
863 | varnames = self.magic_who_ls(parameter_s) | |
864 | if not varnames: |
|
864 | if not varnames: | |
865 | if parameter_s: |
|
865 | if parameter_s: | |
866 | print 'No variables match your requested type.' |
|
866 | print 'No variables match your requested type.' | |
867 | else: |
|
867 | else: | |
868 | print 'Interactive namespace is empty.' |
|
868 | print 'Interactive namespace is empty.' | |
869 | return |
|
869 | return | |
870 |
|
870 | |||
871 | # if we have variables, move on... |
|
871 | # if we have variables, move on... | |
872 |
|
872 | |||
873 | # for these types, show len() instead of data: |
|
873 | # for these types, show len() instead of data: | |
874 | seq_types = ['dict', 'list', 'tuple'] |
|
874 | seq_types = ['dict', 'list', 'tuple'] | |
875 |
|
875 | |||
876 | # for numpy/Numeric arrays, display summary info |
|
876 | # for numpy/Numeric arrays, display summary info | |
877 | try: |
|
877 | try: | |
878 | import numpy |
|
878 | import numpy | |
879 | except ImportError: |
|
879 | except ImportError: | |
880 | ndarray_type = None |
|
880 | ndarray_type = None | |
881 | else: |
|
881 | else: | |
882 | ndarray_type = numpy.ndarray.__name__ |
|
882 | ndarray_type = numpy.ndarray.__name__ | |
883 | try: |
|
883 | try: | |
884 | import Numeric |
|
884 | import Numeric | |
885 | except ImportError: |
|
885 | except ImportError: | |
886 | array_type = None |
|
886 | array_type = None | |
887 | else: |
|
887 | else: | |
888 | array_type = Numeric.ArrayType.__name__ |
|
888 | array_type = Numeric.ArrayType.__name__ | |
889 |
|
889 | |||
890 | # Find all variable names and types so we can figure out column sizes |
|
890 | # Find all variable names and types so we can figure out column sizes | |
891 | def get_vars(i): |
|
891 | def get_vars(i): | |
892 | return self.shell.user_ns[i] |
|
892 | return self.shell.user_ns[i] | |
893 |
|
893 | |||
894 | # some types are well known and can be shorter |
|
894 | # some types are well known and can be shorter | |
895 | abbrevs = {'IPython.core.macro.Macro' : 'Macro'} |
|
895 | abbrevs = {'IPython.core.macro.Macro' : 'Macro'} | |
896 | def type_name(v): |
|
896 | def type_name(v): | |
897 | tn = type(v).__name__ |
|
897 | tn = type(v).__name__ | |
898 | return abbrevs.get(tn,tn) |
|
898 | return abbrevs.get(tn,tn) | |
899 |
|
899 | |||
900 | varlist = map(get_vars,varnames) |
|
900 | varlist = map(get_vars,varnames) | |
901 |
|
901 | |||
902 | typelist = [] |
|
902 | typelist = [] | |
903 | for vv in varlist: |
|
903 | for vv in varlist: | |
904 | tt = type_name(vv) |
|
904 | tt = type_name(vv) | |
905 |
|
905 | |||
906 | if tt=='instance': |
|
906 | if tt=='instance': | |
907 | typelist.append( abbrevs.get(str(vv.__class__), |
|
907 | typelist.append( abbrevs.get(str(vv.__class__), | |
908 | str(vv.__class__))) |
|
908 | str(vv.__class__))) | |
909 | else: |
|
909 | else: | |
910 | typelist.append(tt) |
|
910 | typelist.append(tt) | |
911 |
|
911 | |||
912 | # column labels and # of spaces as separator |
|
912 | # column labels and # of spaces as separator | |
913 | varlabel = 'Variable' |
|
913 | varlabel = 'Variable' | |
914 | typelabel = 'Type' |
|
914 | typelabel = 'Type' | |
915 | datalabel = 'Data/Info' |
|
915 | datalabel = 'Data/Info' | |
916 | colsep = 3 |
|
916 | colsep = 3 | |
917 | # variable format strings |
|
917 | # variable format strings | |
918 | vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)" |
|
918 | vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)" | |
919 | vfmt_short = '$vstr[:25]<...>$vstr[-25:]' |
|
919 | vfmt_short = '$vstr[:25]<...>$vstr[-25:]' | |
920 | aformat = "%s: %s elems, type `%s`, %s bytes" |
|
920 | aformat = "%s: %s elems, type `%s`, %s bytes" | |
921 | # find the size of the columns to format the output nicely |
|
921 | # find the size of the columns to format the output nicely | |
922 | varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep |
|
922 | varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep | |
923 | typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep |
|
923 | typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep | |
924 | # table header |
|
924 | # table header | |
925 | print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \ |
|
925 | print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \ | |
926 | ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1) |
|
926 | ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1) | |
927 | # and the table itself |
|
927 | # and the table itself | |
928 | kb = 1024 |
|
928 | kb = 1024 | |
929 | Mb = 1048576 # kb**2 |
|
929 | Mb = 1048576 # kb**2 | |
930 | for vname,var,vtype in zip(varnames,varlist,typelist): |
|
930 | for vname,var,vtype in zip(varnames,varlist,typelist): | |
931 | print itpl(vformat), |
|
931 | print itpl(vformat), | |
932 | if vtype in seq_types: |
|
932 | if vtype in seq_types: | |
933 | print "n="+str(len(var)) |
|
933 | print "n="+str(len(var)) | |
934 | elif vtype in [array_type,ndarray_type]: |
|
934 | elif vtype in [array_type,ndarray_type]: | |
935 | vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1] |
|
935 | vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1] | |
936 | if vtype==ndarray_type: |
|
936 | if vtype==ndarray_type: | |
937 | # numpy |
|
937 | # numpy | |
938 | vsize = var.size |
|
938 | vsize = var.size | |
939 | vbytes = vsize*var.itemsize |
|
939 | vbytes = vsize*var.itemsize | |
940 | vdtype = var.dtype |
|
940 | vdtype = var.dtype | |
941 | else: |
|
941 | else: | |
942 | # Numeric |
|
942 | # Numeric | |
943 | vsize = Numeric.size(var) |
|
943 | vsize = Numeric.size(var) | |
944 | vbytes = vsize*var.itemsize() |
|
944 | vbytes = vsize*var.itemsize() | |
945 | vdtype = var.typecode() |
|
945 | vdtype = var.typecode() | |
946 |
|
946 | |||
947 | if vbytes < 100000: |
|
947 | if vbytes < 100000: | |
948 | print aformat % (vshape,vsize,vdtype,vbytes) |
|
948 | print aformat % (vshape,vsize,vdtype,vbytes) | |
949 | else: |
|
949 | else: | |
950 | print aformat % (vshape,vsize,vdtype,vbytes), |
|
950 | print aformat % (vshape,vsize,vdtype,vbytes), | |
951 | if vbytes < Mb: |
|
951 | if vbytes < Mb: | |
952 | print '(%s kb)' % (vbytes/kb,) |
|
952 | print '(%s kb)' % (vbytes/kb,) | |
953 | else: |
|
953 | else: | |
954 | print '(%s Mb)' % (vbytes/Mb,) |
|
954 | print '(%s Mb)' % (vbytes/Mb,) | |
955 | else: |
|
955 | else: | |
956 | try: |
|
956 | try: | |
957 | vstr = str(var) |
|
957 | vstr = str(var) | |
958 | except UnicodeEncodeError: |
|
958 | except UnicodeEncodeError: | |
959 | vstr = unicode(var).encode(sys.getdefaultencoding(), |
|
959 | vstr = unicode(var).encode(sys.getdefaultencoding(), | |
960 | 'backslashreplace') |
|
960 | 'backslashreplace') | |
961 | vstr = vstr.replace('\n','\\n') |
|
961 | vstr = vstr.replace('\n','\\n') | |
962 | if len(vstr) < 50: |
|
962 | if len(vstr) < 50: | |
963 | print vstr |
|
963 | print vstr | |
964 | else: |
|
964 | else: | |
965 | printpl(vfmt_short) |
|
965 | printpl(vfmt_short) | |
966 |
|
966 | |||
967 | def magic_reset(self, parameter_s=''): |
|
967 | def magic_reset(self, parameter_s=''): | |
968 | """Resets the namespace by removing all names defined by the user. |
|
968 | """Resets the namespace by removing all names defined by the user. | |
969 |
|
969 | |||
970 | Input/Output history are left around in case you need them. |
|
|||
971 |
|
||||
972 | Parameters |
|
970 | Parameters | |
973 | ---------- |
|
971 | ---------- | |
974 | -f : force reset without asking for confirmation. |
|
972 | -f : force reset without asking for confirmation. | |
975 |
|
973 | |||
|
974 | -s : 'Soft' reset: Only clears your namespace, leaving history intact. | |||
|
975 | References to objects may be kept. By default (without this option), | |||
|
976 | we do a 'hard' reset, giving you a new session and removing all | |||
|
977 | references to objects from the current session. | |||
|
978 | ||||
976 | Examples |
|
979 | Examples | |
977 | -------- |
|
980 | -------- | |
978 | In [6]: a = 1 |
|
981 | In [6]: a = 1 | |
979 |
|
982 | |||
980 | In [7]: a |
|
983 | In [7]: a | |
981 | Out[7]: 1 |
|
984 | Out[7]: 1 | |
982 |
|
985 | |||
983 | In [8]: 'a' in _ip.user_ns |
|
986 | In [8]: 'a' in _ip.user_ns | |
984 | Out[8]: True |
|
987 | Out[8]: True | |
985 |
|
988 | |||
986 | In [9]: %reset -f |
|
989 | In [9]: %reset -f | |
987 |
|
990 | |||
988 |
In [1 |
|
991 | In [1]: 'a' in _ip.user_ns | |
989 |
Out[1 |
|
992 | Out[1]: False | |
990 | """ |
|
993 | """ | |
991 |
|
994 | opts, args = self.parse_options(parameter_s,'sh') | ||
992 | if parameter_s == '-f': |
|
995 | if 'f' in opts: | |
993 | ans = True |
|
996 | ans = True | |
994 | else: |
|
997 | else: | |
995 | ans = self.shell.ask_yes_no( |
|
998 | ans = self.shell.ask_yes_no( | |
996 | "Once deleted, variables cannot be recovered. Proceed (y/[n])? ") |
|
999 | "Once deleted, variables cannot be recovered. Proceed (y/[n])? ") | |
997 | if not ans: |
|
1000 | if not ans: | |
998 | print 'Nothing done.' |
|
1001 | print 'Nothing done.' | |
999 | return |
|
1002 | return | |
1000 | user_ns = self.shell.user_ns |
|
1003 | ||
1001 | for i in self.magic_who_ls(): |
|
1004 | if 's' in opts: # Soft reset | |
1002 | del(user_ns[i]) |
|
1005 | user_ns = self.shell.user_ns | |
|
1006 | for i in self.magic_who_ls(): | |||
|
1007 | del(user_ns[i]) | |||
1003 |
|
1008 | |||
1004 | # Also flush the private list of module references kept for script |
|
1009 | else: # Hard reset | |
1005 | # execution protection |
|
1010 | self.shell.reset(new_session = True) | |
1006 | self.shell.clear_main_mod_cache() |
|
1011 | ||
|
1012 | ||||
1007 |
|
1013 | |||
1008 | def magic_reset_selective(self, parameter_s=''): |
|
1014 | def magic_reset_selective(self, parameter_s=''): | |
1009 | """Resets the namespace by removing names defined by the user. |
|
1015 | """Resets the namespace by removing names defined by the user. | |
1010 |
|
1016 | |||
1011 | Input/Output history are left around in case you need them. |
|
1017 | Input/Output history are left around in case you need them. | |
1012 |
|
1018 | |||
1013 | %reset_selective [-f] regex |
|
1019 | %reset_selective [-f] regex | |
1014 |
|
1020 | |||
1015 | No action is taken if regex is not included |
|
1021 | No action is taken if regex is not included | |
1016 |
|
1022 | |||
1017 | Options |
|
1023 | Options | |
1018 | -f : force reset without asking for confirmation. |
|
1024 | -f : force reset without asking for confirmation. | |
1019 |
|
1025 | |||
1020 | Examples |
|
1026 | Examples | |
1021 | -------- |
|
1027 | -------- | |
1022 |
|
1028 | |||
1023 | We first fully reset the namespace so your output looks identical to |
|
1029 | We first fully reset the namespace so your output looks identical to | |
1024 | this example for pedagogical reasons; in practice you do not need a |
|
1030 | this example for pedagogical reasons; in practice you do not need a | |
1025 | full reset. |
|
1031 | full reset. | |
1026 |
|
1032 | |||
1027 | In [1]: %reset -f |
|
1033 | In [1]: %reset -f | |
1028 |
|
1034 | |||
1029 | Now, with a clean namespace we can make a few variables and use |
|
1035 | Now, with a clean namespace we can make a few variables and use | |
1030 | %reset_selective to only delete names that match our regexp: |
|
1036 | %reset_selective to only delete names that match our regexp: | |
1031 |
|
1037 | |||
1032 | In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8 |
|
1038 | In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8 | |
1033 |
|
1039 | |||
1034 | In [3]: who_ls |
|
1040 | In [3]: who_ls | |
1035 | Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c'] |
|
1041 | Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c'] | |
1036 |
|
1042 | |||
1037 | In [4]: %reset_selective -f b[2-3]m |
|
1043 | In [4]: %reset_selective -f b[2-3]m | |
1038 |
|
1044 | |||
1039 | In [5]: who_ls |
|
1045 | In [5]: who_ls | |
1040 | Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c'] |
|
1046 | Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c'] | |
1041 |
|
1047 | |||
1042 | In [6]: %reset_selective -f d |
|
1048 | In [6]: %reset_selective -f d | |
1043 |
|
1049 | |||
1044 | In [7]: who_ls |
|
1050 | In [7]: who_ls | |
1045 | Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c'] |
|
1051 | Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c'] | |
1046 |
|
1052 | |||
1047 | In [8]: %reset_selective -f c |
|
1053 | In [8]: %reset_selective -f c | |
1048 |
|
1054 | |||
1049 | In [9]: who_ls |
|
1055 | In [9]: who_ls | |
1050 | Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m'] |
|
1056 | Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m'] | |
1051 |
|
1057 | |||
1052 | In [10]: %reset_selective -f b |
|
1058 | In [10]: %reset_selective -f b | |
1053 |
|
1059 | |||
1054 | In [11]: who_ls |
|
1060 | In [11]: who_ls | |
1055 | Out[11]: ['a'] |
|
1061 | Out[11]: ['a'] | |
1056 | """ |
|
1062 | """ | |
1057 |
|
1063 | |||
1058 | opts, regex = self.parse_options(parameter_s,'f') |
|
1064 | opts, regex = self.parse_options(parameter_s,'f') | |
1059 |
|
1065 | |||
1060 | if opts.has_key('f'): |
|
1066 | if opts.has_key('f'): | |
1061 | ans = True |
|
1067 | ans = True | |
1062 | else: |
|
1068 | else: | |
1063 | ans = self.shell.ask_yes_no( |
|
1069 | ans = self.shell.ask_yes_no( | |
1064 | "Once deleted, variables cannot be recovered. Proceed (y/[n])? ") |
|
1070 | "Once deleted, variables cannot be recovered. Proceed (y/[n])? ") | |
1065 | if not ans: |
|
1071 | if not ans: | |
1066 | print 'Nothing done.' |
|
1072 | print 'Nothing done.' | |
1067 | return |
|
1073 | return | |
1068 | user_ns = self.shell.user_ns |
|
1074 | user_ns = self.shell.user_ns | |
1069 | if not regex: |
|
1075 | if not regex: | |
1070 | print 'No regex pattern specified. Nothing done.' |
|
1076 | print 'No regex pattern specified. Nothing done.' | |
1071 | return |
|
1077 | return | |
1072 | else: |
|
1078 | else: | |
1073 | try: |
|
1079 | try: | |
1074 | m = re.compile(regex) |
|
1080 | m = re.compile(regex) | |
1075 | except TypeError: |
|
1081 | except TypeError: | |
1076 | raise TypeError('regex must be a string or compiled pattern') |
|
1082 | raise TypeError('regex must be a string or compiled pattern') | |
1077 | for i in self.magic_who_ls(): |
|
1083 | for i in self.magic_who_ls(): | |
1078 | if m.search(i): |
|
1084 | if m.search(i): | |
1079 | del(user_ns[i]) |
|
1085 | del(user_ns[i]) | |
1080 |
|
1086 | |||
1081 | def magic_logstart(self,parameter_s=''): |
|
1087 | def magic_logstart(self,parameter_s=''): | |
1082 | """Start logging anywhere in a session. |
|
1088 | """Start logging anywhere in a session. | |
1083 |
|
1089 | |||
1084 | %logstart [-o|-r|-t] [log_name [log_mode]] |
|
1090 | %logstart [-o|-r|-t] [log_name [log_mode]] | |
1085 |
|
1091 | |||
1086 | If no name is given, it defaults to a file named 'ipython_log.py' in your |
|
1092 | If no name is given, it defaults to a file named 'ipython_log.py' in your | |
1087 | current directory, in 'rotate' mode (see below). |
|
1093 | current directory, in 'rotate' mode (see below). | |
1088 |
|
1094 | |||
1089 | '%logstart name' saves to file 'name' in 'backup' mode. It saves your |
|
1095 | '%logstart name' saves to file 'name' in 'backup' mode. It saves your | |
1090 | history up to that point and then continues logging. |
|
1096 | history up to that point and then continues logging. | |
1091 |
|
1097 | |||
1092 | %logstart takes a second optional parameter: logging mode. This can be one |
|
1098 | %logstart takes a second optional parameter: logging mode. This can be one | |
1093 | of (note that the modes are given unquoted):\\ |
|
1099 | of (note that the modes are given unquoted):\\ | |
1094 | append: well, that says it.\\ |
|
1100 | append: well, that says it.\\ | |
1095 | backup: rename (if exists) to name~ and start name.\\ |
|
1101 | backup: rename (if exists) to name~ and start name.\\ | |
1096 | global: single logfile in your home dir, appended to.\\ |
|
1102 | global: single logfile in your home dir, appended to.\\ | |
1097 | over : overwrite existing log.\\ |
|
1103 | over : overwrite existing log.\\ | |
1098 | rotate: create rotating logs name.1~, name.2~, etc. |
|
1104 | rotate: create rotating logs name.1~, name.2~, etc. | |
1099 |
|
1105 | |||
1100 | Options: |
|
1106 | Options: | |
1101 |
|
1107 | |||
1102 | -o: log also IPython's output. In this mode, all commands which |
|
1108 | -o: log also IPython's output. In this mode, all commands which | |
1103 | generate an Out[NN] prompt are recorded to the logfile, right after |
|
1109 | generate an Out[NN] prompt are recorded to the logfile, right after | |
1104 | their corresponding input line. The output lines are always |
|
1110 | their corresponding input line. The output lines are always | |
1105 | prepended with a '#[Out]# ' marker, so that the log remains valid |
|
1111 | prepended with a '#[Out]# ' marker, so that the log remains valid | |
1106 | Python code. |
|
1112 | Python code. | |
1107 |
|
1113 | |||
1108 | Since this marker is always the same, filtering only the output from |
|
1114 | Since this marker is always the same, filtering only the output from | |
1109 | a log is very easy, using for example a simple awk call: |
|
1115 | a log is very easy, using for example a simple awk call: | |
1110 |
|
1116 | |||
1111 | awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py |
|
1117 | awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py | |
1112 |
|
1118 | |||
1113 | -r: log 'raw' input. Normally, IPython's logs contain the processed |
|
1119 | -r: log 'raw' input. Normally, IPython's logs contain the processed | |
1114 | input, so that user lines are logged in their final form, converted |
|
1120 | input, so that user lines are logged in their final form, converted | |
1115 | into valid Python. For example, %Exit is logged as |
|
1121 | into valid Python. For example, %Exit is logged as | |
1116 | '_ip.magic("Exit"). If the -r flag is given, all input is logged |
|
1122 | '_ip.magic("Exit"). If the -r flag is given, all input is logged | |
1117 | exactly as typed, with no transformations applied. |
|
1123 | exactly as typed, with no transformations applied. | |
1118 |
|
1124 | |||
1119 | -t: put timestamps before each input line logged (these are put in |
|
1125 | -t: put timestamps before each input line logged (these are put in | |
1120 | comments).""" |
|
1126 | comments).""" | |
1121 |
|
1127 | |||
1122 | opts,par = self.parse_options(parameter_s,'ort') |
|
1128 | opts,par = self.parse_options(parameter_s,'ort') | |
1123 | log_output = 'o' in opts |
|
1129 | log_output = 'o' in opts | |
1124 | log_raw_input = 'r' in opts |
|
1130 | log_raw_input = 'r' in opts | |
1125 | timestamp = 't' in opts |
|
1131 | timestamp = 't' in opts | |
1126 |
|
1132 | |||
1127 | logger = self.shell.logger |
|
1133 | logger = self.shell.logger | |
1128 |
|
1134 | |||
1129 | # if no args are given, the defaults set in the logger constructor by |
|
1135 | # if no args are given, the defaults set in the logger constructor by | |
1130 | # ipytohn remain valid |
|
1136 | # ipytohn remain valid | |
1131 | if par: |
|
1137 | if par: | |
1132 | try: |
|
1138 | try: | |
1133 | logfname,logmode = par.split() |
|
1139 | logfname,logmode = par.split() | |
1134 | except: |
|
1140 | except: | |
1135 | logfname = par |
|
1141 | logfname = par | |
1136 | logmode = 'backup' |
|
1142 | logmode = 'backup' | |
1137 | else: |
|
1143 | else: | |
1138 | logfname = logger.logfname |
|
1144 | logfname = logger.logfname | |
1139 | logmode = logger.logmode |
|
1145 | logmode = logger.logmode | |
1140 | # put logfname into rc struct as if it had been called on the command |
|
1146 | # put logfname into rc struct as if it had been called on the command | |
1141 | # line, so it ends up saved in the log header Save it in case we need |
|
1147 | # line, so it ends up saved in the log header Save it in case we need | |
1142 | # to restore it... |
|
1148 | # to restore it... | |
1143 | old_logfile = self.shell.logfile |
|
1149 | old_logfile = self.shell.logfile | |
1144 | if logfname: |
|
1150 | if logfname: | |
1145 | logfname = os.path.expanduser(logfname) |
|
1151 | logfname = os.path.expanduser(logfname) | |
1146 | self.shell.logfile = logfname |
|
1152 | self.shell.logfile = logfname | |
1147 |
|
1153 | |||
1148 | loghead = '# IPython log file\n\n' |
|
1154 | loghead = '# IPython log file\n\n' | |
1149 | try: |
|
1155 | try: | |
1150 | started = logger.logstart(logfname,loghead,logmode, |
|
1156 | started = logger.logstart(logfname,loghead,logmode, | |
1151 | log_output,timestamp,log_raw_input) |
|
1157 | log_output,timestamp,log_raw_input) | |
1152 | except: |
|
1158 | except: | |
1153 | self.shell.logfile = old_logfile |
|
1159 | self.shell.logfile = old_logfile | |
1154 | warn("Couldn't start log: %s" % sys.exc_info()[1]) |
|
1160 | warn("Couldn't start log: %s" % sys.exc_info()[1]) | |
1155 | else: |
|
1161 | else: | |
1156 | # log input history up to this point, optionally interleaving |
|
1162 | # log input history up to this point, optionally interleaving | |
1157 | # output if requested |
|
1163 | # output if requested | |
1158 |
|
1164 | |||
1159 | if timestamp: |
|
1165 | if timestamp: | |
1160 | # disable timestamping for the previous history, since we've |
|
1166 | # disable timestamping for the previous history, since we've | |
1161 | # lost those already (no time machine here). |
|
1167 | # lost those already (no time machine here). | |
1162 | logger.timestamp = False |
|
1168 | logger.timestamp = False | |
1163 |
|
1169 | |||
1164 | if log_raw_input: |
|
1170 | if log_raw_input: | |
1165 | input_hist = self.shell.history_manager.input_hist_raw |
|
1171 | input_hist = self.shell.history_manager.input_hist_raw | |
1166 | else: |
|
1172 | else: | |
1167 | input_hist = self.shell.history_manager.input_hist_parsed |
|
1173 | input_hist = self.shell.history_manager.input_hist_parsed | |
1168 |
|
1174 | |||
1169 | if log_output: |
|
1175 | if log_output: | |
1170 | log_write = logger.log_write |
|
1176 | log_write = logger.log_write | |
1171 | output_hist = self.shell.history_manager.output_hist |
|
1177 | output_hist = self.shell.history_manager.output_hist | |
1172 | for n in range(1,len(input_hist)-1): |
|
1178 | for n in range(1,len(input_hist)-1): | |
1173 | log_write(input_hist[n].rstrip()) |
|
1179 | log_write(input_hist[n].rstrip()) | |
1174 | if n in output_hist: |
|
1180 | if n in output_hist: | |
1175 | log_write(repr(output_hist[n]),'output') |
|
1181 | log_write(repr(output_hist[n]),'output') | |
1176 | else: |
|
1182 | else: | |
1177 | logger.log_write(''.join(input_hist[1:])) |
|
1183 | logger.log_write(''.join(input_hist[1:])) | |
1178 | if timestamp: |
|
1184 | if timestamp: | |
1179 | # re-enable timestamping |
|
1185 | # re-enable timestamping | |
1180 | logger.timestamp = True |
|
1186 | logger.timestamp = True | |
1181 |
|
1187 | |||
1182 | print ('Activating auto-logging. ' |
|
1188 | print ('Activating auto-logging. ' | |
1183 | 'Current session state plus future input saved.') |
|
1189 | 'Current session state plus future input saved.') | |
1184 | logger.logstate() |
|
1190 | logger.logstate() | |
1185 |
|
1191 | |||
1186 | def magic_logstop(self,parameter_s=''): |
|
1192 | def magic_logstop(self,parameter_s=''): | |
1187 | """Fully stop logging and close log file. |
|
1193 | """Fully stop logging and close log file. | |
1188 |
|
1194 | |||
1189 | In order to start logging again, a new %logstart call needs to be made, |
|
1195 | In order to start logging again, a new %logstart call needs to be made, | |
1190 | possibly (though not necessarily) with a new filename, mode and other |
|
1196 | possibly (though not necessarily) with a new filename, mode and other | |
1191 | options.""" |
|
1197 | options.""" | |
1192 | self.logger.logstop() |
|
1198 | self.logger.logstop() | |
1193 |
|
1199 | |||
1194 | def magic_logoff(self,parameter_s=''): |
|
1200 | def magic_logoff(self,parameter_s=''): | |
1195 | """Temporarily stop logging. |
|
1201 | """Temporarily stop logging. | |
1196 |
|
1202 | |||
1197 | You must have previously started logging.""" |
|
1203 | You must have previously started logging.""" | |
1198 | self.shell.logger.switch_log(0) |
|
1204 | self.shell.logger.switch_log(0) | |
1199 |
|
1205 | |||
1200 | def magic_logon(self,parameter_s=''): |
|
1206 | def magic_logon(self,parameter_s=''): | |
1201 | """Restart logging. |
|
1207 | """Restart logging. | |
1202 |
|
1208 | |||
1203 | This function is for restarting logging which you've temporarily |
|
1209 | This function is for restarting logging which you've temporarily | |
1204 | stopped with %logoff. For starting logging for the first time, you |
|
1210 | stopped with %logoff. For starting logging for the first time, you | |
1205 | must use the %logstart function, which allows you to specify an |
|
1211 | must use the %logstart function, which allows you to specify an | |
1206 | optional log filename.""" |
|
1212 | optional log filename.""" | |
1207 |
|
1213 | |||
1208 | self.shell.logger.switch_log(1) |
|
1214 | self.shell.logger.switch_log(1) | |
1209 |
|
1215 | |||
1210 | def magic_logstate(self,parameter_s=''): |
|
1216 | def magic_logstate(self,parameter_s=''): | |
1211 | """Print the status of the logging system.""" |
|
1217 | """Print the status of the logging system.""" | |
1212 |
|
1218 | |||
1213 | self.shell.logger.logstate() |
|
1219 | self.shell.logger.logstate() | |
1214 |
|
1220 | |||
1215 | def magic_pdb(self, parameter_s=''): |
|
1221 | def magic_pdb(self, parameter_s=''): | |
1216 | """Control the automatic calling of the pdb interactive debugger. |
|
1222 | """Control the automatic calling of the pdb interactive debugger. | |
1217 |
|
1223 | |||
1218 | Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without |
|
1224 | Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without | |
1219 | argument it works as a toggle. |
|
1225 | argument it works as a toggle. | |
1220 |
|
1226 | |||
1221 | When an exception is triggered, IPython can optionally call the |
|
1227 | When an exception is triggered, IPython can optionally call the | |
1222 | interactive pdb debugger after the traceback printout. %pdb toggles |
|
1228 | interactive pdb debugger after the traceback printout. %pdb toggles | |
1223 | this feature on and off. |
|
1229 | this feature on and off. | |
1224 |
|
1230 | |||
1225 | The initial state of this feature is set in your ipythonrc |
|
1231 | The initial state of this feature is set in your ipythonrc | |
1226 | configuration file (the variable is called 'pdb'). |
|
1232 | configuration file (the variable is called 'pdb'). | |
1227 |
|
1233 | |||
1228 | If you want to just activate the debugger AFTER an exception has fired, |
|
1234 | If you want to just activate the debugger AFTER an exception has fired, | |
1229 | without having to type '%pdb on' and rerunning your code, you can use |
|
1235 | without having to type '%pdb on' and rerunning your code, you can use | |
1230 | the %debug magic.""" |
|
1236 | the %debug magic.""" | |
1231 |
|
1237 | |||
1232 | par = parameter_s.strip().lower() |
|
1238 | par = parameter_s.strip().lower() | |
1233 |
|
1239 | |||
1234 | if par: |
|
1240 | if par: | |
1235 | try: |
|
1241 | try: | |
1236 | new_pdb = {'off':0,'0':0,'on':1,'1':1}[par] |
|
1242 | new_pdb = {'off':0,'0':0,'on':1,'1':1}[par] | |
1237 | except KeyError: |
|
1243 | except KeyError: | |
1238 | print ('Incorrect argument. Use on/1, off/0, ' |
|
1244 | print ('Incorrect argument. Use on/1, off/0, ' | |
1239 | 'or nothing for a toggle.') |
|
1245 | 'or nothing for a toggle.') | |
1240 | return |
|
1246 | return | |
1241 | else: |
|
1247 | else: | |
1242 | # toggle |
|
1248 | # toggle | |
1243 | new_pdb = not self.shell.call_pdb |
|
1249 | new_pdb = not self.shell.call_pdb | |
1244 |
|
1250 | |||
1245 | # set on the shell |
|
1251 | # set on the shell | |
1246 | self.shell.call_pdb = new_pdb |
|
1252 | self.shell.call_pdb = new_pdb | |
1247 | print 'Automatic pdb calling has been turned',on_off(new_pdb) |
|
1253 | print 'Automatic pdb calling has been turned',on_off(new_pdb) | |
1248 |
|
1254 | |||
1249 | def magic_debug(self, parameter_s=''): |
|
1255 | def magic_debug(self, parameter_s=''): | |
1250 | """Activate the interactive debugger in post-mortem mode. |
|
1256 | """Activate the interactive debugger in post-mortem mode. | |
1251 |
|
1257 | |||
1252 | If an exception has just occurred, this lets you inspect its stack |
|
1258 | If an exception has just occurred, this lets you inspect its stack | |
1253 | frames interactively. Note that this will always work only on the last |
|
1259 | frames interactively. Note that this will always work only on the last | |
1254 | traceback that occurred, so you must call this quickly after an |
|
1260 | traceback that occurred, so you must call this quickly after an | |
1255 | exception that you wish to inspect has fired, because if another one |
|
1261 | exception that you wish to inspect has fired, because if another one | |
1256 | occurs, it clobbers the previous one. |
|
1262 | occurs, it clobbers the previous one. | |
1257 |
|
1263 | |||
1258 | If you want IPython to automatically do this on every exception, see |
|
1264 | If you want IPython to automatically do this on every exception, see | |
1259 | the %pdb magic for more details. |
|
1265 | the %pdb magic for more details. | |
1260 | """ |
|
1266 | """ | |
1261 | self.shell.debugger(force=True) |
|
1267 | self.shell.debugger(force=True) | |
1262 |
|
1268 | |||
1263 | @testdec.skip_doctest |
|
1269 | @testdec.skip_doctest | |
1264 | def magic_prun(self, parameter_s ='',user_mode=1, |
|
1270 | def magic_prun(self, parameter_s ='',user_mode=1, | |
1265 | opts=None,arg_lst=None,prog_ns=None): |
|
1271 | opts=None,arg_lst=None,prog_ns=None): | |
1266 |
|
1272 | |||
1267 | """Run a statement through the python code profiler. |
|
1273 | """Run a statement through the python code profiler. | |
1268 |
|
1274 | |||
1269 | Usage: |
|
1275 | Usage: | |
1270 | %prun [options] statement |
|
1276 | %prun [options] statement | |
1271 |
|
1277 | |||
1272 | The given statement (which doesn't require quote marks) is run via the |
|
1278 | The given statement (which doesn't require quote marks) is run via the | |
1273 | python profiler in a manner similar to the profile.run() function. |
|
1279 | python profiler in a manner similar to the profile.run() function. | |
1274 | Namespaces are internally managed to work correctly; profile.run |
|
1280 | Namespaces are internally managed to work correctly; profile.run | |
1275 | cannot be used in IPython because it makes certain assumptions about |
|
1281 | cannot be used in IPython because it makes certain assumptions about | |
1276 | namespaces which do not hold under IPython. |
|
1282 | namespaces which do not hold under IPython. | |
1277 |
|
1283 | |||
1278 | Options: |
|
1284 | Options: | |
1279 |
|
1285 | |||
1280 | -l <limit>: you can place restrictions on what or how much of the |
|
1286 | -l <limit>: you can place restrictions on what or how much of the | |
1281 | profile gets printed. The limit value can be: |
|
1287 | profile gets printed. The limit value can be: | |
1282 |
|
1288 | |||
1283 | * A string: only information for function names containing this string |
|
1289 | * A string: only information for function names containing this string | |
1284 | is printed. |
|
1290 | is printed. | |
1285 |
|
1291 | |||
1286 | * An integer: only these many lines are printed. |
|
1292 | * An integer: only these many lines are printed. | |
1287 |
|
1293 | |||
1288 | * A float (between 0 and 1): this fraction of the report is printed |
|
1294 | * A float (between 0 and 1): this fraction of the report is printed | |
1289 | (for example, use a limit of 0.4 to see the topmost 40% only). |
|
1295 | (for example, use a limit of 0.4 to see the topmost 40% only). | |
1290 |
|
1296 | |||
1291 | You can combine several limits with repeated use of the option. For |
|
1297 | You can combine several limits with repeated use of the option. For | |
1292 | example, '-l __init__ -l 5' will print only the topmost 5 lines of |
|
1298 | example, '-l __init__ -l 5' will print only the topmost 5 lines of | |
1293 | information about class constructors. |
|
1299 | information about class constructors. | |
1294 |
|
1300 | |||
1295 | -r: return the pstats.Stats object generated by the profiling. This |
|
1301 | -r: return the pstats.Stats object generated by the profiling. This | |
1296 | object has all the information about the profile in it, and you can |
|
1302 | object has all the information about the profile in it, and you can | |
1297 | later use it for further analysis or in other functions. |
|
1303 | later use it for further analysis or in other functions. | |
1298 |
|
1304 | |||
1299 | -s <key>: sort profile by given key. You can provide more than one key |
|
1305 | -s <key>: sort profile by given key. You can provide more than one key | |
1300 | by using the option several times: '-s key1 -s key2 -s key3...'. The |
|
1306 | by using the option several times: '-s key1 -s key2 -s key3...'. The | |
1301 | default sorting key is 'time'. |
|
1307 | default sorting key is 'time'. | |
1302 |
|
1308 | |||
1303 | The following is copied verbatim from the profile documentation |
|
1309 | The following is copied verbatim from the profile documentation | |
1304 | referenced below: |
|
1310 | referenced below: | |
1305 |
|
1311 | |||
1306 | When more than one key is provided, additional keys are used as |
|
1312 | When more than one key is provided, additional keys are used as | |
1307 | secondary criteria when the there is equality in all keys selected |
|
1313 | secondary criteria when the there is equality in all keys selected | |
1308 | before them. |
|
1314 | before them. | |
1309 |
|
1315 | |||
1310 | Abbreviations can be used for any key names, as long as the |
|
1316 | Abbreviations can be used for any key names, as long as the | |
1311 | abbreviation is unambiguous. The following are the keys currently |
|
1317 | abbreviation is unambiguous. The following are the keys currently | |
1312 | defined: |
|
1318 | defined: | |
1313 |
|
1319 | |||
1314 | Valid Arg Meaning |
|
1320 | Valid Arg Meaning | |
1315 | "calls" call count |
|
1321 | "calls" call count | |
1316 | "cumulative" cumulative time |
|
1322 | "cumulative" cumulative time | |
1317 | "file" file name |
|
1323 | "file" file name | |
1318 | "module" file name |
|
1324 | "module" file name | |
1319 | "pcalls" primitive call count |
|
1325 | "pcalls" primitive call count | |
1320 | "line" line number |
|
1326 | "line" line number | |
1321 | "name" function name |
|
1327 | "name" function name | |
1322 | "nfl" name/file/line |
|
1328 | "nfl" name/file/line | |
1323 | "stdname" standard name |
|
1329 | "stdname" standard name | |
1324 | "time" internal time |
|
1330 | "time" internal time | |
1325 |
|
1331 | |||
1326 | Note that all sorts on statistics are in descending order (placing |
|
1332 | Note that all sorts on statistics are in descending order (placing | |
1327 | most time consuming items first), where as name, file, and line number |
|
1333 | most time consuming items first), where as name, file, and line number | |
1328 | searches are in ascending order (i.e., alphabetical). The subtle |
|
1334 | searches are in ascending order (i.e., alphabetical). The subtle | |
1329 | distinction between "nfl" and "stdname" is that the standard name is a |
|
1335 | distinction between "nfl" and "stdname" is that the standard name is a | |
1330 | sort of the name as printed, which means that the embedded line |
|
1336 | sort of the name as printed, which means that the embedded line | |
1331 | numbers get compared in an odd way. For example, lines 3, 20, and 40 |
|
1337 | numbers get compared in an odd way. For example, lines 3, 20, and 40 | |
1332 | would (if the file names were the same) appear in the string order |
|
1338 | would (if the file names were the same) appear in the string order | |
1333 | "20" "3" and "40". In contrast, "nfl" does a numeric compare of the |
|
1339 | "20" "3" and "40". In contrast, "nfl" does a numeric compare of the | |
1334 | line numbers. In fact, sort_stats("nfl") is the same as |
|
1340 | line numbers. In fact, sort_stats("nfl") is the same as | |
1335 | sort_stats("name", "file", "line"). |
|
1341 | sort_stats("name", "file", "line"). | |
1336 |
|
1342 | |||
1337 | -T <filename>: save profile results as shown on screen to a text |
|
1343 | -T <filename>: save profile results as shown on screen to a text | |
1338 | file. The profile is still shown on screen. |
|
1344 | file. The profile is still shown on screen. | |
1339 |
|
1345 | |||
1340 | -D <filename>: save (via dump_stats) profile statistics to given |
|
1346 | -D <filename>: save (via dump_stats) profile statistics to given | |
1341 | filename. This data is in a format understod by the pstats module, and |
|
1347 | filename. This data is in a format understod by the pstats module, and | |
1342 | is generated by a call to the dump_stats() method of profile |
|
1348 | is generated by a call to the dump_stats() method of profile | |
1343 | objects. The profile is still shown on screen. |
|
1349 | objects. The profile is still shown on screen. | |
1344 |
|
1350 | |||
1345 | If you want to run complete programs under the profiler's control, use |
|
1351 | If you want to run complete programs under the profiler's control, use | |
1346 | '%run -p [prof_opts] filename.py [args to program]' where prof_opts |
|
1352 | '%run -p [prof_opts] filename.py [args to program]' where prof_opts | |
1347 | contains profiler specific options as described here. |
|
1353 | contains profiler specific options as described here. | |
1348 |
|
1354 | |||
1349 | You can read the complete documentation for the profile module with:: |
|
1355 | You can read the complete documentation for the profile module with:: | |
1350 |
|
1356 | |||
1351 | In [1]: import profile; profile.help() |
|
1357 | In [1]: import profile; profile.help() | |
1352 | """ |
|
1358 | """ | |
1353 |
|
1359 | |||
1354 | opts_def = Struct(D=[''],l=[],s=['time'],T=['']) |
|
1360 | opts_def = Struct(D=[''],l=[],s=['time'],T=['']) | |
1355 | # protect user quote marks |
|
1361 | # protect user quote marks | |
1356 | parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'") |
|
1362 | parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'") | |
1357 |
|
1363 | |||
1358 | if user_mode: # regular user call |
|
1364 | if user_mode: # regular user call | |
1359 | opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:', |
|
1365 | opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:', | |
1360 | list_all=1) |
|
1366 | list_all=1) | |
1361 | namespace = self.shell.user_ns |
|
1367 | namespace = self.shell.user_ns | |
1362 | else: # called to run a program by %run -p |
|
1368 | else: # called to run a program by %run -p | |
1363 | try: |
|
1369 | try: | |
1364 | filename = get_py_filename(arg_lst[0]) |
|
1370 | filename = get_py_filename(arg_lst[0]) | |
1365 | except IOError,msg: |
|
1371 | except IOError,msg: | |
1366 | error(msg) |
|
1372 | error(msg) | |
1367 | return |
|
1373 | return | |
1368 |
|
1374 | |||
1369 | arg_str = 'execfile(filename,prog_ns)' |
|
1375 | arg_str = 'execfile(filename,prog_ns)' | |
1370 | namespace = locals() |
|
1376 | namespace = locals() | |
1371 |
|
1377 | |||
1372 | opts.merge(opts_def) |
|
1378 | opts.merge(opts_def) | |
1373 |
|
1379 | |||
1374 | prof = profile.Profile() |
|
1380 | prof = profile.Profile() | |
1375 | try: |
|
1381 | try: | |
1376 | prof = prof.runctx(arg_str,namespace,namespace) |
|
1382 | prof = prof.runctx(arg_str,namespace,namespace) | |
1377 | sys_exit = '' |
|
1383 | sys_exit = '' | |
1378 | except SystemExit: |
|
1384 | except SystemExit: | |
1379 | sys_exit = """*** SystemExit exception caught in code being profiled.""" |
|
1385 | sys_exit = """*** SystemExit exception caught in code being profiled.""" | |
1380 |
|
1386 | |||
1381 | stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s) |
|
1387 | stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s) | |
1382 |
|
1388 | |||
1383 | lims = opts.l |
|
1389 | lims = opts.l | |
1384 | if lims: |
|
1390 | if lims: | |
1385 | lims = [] # rebuild lims with ints/floats/strings |
|
1391 | lims = [] # rebuild lims with ints/floats/strings | |
1386 | for lim in opts.l: |
|
1392 | for lim in opts.l: | |
1387 | try: |
|
1393 | try: | |
1388 | lims.append(int(lim)) |
|
1394 | lims.append(int(lim)) | |
1389 | except ValueError: |
|
1395 | except ValueError: | |
1390 | try: |
|
1396 | try: | |
1391 | lims.append(float(lim)) |
|
1397 | lims.append(float(lim)) | |
1392 | except ValueError: |
|
1398 | except ValueError: | |
1393 | lims.append(lim) |
|
1399 | lims.append(lim) | |
1394 |
|
1400 | |||
1395 | # Trap output. |
|
1401 | # Trap output. | |
1396 | stdout_trap = StringIO() |
|
1402 | stdout_trap = StringIO() | |
1397 |
|
1403 | |||
1398 | if hasattr(stats,'stream'): |
|
1404 | if hasattr(stats,'stream'): | |
1399 | # In newer versions of python, the stats object has a 'stream' |
|
1405 | # In newer versions of python, the stats object has a 'stream' | |
1400 | # attribute to write into. |
|
1406 | # attribute to write into. | |
1401 | stats.stream = stdout_trap |
|
1407 | stats.stream = stdout_trap | |
1402 | stats.print_stats(*lims) |
|
1408 | stats.print_stats(*lims) | |
1403 | else: |
|
1409 | else: | |
1404 | # For older versions, we manually redirect stdout during printing |
|
1410 | # For older versions, we manually redirect stdout during printing | |
1405 | sys_stdout = sys.stdout |
|
1411 | sys_stdout = sys.stdout | |
1406 | try: |
|
1412 | try: | |
1407 | sys.stdout = stdout_trap |
|
1413 | sys.stdout = stdout_trap | |
1408 | stats.print_stats(*lims) |
|
1414 | stats.print_stats(*lims) | |
1409 | finally: |
|
1415 | finally: | |
1410 | sys.stdout = sys_stdout |
|
1416 | sys.stdout = sys_stdout | |
1411 |
|
1417 | |||
1412 | output = stdout_trap.getvalue() |
|
1418 | output = stdout_trap.getvalue() | |
1413 | output = output.rstrip() |
|
1419 | output = output.rstrip() | |
1414 |
|
1420 | |||
1415 | page.page(output) |
|
1421 | page.page(output) | |
1416 | print sys_exit, |
|
1422 | print sys_exit, | |
1417 |
|
1423 | |||
1418 | dump_file = opts.D[0] |
|
1424 | dump_file = opts.D[0] | |
1419 | text_file = opts.T[0] |
|
1425 | text_file = opts.T[0] | |
1420 | if dump_file: |
|
1426 | if dump_file: | |
1421 | prof.dump_stats(dump_file) |
|
1427 | prof.dump_stats(dump_file) | |
1422 | print '\n*** Profile stats marshalled to file',\ |
|
1428 | print '\n*** Profile stats marshalled to file',\ | |
1423 | `dump_file`+'.',sys_exit |
|
1429 | `dump_file`+'.',sys_exit | |
1424 | if text_file: |
|
1430 | if text_file: | |
1425 | pfile = file(text_file,'w') |
|
1431 | pfile = file(text_file,'w') | |
1426 | pfile.write(output) |
|
1432 | pfile.write(output) | |
1427 | pfile.close() |
|
1433 | pfile.close() | |
1428 | print '\n*** Profile printout saved to text file',\ |
|
1434 | print '\n*** Profile printout saved to text file',\ | |
1429 | `text_file`+'.',sys_exit |
|
1435 | `text_file`+'.',sys_exit | |
1430 |
|
1436 | |||
1431 | if opts.has_key('r'): |
|
1437 | if opts.has_key('r'): | |
1432 | return stats |
|
1438 | return stats | |
1433 | else: |
|
1439 | else: | |
1434 | return None |
|
1440 | return None | |
1435 |
|
1441 | |||
1436 | @testdec.skip_doctest |
|
1442 | @testdec.skip_doctest | |
1437 | def magic_run(self, parameter_s ='',runner=None, |
|
1443 | def magic_run(self, parameter_s ='',runner=None, | |
1438 | file_finder=get_py_filename): |
|
1444 | file_finder=get_py_filename): | |
1439 | """Run the named file inside IPython as a program. |
|
1445 | """Run the named file inside IPython as a program. | |
1440 |
|
1446 | |||
1441 | Usage:\\ |
|
1447 | Usage:\\ | |
1442 | %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args] |
|
1448 | %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args] | |
1443 |
|
1449 | |||
1444 | Parameters after the filename are passed as command-line arguments to |
|
1450 | Parameters after the filename are passed as command-line arguments to | |
1445 | the program (put in sys.argv). Then, control returns to IPython's |
|
1451 | the program (put in sys.argv). Then, control returns to IPython's | |
1446 | prompt. |
|
1452 | prompt. | |
1447 |
|
1453 | |||
1448 | This is similar to running at a system prompt:\\ |
|
1454 | This is similar to running at a system prompt:\\ | |
1449 | $ python file args\\ |
|
1455 | $ python file args\\ | |
1450 | but with the advantage of giving you IPython's tracebacks, and of |
|
1456 | but with the advantage of giving you IPython's tracebacks, and of | |
1451 | loading all variables into your interactive namespace for further use |
|
1457 | loading all variables into your interactive namespace for further use | |
1452 | (unless -p is used, see below). |
|
1458 | (unless -p is used, see below). | |
1453 |
|
1459 | |||
1454 | The file is executed in a namespace initially consisting only of |
|
1460 | The file is executed in a namespace initially consisting only of | |
1455 | __name__=='__main__' and sys.argv constructed as indicated. It thus |
|
1461 | __name__=='__main__' and sys.argv constructed as indicated. It thus | |
1456 | sees its environment as if it were being run as a stand-alone program |
|
1462 | sees its environment as if it were being run as a stand-alone program | |
1457 | (except for sharing global objects such as previously imported |
|
1463 | (except for sharing global objects such as previously imported | |
1458 | modules). But after execution, the IPython interactive namespace gets |
|
1464 | modules). But after execution, the IPython interactive namespace gets | |
1459 | updated with all variables defined in the program (except for __name__ |
|
1465 | updated with all variables defined in the program (except for __name__ | |
1460 | and sys.argv). This allows for very convenient loading of code for |
|
1466 | and sys.argv). This allows for very convenient loading of code for | |
1461 | interactive work, while giving each program a 'clean sheet' to run in. |
|
1467 | interactive work, while giving each program a 'clean sheet' to run in. | |
1462 |
|
1468 | |||
1463 | Options: |
|
1469 | Options: | |
1464 |
|
1470 | |||
1465 | -n: __name__ is NOT set to '__main__', but to the running file's name |
|
1471 | -n: __name__ is NOT set to '__main__', but to the running file's name | |
1466 | without extension (as python does under import). This allows running |
|
1472 | without extension (as python does under import). This allows running | |
1467 | scripts and reloading the definitions in them without calling code |
|
1473 | scripts and reloading the definitions in them without calling code | |
1468 | protected by an ' if __name__ == "__main__" ' clause. |
|
1474 | protected by an ' if __name__ == "__main__" ' clause. | |
1469 |
|
1475 | |||
1470 | -i: run the file in IPython's namespace instead of an empty one. This |
|
1476 | -i: run the file in IPython's namespace instead of an empty one. This | |
1471 | is useful if you are experimenting with code written in a text editor |
|
1477 | is useful if you are experimenting with code written in a text editor | |
1472 | which depends on variables defined interactively. |
|
1478 | which depends on variables defined interactively. | |
1473 |
|
1479 | |||
1474 | -e: ignore sys.exit() calls or SystemExit exceptions in the script |
|
1480 | -e: ignore sys.exit() calls or SystemExit exceptions in the script | |
1475 | being run. This is particularly useful if IPython is being used to |
|
1481 | being run. This is particularly useful if IPython is being used to | |
1476 | run unittests, which always exit with a sys.exit() call. In such |
|
1482 | run unittests, which always exit with a sys.exit() call. In such | |
1477 | cases you are interested in the output of the test results, not in |
|
1483 | cases you are interested in the output of the test results, not in | |
1478 | seeing a traceback of the unittest module. |
|
1484 | seeing a traceback of the unittest module. | |
1479 |
|
1485 | |||
1480 | -t: print timing information at the end of the run. IPython will give |
|
1486 | -t: print timing information at the end of the run. IPython will give | |
1481 | you an estimated CPU time consumption for your script, which under |
|
1487 | you an estimated CPU time consumption for your script, which under | |
1482 | Unix uses the resource module to avoid the wraparound problems of |
|
1488 | Unix uses the resource module to avoid the wraparound problems of | |
1483 | time.clock(). Under Unix, an estimate of time spent on system tasks |
|
1489 | time.clock(). Under Unix, an estimate of time spent on system tasks | |
1484 | is also given (for Windows platforms this is reported as 0.0). |
|
1490 | is also given (for Windows platforms this is reported as 0.0). | |
1485 |
|
1491 | |||
1486 | If -t is given, an additional -N<N> option can be given, where <N> |
|
1492 | If -t is given, an additional -N<N> option can be given, where <N> | |
1487 | must be an integer indicating how many times you want the script to |
|
1493 | must be an integer indicating how many times you want the script to | |
1488 | run. The final timing report will include total and per run results. |
|
1494 | run. The final timing report will include total and per run results. | |
1489 |
|
1495 | |||
1490 | For example (testing the script uniq_stable.py): |
|
1496 | For example (testing the script uniq_stable.py): | |
1491 |
|
1497 | |||
1492 | In [1]: run -t uniq_stable |
|
1498 | In [1]: run -t uniq_stable | |
1493 |
|
1499 | |||
1494 | IPython CPU timings (estimated):\\ |
|
1500 | IPython CPU timings (estimated):\\ | |
1495 | User : 0.19597 s.\\ |
|
1501 | User : 0.19597 s.\\ | |
1496 | System: 0.0 s.\\ |
|
1502 | System: 0.0 s.\\ | |
1497 |
|
1503 | |||
1498 | In [2]: run -t -N5 uniq_stable |
|
1504 | In [2]: run -t -N5 uniq_stable | |
1499 |
|
1505 | |||
1500 | IPython CPU timings (estimated):\\ |
|
1506 | IPython CPU timings (estimated):\\ | |
1501 | Total runs performed: 5\\ |
|
1507 | Total runs performed: 5\\ | |
1502 | Times : Total Per run\\ |
|
1508 | Times : Total Per run\\ | |
1503 | User : 0.910862 s, 0.1821724 s.\\ |
|
1509 | User : 0.910862 s, 0.1821724 s.\\ | |
1504 | System: 0.0 s, 0.0 s. |
|
1510 | System: 0.0 s, 0.0 s. | |
1505 |
|
1511 | |||
1506 | -d: run your program under the control of pdb, the Python debugger. |
|
1512 | -d: run your program under the control of pdb, the Python debugger. | |
1507 | This allows you to execute your program step by step, watch variables, |
|
1513 | This allows you to execute your program step by step, watch variables, | |
1508 | etc. Internally, what IPython does is similar to calling: |
|
1514 | etc. Internally, what IPython does is similar to calling: | |
1509 |
|
1515 | |||
1510 | pdb.run('execfile("YOURFILENAME")') |
|
1516 | pdb.run('execfile("YOURFILENAME")') | |
1511 |
|
1517 | |||
1512 | with a breakpoint set on line 1 of your file. You can change the line |
|
1518 | with a breakpoint set on line 1 of your file. You can change the line | |
1513 | number for this automatic breakpoint to be <N> by using the -bN option |
|
1519 | number for this automatic breakpoint to be <N> by using the -bN option | |
1514 | (where N must be an integer). For example: |
|
1520 | (where N must be an integer). For example: | |
1515 |
|
1521 | |||
1516 | %run -d -b40 myscript |
|
1522 | %run -d -b40 myscript | |
1517 |
|
1523 | |||
1518 | will set the first breakpoint at line 40 in myscript.py. Note that |
|
1524 | will set the first breakpoint at line 40 in myscript.py. Note that | |
1519 | the first breakpoint must be set on a line which actually does |
|
1525 | the first breakpoint must be set on a line which actually does | |
1520 | something (not a comment or docstring) for it to stop execution. |
|
1526 | something (not a comment or docstring) for it to stop execution. | |
1521 |
|
1527 | |||
1522 | When the pdb debugger starts, you will see a (Pdb) prompt. You must |
|
1528 | When the pdb debugger starts, you will see a (Pdb) prompt. You must | |
1523 | first enter 'c' (without qoutes) to start execution up to the first |
|
1529 | first enter 'c' (without qoutes) to start execution up to the first | |
1524 | breakpoint. |
|
1530 | breakpoint. | |
1525 |
|
1531 | |||
1526 | Entering 'help' gives information about the use of the debugger. You |
|
1532 | Entering 'help' gives information about the use of the debugger. You | |
1527 | can easily see pdb's full documentation with "import pdb;pdb.help()" |
|
1533 | can easily see pdb's full documentation with "import pdb;pdb.help()" | |
1528 | at a prompt. |
|
1534 | at a prompt. | |
1529 |
|
1535 | |||
1530 | -p: run program under the control of the Python profiler module (which |
|
1536 | -p: run program under the control of the Python profiler module (which | |
1531 | prints a detailed report of execution times, function calls, etc). |
|
1537 | prints a detailed report of execution times, function calls, etc). | |
1532 |
|
1538 | |||
1533 | You can pass other options after -p which affect the behavior of the |
|
1539 | You can pass other options after -p which affect the behavior of the | |
1534 | profiler itself. See the docs for %prun for details. |
|
1540 | profiler itself. See the docs for %prun for details. | |
1535 |
|
1541 | |||
1536 | In this mode, the program's variables do NOT propagate back to the |
|
1542 | In this mode, the program's variables do NOT propagate back to the | |
1537 | IPython interactive namespace (because they remain in the namespace |
|
1543 | IPython interactive namespace (because they remain in the namespace | |
1538 | where the profiler executes them). |
|
1544 | where the profiler executes them). | |
1539 |
|
1545 | |||
1540 | Internally this triggers a call to %prun, see its documentation for |
|
1546 | Internally this triggers a call to %prun, see its documentation for | |
1541 | details on the options available specifically for profiling. |
|
1547 | details on the options available specifically for profiling. | |
1542 |
|
1548 | |||
1543 | There is one special usage for which the text above doesn't apply: |
|
1549 | There is one special usage for which the text above doesn't apply: | |
1544 | if the filename ends with .ipy, the file is run as ipython script, |
|
1550 | if the filename ends with .ipy, the file is run as ipython script, | |
1545 | just as if the commands were written on IPython prompt. |
|
1551 | just as if the commands were written on IPython prompt. | |
1546 | """ |
|
1552 | """ | |
1547 |
|
1553 | |||
1548 | # get arguments and set sys.argv for program to be run. |
|
1554 | # get arguments and set sys.argv for program to be run. | |
1549 | opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e', |
|
1555 | opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e', | |
1550 | mode='list',list_all=1) |
|
1556 | mode='list',list_all=1) | |
1551 |
|
1557 | |||
1552 | try: |
|
1558 | try: | |
1553 | filename = file_finder(arg_lst[0]) |
|
1559 | filename = file_finder(arg_lst[0]) | |
1554 | except IndexError: |
|
1560 | except IndexError: | |
1555 | warn('you must provide at least a filename.') |
|
1561 | warn('you must provide at least a filename.') | |
1556 | print '\n%run:\n',oinspect.getdoc(self.magic_run) |
|
1562 | print '\n%run:\n',oinspect.getdoc(self.magic_run) | |
1557 | return |
|
1563 | return | |
1558 | except IOError,msg: |
|
1564 | except IOError,msg: | |
1559 | error(msg) |
|
1565 | error(msg) | |
1560 | return |
|
1566 | return | |
1561 |
|
1567 | |||
1562 | if filename.lower().endswith('.ipy'): |
|
1568 | if filename.lower().endswith('.ipy'): | |
1563 | self.shell.safe_execfile_ipy(filename) |
|
1569 | self.shell.safe_execfile_ipy(filename) | |
1564 | return |
|
1570 | return | |
1565 |
|
1571 | |||
1566 | # Control the response to exit() calls made by the script being run |
|
1572 | # Control the response to exit() calls made by the script being run | |
1567 | exit_ignore = opts.has_key('e') |
|
1573 | exit_ignore = opts.has_key('e') | |
1568 |
|
1574 | |||
1569 | # Make sure that the running script gets a proper sys.argv as if it |
|
1575 | # Make sure that the running script gets a proper sys.argv as if it | |
1570 | # were run from a system shell. |
|
1576 | # were run from a system shell. | |
1571 | save_argv = sys.argv # save it for later restoring |
|
1577 | save_argv = sys.argv # save it for later restoring | |
1572 | sys.argv = [filename]+ arg_lst[1:] # put in the proper filename |
|
1578 | sys.argv = [filename]+ arg_lst[1:] # put in the proper filename | |
1573 |
|
1579 | |||
1574 | if opts.has_key('i'): |
|
1580 | if opts.has_key('i'): | |
1575 | # Run in user's interactive namespace |
|
1581 | # Run in user's interactive namespace | |
1576 | prog_ns = self.shell.user_ns |
|
1582 | prog_ns = self.shell.user_ns | |
1577 | __name__save = self.shell.user_ns['__name__'] |
|
1583 | __name__save = self.shell.user_ns['__name__'] | |
1578 | prog_ns['__name__'] = '__main__' |
|
1584 | prog_ns['__name__'] = '__main__' | |
1579 | main_mod = self.shell.new_main_mod(prog_ns) |
|
1585 | main_mod = self.shell.new_main_mod(prog_ns) | |
1580 | else: |
|
1586 | else: | |
1581 | # Run in a fresh, empty namespace |
|
1587 | # Run in a fresh, empty namespace | |
1582 | if opts.has_key('n'): |
|
1588 | if opts.has_key('n'): | |
1583 | name = os.path.splitext(os.path.basename(filename))[0] |
|
1589 | name = os.path.splitext(os.path.basename(filename))[0] | |
1584 | else: |
|
1590 | else: | |
1585 | name = '__main__' |
|
1591 | name = '__main__' | |
1586 |
|
1592 | |||
1587 | main_mod = self.shell.new_main_mod() |
|
1593 | main_mod = self.shell.new_main_mod() | |
1588 | prog_ns = main_mod.__dict__ |
|
1594 | prog_ns = main_mod.__dict__ | |
1589 | prog_ns['__name__'] = name |
|
1595 | prog_ns['__name__'] = name | |
1590 |
|
1596 | |||
1591 | # Since '%run foo' emulates 'python foo.py' at the cmd line, we must |
|
1597 | # Since '%run foo' emulates 'python foo.py' at the cmd line, we must | |
1592 | # set the __file__ global in the script's namespace |
|
1598 | # set the __file__ global in the script's namespace | |
1593 | prog_ns['__file__'] = filename |
|
1599 | prog_ns['__file__'] = filename | |
1594 |
|
1600 | |||
1595 | # pickle fix. See interactiveshell for an explanation. But we need to make sure |
|
1601 | # pickle fix. See interactiveshell for an explanation. But we need to make sure | |
1596 | # that, if we overwrite __main__, we replace it at the end |
|
1602 | # that, if we overwrite __main__, we replace it at the end | |
1597 | main_mod_name = prog_ns['__name__'] |
|
1603 | main_mod_name = prog_ns['__name__'] | |
1598 |
|
1604 | |||
1599 | if main_mod_name == '__main__': |
|
1605 | if main_mod_name == '__main__': | |
1600 | restore_main = sys.modules['__main__'] |
|
1606 | restore_main = sys.modules['__main__'] | |
1601 | else: |
|
1607 | else: | |
1602 | restore_main = False |
|
1608 | restore_main = False | |
1603 |
|
1609 | |||
1604 | # This needs to be undone at the end to prevent holding references to |
|
1610 | # This needs to be undone at the end to prevent holding references to | |
1605 | # every single object ever created. |
|
1611 | # every single object ever created. | |
1606 | sys.modules[main_mod_name] = main_mod |
|
1612 | sys.modules[main_mod_name] = main_mod | |
1607 |
|
1613 | |||
1608 | try: |
|
1614 | try: | |
1609 | stats = None |
|
1615 | stats = None | |
1610 | with self.readline_no_record: |
|
1616 | with self.readline_no_record: | |
1611 | if opts.has_key('p'): |
|
1617 | if opts.has_key('p'): | |
1612 | stats = self.magic_prun('',0,opts,arg_lst,prog_ns) |
|
1618 | stats = self.magic_prun('',0,opts,arg_lst,prog_ns) | |
1613 | else: |
|
1619 | else: | |
1614 | if opts.has_key('d'): |
|
1620 | if opts.has_key('d'): | |
1615 | deb = debugger.Pdb(self.shell.colors) |
|
1621 | deb = debugger.Pdb(self.shell.colors) | |
1616 | # reset Breakpoint state, which is moronically kept |
|
1622 | # reset Breakpoint state, which is moronically kept | |
1617 | # in a class |
|
1623 | # in a class | |
1618 | bdb.Breakpoint.next = 1 |
|
1624 | bdb.Breakpoint.next = 1 | |
1619 | bdb.Breakpoint.bplist = {} |
|
1625 | bdb.Breakpoint.bplist = {} | |
1620 | bdb.Breakpoint.bpbynumber = [None] |
|
1626 | bdb.Breakpoint.bpbynumber = [None] | |
1621 | # Set an initial breakpoint to stop execution |
|
1627 | # Set an initial breakpoint to stop execution | |
1622 | maxtries = 10 |
|
1628 | maxtries = 10 | |
1623 | bp = int(opts.get('b',[1])[0]) |
|
1629 | bp = int(opts.get('b',[1])[0]) | |
1624 | checkline = deb.checkline(filename,bp) |
|
1630 | checkline = deb.checkline(filename,bp) | |
1625 | if not checkline: |
|
1631 | if not checkline: | |
1626 | for bp in range(bp+1,bp+maxtries+1): |
|
1632 | for bp in range(bp+1,bp+maxtries+1): | |
1627 | if deb.checkline(filename,bp): |
|
1633 | if deb.checkline(filename,bp): | |
1628 | break |
|
1634 | break | |
1629 | else: |
|
1635 | else: | |
1630 | msg = ("\nI failed to find a valid line to set " |
|
1636 | msg = ("\nI failed to find a valid line to set " | |
1631 | "a breakpoint\n" |
|
1637 | "a breakpoint\n" | |
1632 | "after trying up to line: %s.\n" |
|
1638 | "after trying up to line: %s.\n" | |
1633 | "Please set a valid breakpoint manually " |
|
1639 | "Please set a valid breakpoint manually " | |
1634 | "with the -b option." % bp) |
|
1640 | "with the -b option." % bp) | |
1635 | error(msg) |
|
1641 | error(msg) | |
1636 | return |
|
1642 | return | |
1637 | # if we find a good linenumber, set the breakpoint |
|
1643 | # if we find a good linenumber, set the breakpoint | |
1638 | deb.do_break('%s:%s' % (filename,bp)) |
|
1644 | deb.do_break('%s:%s' % (filename,bp)) | |
1639 | # Start file run |
|
1645 | # Start file run | |
1640 | print "NOTE: Enter 'c' at the", |
|
1646 | print "NOTE: Enter 'c' at the", | |
1641 | print "%s prompt to start your script." % deb.prompt |
|
1647 | print "%s prompt to start your script." % deb.prompt | |
1642 | try: |
|
1648 | try: | |
1643 | deb.run('execfile("%s")' % filename,prog_ns) |
|
1649 | deb.run('execfile("%s")' % filename,prog_ns) | |
1644 |
|
1650 | |||
1645 | except: |
|
1651 | except: | |
1646 | etype, value, tb = sys.exc_info() |
|
1652 | etype, value, tb = sys.exc_info() | |
1647 | # Skip three frames in the traceback: the %run one, |
|
1653 | # Skip three frames in the traceback: the %run one, | |
1648 | # one inside bdb.py, and the command-line typed by the |
|
1654 | # one inside bdb.py, and the command-line typed by the | |
1649 | # user (run by exec in pdb itself). |
|
1655 | # user (run by exec in pdb itself). | |
1650 | self.shell.InteractiveTB(etype,value,tb,tb_offset=3) |
|
1656 | self.shell.InteractiveTB(etype,value,tb,tb_offset=3) | |
1651 | else: |
|
1657 | else: | |
1652 | if runner is None: |
|
1658 | if runner is None: | |
1653 | runner = self.shell.safe_execfile |
|
1659 | runner = self.shell.safe_execfile | |
1654 | if opts.has_key('t'): |
|
1660 | if opts.has_key('t'): | |
1655 | # timed execution |
|
1661 | # timed execution | |
1656 | try: |
|
1662 | try: | |
1657 | nruns = int(opts['N'][0]) |
|
1663 | nruns = int(opts['N'][0]) | |
1658 | if nruns < 1: |
|
1664 | if nruns < 1: | |
1659 | error('Number of runs must be >=1') |
|
1665 | error('Number of runs must be >=1') | |
1660 | return |
|
1666 | return | |
1661 | except (KeyError): |
|
1667 | except (KeyError): | |
1662 | nruns = 1 |
|
1668 | nruns = 1 | |
1663 | if nruns == 1: |
|
1669 | if nruns == 1: | |
1664 | t0 = clock2() |
|
1670 | t0 = clock2() | |
1665 | runner(filename,prog_ns,prog_ns, |
|
1671 | runner(filename,prog_ns,prog_ns, | |
1666 | exit_ignore=exit_ignore) |
|
1672 | exit_ignore=exit_ignore) | |
1667 | t1 = clock2() |
|
1673 | t1 = clock2() | |
1668 | t_usr = t1[0]-t0[0] |
|
1674 | t_usr = t1[0]-t0[0] | |
1669 | t_sys = t1[1]-t0[1] |
|
1675 | t_sys = t1[1]-t0[1] | |
1670 | print "\nIPython CPU timings (estimated):" |
|
1676 | print "\nIPython CPU timings (estimated):" | |
1671 | print " User : %10s s." % t_usr |
|
1677 | print " User : %10s s." % t_usr | |
1672 | print " System: %10s s." % t_sys |
|
1678 | print " System: %10s s." % t_sys | |
1673 | else: |
|
1679 | else: | |
1674 | runs = range(nruns) |
|
1680 | runs = range(nruns) | |
1675 | t0 = clock2() |
|
1681 | t0 = clock2() | |
1676 | for nr in runs: |
|
1682 | for nr in runs: | |
1677 | runner(filename,prog_ns,prog_ns, |
|
1683 | runner(filename,prog_ns,prog_ns, | |
1678 | exit_ignore=exit_ignore) |
|
1684 | exit_ignore=exit_ignore) | |
1679 | t1 = clock2() |
|
1685 | t1 = clock2() | |
1680 | t_usr = t1[0]-t0[0] |
|
1686 | t_usr = t1[0]-t0[0] | |
1681 | t_sys = t1[1]-t0[1] |
|
1687 | t_sys = t1[1]-t0[1] | |
1682 | print "\nIPython CPU timings (estimated):" |
|
1688 | print "\nIPython CPU timings (estimated):" | |
1683 | print "Total runs performed:",nruns |
|
1689 | print "Total runs performed:",nruns | |
1684 | print " Times : %10s %10s" % ('Total','Per run') |
|
1690 | print " Times : %10s %10s" % ('Total','Per run') | |
1685 | print " User : %10s s, %10s s." % (t_usr,t_usr/nruns) |
|
1691 | print " User : %10s s, %10s s." % (t_usr,t_usr/nruns) | |
1686 | print " System: %10s s, %10s s." % (t_sys,t_sys/nruns) |
|
1692 | print " System: %10s s, %10s s." % (t_sys,t_sys/nruns) | |
1687 |
|
1693 | |||
1688 | else: |
|
1694 | else: | |
1689 | # regular execution |
|
1695 | # regular execution | |
1690 | runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore) |
|
1696 | runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore) | |
1691 |
|
1697 | |||
1692 | if opts.has_key('i'): |
|
1698 | if opts.has_key('i'): | |
1693 | self.shell.user_ns['__name__'] = __name__save |
|
1699 | self.shell.user_ns['__name__'] = __name__save | |
1694 | else: |
|
1700 | else: | |
1695 | # The shell MUST hold a reference to prog_ns so after %run |
|
1701 | # The shell MUST hold a reference to prog_ns so after %run | |
1696 | # exits, the python deletion mechanism doesn't zero it out |
|
1702 | # exits, the python deletion mechanism doesn't zero it out | |
1697 | # (leaving dangling references). |
|
1703 | # (leaving dangling references). | |
1698 | self.shell.cache_main_mod(prog_ns,filename) |
|
1704 | self.shell.cache_main_mod(prog_ns,filename) | |
1699 | # update IPython interactive namespace |
|
1705 | # update IPython interactive namespace | |
1700 |
|
1706 | |||
1701 | # Some forms of read errors on the file may mean the |
|
1707 | # Some forms of read errors on the file may mean the | |
1702 | # __name__ key was never set; using pop we don't have to |
|
1708 | # __name__ key was never set; using pop we don't have to | |
1703 | # worry about a possible KeyError. |
|
1709 | # worry about a possible KeyError. | |
1704 | prog_ns.pop('__name__', None) |
|
1710 | prog_ns.pop('__name__', None) | |
1705 |
|
1711 | |||
1706 | self.shell.user_ns.update(prog_ns) |
|
1712 | self.shell.user_ns.update(prog_ns) | |
1707 | finally: |
|
1713 | finally: | |
1708 | # It's a bit of a mystery why, but __builtins__ can change from |
|
1714 | # It's a bit of a mystery why, but __builtins__ can change from | |
1709 | # being a module to becoming a dict missing some key data after |
|
1715 | # being a module to becoming a dict missing some key data after | |
1710 | # %run. As best I can see, this is NOT something IPython is doing |
|
1716 | # %run. As best I can see, this is NOT something IPython is doing | |
1711 | # at all, and similar problems have been reported before: |
|
1717 | # at all, and similar problems have been reported before: | |
1712 | # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html |
|
1718 | # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html | |
1713 | # Since this seems to be done by the interpreter itself, the best |
|
1719 | # Since this seems to be done by the interpreter itself, the best | |
1714 | # we can do is to at least restore __builtins__ for the user on |
|
1720 | # we can do is to at least restore __builtins__ for the user on | |
1715 | # exit. |
|
1721 | # exit. | |
1716 | self.shell.user_ns['__builtins__'] = __builtin__ |
|
1722 | self.shell.user_ns['__builtins__'] = __builtin__ | |
1717 |
|
1723 | |||
1718 | # Ensure key global structures are restored |
|
1724 | # Ensure key global structures are restored | |
1719 | sys.argv = save_argv |
|
1725 | sys.argv = save_argv | |
1720 | if restore_main: |
|
1726 | if restore_main: | |
1721 | sys.modules['__main__'] = restore_main |
|
1727 | sys.modules['__main__'] = restore_main | |
1722 | else: |
|
1728 | else: | |
1723 | # Remove from sys.modules the reference to main_mod we'd |
|
1729 | # Remove from sys.modules the reference to main_mod we'd | |
1724 | # added. Otherwise it will trap references to objects |
|
1730 | # added. Otherwise it will trap references to objects | |
1725 | # contained therein. |
|
1731 | # contained therein. | |
1726 | del sys.modules[main_mod_name] |
|
1732 | del sys.modules[main_mod_name] | |
1727 |
|
1733 | |||
1728 | return stats |
|
1734 | return stats | |
1729 |
|
1735 | |||
1730 | @testdec.skip_doctest |
|
1736 | @testdec.skip_doctest | |
1731 | def magic_timeit(self, parameter_s =''): |
|
1737 | def magic_timeit(self, parameter_s =''): | |
1732 | """Time execution of a Python statement or expression |
|
1738 | """Time execution of a Python statement or expression | |
1733 |
|
1739 | |||
1734 | Usage:\\ |
|
1740 | Usage:\\ | |
1735 | %timeit [-n<N> -r<R> [-t|-c]] statement |
|
1741 | %timeit [-n<N> -r<R> [-t|-c]] statement | |
1736 |
|
1742 | |||
1737 | Time execution of a Python statement or expression using the timeit |
|
1743 | Time execution of a Python statement or expression using the timeit | |
1738 | module. |
|
1744 | module. | |
1739 |
|
1745 | |||
1740 | Options: |
|
1746 | Options: | |
1741 | -n<N>: execute the given statement <N> times in a loop. If this value |
|
1747 | -n<N>: execute the given statement <N> times in a loop. If this value | |
1742 | is not given, a fitting value is chosen. |
|
1748 | is not given, a fitting value is chosen. | |
1743 |
|
1749 | |||
1744 | -r<R>: repeat the loop iteration <R> times and take the best result. |
|
1750 | -r<R>: repeat the loop iteration <R> times and take the best result. | |
1745 | Default: 3 |
|
1751 | Default: 3 | |
1746 |
|
1752 | |||
1747 | -t: use time.time to measure the time, which is the default on Unix. |
|
1753 | -t: use time.time to measure the time, which is the default on Unix. | |
1748 | This function measures wall time. |
|
1754 | This function measures wall time. | |
1749 |
|
1755 | |||
1750 | -c: use time.clock to measure the time, which is the default on |
|
1756 | -c: use time.clock to measure the time, which is the default on | |
1751 | Windows and measures wall time. On Unix, resource.getrusage is used |
|
1757 | Windows and measures wall time. On Unix, resource.getrusage is used | |
1752 | instead and returns the CPU user time. |
|
1758 | instead and returns the CPU user time. | |
1753 |
|
1759 | |||
1754 | -p<P>: use a precision of <P> digits to display the timing result. |
|
1760 | -p<P>: use a precision of <P> digits to display the timing result. | |
1755 | Default: 3 |
|
1761 | Default: 3 | |
1756 |
|
1762 | |||
1757 |
|
1763 | |||
1758 | Examples: |
|
1764 | Examples: | |
1759 |
|
1765 | |||
1760 | In [1]: %timeit pass |
|
1766 | In [1]: %timeit pass | |
1761 | 10000000 loops, best of 3: 53.3 ns per loop |
|
1767 | 10000000 loops, best of 3: 53.3 ns per loop | |
1762 |
|
1768 | |||
1763 | In [2]: u = None |
|
1769 | In [2]: u = None | |
1764 |
|
1770 | |||
1765 | In [3]: %timeit u is None |
|
1771 | In [3]: %timeit u is None | |
1766 | 10000000 loops, best of 3: 184 ns per loop |
|
1772 | 10000000 loops, best of 3: 184 ns per loop | |
1767 |
|
1773 | |||
1768 | In [4]: %timeit -r 4 u == None |
|
1774 | In [4]: %timeit -r 4 u == None | |
1769 | 1000000 loops, best of 4: 242 ns per loop |
|
1775 | 1000000 loops, best of 4: 242 ns per loop | |
1770 |
|
1776 | |||
1771 | In [5]: import time |
|
1777 | In [5]: import time | |
1772 |
|
1778 | |||
1773 | In [6]: %timeit -n1 time.sleep(2) |
|
1779 | In [6]: %timeit -n1 time.sleep(2) | |
1774 | 1 loops, best of 3: 2 s per loop |
|
1780 | 1 loops, best of 3: 2 s per loop | |
1775 |
|
1781 | |||
1776 |
|
1782 | |||
1777 | The times reported by %timeit will be slightly higher than those |
|
1783 | The times reported by %timeit will be slightly higher than those | |
1778 | reported by the timeit.py script when variables are accessed. This is |
|
1784 | reported by the timeit.py script when variables are accessed. This is | |
1779 | due to the fact that %timeit executes the statement in the namespace |
|
1785 | due to the fact that %timeit executes the statement in the namespace | |
1780 | of the shell, compared with timeit.py, which uses a single setup |
|
1786 | of the shell, compared with timeit.py, which uses a single setup | |
1781 | statement to import function or create variables. Generally, the bias |
|
1787 | statement to import function or create variables. Generally, the bias | |
1782 | does not matter as long as results from timeit.py are not mixed with |
|
1788 | does not matter as long as results from timeit.py are not mixed with | |
1783 | those from %timeit.""" |
|
1789 | those from %timeit.""" | |
1784 |
|
1790 | |||
1785 | import timeit |
|
1791 | import timeit | |
1786 | import math |
|
1792 | import math | |
1787 |
|
1793 | |||
1788 | # XXX: Unfortunately the unicode 'micro' symbol can cause problems in |
|
1794 | # XXX: Unfortunately the unicode 'micro' symbol can cause problems in | |
1789 | # certain terminals. Until we figure out a robust way of |
|
1795 | # certain terminals. Until we figure out a robust way of | |
1790 | # auto-detecting if the terminal can deal with it, use plain 'us' for |
|
1796 | # auto-detecting if the terminal can deal with it, use plain 'us' for | |
1791 | # microseconds. I am really NOT happy about disabling the proper |
|
1797 | # microseconds. I am really NOT happy about disabling the proper | |
1792 | # 'micro' prefix, but crashing is worse... If anyone knows what the |
|
1798 | # 'micro' prefix, but crashing is worse... If anyone knows what the | |
1793 | # right solution for this is, I'm all ears... |
|
1799 | # right solution for this is, I'm all ears... | |
1794 | # |
|
1800 | # | |
1795 | # Note: using |
|
1801 | # Note: using | |
1796 | # |
|
1802 | # | |
1797 | # s = u'\xb5' |
|
1803 | # s = u'\xb5' | |
1798 | # s.encode(sys.getdefaultencoding()) |
|
1804 | # s.encode(sys.getdefaultencoding()) | |
1799 | # |
|
1805 | # | |
1800 | # is not sufficient, as I've seen terminals where that fails but |
|
1806 | # is not sufficient, as I've seen terminals where that fails but | |
1801 | # print s |
|
1807 | # print s | |
1802 | # |
|
1808 | # | |
1803 | # succeeds |
|
1809 | # succeeds | |
1804 | # |
|
1810 | # | |
1805 | # See bug: https://bugs.launchpad.net/ipython/+bug/348466 |
|
1811 | # See bug: https://bugs.launchpad.net/ipython/+bug/348466 | |
1806 |
|
1812 | |||
1807 | #units = [u"s", u"ms",u'\xb5',"ns"] |
|
1813 | #units = [u"s", u"ms",u'\xb5',"ns"] | |
1808 | units = [u"s", u"ms",u'us',"ns"] |
|
1814 | units = [u"s", u"ms",u'us',"ns"] | |
1809 |
|
1815 | |||
1810 | scaling = [1, 1e3, 1e6, 1e9] |
|
1816 | scaling = [1, 1e3, 1e6, 1e9] | |
1811 |
|
1817 | |||
1812 | opts, stmt = self.parse_options(parameter_s,'n:r:tcp:', |
|
1818 | opts, stmt = self.parse_options(parameter_s,'n:r:tcp:', | |
1813 | posix=False) |
|
1819 | posix=False) | |
1814 | if stmt == "": |
|
1820 | if stmt == "": | |
1815 | return |
|
1821 | return | |
1816 | timefunc = timeit.default_timer |
|
1822 | timefunc = timeit.default_timer | |
1817 | number = int(getattr(opts, "n", 0)) |
|
1823 | number = int(getattr(opts, "n", 0)) | |
1818 | repeat = int(getattr(opts, "r", timeit.default_repeat)) |
|
1824 | repeat = int(getattr(opts, "r", timeit.default_repeat)) | |
1819 | precision = int(getattr(opts, "p", 3)) |
|
1825 | precision = int(getattr(opts, "p", 3)) | |
1820 | if hasattr(opts, "t"): |
|
1826 | if hasattr(opts, "t"): | |
1821 | timefunc = time.time |
|
1827 | timefunc = time.time | |
1822 | if hasattr(opts, "c"): |
|
1828 | if hasattr(opts, "c"): | |
1823 | timefunc = clock |
|
1829 | timefunc = clock | |
1824 |
|
1830 | |||
1825 | timer = timeit.Timer(timer=timefunc) |
|
1831 | timer = timeit.Timer(timer=timefunc) | |
1826 | # this code has tight coupling to the inner workings of timeit.Timer, |
|
1832 | # this code has tight coupling to the inner workings of timeit.Timer, | |
1827 | # but is there a better way to achieve that the code stmt has access |
|
1833 | # but is there a better way to achieve that the code stmt has access | |
1828 | # to the shell namespace? |
|
1834 | # to the shell namespace? | |
1829 |
|
1835 | |||
1830 | src = timeit.template % {'stmt': timeit.reindent(stmt, 8), |
|
1836 | src = timeit.template % {'stmt': timeit.reindent(stmt, 8), | |
1831 | 'setup': "pass"} |
|
1837 | 'setup': "pass"} | |
1832 | # Track compilation time so it can be reported if too long |
|
1838 | # Track compilation time so it can be reported if too long | |
1833 | # Minimum time above which compilation time will be reported |
|
1839 | # Minimum time above which compilation time will be reported | |
1834 | tc_min = 0.1 |
|
1840 | tc_min = 0.1 | |
1835 |
|
1841 | |||
1836 | t0 = clock() |
|
1842 | t0 = clock() | |
1837 | code = compile(src, "<magic-timeit>", "exec") |
|
1843 | code = compile(src, "<magic-timeit>", "exec") | |
1838 | tc = clock()-t0 |
|
1844 | tc = clock()-t0 | |
1839 |
|
1845 | |||
1840 | ns = {} |
|
1846 | ns = {} | |
1841 | exec code in self.shell.user_ns, ns |
|
1847 | exec code in self.shell.user_ns, ns | |
1842 | timer.inner = ns["inner"] |
|
1848 | timer.inner = ns["inner"] | |
1843 |
|
1849 | |||
1844 | if number == 0: |
|
1850 | if number == 0: | |
1845 | # determine number so that 0.2 <= total time < 2.0 |
|
1851 | # determine number so that 0.2 <= total time < 2.0 | |
1846 | number = 1 |
|
1852 | number = 1 | |
1847 | for i in range(1, 10): |
|
1853 | for i in range(1, 10): | |
1848 | if timer.timeit(number) >= 0.2: |
|
1854 | if timer.timeit(number) >= 0.2: | |
1849 | break |
|
1855 | break | |
1850 | number *= 10 |
|
1856 | number *= 10 | |
1851 |
|
1857 | |||
1852 | best = min(timer.repeat(repeat, number)) / number |
|
1858 | best = min(timer.repeat(repeat, number)) / number | |
1853 |
|
1859 | |||
1854 | if best > 0.0 and best < 1000.0: |
|
1860 | if best > 0.0 and best < 1000.0: | |
1855 | order = min(-int(math.floor(math.log10(best)) // 3), 3) |
|
1861 | order = min(-int(math.floor(math.log10(best)) // 3), 3) | |
1856 | elif best >= 1000.0: |
|
1862 | elif best >= 1000.0: | |
1857 | order = 0 |
|
1863 | order = 0 | |
1858 | else: |
|
1864 | else: | |
1859 | order = 3 |
|
1865 | order = 3 | |
1860 | print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat, |
|
1866 | print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat, | |
1861 | precision, |
|
1867 | precision, | |
1862 | best * scaling[order], |
|
1868 | best * scaling[order], | |
1863 | units[order]) |
|
1869 | units[order]) | |
1864 | if tc > tc_min: |
|
1870 | if tc > tc_min: | |
1865 | print "Compiler time: %.2f s" % tc |
|
1871 | print "Compiler time: %.2f s" % tc | |
1866 |
|
1872 | |||
1867 | @testdec.skip_doctest |
|
1873 | @testdec.skip_doctest | |
1868 | @needs_local_scope |
|
1874 | @needs_local_scope | |
1869 | def magic_time(self,parameter_s = ''): |
|
1875 | def magic_time(self,parameter_s = ''): | |
1870 | """Time execution of a Python statement or expression. |
|
1876 | """Time execution of a Python statement or expression. | |
1871 |
|
1877 | |||
1872 | The CPU and wall clock times are printed, and the value of the |
|
1878 | The CPU and wall clock times are printed, and the value of the | |
1873 | expression (if any) is returned. Note that under Win32, system time |
|
1879 | expression (if any) is returned. Note that under Win32, system time | |
1874 | is always reported as 0, since it can not be measured. |
|
1880 | is always reported as 0, since it can not be measured. | |
1875 |
|
1881 | |||
1876 | This function provides very basic timing functionality. In Python |
|
1882 | This function provides very basic timing functionality. In Python | |
1877 | 2.3, the timeit module offers more control and sophistication, so this |
|
1883 | 2.3, the timeit module offers more control and sophistication, so this | |
1878 | could be rewritten to use it (patches welcome). |
|
1884 | could be rewritten to use it (patches welcome). | |
1879 |
|
1885 | |||
1880 | Some examples: |
|
1886 | Some examples: | |
1881 |
|
1887 | |||
1882 | In [1]: time 2**128 |
|
1888 | In [1]: time 2**128 | |
1883 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
1889 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
1884 | Wall time: 0.00 |
|
1890 | Wall time: 0.00 | |
1885 | Out[1]: 340282366920938463463374607431768211456L |
|
1891 | Out[1]: 340282366920938463463374607431768211456L | |
1886 |
|
1892 | |||
1887 | In [2]: n = 1000000 |
|
1893 | In [2]: n = 1000000 | |
1888 |
|
1894 | |||
1889 | In [3]: time sum(range(n)) |
|
1895 | In [3]: time sum(range(n)) | |
1890 | CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s |
|
1896 | CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s | |
1891 | Wall time: 1.37 |
|
1897 | Wall time: 1.37 | |
1892 | Out[3]: 499999500000L |
|
1898 | Out[3]: 499999500000L | |
1893 |
|
1899 | |||
1894 | In [4]: time print 'hello world' |
|
1900 | In [4]: time print 'hello world' | |
1895 | hello world |
|
1901 | hello world | |
1896 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
1902 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
1897 | Wall time: 0.00 |
|
1903 | Wall time: 0.00 | |
1898 |
|
1904 | |||
1899 | Note that the time needed by Python to compile the given expression |
|
1905 | Note that the time needed by Python to compile the given expression | |
1900 | will be reported if it is more than 0.1s. In this example, the |
|
1906 | will be reported if it is more than 0.1s. In this example, the | |
1901 | actual exponentiation is done by Python at compilation time, so while |
|
1907 | actual exponentiation is done by Python at compilation time, so while | |
1902 | the expression can take a noticeable amount of time to compute, that |
|
1908 | the expression can take a noticeable amount of time to compute, that | |
1903 | time is purely due to the compilation: |
|
1909 | time is purely due to the compilation: | |
1904 |
|
1910 | |||
1905 | In [5]: time 3**9999; |
|
1911 | In [5]: time 3**9999; | |
1906 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
1912 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
1907 | Wall time: 0.00 s |
|
1913 | Wall time: 0.00 s | |
1908 |
|
1914 | |||
1909 | In [6]: time 3**999999; |
|
1915 | In [6]: time 3**999999; | |
1910 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
1916 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
1911 | Wall time: 0.00 s |
|
1917 | Wall time: 0.00 s | |
1912 | Compiler : 0.78 s |
|
1918 | Compiler : 0.78 s | |
1913 | """ |
|
1919 | """ | |
1914 |
|
1920 | |||
1915 | # fail immediately if the given expression can't be compiled |
|
1921 | # fail immediately if the given expression can't be compiled | |
1916 |
|
1922 | |||
1917 | expr = self.shell.prefilter(parameter_s,False) |
|
1923 | expr = self.shell.prefilter(parameter_s,False) | |
1918 |
|
1924 | |||
1919 | # Minimum time above which compilation time will be reported |
|
1925 | # Minimum time above which compilation time will be reported | |
1920 | tc_min = 0.1 |
|
1926 | tc_min = 0.1 | |
1921 |
|
1927 | |||
1922 | try: |
|
1928 | try: | |
1923 | mode = 'eval' |
|
1929 | mode = 'eval' | |
1924 | t0 = clock() |
|
1930 | t0 = clock() | |
1925 | code = compile(expr,'<timed eval>',mode) |
|
1931 | code = compile(expr,'<timed eval>',mode) | |
1926 | tc = clock()-t0 |
|
1932 | tc = clock()-t0 | |
1927 | except SyntaxError: |
|
1933 | except SyntaxError: | |
1928 | mode = 'exec' |
|
1934 | mode = 'exec' | |
1929 | t0 = clock() |
|
1935 | t0 = clock() | |
1930 | code = compile(expr,'<timed exec>',mode) |
|
1936 | code = compile(expr,'<timed exec>',mode) | |
1931 | tc = clock()-t0 |
|
1937 | tc = clock()-t0 | |
1932 | # skew measurement as little as possible |
|
1938 | # skew measurement as little as possible | |
1933 | glob = self.shell.user_ns |
|
1939 | glob = self.shell.user_ns | |
1934 | locs = self._magic_locals |
|
1940 | locs = self._magic_locals | |
1935 | clk = clock2 |
|
1941 | clk = clock2 | |
1936 | wtime = time.time |
|
1942 | wtime = time.time | |
1937 | # time execution |
|
1943 | # time execution | |
1938 | wall_st = wtime() |
|
1944 | wall_st = wtime() | |
1939 | if mode=='eval': |
|
1945 | if mode=='eval': | |
1940 | st = clk() |
|
1946 | st = clk() | |
1941 | out = eval(code, glob, locs) |
|
1947 | out = eval(code, glob, locs) | |
1942 | end = clk() |
|
1948 | end = clk() | |
1943 | else: |
|
1949 | else: | |
1944 | st = clk() |
|
1950 | st = clk() | |
1945 | exec code in glob, locs |
|
1951 | exec code in glob, locs | |
1946 | end = clk() |
|
1952 | end = clk() | |
1947 | out = None |
|
1953 | out = None | |
1948 | wall_end = wtime() |
|
1954 | wall_end = wtime() | |
1949 | # Compute actual times and report |
|
1955 | # Compute actual times and report | |
1950 | wall_time = wall_end-wall_st |
|
1956 | wall_time = wall_end-wall_st | |
1951 | cpu_user = end[0]-st[0] |
|
1957 | cpu_user = end[0]-st[0] | |
1952 | cpu_sys = end[1]-st[1] |
|
1958 | cpu_sys = end[1]-st[1] | |
1953 | cpu_tot = cpu_user+cpu_sys |
|
1959 | cpu_tot = cpu_user+cpu_sys | |
1954 | print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \ |
|
1960 | print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \ | |
1955 | (cpu_user,cpu_sys,cpu_tot) |
|
1961 | (cpu_user,cpu_sys,cpu_tot) | |
1956 | print "Wall time: %.2f s" % wall_time |
|
1962 | print "Wall time: %.2f s" % wall_time | |
1957 | if tc > tc_min: |
|
1963 | if tc > tc_min: | |
1958 | print "Compiler : %.2f s" % tc |
|
1964 | print "Compiler : %.2f s" % tc | |
1959 | return out |
|
1965 | return out | |
1960 |
|
1966 | |||
1961 | @testdec.skip_doctest |
|
1967 | @testdec.skip_doctest | |
1962 | def magic_macro(self,parameter_s = ''): |
|
1968 | def magic_macro(self,parameter_s = ''): | |
1963 | """Define a macro for future re-execution. It accepts ranges of history, |
|
1969 | """Define a macro for future re-execution. It accepts ranges of history, | |
1964 | filenames or string objects. |
|
1970 | filenames or string objects. | |
1965 |
|
1971 | |||
1966 | Usage:\\ |
|
1972 | Usage:\\ | |
1967 | %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ... |
|
1973 | %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ... | |
1968 |
|
1974 | |||
1969 | Options: |
|
1975 | Options: | |
1970 |
|
1976 | |||
1971 | -r: use 'raw' input. By default, the 'processed' history is used, |
|
1977 | -r: use 'raw' input. By default, the 'processed' history is used, | |
1972 | so that magics are loaded in their transformed version to valid |
|
1978 | so that magics are loaded in their transformed version to valid | |
1973 | Python. If this option is given, the raw input as typed as the |
|
1979 | Python. If this option is given, the raw input as typed as the | |
1974 | command line is used instead. |
|
1980 | command line is used instead. | |
1975 |
|
1981 | |||
1976 | This will define a global variable called `name` which is a string |
|
1982 | This will define a global variable called `name` which is a string | |
1977 | made of joining the slices and lines you specify (n1,n2,... numbers |
|
1983 | made of joining the slices and lines you specify (n1,n2,... numbers | |
1978 | above) from your input history into a single string. This variable |
|
1984 | above) from your input history into a single string. This variable | |
1979 | acts like an automatic function which re-executes those lines as if |
|
1985 | acts like an automatic function which re-executes those lines as if | |
1980 | you had typed them. You just type 'name' at the prompt and the code |
|
1986 | you had typed them. You just type 'name' at the prompt and the code | |
1981 | executes. |
|
1987 | executes. | |
1982 |
|
1988 | |||
1983 | The syntax for indicating input ranges is described in %history. |
|
1989 | The syntax for indicating input ranges is described in %history. | |
1984 |
|
1990 | |||
1985 | Note: as a 'hidden' feature, you can also use traditional python slice |
|
1991 | Note: as a 'hidden' feature, you can also use traditional python slice | |
1986 | notation, where N:M means numbers N through M-1. |
|
1992 | notation, where N:M means numbers N through M-1. | |
1987 |
|
1993 | |||
1988 | For example, if your history contains (%hist prints it): |
|
1994 | For example, if your history contains (%hist prints it): | |
1989 |
|
1995 | |||
1990 | 44: x=1 |
|
1996 | 44: x=1 | |
1991 | 45: y=3 |
|
1997 | 45: y=3 | |
1992 | 46: z=x+y |
|
1998 | 46: z=x+y | |
1993 | 47: print x |
|
1999 | 47: print x | |
1994 | 48: a=5 |
|
2000 | 48: a=5 | |
1995 | 49: print 'x',x,'y',y |
|
2001 | 49: print 'x',x,'y',y | |
1996 |
|
2002 | |||
1997 | you can create a macro with lines 44 through 47 (included) and line 49 |
|
2003 | you can create a macro with lines 44 through 47 (included) and line 49 | |
1998 | called my_macro with: |
|
2004 | called my_macro with: | |
1999 |
|
2005 | |||
2000 | In [55]: %macro my_macro 44-47 49 |
|
2006 | In [55]: %macro my_macro 44-47 49 | |
2001 |
|
2007 | |||
2002 | Now, typing `my_macro` (without quotes) will re-execute all this code |
|
2008 | Now, typing `my_macro` (without quotes) will re-execute all this code | |
2003 | in one pass. |
|
2009 | in one pass. | |
2004 |
|
2010 | |||
2005 | You don't need to give the line-numbers in order, and any given line |
|
2011 | You don't need to give the line-numbers in order, and any given line | |
2006 | number can appear multiple times. You can assemble macros with any |
|
2012 | number can appear multiple times. You can assemble macros with any | |
2007 | lines from your input history in any order. |
|
2013 | lines from your input history in any order. | |
2008 |
|
2014 | |||
2009 | The macro is a simple object which holds its value in an attribute, |
|
2015 | The macro is a simple object which holds its value in an attribute, | |
2010 | but IPython's display system checks for macros and executes them as |
|
2016 | but IPython's display system checks for macros and executes them as | |
2011 | code instead of printing them when you type their name. |
|
2017 | code instead of printing them when you type their name. | |
2012 |
|
2018 | |||
2013 | You can view a macro's contents by explicitly printing it with: |
|
2019 | You can view a macro's contents by explicitly printing it with: | |
2014 |
|
2020 | |||
2015 | 'print macro_name'. |
|
2021 | 'print macro_name'. | |
2016 |
|
2022 | |||
2017 | """ |
|
2023 | """ | |
2018 |
|
2024 | |||
2019 | opts,args = self.parse_options(parameter_s,'r',mode='list') |
|
2025 | opts,args = self.parse_options(parameter_s,'r',mode='list') | |
2020 | if not args: # List existing macros |
|
2026 | if not args: # List existing macros | |
2021 | return sorted(k for k,v in self.shell.user_ns.iteritems() if\ |
|
2027 | return sorted(k for k,v in self.shell.user_ns.iteritems() if\ | |
2022 | isinstance(v, Macro)) |
|
2028 | isinstance(v, Macro)) | |
2023 | if len(args) == 1: |
|
2029 | if len(args) == 1: | |
2024 | raise UsageError( |
|
2030 | raise UsageError( | |
2025 | "%macro insufficient args; usage '%macro name n1-n2 n3-4...") |
|
2031 | "%macro insufficient args; usage '%macro name n1-n2 n3-4...") | |
2026 | name, codefrom = args[0], " ".join(args[1:]) |
|
2032 | name, codefrom = args[0], " ".join(args[1:]) | |
2027 |
|
2033 | |||
2028 | #print 'rng',ranges # dbg |
|
2034 | #print 'rng',ranges # dbg | |
2029 | try: |
|
2035 | try: | |
2030 | lines = self.shell.find_user_code(codefrom, 'r' in opts) |
|
2036 | lines = self.shell.find_user_code(codefrom, 'r' in opts) | |
2031 | except (ValueError, TypeError) as e: |
|
2037 | except (ValueError, TypeError) as e: | |
2032 | print e.args[0] |
|
2038 | print e.args[0] | |
2033 | return |
|
2039 | return | |
2034 | macro = Macro(lines) |
|
2040 | macro = Macro(lines) | |
2035 | self.shell.define_macro(name, macro) |
|
2041 | self.shell.define_macro(name, macro) | |
2036 | print 'Macro `%s` created. To execute, type its name (without quotes).' % name |
|
2042 | print 'Macro `%s` created. To execute, type its name (without quotes).' % name | |
2037 | print '=== Macro contents: ===' |
|
2043 | print '=== Macro contents: ===' | |
2038 | print macro, |
|
2044 | print macro, | |
2039 |
|
2045 | |||
2040 | def magic_save(self,parameter_s = ''): |
|
2046 | def magic_save(self,parameter_s = ''): | |
2041 | """Save a set of lines or a macro to a given filename. |
|
2047 | """Save a set of lines or a macro to a given filename. | |
2042 |
|
2048 | |||
2043 | Usage:\\ |
|
2049 | Usage:\\ | |
2044 | %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ... |
|
2050 | %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ... | |
2045 |
|
2051 | |||
2046 | Options: |
|
2052 | Options: | |
2047 |
|
2053 | |||
2048 | -r: use 'raw' input. By default, the 'processed' history is used, |
|
2054 | -r: use 'raw' input. By default, the 'processed' history is used, | |
2049 | so that magics are loaded in their transformed version to valid |
|
2055 | so that magics are loaded in their transformed version to valid | |
2050 | Python. If this option is given, the raw input as typed as the |
|
2056 | Python. If this option is given, the raw input as typed as the | |
2051 | command line is used instead. |
|
2057 | command line is used instead. | |
2052 |
|
2058 | |||
2053 | This function uses the same syntax as %history for input ranges, |
|
2059 | This function uses the same syntax as %history for input ranges, | |
2054 | then saves the lines to the filename you specify. |
|
2060 | then saves the lines to the filename you specify. | |
2055 |
|
2061 | |||
2056 | It adds a '.py' extension to the file if you don't do so yourself, and |
|
2062 | It adds a '.py' extension to the file if you don't do so yourself, and | |
2057 | it asks for confirmation before overwriting existing files.""" |
|
2063 | it asks for confirmation before overwriting existing files.""" | |
2058 |
|
2064 | |||
2059 | opts,args = self.parse_options(parameter_s,'r',mode='list') |
|
2065 | opts,args = self.parse_options(parameter_s,'r',mode='list') | |
2060 | fname, codefrom = args[0], " ".join(args[1:]) |
|
2066 | fname, codefrom = args[0], " ".join(args[1:]) | |
2061 | if not fname.endswith('.py'): |
|
2067 | if not fname.endswith('.py'): | |
2062 | fname += '.py' |
|
2068 | fname += '.py' | |
2063 | if os.path.isfile(fname): |
|
2069 | if os.path.isfile(fname): | |
2064 | ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname) |
|
2070 | ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname) | |
2065 | if ans.lower() not in ['y','yes']: |
|
2071 | if ans.lower() not in ['y','yes']: | |
2066 | print 'Operation cancelled.' |
|
2072 | print 'Operation cancelled.' | |
2067 | return |
|
2073 | return | |
2068 | try: |
|
2074 | try: | |
2069 | cmds = self.shell.find_user_code(codefrom, 'r' in opts) |
|
2075 | cmds = self.shell.find_user_code(codefrom, 'r' in opts) | |
2070 | except (TypeError, ValueError) as e: |
|
2076 | except (TypeError, ValueError) as e: | |
2071 | print e.args[0] |
|
2077 | print e.args[0] | |
2072 | return |
|
2078 | return | |
2073 | if isinstance(cmds, unicode): |
|
2079 | if isinstance(cmds, unicode): | |
2074 | cmds = cmds.encode("utf-8") |
|
2080 | cmds = cmds.encode("utf-8") | |
2075 | with open(fname,'w') as f: |
|
2081 | with open(fname,'w') as f: | |
2076 | f.write("# coding: utf-8\n") |
|
2082 | f.write("# coding: utf-8\n") | |
2077 | f.write(cmds) |
|
2083 | f.write(cmds) | |
2078 | print 'The following commands were written to file `%s`:' % fname |
|
2084 | print 'The following commands were written to file `%s`:' % fname | |
2079 | print cmds |
|
2085 | print cmds | |
2080 |
|
2086 | |||
2081 | def magic_pastebin(self, parameter_s = ''): |
|
2087 | def magic_pastebin(self, parameter_s = ''): | |
2082 | """Upload code to the 'Lodge it' paste bin, returning the URL.""" |
|
2088 | """Upload code to the 'Lodge it' paste bin, returning the URL.""" | |
2083 | try: |
|
2089 | try: | |
2084 | code = self.shell.find_user_code(parameter_s) |
|
2090 | code = self.shell.find_user_code(parameter_s) | |
2085 | except (ValueError, TypeError) as e: |
|
2091 | except (ValueError, TypeError) as e: | |
2086 | print e.args[0] |
|
2092 | print e.args[0] | |
2087 | return |
|
2093 | return | |
2088 | pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/') |
|
2094 | pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/') | |
2089 | id = pbserver.pastes.newPaste("python", code) |
|
2095 | id = pbserver.pastes.newPaste("python", code) | |
2090 | return "http://paste.pocoo.org/show/" + id |
|
2096 | return "http://paste.pocoo.org/show/" + id | |
2091 |
|
2097 | |||
2092 | def _edit_macro(self,mname,macro): |
|
2098 | def _edit_macro(self,mname,macro): | |
2093 | """open an editor with the macro data in a file""" |
|
2099 | """open an editor with the macro data in a file""" | |
2094 | filename = self.shell.mktempfile(macro.value) |
|
2100 | filename = self.shell.mktempfile(macro.value) | |
2095 | self.shell.hooks.editor(filename) |
|
2101 | self.shell.hooks.editor(filename) | |
2096 |
|
2102 | |||
2097 | # and make a new macro object, to replace the old one |
|
2103 | # and make a new macro object, to replace the old one | |
2098 | mfile = open(filename) |
|
2104 | mfile = open(filename) | |
2099 | mvalue = mfile.read() |
|
2105 | mvalue = mfile.read() | |
2100 | mfile.close() |
|
2106 | mfile.close() | |
2101 | self.shell.user_ns[mname] = Macro(mvalue) |
|
2107 | self.shell.user_ns[mname] = Macro(mvalue) | |
2102 |
|
2108 | |||
2103 | def magic_ed(self,parameter_s=''): |
|
2109 | def magic_ed(self,parameter_s=''): | |
2104 | """Alias to %edit.""" |
|
2110 | """Alias to %edit.""" | |
2105 | return self.magic_edit(parameter_s) |
|
2111 | return self.magic_edit(parameter_s) | |
2106 |
|
2112 | |||
2107 | @testdec.skip_doctest |
|
2113 | @testdec.skip_doctest | |
2108 | def magic_edit(self,parameter_s='',last_call=['','']): |
|
2114 | def magic_edit(self,parameter_s='',last_call=['','']): | |
2109 | """Bring up an editor and execute the resulting code. |
|
2115 | """Bring up an editor and execute the resulting code. | |
2110 |
|
2116 | |||
2111 | Usage: |
|
2117 | Usage: | |
2112 | %edit [options] [args] |
|
2118 | %edit [options] [args] | |
2113 |
|
2119 | |||
2114 | %edit runs IPython's editor hook. The default version of this hook is |
|
2120 | %edit runs IPython's editor hook. The default version of this hook is | |
2115 | set to call the __IPYTHON__.rc.editor command. This is read from your |
|
2121 | set to call the __IPYTHON__.rc.editor command. This is read from your | |
2116 | environment variable $EDITOR. If this isn't found, it will default to |
|
2122 | environment variable $EDITOR. If this isn't found, it will default to | |
2117 | vi under Linux/Unix and to notepad under Windows. See the end of this |
|
2123 | vi under Linux/Unix and to notepad under Windows. See the end of this | |
2118 | docstring for how to change the editor hook. |
|
2124 | docstring for how to change the editor hook. | |
2119 |
|
2125 | |||
2120 | You can also set the value of this editor via the command line option |
|
2126 | You can also set the value of this editor via the command line option | |
2121 | '-editor' or in your ipythonrc file. This is useful if you wish to use |
|
2127 | '-editor' or in your ipythonrc file. This is useful if you wish to use | |
2122 | specifically for IPython an editor different from your typical default |
|
2128 | specifically for IPython an editor different from your typical default | |
2123 | (and for Windows users who typically don't set environment variables). |
|
2129 | (and for Windows users who typically don't set environment variables). | |
2124 |
|
2130 | |||
2125 | This command allows you to conveniently edit multi-line code right in |
|
2131 | This command allows you to conveniently edit multi-line code right in | |
2126 | your IPython session. |
|
2132 | your IPython session. | |
2127 |
|
2133 | |||
2128 | If called without arguments, %edit opens up an empty editor with a |
|
2134 | If called without arguments, %edit opens up an empty editor with a | |
2129 | temporary file and will execute the contents of this file when you |
|
2135 | temporary file and will execute the contents of this file when you | |
2130 | close it (don't forget to save it!). |
|
2136 | close it (don't forget to save it!). | |
2131 |
|
2137 | |||
2132 |
|
2138 | |||
2133 | Options: |
|
2139 | Options: | |
2134 |
|
2140 | |||
2135 | -n <number>: open the editor at a specified line number. By default, |
|
2141 | -n <number>: open the editor at a specified line number. By default, | |
2136 | the IPython editor hook uses the unix syntax 'editor +N filename', but |
|
2142 | the IPython editor hook uses the unix syntax 'editor +N filename', but | |
2137 | you can configure this by providing your own modified hook if your |
|
2143 | you can configure this by providing your own modified hook if your | |
2138 | favorite editor supports line-number specifications with a different |
|
2144 | favorite editor supports line-number specifications with a different | |
2139 | syntax. |
|
2145 | syntax. | |
2140 |
|
2146 | |||
2141 | -p: this will call the editor with the same data as the previous time |
|
2147 | -p: this will call the editor with the same data as the previous time | |
2142 | it was used, regardless of how long ago (in your current session) it |
|
2148 | it was used, regardless of how long ago (in your current session) it | |
2143 | was. |
|
2149 | was. | |
2144 |
|
2150 | |||
2145 | -r: use 'raw' input. This option only applies to input taken from the |
|
2151 | -r: use 'raw' input. This option only applies to input taken from the | |
2146 | user's history. By default, the 'processed' history is used, so that |
|
2152 | user's history. By default, the 'processed' history is used, so that | |
2147 | magics are loaded in their transformed version to valid Python. If |
|
2153 | magics are loaded in their transformed version to valid Python. If | |
2148 | this option is given, the raw input as typed as the command line is |
|
2154 | this option is given, the raw input as typed as the command line is | |
2149 | used instead. When you exit the editor, it will be executed by |
|
2155 | used instead. When you exit the editor, it will be executed by | |
2150 | IPython's own processor. |
|
2156 | IPython's own processor. | |
2151 |
|
2157 | |||
2152 | -x: do not execute the edited code immediately upon exit. This is |
|
2158 | -x: do not execute the edited code immediately upon exit. This is | |
2153 | mainly useful if you are editing programs which need to be called with |
|
2159 | mainly useful if you are editing programs which need to be called with | |
2154 | command line arguments, which you can then do using %run. |
|
2160 | command line arguments, which you can then do using %run. | |
2155 |
|
2161 | |||
2156 |
|
2162 | |||
2157 | Arguments: |
|
2163 | Arguments: | |
2158 |
|
2164 | |||
2159 | If arguments are given, the following possibilites exist: |
|
2165 | If arguments are given, the following possibilites exist: | |
2160 |
|
2166 | |||
2161 | - If the argument is a filename, IPython will load that into the |
|
2167 | - If the argument is a filename, IPython will load that into the | |
2162 | editor. It will execute its contents with execfile() when you exit, |
|
2168 | editor. It will execute its contents with execfile() when you exit, | |
2163 | loading any code in the file into your interactive namespace. |
|
2169 | loading any code in the file into your interactive namespace. | |
2164 |
|
2170 | |||
2165 | - The arguments are ranges of input history, e.g. "7 ~1/4-6". |
|
2171 | - The arguments are ranges of input history, e.g. "7 ~1/4-6". | |
2166 | The syntax is the same as in the %history magic. |
|
2172 | The syntax is the same as in the %history magic. | |
2167 |
|
2173 | |||
2168 | - If the argument is a string variable, its contents are loaded |
|
2174 | - If the argument is a string variable, its contents are loaded | |
2169 | into the editor. You can thus edit any string which contains |
|
2175 | into the editor. You can thus edit any string which contains | |
2170 | python code (including the result of previous edits). |
|
2176 | python code (including the result of previous edits). | |
2171 |
|
2177 | |||
2172 | - If the argument is the name of an object (other than a string), |
|
2178 | - If the argument is the name of an object (other than a string), | |
2173 | IPython will try to locate the file where it was defined and open the |
|
2179 | IPython will try to locate the file where it was defined and open the | |
2174 | editor at the point where it is defined. You can use `%edit function` |
|
2180 | editor at the point where it is defined. You can use `%edit function` | |
2175 | to load an editor exactly at the point where 'function' is defined, |
|
2181 | to load an editor exactly at the point where 'function' is defined, | |
2176 | edit it and have the file be executed automatically. |
|
2182 | edit it and have the file be executed automatically. | |
2177 |
|
2183 | |||
2178 | If the object is a macro (see %macro for details), this opens up your |
|
2184 | If the object is a macro (see %macro for details), this opens up your | |
2179 | specified editor with a temporary file containing the macro's data. |
|
2185 | specified editor with a temporary file containing the macro's data. | |
2180 | Upon exit, the macro is reloaded with the contents of the file. |
|
2186 | Upon exit, the macro is reloaded with the contents of the file. | |
2181 |
|
2187 | |||
2182 | Note: opening at an exact line is only supported under Unix, and some |
|
2188 | Note: opening at an exact line is only supported under Unix, and some | |
2183 | editors (like kedit and gedit up to Gnome 2.8) do not understand the |
|
2189 | editors (like kedit and gedit up to Gnome 2.8) do not understand the | |
2184 | '+NUMBER' parameter necessary for this feature. Good editors like |
|
2190 | '+NUMBER' parameter necessary for this feature. Good editors like | |
2185 | (X)Emacs, vi, jed, pico and joe all do. |
|
2191 | (X)Emacs, vi, jed, pico and joe all do. | |
2186 |
|
2192 | |||
2187 | After executing your code, %edit will return as output the code you |
|
2193 | After executing your code, %edit will return as output the code you | |
2188 | typed in the editor (except when it was an existing file). This way |
|
2194 | typed in the editor (except when it was an existing file). This way | |
2189 | you can reload the code in further invocations of %edit as a variable, |
|
2195 | you can reload the code in further invocations of %edit as a variable, | |
2190 | via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of |
|
2196 | via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of | |
2191 | the output. |
|
2197 | the output. | |
2192 |
|
2198 | |||
2193 | Note that %edit is also available through the alias %ed. |
|
2199 | Note that %edit is also available through the alias %ed. | |
2194 |
|
2200 | |||
2195 | This is an example of creating a simple function inside the editor and |
|
2201 | This is an example of creating a simple function inside the editor and | |
2196 | then modifying it. First, start up the editor: |
|
2202 | then modifying it. First, start up the editor: | |
2197 |
|
2203 | |||
2198 | In [1]: ed |
|
2204 | In [1]: ed | |
2199 | Editing... done. Executing edited code... |
|
2205 | Editing... done. Executing edited code... | |
2200 | Out[1]: 'def foo():n print "foo() was defined in an editing session"n' |
|
2206 | Out[1]: 'def foo():n print "foo() was defined in an editing session"n' | |
2201 |
|
2207 | |||
2202 | We can then call the function foo(): |
|
2208 | We can then call the function foo(): | |
2203 |
|
2209 | |||
2204 | In [2]: foo() |
|
2210 | In [2]: foo() | |
2205 | foo() was defined in an editing session |
|
2211 | foo() was defined in an editing session | |
2206 |
|
2212 | |||
2207 | Now we edit foo. IPython automatically loads the editor with the |
|
2213 | Now we edit foo. IPython automatically loads the editor with the | |
2208 | (temporary) file where foo() was previously defined: |
|
2214 | (temporary) file where foo() was previously defined: | |
2209 |
|
2215 | |||
2210 | In [3]: ed foo |
|
2216 | In [3]: ed foo | |
2211 | Editing... done. Executing edited code... |
|
2217 | Editing... done. Executing edited code... | |
2212 |
|
2218 | |||
2213 | And if we call foo() again we get the modified version: |
|
2219 | And if we call foo() again we get the modified version: | |
2214 |
|
2220 | |||
2215 | In [4]: foo() |
|
2221 | In [4]: foo() | |
2216 | foo() has now been changed! |
|
2222 | foo() has now been changed! | |
2217 |
|
2223 | |||
2218 | Here is an example of how to edit a code snippet successive |
|
2224 | Here is an example of how to edit a code snippet successive | |
2219 | times. First we call the editor: |
|
2225 | times. First we call the editor: | |
2220 |
|
2226 | |||
2221 | In [5]: ed |
|
2227 | In [5]: ed | |
2222 | Editing... done. Executing edited code... |
|
2228 | Editing... done. Executing edited code... | |
2223 | hello |
|
2229 | hello | |
2224 | Out[5]: "print 'hello'n" |
|
2230 | Out[5]: "print 'hello'n" | |
2225 |
|
2231 | |||
2226 | Now we call it again with the previous output (stored in _): |
|
2232 | Now we call it again with the previous output (stored in _): | |
2227 |
|
2233 | |||
2228 | In [6]: ed _ |
|
2234 | In [6]: ed _ | |
2229 | Editing... done. Executing edited code... |
|
2235 | Editing... done. Executing edited code... | |
2230 | hello world |
|
2236 | hello world | |
2231 | Out[6]: "print 'hello world'n" |
|
2237 | Out[6]: "print 'hello world'n" | |
2232 |
|
2238 | |||
2233 | Now we call it with the output #8 (stored in _8, also as Out[8]): |
|
2239 | Now we call it with the output #8 (stored in _8, also as Out[8]): | |
2234 |
|
2240 | |||
2235 | In [7]: ed _8 |
|
2241 | In [7]: ed _8 | |
2236 | Editing... done. Executing edited code... |
|
2242 | Editing... done. Executing edited code... | |
2237 | hello again |
|
2243 | hello again | |
2238 | Out[7]: "print 'hello again'n" |
|
2244 | Out[7]: "print 'hello again'n" | |
2239 |
|
2245 | |||
2240 |
|
2246 | |||
2241 | Changing the default editor hook: |
|
2247 | Changing the default editor hook: | |
2242 |
|
2248 | |||
2243 | If you wish to write your own editor hook, you can put it in a |
|
2249 | If you wish to write your own editor hook, you can put it in a | |
2244 | configuration file which you load at startup time. The default hook |
|
2250 | configuration file which you load at startup time. The default hook | |
2245 | is defined in the IPython.core.hooks module, and you can use that as a |
|
2251 | is defined in the IPython.core.hooks module, and you can use that as a | |
2246 | starting example for further modifications. That file also has |
|
2252 | starting example for further modifications. That file also has | |
2247 | general instructions on how to set a new hook for use once you've |
|
2253 | general instructions on how to set a new hook for use once you've | |
2248 | defined it.""" |
|
2254 | defined it.""" | |
2249 |
|
2255 | |||
2250 | # FIXME: This function has become a convoluted mess. It needs a |
|
2256 | # FIXME: This function has become a convoluted mess. It needs a | |
2251 | # ground-up rewrite with clean, simple logic. |
|
2257 | # ground-up rewrite with clean, simple logic. | |
2252 |
|
2258 | |||
2253 | def make_filename(arg): |
|
2259 | def make_filename(arg): | |
2254 | "Make a filename from the given args" |
|
2260 | "Make a filename from the given args" | |
2255 | try: |
|
2261 | try: | |
2256 | filename = get_py_filename(arg) |
|
2262 | filename = get_py_filename(arg) | |
2257 | except IOError: |
|
2263 | except IOError: | |
2258 | if args.endswith('.py'): |
|
2264 | if args.endswith('.py'): | |
2259 | filename = arg |
|
2265 | filename = arg | |
2260 | else: |
|
2266 | else: | |
2261 | filename = None |
|
2267 | filename = None | |
2262 | return filename |
|
2268 | return filename | |
2263 |
|
2269 | |||
2264 | # custom exceptions |
|
2270 | # custom exceptions | |
2265 | class DataIsObject(Exception): pass |
|
2271 | class DataIsObject(Exception): pass | |
2266 |
|
2272 | |||
2267 | opts,args = self.parse_options(parameter_s,'prxn:') |
|
2273 | opts,args = self.parse_options(parameter_s,'prxn:') | |
2268 | # Set a few locals from the options for convenience: |
|
2274 | # Set a few locals from the options for convenience: | |
2269 | opts_prev = 'p' in opts |
|
2275 | opts_prev = 'p' in opts | |
2270 | opts_raw = 'r' in opts |
|
2276 | opts_raw = 'r' in opts | |
2271 |
|
2277 | |||
2272 | # Default line number value |
|
2278 | # Default line number value | |
2273 | lineno = opts.get('n',None) |
|
2279 | lineno = opts.get('n',None) | |
2274 |
|
2280 | |||
2275 | if opts_prev: |
|
2281 | if opts_prev: | |
2276 | args = '_%s' % last_call[0] |
|
2282 | args = '_%s' % last_call[0] | |
2277 | if not self.shell.user_ns.has_key(args): |
|
2283 | if not self.shell.user_ns.has_key(args): | |
2278 | args = last_call[1] |
|
2284 | args = last_call[1] | |
2279 |
|
2285 | |||
2280 | # use last_call to remember the state of the previous call, but don't |
|
2286 | # use last_call to remember the state of the previous call, but don't | |
2281 | # let it be clobbered by successive '-p' calls. |
|
2287 | # let it be clobbered by successive '-p' calls. | |
2282 | try: |
|
2288 | try: | |
2283 | last_call[0] = self.shell.displayhook.prompt_count |
|
2289 | last_call[0] = self.shell.displayhook.prompt_count | |
2284 | if not opts_prev: |
|
2290 | if not opts_prev: | |
2285 | last_call[1] = parameter_s |
|
2291 | last_call[1] = parameter_s | |
2286 | except: |
|
2292 | except: | |
2287 | pass |
|
2293 | pass | |
2288 |
|
2294 | |||
2289 | # by default this is done with temp files, except when the given |
|
2295 | # by default this is done with temp files, except when the given | |
2290 | # arg is a filename |
|
2296 | # arg is a filename | |
2291 | use_temp = True |
|
2297 | use_temp = True | |
2292 |
|
2298 | |||
2293 | data = '' |
|
2299 | data = '' | |
2294 | if args.endswith('.py'): |
|
2300 | if args.endswith('.py'): | |
2295 | filename = make_filename(args) |
|
2301 | filename = make_filename(args) | |
2296 | use_temp = False |
|
2302 | use_temp = False | |
2297 | elif args: |
|
2303 | elif args: | |
2298 | # Mode where user specifies ranges of lines, like in %macro. |
|
2304 | # Mode where user specifies ranges of lines, like in %macro. | |
2299 | data = self.extract_input_lines(args, opts_raw) |
|
2305 | data = self.extract_input_lines(args, opts_raw) | |
2300 | if not data: |
|
2306 | if not data: | |
2301 | try: |
|
2307 | try: | |
2302 | # Load the parameter given as a variable. If not a string, |
|
2308 | # Load the parameter given as a variable. If not a string, | |
2303 | # process it as an object instead (below) |
|
2309 | # process it as an object instead (below) | |
2304 |
|
2310 | |||
2305 | #print '*** args',args,'type',type(args) # dbg |
|
2311 | #print '*** args',args,'type',type(args) # dbg | |
2306 | data = eval(args, self.shell.user_ns) |
|
2312 | data = eval(args, self.shell.user_ns) | |
2307 | if not isinstance(data, basestring): |
|
2313 | if not isinstance(data, basestring): | |
2308 | raise DataIsObject |
|
2314 | raise DataIsObject | |
2309 |
|
2315 | |||
2310 | except (NameError,SyntaxError): |
|
2316 | except (NameError,SyntaxError): | |
2311 | # given argument is not a variable, try as a filename |
|
2317 | # given argument is not a variable, try as a filename | |
2312 | filename = make_filename(args) |
|
2318 | filename = make_filename(args) | |
2313 | if filename is None: |
|
2319 | if filename is None: | |
2314 | warn("Argument given (%s) can't be found as a variable " |
|
2320 | warn("Argument given (%s) can't be found as a variable " | |
2315 | "or as a filename." % args) |
|
2321 | "or as a filename." % args) | |
2316 | return |
|
2322 | return | |
2317 | use_temp = False |
|
2323 | use_temp = False | |
2318 |
|
2324 | |||
2319 | except DataIsObject: |
|
2325 | except DataIsObject: | |
2320 | # macros have a special edit function |
|
2326 | # macros have a special edit function | |
2321 | if isinstance(data, Macro): |
|
2327 | if isinstance(data, Macro): | |
2322 | self._edit_macro(args,data) |
|
2328 | self._edit_macro(args,data) | |
2323 | return |
|
2329 | return | |
2324 |
|
2330 | |||
2325 | # For objects, try to edit the file where they are defined |
|
2331 | # For objects, try to edit the file where they are defined | |
2326 | try: |
|
2332 | try: | |
2327 | filename = inspect.getabsfile(data) |
|
2333 | filename = inspect.getabsfile(data) | |
2328 | if 'fakemodule' in filename.lower() and inspect.isclass(data): |
|
2334 | if 'fakemodule' in filename.lower() and inspect.isclass(data): | |
2329 | # class created by %edit? Try to find source |
|
2335 | # class created by %edit? Try to find source | |
2330 | # by looking for method definitions instead, the |
|
2336 | # by looking for method definitions instead, the | |
2331 | # __module__ in those classes is FakeModule. |
|
2337 | # __module__ in those classes is FakeModule. | |
2332 | attrs = [getattr(data, aname) for aname in dir(data)] |
|
2338 | attrs = [getattr(data, aname) for aname in dir(data)] | |
2333 | for attr in attrs: |
|
2339 | for attr in attrs: | |
2334 | if not inspect.ismethod(attr): |
|
2340 | if not inspect.ismethod(attr): | |
2335 | continue |
|
2341 | continue | |
2336 | filename = inspect.getabsfile(attr) |
|
2342 | filename = inspect.getabsfile(attr) | |
2337 | if filename and 'fakemodule' not in filename.lower(): |
|
2343 | if filename and 'fakemodule' not in filename.lower(): | |
2338 | # change the attribute to be the edit target instead |
|
2344 | # change the attribute to be the edit target instead | |
2339 | data = attr |
|
2345 | data = attr | |
2340 | break |
|
2346 | break | |
2341 |
|
2347 | |||
2342 | datafile = 1 |
|
2348 | datafile = 1 | |
2343 | except TypeError: |
|
2349 | except TypeError: | |
2344 | filename = make_filename(args) |
|
2350 | filename = make_filename(args) | |
2345 | datafile = 1 |
|
2351 | datafile = 1 | |
2346 | warn('Could not find file where `%s` is defined.\n' |
|
2352 | warn('Could not find file where `%s` is defined.\n' | |
2347 | 'Opening a file named `%s`' % (args,filename)) |
|
2353 | 'Opening a file named `%s`' % (args,filename)) | |
2348 | # Now, make sure we can actually read the source (if it was in |
|
2354 | # Now, make sure we can actually read the source (if it was in | |
2349 | # a temp file it's gone by now). |
|
2355 | # a temp file it's gone by now). | |
2350 | if datafile: |
|
2356 | if datafile: | |
2351 | try: |
|
2357 | try: | |
2352 | if lineno is None: |
|
2358 | if lineno is None: | |
2353 | lineno = inspect.getsourcelines(data)[1] |
|
2359 | lineno = inspect.getsourcelines(data)[1] | |
2354 | except IOError: |
|
2360 | except IOError: | |
2355 | filename = make_filename(args) |
|
2361 | filename = make_filename(args) | |
2356 | if filename is None: |
|
2362 | if filename is None: | |
2357 | warn('The file `%s` where `%s` was defined cannot ' |
|
2363 | warn('The file `%s` where `%s` was defined cannot ' | |
2358 | 'be read.' % (filename,data)) |
|
2364 | 'be read.' % (filename,data)) | |
2359 | return |
|
2365 | return | |
2360 | use_temp = False |
|
2366 | use_temp = False | |
2361 |
|
2367 | |||
2362 | if use_temp: |
|
2368 | if use_temp: | |
2363 | filename = self.shell.mktempfile(data) |
|
2369 | filename = self.shell.mktempfile(data) | |
2364 | print 'IPython will make a temporary file named:',filename |
|
2370 | print 'IPython will make a temporary file named:',filename | |
2365 |
|
2371 | |||
2366 | # do actual editing here |
|
2372 | # do actual editing here | |
2367 | print 'Editing...', |
|
2373 | print 'Editing...', | |
2368 | sys.stdout.flush() |
|
2374 | sys.stdout.flush() | |
2369 | try: |
|
2375 | try: | |
2370 | # Quote filenames that may have spaces in them |
|
2376 | # Quote filenames that may have spaces in them | |
2371 | if ' ' in filename: |
|
2377 | if ' ' in filename: | |
2372 | filename = "%s" % filename |
|
2378 | filename = "%s" % filename | |
2373 | self.shell.hooks.editor(filename,lineno) |
|
2379 | self.shell.hooks.editor(filename,lineno) | |
2374 | except TryNext: |
|
2380 | except TryNext: | |
2375 | warn('Could not open editor') |
|
2381 | warn('Could not open editor') | |
2376 | return |
|
2382 | return | |
2377 |
|
2383 | |||
2378 | # XXX TODO: should this be generalized for all string vars? |
|
2384 | # XXX TODO: should this be generalized for all string vars? | |
2379 | # For now, this is special-cased to blocks created by cpaste |
|
2385 | # For now, this is special-cased to blocks created by cpaste | |
2380 | if args.strip() == 'pasted_block': |
|
2386 | if args.strip() == 'pasted_block': | |
2381 | self.shell.user_ns['pasted_block'] = file_read(filename) |
|
2387 | self.shell.user_ns['pasted_block'] = file_read(filename) | |
2382 |
|
2388 | |||
2383 | if 'x' in opts: # -x prevents actual execution |
|
2389 | if 'x' in opts: # -x prevents actual execution | |
2384 |
|
2390 | |||
2385 | else: |
|
2391 | else: | |
2386 | print 'done. Executing edited code...' |
|
2392 | print 'done. Executing edited code...' | |
2387 | if opts_raw: |
|
2393 | if opts_raw: | |
2388 | self.shell.run_cell(file_read(filename), |
|
2394 | self.shell.run_cell(file_read(filename), | |
2389 | store_history=False) |
|
2395 | store_history=False) | |
2390 | else: |
|
2396 | else: | |
2391 | self.shell.safe_execfile(filename,self.shell.user_ns, |
|
2397 | self.shell.safe_execfile(filename,self.shell.user_ns, | |
2392 | self.shell.user_ns) |
|
2398 | self.shell.user_ns) | |
2393 |
|
2399 | |||
2394 |
|
2400 | |||
2395 | if use_temp: |
|
2401 | if use_temp: | |
2396 | try: |
|
2402 | try: | |
2397 | return open(filename).read() |
|
2403 | return open(filename).read() | |
2398 | except IOError,msg: |
|
2404 | except IOError,msg: | |
2399 | if msg.filename == filename: |
|
2405 | if msg.filename == filename: | |
2400 | warn('File not found. Did you forget to save?') |
|
2406 | warn('File not found. Did you forget to save?') | |
2401 | return |
|
2407 | return | |
2402 | else: |
|
2408 | else: | |
2403 | self.shell.showtraceback() |
|
2409 | self.shell.showtraceback() | |
2404 |
|
2410 | |||
2405 | def magic_xmode(self,parameter_s = ''): |
|
2411 | def magic_xmode(self,parameter_s = ''): | |
2406 | """Switch modes for the exception handlers. |
|
2412 | """Switch modes for the exception handlers. | |
2407 |
|
2413 | |||
2408 | Valid modes: Plain, Context and Verbose. |
|
2414 | Valid modes: Plain, Context and Verbose. | |
2409 |
|
2415 | |||
2410 | If called without arguments, acts as a toggle.""" |
|
2416 | If called without arguments, acts as a toggle.""" | |
2411 |
|
2417 | |||
2412 | def xmode_switch_err(name): |
|
2418 | def xmode_switch_err(name): | |
2413 | warn('Error changing %s exception modes.\n%s' % |
|
2419 | warn('Error changing %s exception modes.\n%s' % | |
2414 | (name,sys.exc_info()[1])) |
|
2420 | (name,sys.exc_info()[1])) | |
2415 |
|
2421 | |||
2416 | shell = self.shell |
|
2422 | shell = self.shell | |
2417 | new_mode = parameter_s.strip().capitalize() |
|
2423 | new_mode = parameter_s.strip().capitalize() | |
2418 | try: |
|
2424 | try: | |
2419 | shell.InteractiveTB.set_mode(mode=new_mode) |
|
2425 | shell.InteractiveTB.set_mode(mode=new_mode) | |
2420 | print 'Exception reporting mode:',shell.InteractiveTB.mode |
|
2426 | print 'Exception reporting mode:',shell.InteractiveTB.mode | |
2421 | except: |
|
2427 | except: | |
2422 | xmode_switch_err('user') |
|
2428 | xmode_switch_err('user') | |
2423 |
|
2429 | |||
2424 | def magic_colors(self,parameter_s = ''): |
|
2430 | def magic_colors(self,parameter_s = ''): | |
2425 | """Switch color scheme for prompts, info system and exception handlers. |
|
2431 | """Switch color scheme for prompts, info system and exception handlers. | |
2426 |
|
2432 | |||
2427 | Currently implemented schemes: NoColor, Linux, LightBG. |
|
2433 | Currently implemented schemes: NoColor, Linux, LightBG. | |
2428 |
|
2434 | |||
2429 | Color scheme names are not case-sensitive. |
|
2435 | Color scheme names are not case-sensitive. | |
2430 |
|
2436 | |||
2431 | Examples |
|
2437 | Examples | |
2432 | -------- |
|
2438 | -------- | |
2433 | To get a plain black and white terminal:: |
|
2439 | To get a plain black and white terminal:: | |
2434 |
|
2440 | |||
2435 | %colors nocolor |
|
2441 | %colors nocolor | |
2436 | """ |
|
2442 | """ | |
2437 |
|
2443 | |||
2438 | def color_switch_err(name): |
|
2444 | def color_switch_err(name): | |
2439 | warn('Error changing %s color schemes.\n%s' % |
|
2445 | warn('Error changing %s color schemes.\n%s' % | |
2440 | (name,sys.exc_info()[1])) |
|
2446 | (name,sys.exc_info()[1])) | |
2441 |
|
2447 | |||
2442 |
|
2448 | |||
2443 | new_scheme = parameter_s.strip() |
|
2449 | new_scheme = parameter_s.strip() | |
2444 | if not new_scheme: |
|
2450 | if not new_scheme: | |
2445 | raise UsageError( |
|
2451 | raise UsageError( | |
2446 | "%colors: you must specify a color scheme. See '%colors?'") |
|
2452 | "%colors: you must specify a color scheme. See '%colors?'") | |
2447 | return |
|
2453 | return | |
2448 | # local shortcut |
|
2454 | # local shortcut | |
2449 | shell = self.shell |
|
2455 | shell = self.shell | |
2450 |
|
2456 | |||
2451 | import IPython.utils.rlineimpl as readline |
|
2457 | import IPython.utils.rlineimpl as readline | |
2452 |
|
2458 | |||
2453 | if not readline.have_readline and sys.platform == "win32": |
|
2459 | if not readline.have_readline and sys.platform == "win32": | |
2454 | msg = """\ |
|
2460 | msg = """\ | |
2455 | Proper color support under MS Windows requires the pyreadline library. |
|
2461 | Proper color support under MS Windows requires the pyreadline library. | |
2456 | You can find it at: |
|
2462 | You can find it at: | |
2457 | http://ipython.scipy.org/moin/PyReadline/Intro |
|
2463 | http://ipython.scipy.org/moin/PyReadline/Intro | |
2458 | Gary's readline needs the ctypes module, from: |
|
2464 | Gary's readline needs the ctypes module, from: | |
2459 | http://starship.python.net/crew/theller/ctypes |
|
2465 | http://starship.python.net/crew/theller/ctypes | |
2460 | (Note that ctypes is already part of Python versions 2.5 and newer). |
|
2466 | (Note that ctypes is already part of Python versions 2.5 and newer). | |
2461 |
|
2467 | |||
2462 | Defaulting color scheme to 'NoColor'""" |
|
2468 | Defaulting color scheme to 'NoColor'""" | |
2463 | new_scheme = 'NoColor' |
|
2469 | new_scheme = 'NoColor' | |
2464 | warn(msg) |
|
2470 | warn(msg) | |
2465 |
|
2471 | |||
2466 | # readline option is 0 |
|
2472 | # readline option is 0 | |
2467 | if not shell.has_readline: |
|
2473 | if not shell.has_readline: | |
2468 | new_scheme = 'NoColor' |
|
2474 | new_scheme = 'NoColor' | |
2469 |
|
2475 | |||
2470 | # Set prompt colors |
|
2476 | # Set prompt colors | |
2471 | try: |
|
2477 | try: | |
2472 | shell.displayhook.set_colors(new_scheme) |
|
2478 | shell.displayhook.set_colors(new_scheme) | |
2473 | except: |
|
2479 | except: | |
2474 | color_switch_err('prompt') |
|
2480 | color_switch_err('prompt') | |
2475 | else: |
|
2481 | else: | |
2476 | shell.colors = \ |
|
2482 | shell.colors = \ | |
2477 | shell.displayhook.color_table.active_scheme_name |
|
2483 | shell.displayhook.color_table.active_scheme_name | |
2478 | # Set exception colors |
|
2484 | # Set exception colors | |
2479 | try: |
|
2485 | try: | |
2480 | shell.InteractiveTB.set_colors(scheme = new_scheme) |
|
2486 | shell.InteractiveTB.set_colors(scheme = new_scheme) | |
2481 | shell.SyntaxTB.set_colors(scheme = new_scheme) |
|
2487 | shell.SyntaxTB.set_colors(scheme = new_scheme) | |
2482 | except: |
|
2488 | except: | |
2483 | color_switch_err('exception') |
|
2489 | color_switch_err('exception') | |
2484 |
|
2490 | |||
2485 | # Set info (for 'object?') colors |
|
2491 | # Set info (for 'object?') colors | |
2486 | if shell.color_info: |
|
2492 | if shell.color_info: | |
2487 | try: |
|
2493 | try: | |
2488 | shell.inspector.set_active_scheme(new_scheme) |
|
2494 | shell.inspector.set_active_scheme(new_scheme) | |
2489 | except: |
|
2495 | except: | |
2490 | color_switch_err('object inspector') |
|
2496 | color_switch_err('object inspector') | |
2491 | else: |
|
2497 | else: | |
2492 | shell.inspector.set_active_scheme('NoColor') |
|
2498 | shell.inspector.set_active_scheme('NoColor') | |
2493 |
|
2499 | |||
2494 | def magic_pprint(self, parameter_s=''): |
|
2500 | def magic_pprint(self, parameter_s=''): | |
2495 | """Toggle pretty printing on/off.""" |
|
2501 | """Toggle pretty printing on/off.""" | |
2496 | ptformatter = self.shell.display_formatter.formatters['text/plain'] |
|
2502 | ptformatter = self.shell.display_formatter.formatters['text/plain'] | |
2497 | ptformatter.pprint = bool(1 - ptformatter.pprint) |
|
2503 | ptformatter.pprint = bool(1 - ptformatter.pprint) | |
2498 | print 'Pretty printing has been turned', \ |
|
2504 | print 'Pretty printing has been turned', \ | |
2499 | ['OFF','ON'][ptformatter.pprint] |
|
2505 | ['OFF','ON'][ptformatter.pprint] | |
2500 |
|
2506 | |||
2501 | def magic_Exit(self, parameter_s=''): |
|
2507 | def magic_Exit(self, parameter_s=''): | |
2502 | """Exit IPython.""" |
|
2508 | """Exit IPython.""" | |
2503 |
|
2509 | |||
2504 | self.shell.ask_exit() |
|
2510 | self.shell.ask_exit() | |
2505 |
|
2511 | |||
2506 | # Add aliases as magics so all common forms work: exit, quit, Exit, Quit. |
|
2512 | # Add aliases as magics so all common forms work: exit, quit, Exit, Quit. | |
2507 | magic_exit = magic_quit = magic_Quit = magic_Exit |
|
2513 | magic_exit = magic_quit = magic_Quit = magic_Exit | |
2508 |
|
2514 | |||
2509 | #...................................................................... |
|
2515 | #...................................................................... | |
2510 | # Functions to implement unix shell-type things |
|
2516 | # Functions to implement unix shell-type things | |
2511 |
|
2517 | |||
2512 | @testdec.skip_doctest |
|
2518 | @testdec.skip_doctest | |
2513 | def magic_alias(self, parameter_s = ''): |
|
2519 | def magic_alias(self, parameter_s = ''): | |
2514 | """Define an alias for a system command. |
|
2520 | """Define an alias for a system command. | |
2515 |
|
2521 | |||
2516 | '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd' |
|
2522 | '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd' | |
2517 |
|
2523 | |||
2518 | Then, typing 'alias_name params' will execute the system command 'cmd |
|
2524 | Then, typing 'alias_name params' will execute the system command 'cmd | |
2519 | params' (from your underlying operating system). |
|
2525 | params' (from your underlying operating system). | |
2520 |
|
2526 | |||
2521 | Aliases have lower precedence than magic functions and Python normal |
|
2527 | Aliases have lower precedence than magic functions and Python normal | |
2522 | variables, so if 'foo' is both a Python variable and an alias, the |
|
2528 | variables, so if 'foo' is both a Python variable and an alias, the | |
2523 | alias can not be executed until 'del foo' removes the Python variable. |
|
2529 | alias can not be executed until 'del foo' removes the Python variable. | |
2524 |
|
2530 | |||
2525 | You can use the %l specifier in an alias definition to represent the |
|
2531 | You can use the %l specifier in an alias definition to represent the | |
2526 | whole line when the alias is called. For example: |
|
2532 | whole line when the alias is called. For example: | |
2527 |
|
2533 | |||
2528 | In [2]: alias bracket echo "Input in brackets: <%l>" |
|
2534 | In [2]: alias bracket echo "Input in brackets: <%l>" | |
2529 | In [3]: bracket hello world |
|
2535 | In [3]: bracket hello world | |
2530 | Input in brackets: <hello world> |
|
2536 | Input in brackets: <hello world> | |
2531 |
|
2537 | |||
2532 | You can also define aliases with parameters using %s specifiers (one |
|
2538 | You can also define aliases with parameters using %s specifiers (one | |
2533 | per parameter): |
|
2539 | per parameter): | |
2534 |
|
2540 | |||
2535 | In [1]: alias parts echo first %s second %s |
|
2541 | In [1]: alias parts echo first %s second %s | |
2536 | In [2]: %parts A B |
|
2542 | In [2]: %parts A B | |
2537 | first A second B |
|
2543 | first A second B | |
2538 | In [3]: %parts A |
|
2544 | In [3]: %parts A | |
2539 | Incorrect number of arguments: 2 expected. |
|
2545 | Incorrect number of arguments: 2 expected. | |
2540 | parts is an alias to: 'echo first %s second %s' |
|
2546 | parts is an alias to: 'echo first %s second %s' | |
2541 |
|
2547 | |||
2542 | Note that %l and %s are mutually exclusive. You can only use one or |
|
2548 | Note that %l and %s are mutually exclusive. You can only use one or | |
2543 | the other in your aliases. |
|
2549 | the other in your aliases. | |
2544 |
|
2550 | |||
2545 | Aliases expand Python variables just like system calls using ! or !! |
|
2551 | Aliases expand Python variables just like system calls using ! or !! | |
2546 | do: all expressions prefixed with '$' get expanded. For details of |
|
2552 | do: all expressions prefixed with '$' get expanded. For details of | |
2547 | the semantic rules, see PEP-215: |
|
2553 | the semantic rules, see PEP-215: | |
2548 | http://www.python.org/peps/pep-0215.html. This is the library used by |
|
2554 | http://www.python.org/peps/pep-0215.html. This is the library used by | |
2549 | IPython for variable expansion. If you want to access a true shell |
|
2555 | IPython for variable expansion. If you want to access a true shell | |
2550 | variable, an extra $ is necessary to prevent its expansion by IPython: |
|
2556 | variable, an extra $ is necessary to prevent its expansion by IPython: | |
2551 |
|
2557 | |||
2552 | In [6]: alias show echo |
|
2558 | In [6]: alias show echo | |
2553 | In [7]: PATH='A Python string' |
|
2559 | In [7]: PATH='A Python string' | |
2554 | In [8]: show $PATH |
|
2560 | In [8]: show $PATH | |
2555 | A Python string |
|
2561 | A Python string | |
2556 | In [9]: show $$PATH |
|
2562 | In [9]: show $$PATH | |
2557 | /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:... |
|
2563 | /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:... | |
2558 |
|
2564 | |||
2559 | You can use the alias facility to acess all of $PATH. See the %rehash |
|
2565 | You can use the alias facility to acess all of $PATH. See the %rehash | |
2560 | and %rehashx functions, which automatically create aliases for the |
|
2566 | and %rehashx functions, which automatically create aliases for the | |
2561 | contents of your $PATH. |
|
2567 | contents of your $PATH. | |
2562 |
|
2568 | |||
2563 | If called with no parameters, %alias prints the current alias table.""" |
|
2569 | If called with no parameters, %alias prints the current alias table.""" | |
2564 |
|
2570 | |||
2565 | par = parameter_s.strip() |
|
2571 | par = parameter_s.strip() | |
2566 | if not par: |
|
2572 | if not par: | |
2567 | stored = self.db.get('stored_aliases', {} ) |
|
2573 | stored = self.db.get('stored_aliases', {} ) | |
2568 | aliases = sorted(self.shell.alias_manager.aliases) |
|
2574 | aliases = sorted(self.shell.alias_manager.aliases) | |
2569 | # for k, v in stored: |
|
2575 | # for k, v in stored: | |
2570 | # atab.append(k, v[0]) |
|
2576 | # atab.append(k, v[0]) | |
2571 |
|
2577 | |||
2572 | print "Total number of aliases:", len(aliases) |
|
2578 | print "Total number of aliases:", len(aliases) | |
2573 | sys.stdout.flush() |
|
2579 | sys.stdout.flush() | |
2574 | return aliases |
|
2580 | return aliases | |
2575 |
|
2581 | |||
2576 | # Now try to define a new one |
|
2582 | # Now try to define a new one | |
2577 | try: |
|
2583 | try: | |
2578 | alias,cmd = par.split(None, 1) |
|
2584 | alias,cmd = par.split(None, 1) | |
2579 | except: |
|
2585 | except: | |
2580 | print oinspect.getdoc(self.magic_alias) |
|
2586 | print oinspect.getdoc(self.magic_alias) | |
2581 | else: |
|
2587 | else: | |
2582 | self.shell.alias_manager.soft_define_alias(alias, cmd) |
|
2588 | self.shell.alias_manager.soft_define_alias(alias, cmd) | |
2583 | # end magic_alias |
|
2589 | # end magic_alias | |
2584 |
|
2590 | |||
2585 | def magic_unalias(self, parameter_s = ''): |
|
2591 | def magic_unalias(self, parameter_s = ''): | |
2586 | """Remove an alias""" |
|
2592 | """Remove an alias""" | |
2587 |
|
2593 | |||
2588 | aname = parameter_s.strip() |
|
2594 | aname = parameter_s.strip() | |
2589 | self.shell.alias_manager.undefine_alias(aname) |
|
2595 | self.shell.alias_manager.undefine_alias(aname) | |
2590 | stored = self.db.get('stored_aliases', {} ) |
|
2596 | stored = self.db.get('stored_aliases', {} ) | |
2591 | if aname in stored: |
|
2597 | if aname in stored: | |
2592 | print "Removing %stored alias",aname |
|
2598 | print "Removing %stored alias",aname | |
2593 | del stored[aname] |
|
2599 | del stored[aname] | |
2594 | self.db['stored_aliases'] = stored |
|
2600 | self.db['stored_aliases'] = stored | |
2595 |
|
2601 | |||
2596 | def magic_rehashx(self, parameter_s = ''): |
|
2602 | def magic_rehashx(self, parameter_s = ''): | |
2597 | """Update the alias table with all executable files in $PATH. |
|
2603 | """Update the alias table with all executable files in $PATH. | |
2598 |
|
2604 | |||
2599 | This version explicitly checks that every entry in $PATH is a file |
|
2605 | This version explicitly checks that every entry in $PATH is a file | |
2600 | with execute access (os.X_OK), so it is much slower than %rehash. |
|
2606 | with execute access (os.X_OK), so it is much slower than %rehash. | |
2601 |
|
2607 | |||
2602 | Under Windows, it checks executability as a match agains a |
|
2608 | Under Windows, it checks executability as a match agains a | |
2603 | '|'-separated string of extensions, stored in the IPython config |
|
2609 | '|'-separated string of extensions, stored in the IPython config | |
2604 | variable win_exec_ext. This defaults to 'exe|com|bat'. |
|
2610 | variable win_exec_ext. This defaults to 'exe|com|bat'. | |
2605 |
|
2611 | |||
2606 | This function also resets the root module cache of module completer, |
|
2612 | This function also resets the root module cache of module completer, | |
2607 | used on slow filesystems. |
|
2613 | used on slow filesystems. | |
2608 | """ |
|
2614 | """ | |
2609 | from IPython.core.alias import InvalidAliasError |
|
2615 | from IPython.core.alias import InvalidAliasError | |
2610 |
|
2616 | |||
2611 | # for the benefit of module completer in ipy_completers.py |
|
2617 | # for the benefit of module completer in ipy_completers.py | |
2612 | del self.db['rootmodules'] |
|
2618 | del self.db['rootmodules'] | |
2613 |
|
2619 | |||
2614 | path = [os.path.abspath(os.path.expanduser(p)) for p in |
|
2620 | path = [os.path.abspath(os.path.expanduser(p)) for p in | |
2615 | os.environ.get('PATH','').split(os.pathsep)] |
|
2621 | os.environ.get('PATH','').split(os.pathsep)] | |
2616 | path = filter(os.path.isdir,path) |
|
2622 | path = filter(os.path.isdir,path) | |
2617 |
|
2623 | |||
2618 | syscmdlist = [] |
|
2624 | syscmdlist = [] | |
2619 | # Now define isexec in a cross platform manner. |
|
2625 | # Now define isexec in a cross platform manner. | |
2620 | if os.name == 'posix': |
|
2626 | if os.name == 'posix': | |
2621 | isexec = lambda fname:os.path.isfile(fname) and \ |
|
2627 | isexec = lambda fname:os.path.isfile(fname) and \ | |
2622 | os.access(fname,os.X_OK) |
|
2628 | os.access(fname,os.X_OK) | |
2623 | else: |
|
2629 | else: | |
2624 | try: |
|
2630 | try: | |
2625 | winext = os.environ['pathext'].replace(';','|').replace('.','') |
|
2631 | winext = os.environ['pathext'].replace(';','|').replace('.','') | |
2626 | except KeyError: |
|
2632 | except KeyError: | |
2627 | winext = 'exe|com|bat|py' |
|
2633 | winext = 'exe|com|bat|py' | |
2628 | if 'py' not in winext: |
|
2634 | if 'py' not in winext: | |
2629 | winext += '|py' |
|
2635 | winext += '|py' | |
2630 | execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE) |
|
2636 | execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE) | |
2631 | isexec = lambda fname:os.path.isfile(fname) and execre.match(fname) |
|
2637 | isexec = lambda fname:os.path.isfile(fname) and execre.match(fname) | |
2632 | savedir = os.getcwd() |
|
2638 | savedir = os.getcwd() | |
2633 |
|
2639 | |||
2634 | # Now walk the paths looking for executables to alias. |
|
2640 | # Now walk the paths looking for executables to alias. | |
2635 | try: |
|
2641 | try: | |
2636 | # write the whole loop for posix/Windows so we don't have an if in |
|
2642 | # write the whole loop for posix/Windows so we don't have an if in | |
2637 | # the innermost part |
|
2643 | # the innermost part | |
2638 | if os.name == 'posix': |
|
2644 | if os.name == 'posix': | |
2639 | for pdir in path: |
|
2645 | for pdir in path: | |
2640 | os.chdir(pdir) |
|
2646 | os.chdir(pdir) | |
2641 | for ff in os.listdir(pdir): |
|
2647 | for ff in os.listdir(pdir): | |
2642 | if isexec(ff): |
|
2648 | if isexec(ff): | |
2643 | try: |
|
2649 | try: | |
2644 | # Removes dots from the name since ipython |
|
2650 | # Removes dots from the name since ipython | |
2645 | # will assume names with dots to be python. |
|
2651 | # will assume names with dots to be python. | |
2646 | self.shell.alias_manager.define_alias( |
|
2652 | self.shell.alias_manager.define_alias( | |
2647 | ff.replace('.',''), ff) |
|
2653 | ff.replace('.',''), ff) | |
2648 | except InvalidAliasError: |
|
2654 | except InvalidAliasError: | |
2649 | pass |
|
2655 | pass | |
2650 | else: |
|
2656 | else: | |
2651 | syscmdlist.append(ff) |
|
2657 | syscmdlist.append(ff) | |
2652 | else: |
|
2658 | else: | |
2653 | no_alias = self.shell.alias_manager.no_alias |
|
2659 | no_alias = self.shell.alias_manager.no_alias | |
2654 | for pdir in path: |
|
2660 | for pdir in path: | |
2655 | os.chdir(pdir) |
|
2661 | os.chdir(pdir) | |
2656 | for ff in os.listdir(pdir): |
|
2662 | for ff in os.listdir(pdir): | |
2657 | base, ext = os.path.splitext(ff) |
|
2663 | base, ext = os.path.splitext(ff) | |
2658 | if isexec(ff) and base.lower() not in no_alias: |
|
2664 | if isexec(ff) and base.lower() not in no_alias: | |
2659 | if ext.lower() == '.exe': |
|
2665 | if ext.lower() == '.exe': | |
2660 | ff = base |
|
2666 | ff = base | |
2661 | try: |
|
2667 | try: | |
2662 | # Removes dots from the name since ipython |
|
2668 | # Removes dots from the name since ipython | |
2663 | # will assume names with dots to be python. |
|
2669 | # will assume names with dots to be python. | |
2664 | self.shell.alias_manager.define_alias( |
|
2670 | self.shell.alias_manager.define_alias( | |
2665 | base.lower().replace('.',''), ff) |
|
2671 | base.lower().replace('.',''), ff) | |
2666 | except InvalidAliasError: |
|
2672 | except InvalidAliasError: | |
2667 | pass |
|
2673 | pass | |
2668 | syscmdlist.append(ff) |
|
2674 | syscmdlist.append(ff) | |
2669 | db = self.db |
|
2675 | db = self.db | |
2670 | db['syscmdlist'] = syscmdlist |
|
2676 | db['syscmdlist'] = syscmdlist | |
2671 | finally: |
|
2677 | finally: | |
2672 | os.chdir(savedir) |
|
2678 | os.chdir(savedir) | |
2673 |
|
2679 | |||
2674 | @testdec.skip_doctest |
|
2680 | @testdec.skip_doctest | |
2675 | def magic_pwd(self, parameter_s = ''): |
|
2681 | def magic_pwd(self, parameter_s = ''): | |
2676 | """Return the current working directory path. |
|
2682 | """Return the current working directory path. | |
2677 |
|
2683 | |||
2678 | Examples |
|
2684 | Examples | |
2679 | -------- |
|
2685 | -------- | |
2680 | :: |
|
2686 | :: | |
2681 |
|
2687 | |||
2682 | In [9]: pwd |
|
2688 | In [9]: pwd | |
2683 | Out[9]: '/home/tsuser/sprint/ipython' |
|
2689 | Out[9]: '/home/tsuser/sprint/ipython' | |
2684 | """ |
|
2690 | """ | |
2685 | return os.getcwd() |
|
2691 | return os.getcwd() | |
2686 |
|
2692 | |||
2687 | @testdec.skip_doctest |
|
2693 | @testdec.skip_doctest | |
2688 | def magic_cd(self, parameter_s=''): |
|
2694 | def magic_cd(self, parameter_s=''): | |
2689 | """Change the current working directory. |
|
2695 | """Change the current working directory. | |
2690 |
|
2696 | |||
2691 | This command automatically maintains an internal list of directories |
|
2697 | This command automatically maintains an internal list of directories | |
2692 | you visit during your IPython session, in the variable _dh. The |
|
2698 | you visit during your IPython session, in the variable _dh. The | |
2693 | command %dhist shows this history nicely formatted. You can also |
|
2699 | command %dhist shows this history nicely formatted. You can also | |
2694 | do 'cd -<tab>' to see directory history conveniently. |
|
2700 | do 'cd -<tab>' to see directory history conveniently. | |
2695 |
|
2701 | |||
2696 | Usage: |
|
2702 | Usage: | |
2697 |
|
2703 | |||
2698 | cd 'dir': changes to directory 'dir'. |
|
2704 | cd 'dir': changes to directory 'dir'. | |
2699 |
|
2705 | |||
2700 | cd -: changes to the last visited directory. |
|
2706 | cd -: changes to the last visited directory. | |
2701 |
|
2707 | |||
2702 | cd -<n>: changes to the n-th directory in the directory history. |
|
2708 | cd -<n>: changes to the n-th directory in the directory history. | |
2703 |
|
2709 | |||
2704 | cd --foo: change to directory that matches 'foo' in history |
|
2710 | cd --foo: change to directory that matches 'foo' in history | |
2705 |
|
2711 | |||
2706 | cd -b <bookmark_name>: jump to a bookmark set by %bookmark |
|
2712 | cd -b <bookmark_name>: jump to a bookmark set by %bookmark | |
2707 | (note: cd <bookmark_name> is enough if there is no |
|
2713 | (note: cd <bookmark_name> is enough if there is no | |
2708 | directory <bookmark_name>, but a bookmark with the name exists.) |
|
2714 | directory <bookmark_name>, but a bookmark with the name exists.) | |
2709 | 'cd -b <tab>' allows you to tab-complete bookmark names. |
|
2715 | 'cd -b <tab>' allows you to tab-complete bookmark names. | |
2710 |
|
2716 | |||
2711 | Options: |
|
2717 | Options: | |
2712 |
|
2718 | |||
2713 | -q: quiet. Do not print the working directory after the cd command is |
|
2719 | -q: quiet. Do not print the working directory after the cd command is | |
2714 | executed. By default IPython's cd command does print this directory, |
|
2720 | executed. By default IPython's cd command does print this directory, | |
2715 | since the default prompts do not display path information. |
|
2721 | since the default prompts do not display path information. | |
2716 |
|
2722 | |||
2717 | Note that !cd doesn't work for this purpose because the shell where |
|
2723 | Note that !cd doesn't work for this purpose because the shell where | |
2718 | !command runs is immediately discarded after executing 'command'. |
|
2724 | !command runs is immediately discarded after executing 'command'. | |
2719 |
|
2725 | |||
2720 | Examples |
|
2726 | Examples | |
2721 | -------- |
|
2727 | -------- | |
2722 | :: |
|
2728 | :: | |
2723 |
|
2729 | |||
2724 | In [10]: cd parent/child |
|
2730 | In [10]: cd parent/child | |
2725 | /home/tsuser/parent/child |
|
2731 | /home/tsuser/parent/child | |
2726 | """ |
|
2732 | """ | |
2727 |
|
2733 | |||
2728 | parameter_s = parameter_s.strip() |
|
2734 | parameter_s = parameter_s.strip() | |
2729 | #bkms = self.shell.persist.get("bookmarks",{}) |
|
2735 | #bkms = self.shell.persist.get("bookmarks",{}) | |
2730 |
|
2736 | |||
2731 | oldcwd = os.getcwd() |
|
2737 | oldcwd = os.getcwd() | |
2732 | numcd = re.match(r'(-)(\d+)$',parameter_s) |
|
2738 | numcd = re.match(r'(-)(\d+)$',parameter_s) | |
2733 | # jump in directory history by number |
|
2739 | # jump in directory history by number | |
2734 | if numcd: |
|
2740 | if numcd: | |
2735 | nn = int(numcd.group(2)) |
|
2741 | nn = int(numcd.group(2)) | |
2736 | try: |
|
2742 | try: | |
2737 | ps = self.shell.user_ns['_dh'][nn] |
|
2743 | ps = self.shell.user_ns['_dh'][nn] | |
2738 | except IndexError: |
|
2744 | except IndexError: | |
2739 | print 'The requested directory does not exist in history.' |
|
2745 | print 'The requested directory does not exist in history.' | |
2740 | return |
|
2746 | return | |
2741 | else: |
|
2747 | else: | |
2742 | opts = {} |
|
2748 | opts = {} | |
2743 | elif parameter_s.startswith('--'): |
|
2749 | elif parameter_s.startswith('--'): | |
2744 | ps = None |
|
2750 | ps = None | |
2745 | fallback = None |
|
2751 | fallback = None | |
2746 | pat = parameter_s[2:] |
|
2752 | pat = parameter_s[2:] | |
2747 | dh = self.shell.user_ns['_dh'] |
|
2753 | dh = self.shell.user_ns['_dh'] | |
2748 | # first search only by basename (last component) |
|
2754 | # first search only by basename (last component) | |
2749 | for ent in reversed(dh): |
|
2755 | for ent in reversed(dh): | |
2750 | if pat in os.path.basename(ent) and os.path.isdir(ent): |
|
2756 | if pat in os.path.basename(ent) and os.path.isdir(ent): | |
2751 | ps = ent |
|
2757 | ps = ent | |
2752 | break |
|
2758 | break | |
2753 |
|
2759 | |||
2754 | if fallback is None and pat in ent and os.path.isdir(ent): |
|
2760 | if fallback is None and pat in ent and os.path.isdir(ent): | |
2755 | fallback = ent |
|
2761 | fallback = ent | |
2756 |
|
2762 | |||
2757 | # if we have no last part match, pick the first full path match |
|
2763 | # if we have no last part match, pick the first full path match | |
2758 | if ps is None: |
|
2764 | if ps is None: | |
2759 | ps = fallback |
|
2765 | ps = fallback | |
2760 |
|
2766 | |||
2761 | if ps is None: |
|
2767 | if ps is None: | |
2762 | print "No matching entry in directory history" |
|
2768 | print "No matching entry in directory history" | |
2763 | return |
|
2769 | return | |
2764 | else: |
|
2770 | else: | |
2765 | opts = {} |
|
2771 | opts = {} | |
2766 |
|
2772 | |||
2767 |
|
2773 | |||
2768 | else: |
|
2774 | else: | |
2769 | #turn all non-space-escaping backslashes to slashes, |
|
2775 | #turn all non-space-escaping backslashes to slashes, | |
2770 | # for c:\windows\directory\names\ |
|
2776 | # for c:\windows\directory\names\ | |
2771 | parameter_s = re.sub(r'\\(?! )','/', parameter_s) |
|
2777 | parameter_s = re.sub(r'\\(?! )','/', parameter_s) | |
2772 | opts,ps = self.parse_options(parameter_s,'qb',mode='string') |
|
2778 | opts,ps = self.parse_options(parameter_s,'qb',mode='string') | |
2773 | # jump to previous |
|
2779 | # jump to previous | |
2774 | if ps == '-': |
|
2780 | if ps == '-': | |
2775 | try: |
|
2781 | try: | |
2776 | ps = self.shell.user_ns['_dh'][-2] |
|
2782 | ps = self.shell.user_ns['_dh'][-2] | |
2777 | except IndexError: |
|
2783 | except IndexError: | |
2778 | raise UsageError('%cd -: No previous directory to change to.') |
|
2784 | raise UsageError('%cd -: No previous directory to change to.') | |
2779 | # jump to bookmark if needed |
|
2785 | # jump to bookmark if needed | |
2780 | else: |
|
2786 | else: | |
2781 | if not os.path.isdir(ps) or opts.has_key('b'): |
|
2787 | if not os.path.isdir(ps) or opts.has_key('b'): | |
2782 | bkms = self.db.get('bookmarks', {}) |
|
2788 | bkms = self.db.get('bookmarks', {}) | |
2783 |
|
2789 | |||
2784 | if bkms.has_key(ps): |
|
2790 | if bkms.has_key(ps): | |
2785 | target = bkms[ps] |
|
2791 | target = bkms[ps] | |
2786 | print '(bookmark:%s) -> %s' % (ps,target) |
|
2792 | print '(bookmark:%s) -> %s' % (ps,target) | |
2787 | ps = target |
|
2793 | ps = target | |
2788 | else: |
|
2794 | else: | |
2789 | if opts.has_key('b'): |
|
2795 | if opts.has_key('b'): | |
2790 | raise UsageError("Bookmark '%s' not found. " |
|
2796 | raise UsageError("Bookmark '%s' not found. " | |
2791 | "Use '%%bookmark -l' to see your bookmarks." % ps) |
|
2797 | "Use '%%bookmark -l' to see your bookmarks." % ps) | |
2792 |
|
2798 | |||
2793 | # at this point ps should point to the target dir |
|
2799 | # at this point ps should point to the target dir | |
2794 | if ps: |
|
2800 | if ps: | |
2795 | try: |
|
2801 | try: | |
2796 | os.chdir(os.path.expanduser(ps)) |
|
2802 | os.chdir(os.path.expanduser(ps)) | |
2797 | if hasattr(self.shell, 'term_title') and self.shell.term_title: |
|
2803 | if hasattr(self.shell, 'term_title') and self.shell.term_title: | |
2798 | set_term_title('IPython: ' + abbrev_cwd()) |
|
2804 | set_term_title('IPython: ' + abbrev_cwd()) | |
2799 | except OSError: |
|
2805 | except OSError: | |
2800 | print sys.exc_info()[1] |
|
2806 | print sys.exc_info()[1] | |
2801 | else: |
|
2807 | else: | |
2802 | cwd = os.getcwd() |
|
2808 | cwd = os.getcwd() | |
2803 | dhist = self.shell.user_ns['_dh'] |
|
2809 | dhist = self.shell.user_ns['_dh'] | |
2804 | if oldcwd != cwd: |
|
2810 | if oldcwd != cwd: | |
2805 | dhist.append(cwd) |
|
2811 | dhist.append(cwd) | |
2806 | self.db['dhist'] = compress_dhist(dhist)[-100:] |
|
2812 | self.db['dhist'] = compress_dhist(dhist)[-100:] | |
2807 |
|
2813 | |||
2808 | else: |
|
2814 | else: | |
2809 | os.chdir(self.shell.home_dir) |
|
2815 | os.chdir(self.shell.home_dir) | |
2810 | if hasattr(self.shell, 'term_title') and self.shell.term_title: |
|
2816 | if hasattr(self.shell, 'term_title') and self.shell.term_title: | |
2811 | set_term_title('IPython: ' + '~') |
|
2817 | set_term_title('IPython: ' + '~') | |
2812 | cwd = os.getcwd() |
|
2818 | cwd = os.getcwd() | |
2813 | dhist = self.shell.user_ns['_dh'] |
|
2819 | dhist = self.shell.user_ns['_dh'] | |
2814 |
|
2820 | |||
2815 | if oldcwd != cwd: |
|
2821 | if oldcwd != cwd: | |
2816 | dhist.append(cwd) |
|
2822 | dhist.append(cwd) | |
2817 | self.db['dhist'] = compress_dhist(dhist)[-100:] |
|
2823 | self.db['dhist'] = compress_dhist(dhist)[-100:] | |
2818 | if not 'q' in opts and self.shell.user_ns['_dh']: |
|
2824 | if not 'q' in opts and self.shell.user_ns['_dh']: | |
2819 | print self.shell.user_ns['_dh'][-1] |
|
2825 | print self.shell.user_ns['_dh'][-1] | |
2820 |
|
2826 | |||
2821 |
|
2827 | |||
2822 | def magic_env(self, parameter_s=''): |
|
2828 | def magic_env(self, parameter_s=''): | |
2823 | """List environment variables.""" |
|
2829 | """List environment variables.""" | |
2824 |
|
2830 | |||
2825 | return os.environ.data |
|
2831 | return os.environ.data | |
2826 |
|
2832 | |||
2827 | def magic_pushd(self, parameter_s=''): |
|
2833 | def magic_pushd(self, parameter_s=''): | |
2828 | """Place the current dir on stack and change directory. |
|
2834 | """Place the current dir on stack and change directory. | |
2829 |
|
2835 | |||
2830 | Usage:\\ |
|
2836 | Usage:\\ | |
2831 | %pushd ['dirname'] |
|
2837 | %pushd ['dirname'] | |
2832 | """ |
|
2838 | """ | |
2833 |
|
2839 | |||
2834 | dir_s = self.shell.dir_stack |
|
2840 | dir_s = self.shell.dir_stack | |
2835 | tgt = os.path.expanduser(parameter_s) |
|
2841 | tgt = os.path.expanduser(parameter_s) | |
2836 | cwd = os.getcwd().replace(self.home_dir,'~') |
|
2842 | cwd = os.getcwd().replace(self.home_dir,'~') | |
2837 | if tgt: |
|
2843 | if tgt: | |
2838 | self.magic_cd(parameter_s) |
|
2844 | self.magic_cd(parameter_s) | |
2839 | dir_s.insert(0,cwd) |
|
2845 | dir_s.insert(0,cwd) | |
2840 | return self.magic_dirs() |
|
2846 | return self.magic_dirs() | |
2841 |
|
2847 | |||
2842 | def magic_popd(self, parameter_s=''): |
|
2848 | def magic_popd(self, parameter_s=''): | |
2843 | """Change to directory popped off the top of the stack. |
|
2849 | """Change to directory popped off the top of the stack. | |
2844 | """ |
|
2850 | """ | |
2845 | if not self.shell.dir_stack: |
|
2851 | if not self.shell.dir_stack: | |
2846 | raise UsageError("%popd on empty stack") |
|
2852 | raise UsageError("%popd on empty stack") | |
2847 | top = self.shell.dir_stack.pop(0) |
|
2853 | top = self.shell.dir_stack.pop(0) | |
2848 | self.magic_cd(top) |
|
2854 | self.magic_cd(top) | |
2849 | print "popd ->",top |
|
2855 | print "popd ->",top | |
2850 |
|
2856 | |||
2851 | def magic_dirs(self, parameter_s=''): |
|
2857 | def magic_dirs(self, parameter_s=''): | |
2852 | """Return the current directory stack.""" |
|
2858 | """Return the current directory stack.""" | |
2853 |
|
2859 | |||
2854 | return self.shell.dir_stack |
|
2860 | return self.shell.dir_stack | |
2855 |
|
2861 | |||
2856 | def magic_dhist(self, parameter_s=''): |
|
2862 | def magic_dhist(self, parameter_s=''): | |
2857 | """Print your history of visited directories. |
|
2863 | """Print your history of visited directories. | |
2858 |
|
2864 | |||
2859 | %dhist -> print full history\\ |
|
2865 | %dhist -> print full history\\ | |
2860 | %dhist n -> print last n entries only\\ |
|
2866 | %dhist n -> print last n entries only\\ | |
2861 | %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\ |
|
2867 | %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\ | |
2862 |
|
2868 | |||
2863 | This history is automatically maintained by the %cd command, and |
|
2869 | This history is automatically maintained by the %cd command, and | |
2864 | always available as the global list variable _dh. You can use %cd -<n> |
|
2870 | always available as the global list variable _dh. You can use %cd -<n> | |
2865 | to go to directory number <n>. |
|
2871 | to go to directory number <n>. | |
2866 |
|
2872 | |||
2867 | Note that most of time, you should view directory history by entering |
|
2873 | Note that most of time, you should view directory history by entering | |
2868 | cd -<TAB>. |
|
2874 | cd -<TAB>. | |
2869 |
|
2875 | |||
2870 | """ |
|
2876 | """ | |
2871 |
|
2877 | |||
2872 | dh = self.shell.user_ns['_dh'] |
|
2878 | dh = self.shell.user_ns['_dh'] | |
2873 | if parameter_s: |
|
2879 | if parameter_s: | |
2874 | try: |
|
2880 | try: | |
2875 | args = map(int,parameter_s.split()) |
|
2881 | args = map(int,parameter_s.split()) | |
2876 | except: |
|
2882 | except: | |
2877 | self.arg_err(Magic.magic_dhist) |
|
2883 | self.arg_err(Magic.magic_dhist) | |
2878 | return |
|
2884 | return | |
2879 | if len(args) == 1: |
|
2885 | if len(args) == 1: | |
2880 | ini,fin = max(len(dh)-(args[0]),0),len(dh) |
|
2886 | ini,fin = max(len(dh)-(args[0]),0),len(dh) | |
2881 | elif len(args) == 2: |
|
2887 | elif len(args) == 2: | |
2882 | ini,fin = args |
|
2888 | ini,fin = args | |
2883 | else: |
|
2889 | else: | |
2884 | self.arg_err(Magic.magic_dhist) |
|
2890 | self.arg_err(Magic.magic_dhist) | |
2885 | return |
|
2891 | return | |
2886 | else: |
|
2892 | else: | |
2887 | ini,fin = 0,len(dh) |
|
2893 | ini,fin = 0,len(dh) | |
2888 | nlprint(dh, |
|
2894 | nlprint(dh, | |
2889 | header = 'Directory history (kept in _dh)', |
|
2895 | header = 'Directory history (kept in _dh)', | |
2890 | start=ini,stop=fin) |
|
2896 | start=ini,stop=fin) | |
2891 |
|
2897 | |||
2892 | @testdec.skip_doctest |
|
2898 | @testdec.skip_doctest | |
2893 | def magic_sc(self, parameter_s=''): |
|
2899 | def magic_sc(self, parameter_s=''): | |
2894 | """Shell capture - execute a shell command and capture its output. |
|
2900 | """Shell capture - execute a shell command and capture its output. | |
2895 |
|
2901 | |||
2896 | DEPRECATED. Suboptimal, retained for backwards compatibility. |
|
2902 | DEPRECATED. Suboptimal, retained for backwards compatibility. | |
2897 |
|
2903 | |||
2898 | You should use the form 'var = !command' instead. Example: |
|
2904 | You should use the form 'var = !command' instead. Example: | |
2899 |
|
2905 | |||
2900 | "%sc -l myfiles = ls ~" should now be written as |
|
2906 | "%sc -l myfiles = ls ~" should now be written as | |
2901 |
|
2907 | |||
2902 | "myfiles = !ls ~" |
|
2908 | "myfiles = !ls ~" | |
2903 |
|
2909 | |||
2904 | myfiles.s, myfiles.l and myfiles.n still apply as documented |
|
2910 | myfiles.s, myfiles.l and myfiles.n still apply as documented | |
2905 | below. |
|
2911 | below. | |
2906 |
|
2912 | |||
2907 | -- |
|
2913 | -- | |
2908 | %sc [options] varname=command |
|
2914 | %sc [options] varname=command | |
2909 |
|
2915 | |||
2910 | IPython will run the given command using commands.getoutput(), and |
|
2916 | IPython will run the given command using commands.getoutput(), and | |
2911 | will then update the user's interactive namespace with a variable |
|
2917 | will then update the user's interactive namespace with a variable | |
2912 | called varname, containing the value of the call. Your command can |
|
2918 | called varname, containing the value of the call. Your command can | |
2913 | contain shell wildcards, pipes, etc. |
|
2919 | contain shell wildcards, pipes, etc. | |
2914 |
|
2920 | |||
2915 | The '=' sign in the syntax is mandatory, and the variable name you |
|
2921 | The '=' sign in the syntax is mandatory, and the variable name you | |
2916 | supply must follow Python's standard conventions for valid names. |
|
2922 | supply must follow Python's standard conventions for valid names. | |
2917 |
|
2923 | |||
2918 | (A special format without variable name exists for internal use) |
|
2924 | (A special format without variable name exists for internal use) | |
2919 |
|
2925 | |||
2920 | Options: |
|
2926 | Options: | |
2921 |
|
2927 | |||
2922 | -l: list output. Split the output on newlines into a list before |
|
2928 | -l: list output. Split the output on newlines into a list before | |
2923 | assigning it to the given variable. By default the output is stored |
|
2929 | assigning it to the given variable. By default the output is stored | |
2924 | as a single string. |
|
2930 | as a single string. | |
2925 |
|
2931 | |||
2926 | -v: verbose. Print the contents of the variable. |
|
2932 | -v: verbose. Print the contents of the variable. | |
2927 |
|
2933 | |||
2928 | In most cases you should not need to split as a list, because the |
|
2934 | In most cases you should not need to split as a list, because the | |
2929 | returned value is a special type of string which can automatically |
|
2935 | returned value is a special type of string which can automatically | |
2930 | provide its contents either as a list (split on newlines) or as a |
|
2936 | provide its contents either as a list (split on newlines) or as a | |
2931 | space-separated string. These are convenient, respectively, either |
|
2937 | space-separated string. These are convenient, respectively, either | |
2932 | for sequential processing or to be passed to a shell command. |
|
2938 | for sequential processing or to be passed to a shell command. | |
2933 |
|
2939 | |||
2934 | For example: |
|
2940 | For example: | |
2935 |
|
2941 | |||
2936 | # all-random |
|
2942 | # all-random | |
2937 |
|
2943 | |||
2938 | # Capture into variable a |
|
2944 | # Capture into variable a | |
2939 | In [1]: sc a=ls *py |
|
2945 | In [1]: sc a=ls *py | |
2940 |
|
2946 | |||
2941 | # a is a string with embedded newlines |
|
2947 | # a is a string with embedded newlines | |
2942 | In [2]: a |
|
2948 | In [2]: a | |
2943 | Out[2]: 'setup.py\\nwin32_manual_post_install.py' |
|
2949 | Out[2]: 'setup.py\\nwin32_manual_post_install.py' | |
2944 |
|
2950 | |||
2945 | # which can be seen as a list: |
|
2951 | # which can be seen as a list: | |
2946 | In [3]: a.l |
|
2952 | In [3]: a.l | |
2947 | Out[3]: ['setup.py', 'win32_manual_post_install.py'] |
|
2953 | Out[3]: ['setup.py', 'win32_manual_post_install.py'] | |
2948 |
|
2954 | |||
2949 | # or as a whitespace-separated string: |
|
2955 | # or as a whitespace-separated string: | |
2950 | In [4]: a.s |
|
2956 | In [4]: a.s | |
2951 | Out[4]: 'setup.py win32_manual_post_install.py' |
|
2957 | Out[4]: 'setup.py win32_manual_post_install.py' | |
2952 |
|
2958 | |||
2953 | # a.s is useful to pass as a single command line: |
|
2959 | # a.s is useful to pass as a single command line: | |
2954 | In [5]: !wc -l $a.s |
|
2960 | In [5]: !wc -l $a.s | |
2955 | 146 setup.py |
|
2961 | 146 setup.py | |
2956 | 130 win32_manual_post_install.py |
|
2962 | 130 win32_manual_post_install.py | |
2957 | 276 total |
|
2963 | 276 total | |
2958 |
|
2964 | |||
2959 | # while the list form is useful to loop over: |
|
2965 | # while the list form is useful to loop over: | |
2960 | In [6]: for f in a.l: |
|
2966 | In [6]: for f in a.l: | |
2961 | ...: !wc -l $f |
|
2967 | ...: !wc -l $f | |
2962 | ...: |
|
2968 | ...: | |
2963 | 146 setup.py |
|
2969 | 146 setup.py | |
2964 | 130 win32_manual_post_install.py |
|
2970 | 130 win32_manual_post_install.py | |
2965 |
|
2971 | |||
2966 | Similiarly, the lists returned by the -l option are also special, in |
|
2972 | Similiarly, the lists returned by the -l option are also special, in | |
2967 | the sense that you can equally invoke the .s attribute on them to |
|
2973 | the sense that you can equally invoke the .s attribute on them to | |
2968 | automatically get a whitespace-separated string from their contents: |
|
2974 | automatically get a whitespace-separated string from their contents: | |
2969 |
|
2975 | |||
2970 | In [7]: sc -l b=ls *py |
|
2976 | In [7]: sc -l b=ls *py | |
2971 |
|
2977 | |||
2972 | In [8]: b |
|
2978 | In [8]: b | |
2973 | Out[8]: ['setup.py', 'win32_manual_post_install.py'] |
|
2979 | Out[8]: ['setup.py', 'win32_manual_post_install.py'] | |
2974 |
|
2980 | |||
2975 | In [9]: b.s |
|
2981 | In [9]: b.s | |
2976 | Out[9]: 'setup.py win32_manual_post_install.py' |
|
2982 | Out[9]: 'setup.py win32_manual_post_install.py' | |
2977 |
|
2983 | |||
2978 | In summary, both the lists and strings used for ouptut capture have |
|
2984 | In summary, both the lists and strings used for ouptut capture have | |
2979 | the following special attributes: |
|
2985 | the following special attributes: | |
2980 |
|
2986 | |||
2981 | .l (or .list) : value as list. |
|
2987 | .l (or .list) : value as list. | |
2982 | .n (or .nlstr): value as newline-separated string. |
|
2988 | .n (or .nlstr): value as newline-separated string. | |
2983 | .s (or .spstr): value as space-separated string. |
|
2989 | .s (or .spstr): value as space-separated string. | |
2984 | """ |
|
2990 | """ | |
2985 |
|
2991 | |||
2986 | opts,args = self.parse_options(parameter_s,'lv') |
|
2992 | opts,args = self.parse_options(parameter_s,'lv') | |
2987 | # Try to get a variable name and command to run |
|
2993 | # Try to get a variable name and command to run | |
2988 | try: |
|
2994 | try: | |
2989 | # the variable name must be obtained from the parse_options |
|
2995 | # the variable name must be obtained from the parse_options | |
2990 | # output, which uses shlex.split to strip options out. |
|
2996 | # output, which uses shlex.split to strip options out. | |
2991 | var,_ = args.split('=',1) |
|
2997 | var,_ = args.split('=',1) | |
2992 | var = var.strip() |
|
2998 | var = var.strip() | |
2993 | # But the the command has to be extracted from the original input |
|
2999 | # But the the command has to be extracted from the original input | |
2994 | # parameter_s, not on what parse_options returns, to avoid the |
|
3000 | # parameter_s, not on what parse_options returns, to avoid the | |
2995 | # quote stripping which shlex.split performs on it. |
|
3001 | # quote stripping which shlex.split performs on it. | |
2996 | _,cmd = parameter_s.split('=',1) |
|
3002 | _,cmd = parameter_s.split('=',1) | |
2997 | except ValueError: |
|
3003 | except ValueError: | |
2998 | var,cmd = '','' |
|
3004 | var,cmd = '','' | |
2999 | # If all looks ok, proceed |
|
3005 | # If all looks ok, proceed | |
3000 | split = 'l' in opts |
|
3006 | split = 'l' in opts | |
3001 | out = self.shell.getoutput(cmd, split=split) |
|
3007 | out = self.shell.getoutput(cmd, split=split) | |
3002 | if opts.has_key('v'): |
|
3008 | if opts.has_key('v'): | |
3003 | print '%s ==\n%s' % (var,pformat(out)) |
|
3009 | print '%s ==\n%s' % (var,pformat(out)) | |
3004 | if var: |
|
3010 | if var: | |
3005 | self.shell.user_ns.update({var:out}) |
|
3011 | self.shell.user_ns.update({var:out}) | |
3006 | else: |
|
3012 | else: | |
3007 | return out |
|
3013 | return out | |
3008 |
|
3014 | |||
3009 | def magic_sx(self, parameter_s=''): |
|
3015 | def magic_sx(self, parameter_s=''): | |
3010 | """Shell execute - run a shell command and capture its output. |
|
3016 | """Shell execute - run a shell command and capture its output. | |
3011 |
|
3017 | |||
3012 | %sx command |
|
3018 | %sx command | |
3013 |
|
3019 | |||
3014 | IPython will run the given command using commands.getoutput(), and |
|
3020 | IPython will run the given command using commands.getoutput(), and | |
3015 | return the result formatted as a list (split on '\\n'). Since the |
|
3021 | return the result formatted as a list (split on '\\n'). Since the | |
3016 | output is _returned_, it will be stored in ipython's regular output |
|
3022 | output is _returned_, it will be stored in ipython's regular output | |
3017 | cache Out[N] and in the '_N' automatic variables. |
|
3023 | cache Out[N] and in the '_N' automatic variables. | |
3018 |
|
3024 | |||
3019 | Notes: |
|
3025 | Notes: | |
3020 |
|
3026 | |||
3021 | 1) If an input line begins with '!!', then %sx is automatically |
|
3027 | 1) If an input line begins with '!!', then %sx is automatically | |
3022 | invoked. That is, while: |
|
3028 | invoked. That is, while: | |
3023 | !ls |
|
3029 | !ls | |
3024 | causes ipython to simply issue system('ls'), typing |
|
3030 | causes ipython to simply issue system('ls'), typing | |
3025 | !!ls |
|
3031 | !!ls | |
3026 | is a shorthand equivalent to: |
|
3032 | is a shorthand equivalent to: | |
3027 | %sx ls |
|
3033 | %sx ls | |
3028 |
|
3034 | |||
3029 | 2) %sx differs from %sc in that %sx automatically splits into a list, |
|
3035 | 2) %sx differs from %sc in that %sx automatically splits into a list, | |
3030 | like '%sc -l'. The reason for this is to make it as easy as possible |
|
3036 | like '%sc -l'. The reason for this is to make it as easy as possible | |
3031 | to process line-oriented shell output via further python commands. |
|
3037 | to process line-oriented shell output via further python commands. | |
3032 | %sc is meant to provide much finer control, but requires more |
|
3038 | %sc is meant to provide much finer control, but requires more | |
3033 | typing. |
|
3039 | typing. | |
3034 |
|
3040 | |||
3035 | 3) Just like %sc -l, this is a list with special attributes: |
|
3041 | 3) Just like %sc -l, this is a list with special attributes: | |
3036 |
|
3042 | |||
3037 | .l (or .list) : value as list. |
|
3043 | .l (or .list) : value as list. | |
3038 | .n (or .nlstr): value as newline-separated string. |
|
3044 | .n (or .nlstr): value as newline-separated string. | |
3039 | .s (or .spstr): value as whitespace-separated string. |
|
3045 | .s (or .spstr): value as whitespace-separated string. | |
3040 |
|
3046 | |||
3041 | This is very useful when trying to use such lists as arguments to |
|
3047 | This is very useful when trying to use such lists as arguments to | |
3042 | system commands.""" |
|
3048 | system commands.""" | |
3043 |
|
3049 | |||
3044 | if parameter_s: |
|
3050 | if parameter_s: | |
3045 | return self.shell.getoutput(parameter_s) |
|
3051 | return self.shell.getoutput(parameter_s) | |
3046 |
|
3052 | |||
3047 |
|
3053 | |||
3048 | def magic_bookmark(self, parameter_s=''): |
|
3054 | def magic_bookmark(self, parameter_s=''): | |
3049 | """Manage IPython's bookmark system. |
|
3055 | """Manage IPython's bookmark system. | |
3050 |
|
3056 | |||
3051 | %bookmark <name> - set bookmark to current dir |
|
3057 | %bookmark <name> - set bookmark to current dir | |
3052 | %bookmark <name> <dir> - set bookmark to <dir> |
|
3058 | %bookmark <name> <dir> - set bookmark to <dir> | |
3053 | %bookmark -l - list all bookmarks |
|
3059 | %bookmark -l - list all bookmarks | |
3054 | %bookmark -d <name> - remove bookmark |
|
3060 | %bookmark -d <name> - remove bookmark | |
3055 | %bookmark -r - remove all bookmarks |
|
3061 | %bookmark -r - remove all bookmarks | |
3056 |
|
3062 | |||
3057 | You can later on access a bookmarked folder with: |
|
3063 | You can later on access a bookmarked folder with: | |
3058 | %cd -b <name> |
|
3064 | %cd -b <name> | |
3059 | or simply '%cd <name>' if there is no directory called <name> AND |
|
3065 | or simply '%cd <name>' if there is no directory called <name> AND | |
3060 | there is such a bookmark defined. |
|
3066 | there is such a bookmark defined. | |
3061 |
|
3067 | |||
3062 | Your bookmarks persist through IPython sessions, but they are |
|
3068 | Your bookmarks persist through IPython sessions, but they are | |
3063 | associated with each profile.""" |
|
3069 | associated with each profile.""" | |
3064 |
|
3070 | |||
3065 | opts,args = self.parse_options(parameter_s,'drl',mode='list') |
|
3071 | opts,args = self.parse_options(parameter_s,'drl',mode='list') | |
3066 | if len(args) > 2: |
|
3072 | if len(args) > 2: | |
3067 | raise UsageError("%bookmark: too many arguments") |
|
3073 | raise UsageError("%bookmark: too many arguments") | |
3068 |
|
3074 | |||
3069 | bkms = self.db.get('bookmarks',{}) |
|
3075 | bkms = self.db.get('bookmarks',{}) | |
3070 |
|
3076 | |||
3071 | if opts.has_key('d'): |
|
3077 | if opts.has_key('d'): | |
3072 | try: |
|
3078 | try: | |
3073 | todel = args[0] |
|
3079 | todel = args[0] | |
3074 | except IndexError: |
|
3080 | except IndexError: | |
3075 | raise UsageError( |
|
3081 | raise UsageError( | |
3076 | "%bookmark -d: must provide a bookmark to delete") |
|
3082 | "%bookmark -d: must provide a bookmark to delete") | |
3077 | else: |
|
3083 | else: | |
3078 | try: |
|
3084 | try: | |
3079 | del bkms[todel] |
|
3085 | del bkms[todel] | |
3080 | except KeyError: |
|
3086 | except KeyError: | |
3081 | raise UsageError( |
|
3087 | raise UsageError( | |
3082 | "%%bookmark -d: Can't delete bookmark '%s'" % todel) |
|
3088 | "%%bookmark -d: Can't delete bookmark '%s'" % todel) | |
3083 |
|
3089 | |||
3084 | elif opts.has_key('r'): |
|
3090 | elif opts.has_key('r'): | |
3085 | bkms = {} |
|
3091 | bkms = {} | |
3086 | elif opts.has_key('l'): |
|
3092 | elif opts.has_key('l'): | |
3087 | bks = bkms.keys() |
|
3093 | bks = bkms.keys() | |
3088 | bks.sort() |
|
3094 | bks.sort() | |
3089 | if bks: |
|
3095 | if bks: | |
3090 | size = max(map(len,bks)) |
|
3096 | size = max(map(len,bks)) | |
3091 | else: |
|
3097 | else: | |
3092 | size = 0 |
|
3098 | size = 0 | |
3093 | fmt = '%-'+str(size)+'s -> %s' |
|
3099 | fmt = '%-'+str(size)+'s -> %s' | |
3094 | print 'Current bookmarks:' |
|
3100 | print 'Current bookmarks:' | |
3095 | for bk in bks: |
|
3101 | for bk in bks: | |
3096 | print fmt % (bk,bkms[bk]) |
|
3102 | print fmt % (bk,bkms[bk]) | |
3097 | else: |
|
3103 | else: | |
3098 | if not args: |
|
3104 | if not args: | |
3099 | raise UsageError("%bookmark: You must specify the bookmark name") |
|
3105 | raise UsageError("%bookmark: You must specify the bookmark name") | |
3100 | elif len(args)==1: |
|
3106 | elif len(args)==1: | |
3101 | bkms[args[0]] = os.getcwd() |
|
3107 | bkms[args[0]] = os.getcwd() | |
3102 | elif len(args)==2: |
|
3108 | elif len(args)==2: | |
3103 | bkms[args[0]] = args[1] |
|
3109 | bkms[args[0]] = args[1] | |
3104 | self.db['bookmarks'] = bkms |
|
3110 | self.db['bookmarks'] = bkms | |
3105 |
|
3111 | |||
3106 | def magic_pycat(self, parameter_s=''): |
|
3112 | def magic_pycat(self, parameter_s=''): | |
3107 | """Show a syntax-highlighted file through a pager. |
|
3113 | """Show a syntax-highlighted file through a pager. | |
3108 |
|
3114 | |||
3109 | This magic is similar to the cat utility, but it will assume the file |
|
3115 | This magic is similar to the cat utility, but it will assume the file | |
3110 | to be Python source and will show it with syntax highlighting. """ |
|
3116 | to be Python source and will show it with syntax highlighting. """ | |
3111 |
|
3117 | |||
3112 | try: |
|
3118 | try: | |
3113 | filename = get_py_filename(parameter_s) |
|
3119 | filename = get_py_filename(parameter_s) | |
3114 | cont = file_read(filename) |
|
3120 | cont = file_read(filename) | |
3115 | except IOError: |
|
3121 | except IOError: | |
3116 | try: |
|
3122 | try: | |
3117 | cont = eval(parameter_s,self.user_ns) |
|
3123 | cont = eval(parameter_s,self.user_ns) | |
3118 | except NameError: |
|
3124 | except NameError: | |
3119 | cont = None |
|
3125 | cont = None | |
3120 | if cont is None: |
|
3126 | if cont is None: | |
3121 | print "Error: no such file or variable" |
|
3127 | print "Error: no such file or variable" | |
3122 | return |
|
3128 | return | |
3123 |
|
3129 | |||
3124 | page.page(self.shell.pycolorize(cont)) |
|
3130 | page.page(self.shell.pycolorize(cont)) | |
3125 |
|
3131 | |||
3126 | def _rerun_pasted(self): |
|
3132 | def _rerun_pasted(self): | |
3127 | """ Rerun a previously pasted command. |
|
3133 | """ Rerun a previously pasted command. | |
3128 | """ |
|
3134 | """ | |
3129 | b = self.user_ns.get('pasted_block', None) |
|
3135 | b = self.user_ns.get('pasted_block', None) | |
3130 | if b is None: |
|
3136 | if b is None: | |
3131 | raise UsageError('No previous pasted block available') |
|
3137 | raise UsageError('No previous pasted block available') | |
3132 | print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b)) |
|
3138 | print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b)) | |
3133 | exec b in self.user_ns |
|
3139 | exec b in self.user_ns | |
3134 |
|
3140 | |||
3135 | def _get_pasted_lines(self, sentinel): |
|
3141 | def _get_pasted_lines(self, sentinel): | |
3136 | """ Yield pasted lines until the user enters the given sentinel value. |
|
3142 | """ Yield pasted lines until the user enters the given sentinel value. | |
3137 | """ |
|
3143 | """ | |
3138 | from IPython.core import interactiveshell |
|
3144 | from IPython.core import interactiveshell | |
3139 | print "Pasting code; enter '%s' alone on the line to stop." % sentinel |
|
3145 | print "Pasting code; enter '%s' alone on the line to stop." % sentinel | |
3140 | while True: |
|
3146 | while True: | |
3141 | l = interactiveshell.raw_input_original(':') |
|
3147 | l = interactiveshell.raw_input_original(':') | |
3142 | if l == sentinel: |
|
3148 | if l == sentinel: | |
3143 | return |
|
3149 | return | |
3144 | else: |
|
3150 | else: | |
3145 | yield l |
|
3151 | yield l | |
3146 |
|
3152 | |||
3147 | def _strip_pasted_lines_for_code(self, raw_lines): |
|
3153 | def _strip_pasted_lines_for_code(self, raw_lines): | |
3148 | """ Strip non-code parts of a sequence of lines to return a block of |
|
3154 | """ Strip non-code parts of a sequence of lines to return a block of | |
3149 | code. |
|
3155 | code. | |
3150 | """ |
|
3156 | """ | |
3151 | # Regular expressions that declare text we strip from the input: |
|
3157 | # Regular expressions that declare text we strip from the input: | |
3152 | strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt |
|
3158 | strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt | |
3153 | r'^\s*(\s?>)+', # Python input prompt |
|
3159 | r'^\s*(\s?>)+', # Python input prompt | |
3154 | r'^\s*\.{3,}', # Continuation prompts |
|
3160 | r'^\s*\.{3,}', # Continuation prompts | |
3155 | r'^\++', |
|
3161 | r'^\++', | |
3156 | ] |
|
3162 | ] | |
3157 |
|
3163 | |||
3158 | strip_from_start = map(re.compile,strip_re) |
|
3164 | strip_from_start = map(re.compile,strip_re) | |
3159 |
|
3165 | |||
3160 | lines = [] |
|
3166 | lines = [] | |
3161 | for l in raw_lines: |
|
3167 | for l in raw_lines: | |
3162 | for pat in strip_from_start: |
|
3168 | for pat in strip_from_start: | |
3163 | l = pat.sub('',l) |
|
3169 | l = pat.sub('',l) | |
3164 | lines.append(l) |
|
3170 | lines.append(l) | |
3165 |
|
3171 | |||
3166 | block = "\n".join(lines) + '\n' |
|
3172 | block = "\n".join(lines) + '\n' | |
3167 | #print "block:\n",block |
|
3173 | #print "block:\n",block | |
3168 | return block |
|
3174 | return block | |
3169 |
|
3175 | |||
3170 | def _execute_block(self, block, par): |
|
3176 | def _execute_block(self, block, par): | |
3171 | """ Execute a block, or store it in a variable, per the user's request. |
|
3177 | """ Execute a block, or store it in a variable, per the user's request. | |
3172 | """ |
|
3178 | """ | |
3173 | if not par: |
|
3179 | if not par: | |
3174 | b = textwrap.dedent(block) |
|
3180 | b = textwrap.dedent(block) | |
3175 | self.user_ns['pasted_block'] = b |
|
3181 | self.user_ns['pasted_block'] = b | |
3176 | exec b in self.user_ns |
|
3182 | exec b in self.user_ns | |
3177 | else: |
|
3183 | else: | |
3178 | self.user_ns[par] = SList(block.splitlines()) |
|
3184 | self.user_ns[par] = SList(block.splitlines()) | |
3179 | print "Block assigned to '%s'" % par |
|
3185 | print "Block assigned to '%s'" % par | |
3180 |
|
3186 | |||
3181 | def magic_quickref(self,arg): |
|
3187 | def magic_quickref(self,arg): | |
3182 | """ Show a quick reference sheet """ |
|
3188 | """ Show a quick reference sheet """ | |
3183 | import IPython.core.usage |
|
3189 | import IPython.core.usage | |
3184 | qr = IPython.core.usage.quick_reference + self.magic_magic('-brief') |
|
3190 | qr = IPython.core.usage.quick_reference + self.magic_magic('-brief') | |
3185 |
|
3191 | |||
3186 | page.page(qr) |
|
3192 | page.page(qr) | |
3187 |
|
3193 | |||
3188 | def magic_doctest_mode(self,parameter_s=''): |
|
3194 | def magic_doctest_mode(self,parameter_s=''): | |
3189 | """Toggle doctest mode on and off. |
|
3195 | """Toggle doctest mode on and off. | |
3190 |
|
3196 | |||
3191 | This mode is intended to make IPython behave as much as possible like a |
|
3197 | This mode is intended to make IPython behave as much as possible like a | |
3192 | plain Python shell, from the perspective of how its prompts, exceptions |
|
3198 | plain Python shell, from the perspective of how its prompts, exceptions | |
3193 | and output look. This makes it easy to copy and paste parts of a |
|
3199 | and output look. This makes it easy to copy and paste parts of a | |
3194 | session into doctests. It does so by: |
|
3200 | session into doctests. It does so by: | |
3195 |
|
3201 | |||
3196 | - Changing the prompts to the classic ``>>>`` ones. |
|
3202 | - Changing the prompts to the classic ``>>>`` ones. | |
3197 | - Changing the exception reporting mode to 'Plain'. |
|
3203 | - Changing the exception reporting mode to 'Plain'. | |
3198 | - Disabling pretty-printing of output. |
|
3204 | - Disabling pretty-printing of output. | |
3199 |
|
3205 | |||
3200 | Note that IPython also supports the pasting of code snippets that have |
|
3206 | Note that IPython also supports the pasting of code snippets that have | |
3201 | leading '>>>' and '...' prompts in them. This means that you can paste |
|
3207 | leading '>>>' and '...' prompts in them. This means that you can paste | |
3202 | doctests from files or docstrings (even if they have leading |
|
3208 | doctests from files or docstrings (even if they have leading | |
3203 | whitespace), and the code will execute correctly. You can then use |
|
3209 | whitespace), and the code will execute correctly. You can then use | |
3204 | '%history -t' to see the translated history; this will give you the |
|
3210 | '%history -t' to see the translated history; this will give you the | |
3205 | input after removal of all the leading prompts and whitespace, which |
|
3211 | input after removal of all the leading prompts and whitespace, which | |
3206 | can be pasted back into an editor. |
|
3212 | can be pasted back into an editor. | |
3207 |
|
3213 | |||
3208 | With these features, you can switch into this mode easily whenever you |
|
3214 | With these features, you can switch into this mode easily whenever you | |
3209 | need to do testing and changes to doctests, without having to leave |
|
3215 | need to do testing and changes to doctests, without having to leave | |
3210 | your existing IPython session. |
|
3216 | your existing IPython session. | |
3211 | """ |
|
3217 | """ | |
3212 |
|
3218 | |||
3213 | from IPython.utils.ipstruct import Struct |
|
3219 | from IPython.utils.ipstruct import Struct | |
3214 |
|
3220 | |||
3215 | # Shorthands |
|
3221 | # Shorthands | |
3216 | shell = self.shell |
|
3222 | shell = self.shell | |
3217 | oc = shell.displayhook |
|
3223 | oc = shell.displayhook | |
3218 | meta = shell.meta |
|
3224 | meta = shell.meta | |
3219 | disp_formatter = self.shell.display_formatter |
|
3225 | disp_formatter = self.shell.display_formatter | |
3220 | ptformatter = disp_formatter.formatters['text/plain'] |
|
3226 | ptformatter = disp_formatter.formatters['text/plain'] | |
3221 | # dstore is a data store kept in the instance metadata bag to track any |
|
3227 | # dstore is a data store kept in the instance metadata bag to track any | |
3222 | # changes we make, so we can undo them later. |
|
3228 | # changes we make, so we can undo them later. | |
3223 | dstore = meta.setdefault('doctest_mode',Struct()) |
|
3229 | dstore = meta.setdefault('doctest_mode',Struct()) | |
3224 | save_dstore = dstore.setdefault |
|
3230 | save_dstore = dstore.setdefault | |
3225 |
|
3231 | |||
3226 | # save a few values we'll need to recover later |
|
3232 | # save a few values we'll need to recover later | |
3227 | mode = save_dstore('mode',False) |
|
3233 | mode = save_dstore('mode',False) | |
3228 | save_dstore('rc_pprint',ptformatter.pprint) |
|
3234 | save_dstore('rc_pprint',ptformatter.pprint) | |
3229 | save_dstore('xmode',shell.InteractiveTB.mode) |
|
3235 | save_dstore('xmode',shell.InteractiveTB.mode) | |
3230 | save_dstore('rc_separate_out',shell.separate_out) |
|
3236 | save_dstore('rc_separate_out',shell.separate_out) | |
3231 | save_dstore('rc_separate_out2',shell.separate_out2) |
|
3237 | save_dstore('rc_separate_out2',shell.separate_out2) | |
3232 | save_dstore('rc_prompts_pad_left',shell.prompts_pad_left) |
|
3238 | save_dstore('rc_prompts_pad_left',shell.prompts_pad_left) | |
3233 | save_dstore('rc_separate_in',shell.separate_in) |
|
3239 | save_dstore('rc_separate_in',shell.separate_in) | |
3234 | save_dstore('rc_plain_text_only',disp_formatter.plain_text_only) |
|
3240 | save_dstore('rc_plain_text_only',disp_formatter.plain_text_only) | |
3235 |
|
3241 | |||
3236 | if mode == False: |
|
3242 | if mode == False: | |
3237 | # turn on |
|
3243 | # turn on | |
3238 | oc.prompt1.p_template = '>>> ' |
|
3244 | oc.prompt1.p_template = '>>> ' | |
3239 | oc.prompt2.p_template = '... ' |
|
3245 | oc.prompt2.p_template = '... ' | |
3240 | oc.prompt_out.p_template = '' |
|
3246 | oc.prompt_out.p_template = '' | |
3241 |
|
3247 | |||
3242 | # Prompt separators like plain python |
|
3248 | # Prompt separators like plain python | |
3243 | oc.input_sep = oc.prompt1.sep = '' |
|
3249 | oc.input_sep = oc.prompt1.sep = '' | |
3244 | oc.output_sep = '' |
|
3250 | oc.output_sep = '' | |
3245 | oc.output_sep2 = '' |
|
3251 | oc.output_sep2 = '' | |
3246 |
|
3252 | |||
3247 | oc.prompt1.pad_left = oc.prompt2.pad_left = \ |
|
3253 | oc.prompt1.pad_left = oc.prompt2.pad_left = \ | |
3248 | oc.prompt_out.pad_left = False |
|
3254 | oc.prompt_out.pad_left = False | |
3249 |
|
3255 | |||
3250 | ptformatter.pprint = False |
|
3256 | ptformatter.pprint = False | |
3251 | disp_formatter.plain_text_only = True |
|
3257 | disp_formatter.plain_text_only = True | |
3252 |
|
3258 | |||
3253 | shell.magic_xmode('Plain') |
|
3259 | shell.magic_xmode('Plain') | |
3254 | else: |
|
3260 | else: | |
3255 | # turn off |
|
3261 | # turn off | |
3256 | oc.prompt1.p_template = shell.prompt_in1 |
|
3262 | oc.prompt1.p_template = shell.prompt_in1 | |
3257 | oc.prompt2.p_template = shell.prompt_in2 |
|
3263 | oc.prompt2.p_template = shell.prompt_in2 | |
3258 | oc.prompt_out.p_template = shell.prompt_out |
|
3264 | oc.prompt_out.p_template = shell.prompt_out | |
3259 |
|
3265 | |||
3260 | oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in |
|
3266 | oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in | |
3261 |
|
3267 | |||
3262 | oc.output_sep = dstore.rc_separate_out |
|
3268 | oc.output_sep = dstore.rc_separate_out | |
3263 | oc.output_sep2 = dstore.rc_separate_out2 |
|
3269 | oc.output_sep2 = dstore.rc_separate_out2 | |
3264 |
|
3270 | |||
3265 | oc.prompt1.pad_left = oc.prompt2.pad_left = \ |
|
3271 | oc.prompt1.pad_left = oc.prompt2.pad_left = \ | |
3266 | oc.prompt_out.pad_left = dstore.rc_prompts_pad_left |
|
3272 | oc.prompt_out.pad_left = dstore.rc_prompts_pad_left | |
3267 |
|
3273 | |||
3268 | ptformatter.pprint = dstore.rc_pprint |
|
3274 | ptformatter.pprint = dstore.rc_pprint | |
3269 | disp_formatter.plain_text_only = dstore.rc_plain_text_only |
|
3275 | disp_formatter.plain_text_only = dstore.rc_plain_text_only | |
3270 |
|
3276 | |||
3271 | shell.magic_xmode(dstore.xmode) |
|
3277 | shell.magic_xmode(dstore.xmode) | |
3272 |
|
3278 | |||
3273 | # Store new mode and inform |
|
3279 | # Store new mode and inform | |
3274 | dstore.mode = bool(1-int(mode)) |
|
3280 | dstore.mode = bool(1-int(mode)) | |
3275 | mode_label = ['OFF','ON'][dstore.mode] |
|
3281 | mode_label = ['OFF','ON'][dstore.mode] | |
3276 | print 'Doctest mode is:', mode_label |
|
3282 | print 'Doctest mode is:', mode_label | |
3277 |
|
3283 | |||
3278 | def magic_gui(self, parameter_s=''): |
|
3284 | def magic_gui(self, parameter_s=''): | |
3279 | """Enable or disable IPython GUI event loop integration. |
|
3285 | """Enable or disable IPython GUI event loop integration. | |
3280 |
|
3286 | |||
3281 | %gui [GUINAME] |
|
3287 | %gui [GUINAME] | |
3282 |
|
3288 | |||
3283 | This magic replaces IPython's threaded shells that were activated |
|
3289 | This magic replaces IPython's threaded shells that were activated | |
3284 | using the (pylab/wthread/etc.) command line flags. GUI toolkits |
|
3290 | using the (pylab/wthread/etc.) command line flags. GUI toolkits | |
3285 | can now be enabled, disabled and swtiched at runtime and keyboard |
|
3291 | can now be enabled, disabled and swtiched at runtime and keyboard | |
3286 | interrupts should work without any problems. The following toolkits |
|
3292 | interrupts should work without any problems. The following toolkits | |
3287 | are supported: wxPython, PyQt4, PyGTK, and Tk:: |
|
3293 | are supported: wxPython, PyQt4, PyGTK, and Tk:: | |
3288 |
|
3294 | |||
3289 | %gui wx # enable wxPython event loop integration |
|
3295 | %gui wx # enable wxPython event loop integration | |
3290 | %gui qt4|qt # enable PyQt4 event loop integration |
|
3296 | %gui qt4|qt # enable PyQt4 event loop integration | |
3291 | %gui gtk # enable PyGTK event loop integration |
|
3297 | %gui gtk # enable PyGTK event loop integration | |
3292 | %gui tk # enable Tk event loop integration |
|
3298 | %gui tk # enable Tk event loop integration | |
3293 | %gui # disable all event loop integration |
|
3299 | %gui # disable all event loop integration | |
3294 |
|
3300 | |||
3295 | WARNING: after any of these has been called you can simply create |
|
3301 | WARNING: after any of these has been called you can simply create | |
3296 | an application object, but DO NOT start the event loop yourself, as |
|
3302 | an application object, but DO NOT start the event loop yourself, as | |
3297 | we have already handled that. |
|
3303 | we have already handled that. | |
3298 | """ |
|
3304 | """ | |
3299 | from IPython.lib.inputhook import enable_gui |
|
3305 | from IPython.lib.inputhook import enable_gui | |
3300 | opts, arg = self.parse_options(parameter_s, '') |
|
3306 | opts, arg = self.parse_options(parameter_s, '') | |
3301 | if arg=='': arg = None |
|
3307 | if arg=='': arg = None | |
3302 | return enable_gui(arg) |
|
3308 | return enable_gui(arg) | |
3303 |
|
3309 | |||
3304 | def magic_load_ext(self, module_str): |
|
3310 | def magic_load_ext(self, module_str): | |
3305 | """Load an IPython extension by its module name.""" |
|
3311 | """Load an IPython extension by its module name.""" | |
3306 | return self.extension_manager.load_extension(module_str) |
|
3312 | return self.extension_manager.load_extension(module_str) | |
3307 |
|
3313 | |||
3308 | def magic_unload_ext(self, module_str): |
|
3314 | def magic_unload_ext(self, module_str): | |
3309 | """Unload an IPython extension by its module name.""" |
|
3315 | """Unload an IPython extension by its module name.""" | |
3310 | self.extension_manager.unload_extension(module_str) |
|
3316 | self.extension_manager.unload_extension(module_str) | |
3311 |
|
3317 | |||
3312 | def magic_reload_ext(self, module_str): |
|
3318 | def magic_reload_ext(self, module_str): | |
3313 | """Reload an IPython extension by its module name.""" |
|
3319 | """Reload an IPython extension by its module name.""" | |
3314 | self.extension_manager.reload_extension(module_str) |
|
3320 | self.extension_manager.reload_extension(module_str) | |
3315 |
|
3321 | |||
3316 | @testdec.skip_doctest |
|
3322 | @testdec.skip_doctest | |
3317 | def magic_install_profiles(self, s): |
|
3323 | def magic_install_profiles(self, s): | |
3318 | """Install the default IPython profiles into the .ipython dir. |
|
3324 | """Install the default IPython profiles into the .ipython dir. | |
3319 |
|
3325 | |||
3320 | If the default profiles have already been installed, they will not |
|
3326 | If the default profiles have already been installed, they will not | |
3321 | be overwritten. You can force overwriting them by using the ``-o`` |
|
3327 | be overwritten. You can force overwriting them by using the ``-o`` | |
3322 | option:: |
|
3328 | option:: | |
3323 |
|
3329 | |||
3324 | In [1]: %install_profiles -o |
|
3330 | In [1]: %install_profiles -o | |
3325 | """ |
|
3331 | """ | |
3326 | if '-o' in s: |
|
3332 | if '-o' in s: | |
3327 | overwrite = True |
|
3333 | overwrite = True | |
3328 | else: |
|
3334 | else: | |
3329 | overwrite = False |
|
3335 | overwrite = False | |
3330 | from IPython.config import profile |
|
3336 | from IPython.config import profile | |
3331 | profile_dir = os.path.split(profile.__file__)[0] |
|
3337 | profile_dir = os.path.split(profile.__file__)[0] | |
3332 | ipython_dir = self.ipython_dir |
|
3338 | ipython_dir = self.ipython_dir | |
3333 | files = os.listdir(profile_dir) |
|
3339 | files = os.listdir(profile_dir) | |
3334 |
|
3340 | |||
3335 | to_install = [] |
|
3341 | to_install = [] | |
3336 | for f in files: |
|
3342 | for f in files: | |
3337 | if f.startswith('ipython_config'): |
|
3343 | if f.startswith('ipython_config'): | |
3338 | src = os.path.join(profile_dir, f) |
|
3344 | src = os.path.join(profile_dir, f) | |
3339 | dst = os.path.join(ipython_dir, f) |
|
3345 | dst = os.path.join(ipython_dir, f) | |
3340 | if (not os.path.isfile(dst)) or overwrite: |
|
3346 | if (not os.path.isfile(dst)) or overwrite: | |
3341 | to_install.append((f, src, dst)) |
|
3347 | to_install.append((f, src, dst)) | |
3342 | if len(to_install)>0: |
|
3348 | if len(to_install)>0: | |
3343 | print "Installing profiles to: ", ipython_dir |
|
3349 | print "Installing profiles to: ", ipython_dir | |
3344 | for (f, src, dst) in to_install: |
|
3350 | for (f, src, dst) in to_install: | |
3345 | shutil.copy(src, dst) |
|
3351 | shutil.copy(src, dst) | |
3346 | print " %s" % f |
|
3352 | print " %s" % f | |
3347 |
|
3353 | |||
3348 | def magic_install_default_config(self, s): |
|
3354 | def magic_install_default_config(self, s): | |
3349 | """Install IPython's default config file into the .ipython dir. |
|
3355 | """Install IPython's default config file into the .ipython dir. | |
3350 |
|
3356 | |||
3351 | If the default config file (:file:`ipython_config.py`) is already |
|
3357 | If the default config file (:file:`ipython_config.py`) is already | |
3352 | installed, it will not be overwritten. You can force overwriting |
|
3358 | installed, it will not be overwritten. You can force overwriting | |
3353 | by using the ``-o`` option:: |
|
3359 | by using the ``-o`` option:: | |
3354 |
|
3360 | |||
3355 | In [1]: %install_default_config |
|
3361 | In [1]: %install_default_config | |
3356 | """ |
|
3362 | """ | |
3357 | if '-o' in s: |
|
3363 | if '-o' in s: | |
3358 | overwrite = True |
|
3364 | overwrite = True | |
3359 | else: |
|
3365 | else: | |
3360 | overwrite = False |
|
3366 | overwrite = False | |
3361 | from IPython.config import default |
|
3367 | from IPython.config import default | |
3362 | config_dir = os.path.split(default.__file__)[0] |
|
3368 | config_dir = os.path.split(default.__file__)[0] | |
3363 | ipython_dir = self.ipython_dir |
|
3369 | ipython_dir = self.ipython_dir | |
3364 | default_config_file_name = 'ipython_config.py' |
|
3370 | default_config_file_name = 'ipython_config.py' | |
3365 | src = os.path.join(config_dir, default_config_file_name) |
|
3371 | src = os.path.join(config_dir, default_config_file_name) | |
3366 | dst = os.path.join(ipython_dir, default_config_file_name) |
|
3372 | dst = os.path.join(ipython_dir, default_config_file_name) | |
3367 | if (not os.path.isfile(dst)) or overwrite: |
|
3373 | if (not os.path.isfile(dst)) or overwrite: | |
3368 | shutil.copy(src, dst) |
|
3374 | shutil.copy(src, dst) | |
3369 | print "Installing default config file: %s" % dst |
|
3375 | print "Installing default config file: %s" % dst | |
3370 |
|
3376 | |||
3371 | # Pylab support: simple wrappers that activate pylab, load gui input |
|
3377 | # Pylab support: simple wrappers that activate pylab, load gui input | |
3372 | # handling and modify slightly %run |
|
3378 | # handling and modify slightly %run | |
3373 |
|
3379 | |||
3374 | @testdec.skip_doctest |
|
3380 | @testdec.skip_doctest | |
3375 | def _pylab_magic_run(self, parameter_s=''): |
|
3381 | def _pylab_magic_run(self, parameter_s=''): | |
3376 | Magic.magic_run(self, parameter_s, |
|
3382 | Magic.magic_run(self, parameter_s, | |
3377 | runner=mpl_runner(self.shell.safe_execfile)) |
|
3383 | runner=mpl_runner(self.shell.safe_execfile)) | |
3378 |
|
3384 | |||
3379 | _pylab_magic_run.__doc__ = magic_run.__doc__ |
|
3385 | _pylab_magic_run.__doc__ = magic_run.__doc__ | |
3380 |
|
3386 | |||
3381 | @testdec.skip_doctest |
|
3387 | @testdec.skip_doctest | |
3382 | def magic_pylab(self, s): |
|
3388 | def magic_pylab(self, s): | |
3383 | """Load numpy and matplotlib to work interactively. |
|
3389 | """Load numpy and matplotlib to work interactively. | |
3384 |
|
3390 | |||
3385 | %pylab [GUINAME] |
|
3391 | %pylab [GUINAME] | |
3386 |
|
3392 | |||
3387 | This function lets you activate pylab (matplotlib, numpy and |
|
3393 | This function lets you activate pylab (matplotlib, numpy and | |
3388 | interactive support) at any point during an IPython session. |
|
3394 | interactive support) at any point during an IPython session. | |
3389 |
|
3395 | |||
3390 | It will import at the top level numpy as np, pyplot as plt, matplotlib, |
|
3396 | It will import at the top level numpy as np, pyplot as plt, matplotlib, | |
3391 | pylab and mlab, as well as all names from numpy and pylab. |
|
3397 | pylab and mlab, as well as all names from numpy and pylab. | |
3392 |
|
3398 | |||
3393 | Parameters |
|
3399 | Parameters | |
3394 | ---------- |
|
3400 | ---------- | |
3395 | guiname : optional |
|
3401 | guiname : optional | |
3396 | One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or |
|
3402 | One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or | |
3397 | 'tk'). If given, the corresponding Matplotlib backend is used, |
|
3403 | 'tk'). If given, the corresponding Matplotlib backend is used, | |
3398 | otherwise matplotlib's default (which you can override in your |
|
3404 | otherwise matplotlib's default (which you can override in your | |
3399 | matplotlib config file) is used. |
|
3405 | matplotlib config file) is used. | |
3400 |
|
3406 | |||
3401 | Examples |
|
3407 | Examples | |
3402 | -------- |
|
3408 | -------- | |
3403 | In this case, where the MPL default is TkAgg: |
|
3409 | In this case, where the MPL default is TkAgg: | |
3404 | In [2]: %pylab |
|
3410 | In [2]: %pylab | |
3405 |
|
3411 | |||
3406 | Welcome to pylab, a matplotlib-based Python environment. |
|
3412 | Welcome to pylab, a matplotlib-based Python environment. | |
3407 | Backend in use: TkAgg |
|
3413 | Backend in use: TkAgg | |
3408 | For more information, type 'help(pylab)'. |
|
3414 | For more information, type 'help(pylab)'. | |
3409 |
|
3415 | |||
3410 | But you can explicitly request a different backend: |
|
3416 | But you can explicitly request a different backend: | |
3411 | In [3]: %pylab qt |
|
3417 | In [3]: %pylab qt | |
3412 |
|
3418 | |||
3413 | Welcome to pylab, a matplotlib-based Python environment. |
|
3419 | Welcome to pylab, a matplotlib-based Python environment. | |
3414 | Backend in use: Qt4Agg |
|
3420 | Backend in use: Qt4Agg | |
3415 | For more information, type 'help(pylab)'. |
|
3421 | For more information, type 'help(pylab)'. | |
3416 | """ |
|
3422 | """ | |
3417 | self.shell.enable_pylab(s) |
|
3423 | self.shell.enable_pylab(s) | |
3418 |
|
3424 | |||
3419 | def magic_tb(self, s): |
|
3425 | def magic_tb(self, s): | |
3420 | """Print the last traceback with the currently active exception mode. |
|
3426 | """Print the last traceback with the currently active exception mode. | |
3421 |
|
3427 | |||
3422 | See %xmode for changing exception reporting modes.""" |
|
3428 | See %xmode for changing exception reporting modes.""" | |
3423 | self.shell.showtraceback() |
|
3429 | self.shell.showtraceback() | |
3424 |
|
3430 | |||
3425 | @testdec.skip_doctest |
|
3431 | @testdec.skip_doctest | |
3426 | def magic_precision(self, s=''): |
|
3432 | def magic_precision(self, s=''): | |
3427 | """Set floating point precision for pretty printing. |
|
3433 | """Set floating point precision for pretty printing. | |
3428 |
|
3434 | |||
3429 | Can set either integer precision or a format string. |
|
3435 | Can set either integer precision or a format string. | |
3430 |
|
3436 | |||
3431 | If numpy has been imported and precision is an int, |
|
3437 | If numpy has been imported and precision is an int, | |
3432 | numpy display precision will also be set, via ``numpy.set_printoptions``. |
|
3438 | numpy display precision will also be set, via ``numpy.set_printoptions``. | |
3433 |
|
3439 | |||
3434 | If no argument is given, defaults will be restored. |
|
3440 | If no argument is given, defaults will be restored. | |
3435 |
|
3441 | |||
3436 | Examples |
|
3442 | Examples | |
3437 | -------- |
|
3443 | -------- | |
3438 | :: |
|
3444 | :: | |
3439 |
|
3445 | |||
3440 | In [1]: from math import pi |
|
3446 | In [1]: from math import pi | |
3441 |
|
3447 | |||
3442 | In [2]: %precision 3 |
|
3448 | In [2]: %precision 3 | |
3443 | Out[2]: '%.3f' |
|
3449 | Out[2]: '%.3f' | |
3444 |
|
3450 | |||
3445 | In [3]: pi |
|
3451 | In [3]: pi | |
3446 | Out[3]: 3.142 |
|
3452 | Out[3]: 3.142 | |
3447 |
|
3453 | |||
3448 | In [4]: %precision %i |
|
3454 | In [4]: %precision %i | |
3449 | Out[4]: '%i' |
|
3455 | Out[4]: '%i' | |
3450 |
|
3456 | |||
3451 | In [5]: pi |
|
3457 | In [5]: pi | |
3452 | Out[5]: 3 |
|
3458 | Out[5]: 3 | |
3453 |
|
3459 | |||
3454 | In [6]: %precision %e |
|
3460 | In [6]: %precision %e | |
3455 | Out[6]: '%e' |
|
3461 | Out[6]: '%e' | |
3456 |
|
3462 | |||
3457 | In [7]: pi**10 |
|
3463 | In [7]: pi**10 | |
3458 | Out[7]: 9.364805e+04 |
|
3464 | Out[7]: 9.364805e+04 | |
3459 |
|
3465 | |||
3460 | In [8]: %precision |
|
3466 | In [8]: %precision | |
3461 | Out[8]: '%r' |
|
3467 | Out[8]: '%r' | |
3462 |
|
3468 | |||
3463 | In [9]: pi**10 |
|
3469 | In [9]: pi**10 | |
3464 | Out[9]: 93648.047476082982 |
|
3470 | Out[9]: 93648.047476082982 | |
3465 |
|
3471 | |||
3466 | """ |
|
3472 | """ | |
3467 |
|
3473 | |||
3468 | ptformatter = self.shell.display_formatter.formatters['text/plain'] |
|
3474 | ptformatter = self.shell.display_formatter.formatters['text/plain'] | |
3469 | ptformatter.float_precision = s |
|
3475 | ptformatter.float_precision = s | |
3470 | return ptformatter.float_format |
|
3476 | return ptformatter.float_format | |
3471 |
|
3477 | |||
3472 | # end Magic |
|
3478 | # end Magic |
@@ -1,425 +1,440 b'' | |||||
1 | """Tests for various magic functions. |
|
1 | """Tests for various magic functions. | |
2 |
|
2 | |||
3 | Needs to be run by nose (to make ipython session available). |
|
3 | Needs to be run by nose (to make ipython session available). | |
4 | """ |
|
4 | """ | |
5 | from __future__ import absolute_import |
|
5 | from __future__ import absolute_import | |
6 |
|
6 | |||
7 | #----------------------------------------------------------------------------- |
|
7 | #----------------------------------------------------------------------------- | |
8 | # Imports |
|
8 | # Imports | |
9 | #----------------------------------------------------------------------------- |
|
9 | #----------------------------------------------------------------------------- | |
10 |
|
10 | |||
11 | import os |
|
11 | import os | |
12 | import sys |
|
12 | import sys | |
13 | import tempfile |
|
13 | import tempfile | |
14 | import types |
|
14 | import types | |
15 | from cStringIO import StringIO |
|
15 | from cStringIO import StringIO | |
16 |
|
16 | |||
17 | import nose.tools as nt |
|
17 | import nose.tools as nt | |
18 |
|
18 | |||
19 | from IPython.utils.path import get_long_path_name |
|
19 | from IPython.utils.path import get_long_path_name | |
20 | from IPython.testing import decorators as dec |
|
20 | from IPython.testing import decorators as dec | |
21 | from IPython.testing import tools as tt |
|
21 | from IPython.testing import tools as tt | |
22 |
|
22 | |||
23 | #----------------------------------------------------------------------------- |
|
23 | #----------------------------------------------------------------------------- | |
24 | # Test functions begin |
|
24 | # Test functions begin | |
25 | #----------------------------------------------------------------------------- |
|
25 | #----------------------------------------------------------------------------- | |
26 | def test_rehashx(): |
|
26 | def test_rehashx(): | |
27 | # clear up everything |
|
27 | # clear up everything | |
28 | _ip = get_ipython() |
|
28 | _ip = get_ipython() | |
29 | _ip.alias_manager.alias_table.clear() |
|
29 | _ip.alias_manager.alias_table.clear() | |
30 | del _ip.db['syscmdlist'] |
|
30 | del _ip.db['syscmdlist'] | |
31 |
|
31 | |||
32 | _ip.magic('rehashx') |
|
32 | _ip.magic('rehashx') | |
33 | # Practically ALL ipython development systems will have more than 10 aliases |
|
33 | # Practically ALL ipython development systems will have more than 10 aliases | |
34 |
|
34 | |||
35 | yield (nt.assert_true, len(_ip.alias_manager.alias_table) > 10) |
|
35 | yield (nt.assert_true, len(_ip.alias_manager.alias_table) > 10) | |
36 | for key, val in _ip.alias_manager.alias_table.iteritems(): |
|
36 | for key, val in _ip.alias_manager.alias_table.iteritems(): | |
37 | # we must strip dots from alias names |
|
37 | # we must strip dots from alias names | |
38 | nt.assert_true('.' not in key) |
|
38 | nt.assert_true('.' not in key) | |
39 |
|
39 | |||
40 | # rehashx must fill up syscmdlist |
|
40 | # rehashx must fill up syscmdlist | |
41 | scoms = _ip.db['syscmdlist'] |
|
41 | scoms = _ip.db['syscmdlist'] | |
42 | yield (nt.assert_true, len(scoms) > 10) |
|
42 | yield (nt.assert_true, len(scoms) > 10) | |
43 |
|
43 | |||
44 |
|
44 | |||
45 | def test_magic_parse_options(): |
|
45 | def test_magic_parse_options(): | |
46 | """Test that we don't mangle paths when parsing magic options.""" |
|
46 | """Test that we don't mangle paths when parsing magic options.""" | |
47 | ip = get_ipython() |
|
47 | ip = get_ipython() | |
48 | path = 'c:\\x' |
|
48 | path = 'c:\\x' | |
49 | opts = ip.parse_options('-f %s' % path,'f:')[0] |
|
49 | opts = ip.parse_options('-f %s' % path,'f:')[0] | |
50 | # argv splitting is os-dependent |
|
50 | # argv splitting is os-dependent | |
51 | if os.name == 'posix': |
|
51 | if os.name == 'posix': | |
52 | expected = 'c:x' |
|
52 | expected = 'c:x' | |
53 | else: |
|
53 | else: | |
54 | expected = path |
|
54 | expected = path | |
55 | nt.assert_equals(opts['f'], expected) |
|
55 | nt.assert_equals(opts['f'], expected) | |
56 |
|
56 | |||
57 |
|
57 | |||
58 | def doctest_hist_f(): |
|
58 | def doctest_hist_f(): | |
59 | """Test %hist -f with temporary filename. |
|
59 | """Test %hist -f with temporary filename. | |
60 |
|
60 | |||
61 | In [9]: import tempfile |
|
61 | In [9]: import tempfile | |
62 |
|
62 | |||
63 | In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-') |
|
63 | In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-') | |
64 |
|
64 | |||
65 | In [11]: %hist -nl -f $tfile 3 |
|
65 | In [11]: %hist -nl -f $tfile 3 | |
66 |
|
66 | |||
67 | In [13]: import os; os.unlink(tfile) |
|
67 | In [13]: import os; os.unlink(tfile) | |
68 | """ |
|
68 | """ | |
69 |
|
69 | |||
70 |
|
70 | |||
71 | def doctest_hist_r(): |
|
71 | def doctest_hist_r(): | |
72 | """Test %hist -r |
|
72 | """Test %hist -r | |
73 |
|
73 | |||
74 | XXX - This test is not recording the output correctly. For some reason, in |
|
74 | XXX - This test is not recording the output correctly. For some reason, in | |
75 | testing mode the raw history isn't getting populated. No idea why. |
|
75 | testing mode the raw history isn't getting populated. No idea why. | |
76 | Disabling the output checking for now, though at least we do run it. |
|
76 | Disabling the output checking for now, though at least we do run it. | |
77 |
|
77 | |||
78 | In [1]: 'hist' in _ip.lsmagic() |
|
78 | In [1]: 'hist' in _ip.lsmagic() | |
79 | Out[1]: True |
|
79 | Out[1]: True | |
80 |
|
80 | |||
81 | In [2]: x=1 |
|
81 | In [2]: x=1 | |
82 |
|
82 | |||
83 | In [3]: %hist -rl 2 |
|
83 | In [3]: %hist -rl 2 | |
84 | x=1 # random |
|
84 | x=1 # random | |
85 | %hist -r 2 |
|
85 | %hist -r 2 | |
86 | """ |
|
86 | """ | |
87 |
|
87 | |||
88 | def doctest_hist_op(): |
|
88 | def doctest_hist_op(): | |
89 | """Test %hist -op |
|
89 | """Test %hist -op | |
90 |
|
90 | |||
91 | In [1]: class b: |
|
91 | In [1]: class b: | |
92 | ...: pass |
|
92 | ...: pass | |
93 | ...: |
|
93 | ...: | |
94 |
|
94 | |||
95 | In [2]: class s(b): |
|
95 | In [2]: class s(b): | |
96 | ...: def __str__(self): |
|
96 | ...: def __str__(self): | |
97 | ...: return 's' |
|
97 | ...: return 's' | |
98 | ...: |
|
98 | ...: | |
99 |
|
99 | |||
100 | In [3]: |
|
100 | In [3]: | |
101 |
|
101 | |||
102 | In [4]: class r(b): |
|
102 | In [4]: class r(b): | |
103 | ...: def __repr__(self): |
|
103 | ...: def __repr__(self): | |
104 | ...: return 'r' |
|
104 | ...: return 'r' | |
105 | ...: |
|
105 | ...: | |
106 |
|
106 | |||
107 | In [5]: class sr(s,r): pass |
|
107 | In [5]: class sr(s,r): pass | |
108 | ...: |
|
108 | ...: | |
109 |
|
109 | |||
110 | In [6]: |
|
110 | In [6]: | |
111 |
|
111 | |||
112 | In [7]: bb=b() |
|
112 | In [7]: bb=b() | |
113 |
|
113 | |||
114 | In [8]: ss=s() |
|
114 | In [8]: ss=s() | |
115 |
|
115 | |||
116 | In [9]: rr=r() |
|
116 | In [9]: rr=r() | |
117 |
|
117 | |||
118 | In [10]: ssrr=sr() |
|
118 | In [10]: ssrr=sr() | |
119 |
|
119 | |||
120 | In [11]: bb |
|
120 | In [11]: bb | |
121 | Out[11]: <...b instance at ...> |
|
121 | Out[11]: <...b instance at ...> | |
122 |
|
122 | |||
123 | In [12]: ss |
|
123 | In [12]: ss | |
124 | Out[12]: <...s instance at ...> |
|
124 | Out[12]: <...s instance at ...> | |
125 |
|
125 | |||
126 | In [13]: |
|
126 | In [13]: | |
127 |
|
127 | |||
128 | In [14]: %hist -op |
|
128 | In [14]: %hist -op | |
129 | >>> class b: |
|
129 | >>> class b: | |
130 | ... pass |
|
130 | ... pass | |
131 | ... |
|
131 | ... | |
132 | >>> class s(b): |
|
132 | >>> class s(b): | |
133 | ... def __str__(self): |
|
133 | ... def __str__(self): | |
134 | ... return 's' |
|
134 | ... return 's' | |
135 | ... |
|
135 | ... | |
136 | >>> |
|
136 | >>> | |
137 | >>> class r(b): |
|
137 | >>> class r(b): | |
138 | ... def __repr__(self): |
|
138 | ... def __repr__(self): | |
139 | ... return 'r' |
|
139 | ... return 'r' | |
140 | ... |
|
140 | ... | |
141 | >>> class sr(s,r): pass |
|
141 | >>> class sr(s,r): pass | |
142 | >>> |
|
142 | >>> | |
143 | >>> bb=b() |
|
143 | >>> bb=b() | |
144 | >>> ss=s() |
|
144 | >>> ss=s() | |
145 | >>> rr=r() |
|
145 | >>> rr=r() | |
146 | >>> ssrr=sr() |
|
146 | >>> ssrr=sr() | |
147 | >>> bb |
|
147 | >>> bb | |
148 | <...b instance at ...> |
|
148 | <...b instance at ...> | |
149 | >>> ss |
|
149 | >>> ss | |
150 | <...s instance at ...> |
|
150 | <...s instance at ...> | |
151 | >>> |
|
151 | >>> | |
152 | """ |
|
152 | """ | |
153 |
|
153 | |||
154 | def test_macro(): |
|
154 | def test_macro(): | |
155 | ip = get_ipython() |
|
155 | ip = get_ipython() | |
156 | ip.history_manager.reset() # Clear any existing history. |
|
156 | ip.history_manager.reset() # Clear any existing history. | |
157 | cmds = ["a=1", "def b():\n return a**2", "print(a,b())"] |
|
157 | cmds = ["a=1", "def b():\n return a**2", "print(a,b())"] | |
158 | for i, cmd in enumerate(cmds, start=1): |
|
158 | for i, cmd in enumerate(cmds, start=1): | |
159 | ip.history_manager.store_inputs(i, cmd) |
|
159 | ip.history_manager.store_inputs(i, cmd) | |
160 | ip.magic("macro test 1-3") |
|
160 | ip.magic("macro test 1-3") | |
161 | nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n") |
|
161 | nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n") | |
162 |
|
162 | |||
163 | # List macros. |
|
163 | # List macros. | |
164 | assert "test" in ip.magic("macro") |
|
164 | assert "test" in ip.magic("macro") | |
165 |
|
165 | |||
166 | def test_macro_run(): |
|
166 | def test_macro_run(): | |
167 | """Test that we can run a multi-line macro successfully.""" |
|
167 | """Test that we can run a multi-line macro successfully.""" | |
168 | ip = get_ipython() |
|
168 | ip = get_ipython() | |
169 | ip.history_manager.reset() |
|
169 | ip.history_manager.reset() | |
170 | cmds = ["a=10", "a+=1", "print a", "%macro test 2-3"] |
|
170 | cmds = ["a=10", "a+=1", "print a", "%macro test 2-3"] | |
171 | for cmd in cmds: |
|
171 | for cmd in cmds: | |
172 | ip.run_cell(cmd) |
|
172 | ip.run_cell(cmd) | |
173 | nt.assert_equal(ip.user_ns["test"].value, "a+=1\nprint a\n") |
|
173 | nt.assert_equal(ip.user_ns["test"].value, "a+=1\nprint a\n") | |
174 | original_stdout = sys.stdout |
|
174 | original_stdout = sys.stdout | |
175 | new_stdout = StringIO() |
|
175 | new_stdout = StringIO() | |
176 | sys.stdout = new_stdout |
|
176 | sys.stdout = new_stdout | |
177 | try: |
|
177 | try: | |
178 | ip.run_cell("test") |
|
178 | ip.run_cell("test") | |
179 | nt.assert_true("12" in new_stdout.getvalue()) |
|
179 | nt.assert_true("12" in new_stdout.getvalue()) | |
180 | ip.run_cell("test") |
|
180 | ip.run_cell("test") | |
181 | nt.assert_true("13" in new_stdout.getvalue()) |
|
181 | nt.assert_true("13" in new_stdout.getvalue()) | |
182 | finally: |
|
182 | finally: | |
183 | sys.stdout = original_stdout |
|
183 | sys.stdout = original_stdout | |
184 | new_stdout.close() |
|
184 | new_stdout.close() | |
185 |
|
185 | |||
186 |
|
186 | |||
187 | # XXX failing for now, until we get clearcmd out of quarantine. But we should |
|
187 | # XXX failing for now, until we get clearcmd out of quarantine. But we should | |
188 | # fix this and revert the skip to happen only if numpy is not around. |
|
188 | # fix this and revert the skip to happen only if numpy is not around. | |
189 | #@dec.skipif_not_numpy |
|
189 | #@dec.skipif_not_numpy | |
190 | @dec.skip_known_failure |
|
190 | @dec.skip_known_failure | |
191 | def test_numpy_clear_array_undec(): |
|
191 | def test_numpy_clear_array_undec(): | |
192 | from IPython.extensions import clearcmd |
|
192 | from IPython.extensions import clearcmd | |
193 |
|
193 | |||
194 | _ip.ex('import numpy as np') |
|
194 | _ip.ex('import numpy as np') | |
195 | _ip.ex('a = np.empty(2)') |
|
195 | _ip.ex('a = np.empty(2)') | |
196 | yield (nt.assert_true, 'a' in _ip.user_ns) |
|
196 | yield (nt.assert_true, 'a' in _ip.user_ns) | |
197 | _ip.magic('clear array') |
|
197 | _ip.magic('clear array') | |
198 | yield (nt.assert_false, 'a' in _ip.user_ns) |
|
198 | yield (nt.assert_false, 'a' in _ip.user_ns) | |
199 |
|
199 | |||
200 |
|
200 | |||
201 | # Multiple tests for clipboard pasting |
|
201 | # Multiple tests for clipboard pasting | |
202 | @dec.parametric |
|
202 | @dec.parametric | |
203 | def test_paste(): |
|
203 | def test_paste(): | |
204 | _ip = get_ipython() |
|
204 | _ip = get_ipython() | |
205 | def paste(txt, flags='-q'): |
|
205 | def paste(txt, flags='-q'): | |
206 | """Paste input text, by default in quiet mode""" |
|
206 | """Paste input text, by default in quiet mode""" | |
207 | hooks.clipboard_get = lambda : txt |
|
207 | hooks.clipboard_get = lambda : txt | |
208 | _ip.magic('paste '+flags) |
|
208 | _ip.magic('paste '+flags) | |
209 |
|
209 | |||
210 | # Inject fake clipboard hook but save original so we can restore it later |
|
210 | # Inject fake clipboard hook but save original so we can restore it later | |
211 | hooks = _ip.hooks |
|
211 | hooks = _ip.hooks | |
212 | user_ns = _ip.user_ns |
|
212 | user_ns = _ip.user_ns | |
213 | original_clip = hooks.clipboard_get |
|
213 | original_clip = hooks.clipboard_get | |
214 |
|
214 | |||
215 | try: |
|
215 | try: | |
216 | # This try/except with an emtpy except clause is here only because |
|
216 | # This try/except with an emtpy except clause is here only because | |
217 | # try/yield/finally is invalid syntax in Python 2.4. This will be |
|
217 | # try/yield/finally is invalid syntax in Python 2.4. This will be | |
218 | # removed when we drop 2.4-compatibility, and the emtpy except below |
|
218 | # removed when we drop 2.4-compatibility, and the emtpy except below | |
219 | # will be changed to a finally. |
|
219 | # will be changed to a finally. | |
220 |
|
220 | |||
221 | # Run tests with fake clipboard function |
|
221 | # Run tests with fake clipboard function | |
222 | user_ns.pop('x', None) |
|
222 | user_ns.pop('x', None) | |
223 | paste('x=1') |
|
223 | paste('x=1') | |
224 | yield nt.assert_equal(user_ns['x'], 1) |
|
224 | yield nt.assert_equal(user_ns['x'], 1) | |
225 |
|
225 | |||
226 | user_ns.pop('x', None) |
|
226 | user_ns.pop('x', None) | |
227 | paste('>>> x=2') |
|
227 | paste('>>> x=2') | |
228 | yield nt.assert_equal(user_ns['x'], 2) |
|
228 | yield nt.assert_equal(user_ns['x'], 2) | |
229 |
|
229 | |||
230 | paste(""" |
|
230 | paste(""" | |
231 | >>> x = [1,2,3] |
|
231 | >>> x = [1,2,3] | |
232 | >>> y = [] |
|
232 | >>> y = [] | |
233 | >>> for i in x: |
|
233 | >>> for i in x: | |
234 | ... y.append(i**2) |
|
234 | ... y.append(i**2) | |
235 | ... |
|
235 | ... | |
236 | """) |
|
236 | """) | |
237 | yield nt.assert_equal(user_ns['x'], [1,2,3]) |
|
237 | yield nt.assert_equal(user_ns['x'], [1,2,3]) | |
238 | yield nt.assert_equal(user_ns['y'], [1,4,9]) |
|
238 | yield nt.assert_equal(user_ns['y'], [1,4,9]) | |
239 |
|
239 | |||
240 | # Now, test that paste -r works |
|
240 | # Now, test that paste -r works | |
241 | user_ns.pop('x', None) |
|
241 | user_ns.pop('x', None) | |
242 | yield nt.assert_false('x' in user_ns) |
|
242 | yield nt.assert_false('x' in user_ns) | |
243 | _ip.magic('paste -r') |
|
243 | _ip.magic('paste -r') | |
244 | yield nt.assert_equal(user_ns['x'], [1,2,3]) |
|
244 | yield nt.assert_equal(user_ns['x'], [1,2,3]) | |
245 |
|
245 | |||
246 | # Also test paste echoing, by temporarily faking the writer |
|
246 | # Also test paste echoing, by temporarily faking the writer | |
247 | w = StringIO() |
|
247 | w = StringIO() | |
248 | writer = _ip.write |
|
248 | writer = _ip.write | |
249 | _ip.write = w.write |
|
249 | _ip.write = w.write | |
250 | code = """ |
|
250 | code = """ | |
251 | a = 100 |
|
251 | a = 100 | |
252 | b = 200""" |
|
252 | b = 200""" | |
253 | try: |
|
253 | try: | |
254 | paste(code,'') |
|
254 | paste(code,'') | |
255 | out = w.getvalue() |
|
255 | out = w.getvalue() | |
256 | finally: |
|
256 | finally: | |
257 | _ip.write = writer |
|
257 | _ip.write = writer | |
258 | yield nt.assert_equal(user_ns['a'], 100) |
|
258 | yield nt.assert_equal(user_ns['a'], 100) | |
259 | yield nt.assert_equal(user_ns['b'], 200) |
|
259 | yield nt.assert_equal(user_ns['b'], 200) | |
260 | yield nt.assert_equal(out, code+"\n## -- End pasted text --\n") |
|
260 | yield nt.assert_equal(out, code+"\n## -- End pasted text --\n") | |
261 |
|
261 | |||
262 | finally: |
|
262 | finally: | |
263 | # This should be in a finally clause, instead of the bare except above. |
|
263 | # This should be in a finally clause, instead of the bare except above. | |
264 | # Restore original hook |
|
264 | # Restore original hook | |
265 | hooks.clipboard_get = original_clip |
|
265 | hooks.clipboard_get = original_clip | |
266 |
|
266 | |||
267 |
|
267 | |||
268 | def test_time(): |
|
268 | def test_time(): | |
269 | _ip.magic('time None') |
|
269 | _ip.magic('time None') | |
270 |
|
270 | |||
271 |
|
271 | |||
272 | def doctest_time(): |
|
272 | def doctest_time(): | |
273 | """ |
|
273 | """ | |
274 | In [10]: %time None |
|
274 | In [10]: %time None | |
275 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
275 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
276 | Wall time: 0.00 s |
|
276 | Wall time: 0.00 s | |
277 |
|
277 | |||
278 | In [11]: def f(kmjy): |
|
278 | In [11]: def f(kmjy): | |
279 | ....: %time print 2*kmjy |
|
279 | ....: %time print 2*kmjy | |
280 |
|
280 | |||
281 | In [12]: f(3) |
|
281 | In [12]: f(3) | |
282 | 6 |
|
282 | 6 | |
283 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
283 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s | |
284 | Wall time: 0.00 s |
|
284 | Wall time: 0.00 s | |
285 | """ |
|
285 | """ | |
286 |
|
286 | |||
287 |
|
287 | |||
288 | def test_doctest_mode(): |
|
288 | def test_doctest_mode(): | |
289 | "Toggle doctest_mode twice, it should be a no-op and run without error" |
|
289 | "Toggle doctest_mode twice, it should be a no-op and run without error" | |
290 | _ip.magic('doctest_mode') |
|
290 | _ip.magic('doctest_mode') | |
291 | _ip.magic('doctest_mode') |
|
291 | _ip.magic('doctest_mode') | |
292 |
|
292 | |||
293 |
|
293 | |||
294 | def test_parse_options(): |
|
294 | def test_parse_options(): | |
295 | """Tests for basic options parsing in magics.""" |
|
295 | """Tests for basic options parsing in magics.""" | |
296 | # These are only the most minimal of tests, more should be added later. At |
|
296 | # These are only the most minimal of tests, more should be added later. At | |
297 | # the very least we check that basic text/unicode calls work OK. |
|
297 | # the very least we check that basic text/unicode calls work OK. | |
298 | nt.assert_equal(_ip.parse_options('foo', '')[1], 'foo') |
|
298 | nt.assert_equal(_ip.parse_options('foo', '')[1], 'foo') | |
299 | nt.assert_equal(_ip.parse_options(u'foo', '')[1], u'foo') |
|
299 | nt.assert_equal(_ip.parse_options(u'foo', '')[1], u'foo') | |
300 |
|
300 | |||
301 |
|
301 | |||
302 | def test_dirops(): |
|
302 | def test_dirops(): | |
303 | """Test various directory handling operations.""" |
|
303 | """Test various directory handling operations.""" | |
304 | curpath = lambda :os.path.splitdrive(os.getcwdu())[1].replace('\\','/') |
|
304 | curpath = lambda :os.path.splitdrive(os.getcwdu())[1].replace('\\','/') | |
305 |
|
305 | |||
306 | startdir = os.getcwdu() |
|
306 | startdir = os.getcwdu() | |
307 | ipdir = _ip.ipython_dir |
|
307 | ipdir = _ip.ipython_dir | |
308 | try: |
|
308 | try: | |
309 | _ip.magic('cd "%s"' % ipdir) |
|
309 | _ip.magic('cd "%s"' % ipdir) | |
310 | nt.assert_equal(curpath(), ipdir) |
|
310 | nt.assert_equal(curpath(), ipdir) | |
311 | _ip.magic('cd -') |
|
311 | _ip.magic('cd -') | |
312 | nt.assert_equal(curpath(), startdir) |
|
312 | nt.assert_equal(curpath(), startdir) | |
313 | _ip.magic('pushd "%s"' % ipdir) |
|
313 | _ip.magic('pushd "%s"' % ipdir) | |
314 | nt.assert_equal(curpath(), ipdir) |
|
314 | nt.assert_equal(curpath(), ipdir) | |
315 | _ip.magic('popd') |
|
315 | _ip.magic('popd') | |
316 | nt.assert_equal(curpath(), startdir) |
|
316 | nt.assert_equal(curpath(), startdir) | |
317 | finally: |
|
317 | finally: | |
318 | os.chdir(startdir) |
|
318 | os.chdir(startdir) | |
319 |
|
319 | |||
320 |
|
320 | |||
321 | def check_cpaste(code, should_fail=False): |
|
321 | def check_cpaste(code, should_fail=False): | |
322 | """Execute code via 'cpaste' and ensure it was executed, unless |
|
322 | """Execute code via 'cpaste' and ensure it was executed, unless | |
323 | should_fail is set. |
|
323 | should_fail is set. | |
324 | """ |
|
324 | """ | |
325 | _ip.user_ns['code_ran'] = False |
|
325 | _ip.user_ns['code_ran'] = False | |
326 |
|
326 | |||
327 | src = StringIO() |
|
327 | src = StringIO() | |
328 | src.write('\n') |
|
328 | src.write('\n') | |
329 | src.write(code) |
|
329 | src.write(code) | |
330 | src.write('\n--\n') |
|
330 | src.write('\n--\n') | |
331 | src.seek(0) |
|
331 | src.seek(0) | |
332 |
|
332 | |||
333 | stdin_save = sys.stdin |
|
333 | stdin_save = sys.stdin | |
334 | sys.stdin = src |
|
334 | sys.stdin = src | |
335 |
|
335 | |||
336 | try: |
|
336 | try: | |
337 | _ip.magic('cpaste') |
|
337 | _ip.magic('cpaste') | |
338 | except: |
|
338 | except: | |
339 | if not should_fail: |
|
339 | if not should_fail: | |
340 | raise AssertionError("Failure not expected : '%s'" % |
|
340 | raise AssertionError("Failure not expected : '%s'" % | |
341 | code) |
|
341 | code) | |
342 | else: |
|
342 | else: | |
343 | assert _ip.user_ns['code_ran'] |
|
343 | assert _ip.user_ns['code_ran'] | |
344 | if should_fail: |
|
344 | if should_fail: | |
345 | raise AssertionError("Failure expected : '%s'" % code) |
|
345 | raise AssertionError("Failure expected : '%s'" % code) | |
346 | finally: |
|
346 | finally: | |
347 | sys.stdin = stdin_save |
|
347 | sys.stdin = stdin_save | |
348 |
|
348 | |||
349 |
|
349 | |||
350 | def test_cpaste(): |
|
350 | def test_cpaste(): | |
351 | """Test cpaste magic""" |
|
351 | """Test cpaste magic""" | |
352 |
|
352 | |||
353 | def run(): |
|
353 | def run(): | |
354 | """Marker function: sets a flag when executed. |
|
354 | """Marker function: sets a flag when executed. | |
355 | """ |
|
355 | """ | |
356 | _ip.user_ns['code_ran'] = True |
|
356 | _ip.user_ns['code_ran'] = True | |
357 | return 'run' # return string so '+ run()' doesn't result in success |
|
357 | return 'run' # return string so '+ run()' doesn't result in success | |
358 |
|
358 | |||
359 | tests = {'pass': ["> > > run()", |
|
359 | tests = {'pass': ["> > > run()", | |
360 | ">>> > run()", |
|
360 | ">>> > run()", | |
361 | "+++ run()", |
|
361 | "+++ run()", | |
362 | "++ run()", |
|
362 | "++ run()", | |
363 | " >>> run()"], |
|
363 | " >>> run()"], | |
364 |
|
364 | |||
365 | 'fail': ["+ + run()", |
|
365 | 'fail': ["+ + run()", | |
366 | " ++ run()"]} |
|
366 | " ++ run()"]} | |
367 |
|
367 | |||
368 | _ip.user_ns['run'] = run |
|
368 | _ip.user_ns['run'] = run | |
369 |
|
369 | |||
370 | for code in tests['pass']: |
|
370 | for code in tests['pass']: | |
371 | check_cpaste(code) |
|
371 | check_cpaste(code) | |
372 |
|
372 | |||
373 | for code in tests['fail']: |
|
373 | for code in tests['fail']: | |
374 | check_cpaste(code, should_fail=True) |
|
374 | check_cpaste(code, should_fail=True) | |
375 |
|
375 | |||
376 | def test_xmode(): |
|
376 | def test_xmode(): | |
377 | # Calling xmode three times should be a no-op |
|
377 | # Calling xmode three times should be a no-op | |
378 | xmode = _ip.InteractiveTB.mode |
|
378 | xmode = _ip.InteractiveTB.mode | |
379 | for i in range(3): |
|
379 | for i in range(3): | |
380 | _ip.magic("xmode") |
|
380 | _ip.magic("xmode") | |
381 | nt.assert_equal(_ip.InteractiveTB.mode, xmode) |
|
381 | nt.assert_equal(_ip.InteractiveTB.mode, xmode) | |
|
382 | ||||
|
383 | def test_reset_hard(): | |||
|
384 | monitor = [] | |||
|
385 | class A(object): | |||
|
386 | def __del__(self): | |||
|
387 | monitor.append(1) | |||
|
388 | def __repr__(self): | |||
|
389 | return "<A instance>" | |||
|
390 | ||||
|
391 | _ip.user_ns["a"] = A() | |||
|
392 | _ip.run_cell("a") | |||
|
393 | ||||
|
394 | nt.assert_equal(monitor, []) | |||
|
395 | _ip.magic_reset("-f") | |||
|
396 | nt.assert_equal(monitor, [1]) | |||
382 |
|
397 | |||
383 | def doctest_who(): |
|
398 | def doctest_who(): | |
384 | """doctest for %who |
|
399 | """doctest for %who | |
385 |
|
400 | |||
386 | In [1]: %reset -f |
|
401 | In [1]: %reset -f | |
387 |
|
402 | |||
388 | In [2]: alpha = 123 |
|
403 | In [2]: alpha = 123 | |
389 |
|
404 | |||
390 | In [3]: beta = 'beta' |
|
405 | In [3]: beta = 'beta' | |
391 |
|
406 | |||
392 | In [4]: %who int |
|
407 | In [4]: %who int | |
393 | alpha |
|
408 | alpha | |
394 |
|
409 | |||
395 | In [5]: %who str |
|
410 | In [5]: %who str | |
396 | beta |
|
411 | beta | |
397 |
|
412 | |||
398 | In [6]: %whos |
|
413 | In [6]: %whos | |
399 | Variable Type Data/Info |
|
414 | Variable Type Data/Info | |
400 | ---------------------------- |
|
415 | ---------------------------- | |
401 | alpha int 123 |
|
416 | alpha int 123 | |
402 | beta str beta |
|
417 | beta str beta | |
403 |
|
418 | |||
404 | In [7]: %who_ls |
|
419 | In [7]: %who_ls | |
405 | Out[7]: ['alpha', 'beta'] |
|
420 | Out[7]: ['alpha', 'beta'] | |
406 | """ |
|
421 | """ | |
407 |
|
422 | |||
408 | def doctest_precision(): |
|
423 | def doctest_precision(): | |
409 | """doctest for %precision |
|
424 | """doctest for %precision | |
410 |
|
425 | |||
411 | In [1]: f = get_ipython().shell.display_formatter.formatters['text/plain'] |
|
426 | In [1]: f = get_ipython().shell.display_formatter.formatters['text/plain'] | |
412 |
|
427 | |||
413 | In [2]: %precision 5 |
|
428 | In [2]: %precision 5 | |
414 | Out[2]: '%.5f' |
|
429 | Out[2]: '%.5f' | |
415 |
|
430 | |||
416 | In [3]: f.float_format |
|
431 | In [3]: f.float_format | |
417 | Out[3]: '%.5f' |
|
432 | Out[3]: '%.5f' | |
418 |
|
433 | |||
419 | In [4]: %precision %e |
|
434 | In [4]: %precision %e | |
420 | Out[4]: '%e' |
|
435 | Out[4]: '%e' | |
421 |
|
436 | |||
422 | In [5]: f(3.1415927) |
|
437 | In [5]: f(3.1415927) | |
423 | Out[5]: '3.141593e+00' |
|
438 | Out[5]: '3.141593e+00' | |
424 | """ |
|
439 | """ | |
425 |
|
440 |
General Comments 0
You need to be logged in to leave comments.
Login now