Show More
@@ -1,1118 +1,1177 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | """Implementation of execution-related magic functions. |
|
3 | 3 | """ |
|
4 | 4 | #----------------------------------------------------------------------------- |
|
5 | 5 | # Copyright (c) 2012 The IPython Development Team. |
|
6 | 6 | # |
|
7 | 7 | # Distributed under the terms of the Modified BSD License. |
|
8 | 8 | # |
|
9 | 9 | # The full license is in the file COPYING.txt, distributed with this software. |
|
10 | 10 | #----------------------------------------------------------------------------- |
|
11 | 11 | |
|
12 | 12 | #----------------------------------------------------------------------------- |
|
13 | 13 | # Imports |
|
14 | 14 | #----------------------------------------------------------------------------- |
|
15 | 15 | |
|
16 | 16 | # Stdlib |
|
17 | 17 | import __builtin__ as builtin_mod |
|
18 | 18 | import ast |
|
19 | 19 | import bdb |
|
20 | 20 | import os |
|
21 | 21 | import sys |
|
22 | 22 | import time |
|
23 | 23 | from StringIO import StringIO |
|
24 | 24 | |
|
25 | 25 | # cProfile was added in Python2.5 |
|
26 | 26 | try: |
|
27 | 27 | import cProfile as profile |
|
28 | 28 | import pstats |
|
29 | 29 | except ImportError: |
|
30 | 30 | # profile isn't bundled by default in Debian for license reasons |
|
31 | 31 | try: |
|
32 | 32 | import profile, pstats |
|
33 | 33 | except ImportError: |
|
34 | 34 | profile = pstats = None |
|
35 | 35 | |
|
36 | 36 | # Our own packages |
|
37 | 37 | from IPython.core import debugger, oinspect |
|
38 | 38 | from IPython.core import magic_arguments |
|
39 | 39 | from IPython.core import page |
|
40 | 40 | from IPython.core.error import UsageError |
|
41 | 41 | from IPython.core.macro import Macro |
|
42 | 42 | from IPython.core.magic import (Magics, magics_class, line_magic, cell_magic, |
|
43 | 43 | line_cell_magic, on_off, needs_local_scope) |
|
44 | 44 | from IPython.testing.skipdoctest import skip_doctest |
|
45 | 45 | from IPython.utils import py3compat |
|
46 | 46 | from IPython.utils.contexts import preserve_keys |
|
47 | 47 | from IPython.utils.io import capture_output |
|
48 | 48 | from IPython.utils.ipstruct import Struct |
|
49 | 49 | from IPython.utils.module_paths import find_mod |
|
50 | 50 | from IPython.utils.path import get_py_filename, unquote_filename, shellglob |
|
51 | 51 | from IPython.utils.timing import clock, clock2 |
|
52 | 52 | from IPython.utils.warn import warn, error |
|
53 | 53 | |
|
54 | 54 | |
|
55 | 55 | #----------------------------------------------------------------------------- |
|
56 | 56 | # Magic implementation classes |
|
57 | 57 | #----------------------------------------------------------------------------- |
|
58 | 58 | |
|
59 | 59 | @magics_class |
|
60 | 60 | class ExecutionMagics(Magics): |
|
61 | 61 | """Magics related to code execution, debugging, profiling, etc. |
|
62 | 62 | |
|
63 | 63 | """ |
|
64 | 64 | |
|
65 | 65 | def __init__(self, shell): |
|
66 | 66 | super(ExecutionMagics, self).__init__(shell) |
|
67 | 67 | if profile is None: |
|
68 | 68 | self.prun = self.profile_missing_notice |
|
69 | 69 | # Default execution function used to actually run user code. |
|
70 | 70 | self.default_runner = None |
|
71 | 71 | |
|
72 | 72 | def profile_missing_notice(self, *args, **kwargs): |
|
73 | 73 | error("""\ |
|
74 | 74 | The profile module could not be found. It has been removed from the standard |
|
75 | 75 | python packages because of its non-free license. To use profiling, install the |
|
76 | 76 | python-profiler package from non-free.""") |
|
77 | 77 | |
|
78 | 78 | @skip_doctest |
|
79 | 79 | @line_cell_magic |
|
80 |
def prun(self, parameter_s='', cell=None |
|
|
81 | opts=None,arg_lst=None,prog_ns=None): | |
|
80 | def prun(self, parameter_s='', cell=None): | |
|
82 | 81 | |
|
83 | 82 | """Run a statement through the python code profiler. |
|
84 | 83 | |
|
85 | 84 | Usage, in line mode: |
|
86 | 85 | %prun [options] statement |
|
87 | 86 | |
|
88 | 87 | Usage, in cell mode: |
|
89 | 88 | %%prun [options] [statement] |
|
90 | 89 | code... |
|
91 | 90 | code... |
|
92 | 91 | |
|
93 | 92 | In cell mode, the additional code lines are appended to the (possibly |
|
94 | 93 | empty) statement in the first line. Cell mode allows you to easily |
|
95 | 94 | profile multiline blocks without having to put them in a separate |
|
96 | 95 | function. |
|
97 | 96 | |
|
98 | 97 | The given statement (which doesn't require quote marks) is run via the |
|
99 | 98 | python profiler in a manner similar to the profile.run() function. |
|
100 | 99 | Namespaces are internally managed to work correctly; profile.run |
|
101 | 100 | cannot be used in IPython because it makes certain assumptions about |
|
102 | 101 | namespaces which do not hold under IPython. |
|
103 | 102 | |
|
104 | 103 | Options: |
|
105 | 104 | |
|
106 | 105 | -l <limit>: you can place restrictions on what or how much of the |
|
107 | 106 | profile gets printed. The limit value can be: |
|
108 | 107 | |
|
109 | 108 | * A string: only information for function names containing this string |
|
110 | 109 | is printed. |
|
111 | 110 | |
|
112 | 111 | * An integer: only these many lines are printed. |
|
113 | 112 | |
|
114 | 113 | * A float (between 0 and 1): this fraction of the report is printed |
|
115 | 114 | (for example, use a limit of 0.4 to see the topmost 40% only). |
|
116 | 115 | |
|
117 | 116 | You can combine several limits with repeated use of the option. For |
|
118 | 117 | example, '-l __init__ -l 5' will print only the topmost 5 lines of |
|
119 | 118 | information about class constructors. |
|
120 | 119 | |
|
121 | 120 | -r: return the pstats.Stats object generated by the profiling. This |
|
122 | 121 | object has all the information about the profile in it, and you can |
|
123 | 122 | later use it for further analysis or in other functions. |
|
124 | 123 | |
|
125 | 124 | -s <key>: sort profile by given key. You can provide more than one key |
|
126 | 125 | by using the option several times: '-s key1 -s key2 -s key3...'. The |
|
127 | 126 | default sorting key is 'time'. |
|
128 | 127 | |
|
129 | 128 | The following is copied verbatim from the profile documentation |
|
130 | 129 | referenced below: |
|
131 | 130 | |
|
132 | 131 | When more than one key is provided, additional keys are used as |
|
133 | 132 | secondary criteria when the there is equality in all keys selected |
|
134 | 133 | before them. |
|
135 | 134 | |
|
136 | 135 | Abbreviations can be used for any key names, as long as the |
|
137 | 136 | abbreviation is unambiguous. The following are the keys currently |
|
138 | 137 | defined: |
|
139 | 138 | |
|
140 | 139 | Valid Arg Meaning |
|
141 | 140 | "calls" call count |
|
142 | 141 | "cumulative" cumulative time |
|
143 | 142 | "file" file name |
|
144 | 143 | "module" file name |
|
145 | 144 | "pcalls" primitive call count |
|
146 | 145 | "line" line number |
|
147 | 146 | "name" function name |
|
148 | 147 | "nfl" name/file/line |
|
149 | 148 | "stdname" standard name |
|
150 | 149 | "time" internal time |
|
151 | 150 | |
|
152 | 151 | Note that all sorts on statistics are in descending order (placing |
|
153 | 152 | most time consuming items first), where as name, file, and line number |
|
154 | 153 | searches are in ascending order (i.e., alphabetical). The subtle |
|
155 | 154 | distinction between "nfl" and "stdname" is that the standard name is a |
|
156 | 155 | sort of the name as printed, which means that the embedded line |
|
157 | 156 | numbers get compared in an odd way. For example, lines 3, 20, and 40 |
|
158 | 157 | would (if the file names were the same) appear in the string order |
|
159 | 158 | "20" "3" and "40". In contrast, "nfl" does a numeric compare of the |
|
160 | 159 | line numbers. In fact, sort_stats("nfl") is the same as |
|
161 | 160 | sort_stats("name", "file", "line"). |
|
162 | 161 | |
|
163 | 162 | -T <filename>: save profile results as shown on screen to a text |
|
164 | 163 | file. The profile is still shown on screen. |
|
165 | 164 | |
|
166 | 165 | -D <filename>: save (via dump_stats) profile statistics to given |
|
167 | 166 | filename. This data is in a format understood by the pstats module, and |
|
168 | 167 | is generated by a call to the dump_stats() method of profile |
|
169 | 168 | objects. The profile is still shown on screen. |
|
170 | 169 | |
|
171 | 170 | -q: suppress output to the pager. Best used with -T and/or -D above. |
|
172 | 171 | |
|
173 | 172 | If you want to run complete programs under the profiler's control, use |
|
174 | 173 | '%run -p [prof_opts] filename.py [args to program]' where prof_opts |
|
175 | 174 | contains profiler specific options as described here. |
|
176 | 175 | |
|
177 | 176 | You can read the complete documentation for the profile module with:: |
|
178 | 177 | |
|
179 | 178 | In [1]: import profile; profile.help() |
|
180 | 179 | """ |
|
180 | opts, arg_str = self.parse_options(parameter_s, 'D:l:rs:T:q', | |
|
181 | list_all=True, posix=False) | |
|
182 | if cell is not None: | |
|
183 | arg_str += '\n' + cell | |
|
184 | return self._run_with_profiler(arg_str, opts, self.shell.user_ns) | |
|
181 | 185 | |
|
182 | opts_def = Struct(D=[''],l=[],s=['time'],T=['']) | |
|
186 | def _run_with_profiler(self, code, opts, namespace): | |
|
187 | """ | |
|
188 | Run `code` with profiler. Used by ``%prun`` and ``%run -p``. | |
|
183 | 189 |
|
|
184 | if user_mode: # regular user call | |
|
185 | opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:q', | |
|
186 | list_all=True, posix=False) | |
|
187 | namespace = self.shell.user_ns | |
|
188 | if cell is not None: | |
|
189 | arg_str += '\n' + cell | |
|
190 | else: # called to run a program by %run -p | |
|
191 | try: | |
|
192 | filename = get_py_filename(arg_lst[0]) | |
|
193 | except IOError as e: | |
|
194 | try: | |
|
195 | msg = str(e) | |
|
196 | except UnicodeError: | |
|
197 | msg = e.message | |
|
198 | error(msg) | |
|
199 | return | |
|
190 | Parameters | |
|
191 | ---------- | |
|
192 | code : str | |
|
193 | Code to be executed. | |
|
194 | opts : Struct | |
|
195 | Options parsed by `self.parse_options`. | |
|
196 | namespace : dict | |
|
197 | A dictionary for Python namespace (e.g., `self.shell.user_ns`). | |
|
200 | 198 |
|
|
201 | arg_str = 'execfile(filename,prog_ns)' | |
|
202 | namespace = { | |
|
203 | 'execfile': self.shell.safe_execfile, | |
|
204 | 'prog_ns': prog_ns, | |
|
205 | 'filename': filename | |
|
206 | } | |
|
199 | """ | |
|
207 | 200 | |
|
208 | opts.merge(opts_def) | |
|
201 | # Fill default values for unspecified options: | |
|
202 | opts.merge(Struct(D=[''], l=[], s=['time'], T=[''])) | |
|
209 | 203 | |
|
210 | 204 | prof = profile.Profile() |
|
211 | 205 | try: |
|
212 |
prof = prof.runctx( |
|
|
206 | prof = prof.runctx(code, namespace, namespace) | |
|
213 | 207 | sys_exit = '' |
|
214 | 208 | except SystemExit: |
|
215 | 209 | sys_exit = """*** SystemExit exception caught in code being profiled.""" |
|
216 | 210 | |
|
217 | 211 | stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s) |
|
218 | 212 | |
|
219 | 213 | lims = opts.l |
|
220 | 214 | if lims: |
|
221 | 215 | lims = [] # rebuild lims with ints/floats/strings |
|
222 | 216 | for lim in opts.l: |
|
223 | 217 | try: |
|
224 | 218 | lims.append(int(lim)) |
|
225 | 219 | except ValueError: |
|
226 | 220 | try: |
|
227 | 221 | lims.append(float(lim)) |
|
228 | 222 | except ValueError: |
|
229 | 223 | lims.append(lim) |
|
230 | 224 | |
|
231 | 225 | # Trap output. |
|
232 | 226 | stdout_trap = StringIO() |
|
233 | 227 | stats_stream = stats.stream |
|
234 | 228 | try: |
|
235 | 229 | stats.stream = stdout_trap |
|
236 | 230 | stats.print_stats(*lims) |
|
237 | 231 | finally: |
|
238 | 232 | stats.stream = stats_stream |
|
239 | 233 | |
|
240 | 234 | output = stdout_trap.getvalue() |
|
241 | 235 | output = output.rstrip() |
|
242 | 236 | |
|
243 | 237 | if 'q' not in opts: |
|
244 | 238 | page.page(output) |
|
245 | 239 | print sys_exit, |
|
246 | 240 | |
|
247 | 241 | dump_file = opts.D[0] |
|
248 | 242 | text_file = opts.T[0] |
|
249 | 243 | if dump_file: |
|
250 | 244 | dump_file = unquote_filename(dump_file) |
|
251 | 245 | prof.dump_stats(dump_file) |
|
252 | 246 | print '\n*** Profile stats marshalled to file',\ |
|
253 | 247 | repr(dump_file)+'.',sys_exit |
|
254 | 248 | if text_file: |
|
255 | 249 | text_file = unquote_filename(text_file) |
|
256 | 250 | pfile = open(text_file,'w') |
|
257 | 251 | pfile.write(output) |
|
258 | 252 | pfile.close() |
|
259 | 253 | print '\n*** Profile printout saved to text file',\ |
|
260 | 254 | repr(text_file)+'.',sys_exit |
|
261 | 255 | |
|
262 | 256 | if 'r' in opts: |
|
263 | 257 | return stats |
|
264 | 258 | else: |
|
265 | 259 | return None |
|
266 | 260 | |
|
267 | 261 | @line_magic |
|
268 | 262 | def pdb(self, parameter_s=''): |
|
269 | 263 | """Control the automatic calling of the pdb interactive debugger. |
|
270 | 264 | |
|
271 | 265 | Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without |
|
272 | 266 | argument it works as a toggle. |
|
273 | 267 | |
|
274 | 268 | When an exception is triggered, IPython can optionally call the |
|
275 | 269 | interactive pdb debugger after the traceback printout. %pdb toggles |
|
276 | 270 | this feature on and off. |
|
277 | 271 | |
|
278 | 272 | The initial state of this feature is set in your configuration |
|
279 | 273 | file (the option is ``InteractiveShell.pdb``). |
|
280 | 274 | |
|
281 | 275 | If you want to just activate the debugger AFTER an exception has fired, |
|
282 | 276 | without having to type '%pdb on' and rerunning your code, you can use |
|
283 | 277 | the %debug magic.""" |
|
284 | 278 | |
|
285 | 279 | par = parameter_s.strip().lower() |
|
286 | 280 | |
|
287 | 281 | if par: |
|
288 | 282 | try: |
|
289 | 283 | new_pdb = {'off':0,'0':0,'on':1,'1':1}[par] |
|
290 | 284 | except KeyError: |
|
291 | 285 | print ('Incorrect argument. Use on/1, off/0, ' |
|
292 | 286 | 'or nothing for a toggle.') |
|
293 | 287 | return |
|
294 | 288 | else: |
|
295 | 289 | # toggle |
|
296 | 290 | new_pdb = not self.shell.call_pdb |
|
297 | 291 | |
|
298 | 292 | # set on the shell |
|
299 | 293 | self.shell.call_pdb = new_pdb |
|
300 | 294 | print 'Automatic pdb calling has been turned',on_off(new_pdb) |
|
301 | 295 | |
|
302 | 296 | @line_magic |
|
303 | 297 | def debug(self, parameter_s=''): |
|
304 | 298 | """Activate the interactive debugger in post-mortem mode. |
|
305 | 299 | |
|
306 | 300 | If an exception has just occurred, this lets you inspect its stack |
|
307 | 301 | frames interactively. Note that this will always work only on the last |
|
308 | 302 | traceback that occurred, so you must call this quickly after an |
|
309 | 303 | exception that you wish to inspect has fired, because if another one |
|
310 | 304 | occurs, it clobbers the previous one. |
|
311 | 305 | |
|
312 | 306 | If you want IPython to automatically do this on every exception, see |
|
313 | 307 | the %pdb magic for more details. |
|
314 | 308 | """ |
|
315 | 309 | self.shell.debugger(force=True) |
|
316 | 310 | |
|
317 | 311 | @line_magic |
|
318 | 312 | def tb(self, s): |
|
319 | 313 | """Print the last traceback with the currently active exception mode. |
|
320 | 314 | |
|
321 | 315 | See %xmode for changing exception reporting modes.""" |
|
322 | 316 | self.shell.showtraceback() |
|
323 | 317 | |
|
324 | 318 | @skip_doctest |
|
325 | 319 | @line_magic |
|
326 | 320 | def run(self, parameter_s='', runner=None, |
|
327 | 321 | file_finder=get_py_filename): |
|
328 | 322 | """Run the named file inside IPython as a program. |
|
329 | 323 | |
|
330 |
Usage: |
|
|
331 | %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options] -G] file [args] | |
|
324 | Usage: | |
|
325 | %run [-n -i -e -G] | |
|
326 | [( -t [-N<N>] | -d [-b<N>] | -p [profile options] )] | |
|
327 | ( -m mod | file ) [args] | |
|
332 | 328 | |
|
333 | 329 | Parameters after the filename are passed as command-line arguments to |
|
334 | 330 | the program (put in sys.argv). Then, control returns to IPython's |
|
335 | 331 | prompt. |
|
336 | 332 | |
|
337 | 333 | This is similar to running at a system prompt:\\ |
|
338 | 334 | $ python file args\\ |
|
339 | 335 | but with the advantage of giving you IPython's tracebacks, and of |
|
340 | 336 | loading all variables into your interactive namespace for further use |
|
341 | 337 | (unless -p is used, see below). |
|
342 | 338 | |
|
343 | 339 | The file is executed in a namespace initially consisting only of |
|
344 | 340 | __name__=='__main__' and sys.argv constructed as indicated. It thus |
|
345 | 341 | sees its environment as if it were being run as a stand-alone program |
|
346 | 342 | (except for sharing global objects such as previously imported |
|
347 | 343 | modules). But after execution, the IPython interactive namespace gets |
|
348 | 344 | updated with all variables defined in the program (except for __name__ |
|
349 | 345 | and sys.argv). This allows for very convenient loading of code for |
|
350 | 346 | interactive work, while giving each program a 'clean sheet' to run in. |
|
351 | 347 | |
|
352 | 348 | Arguments are expanded using shell-like glob match. Patterns |
|
353 | 349 | '*', '?', '[seq]' and '[!seq]' can be used. Additionally, |
|
354 | 350 | tilde '~' will be expanded into user's home directory. Unlike |
|
355 | 351 | real shells, quotation does not suppress expansions. Use |
|
356 | 352 | *two* back slashes (e.g., '\\\\*') to suppress expansions. |
|
357 | 353 | To completely disable these expansions, you can use -G flag. |
|
358 | 354 | |
|
359 | 355 | Options: |
|
360 | 356 | |
|
361 | 357 | -n: __name__ is NOT set to '__main__', but to the running file's name |
|
362 | 358 | without extension (as python does under import). This allows running |
|
363 | 359 | scripts and reloading the definitions in them without calling code |
|
364 | 360 | protected by an ' if __name__ == "__main__" ' clause. |
|
365 | 361 | |
|
366 | 362 | -i: run the file in IPython's namespace instead of an empty one. This |
|
367 | 363 | is useful if you are experimenting with code written in a text editor |
|
368 | 364 | which depends on variables defined interactively. |
|
369 | 365 | |
|
370 | 366 | -e: ignore sys.exit() calls or SystemExit exceptions in the script |
|
371 | 367 | being run. This is particularly useful if IPython is being used to |
|
372 | 368 | run unittests, which always exit with a sys.exit() call. In such |
|
373 | 369 | cases you are interested in the output of the test results, not in |
|
374 | 370 | seeing a traceback of the unittest module. |
|
375 | 371 | |
|
376 | 372 | -t: print timing information at the end of the run. IPython will give |
|
377 | 373 | you an estimated CPU time consumption for your script, which under |
|
378 | 374 | Unix uses the resource module to avoid the wraparound problems of |
|
379 | 375 | time.clock(). Under Unix, an estimate of time spent on system tasks |
|
380 | 376 | is also given (for Windows platforms this is reported as 0.0). |
|
381 | 377 | |
|
382 | 378 | If -t is given, an additional -N<N> option can be given, where <N> |
|
383 | 379 | must be an integer indicating how many times you want the script to |
|
384 | 380 | run. The final timing report will include total and per run results. |
|
385 | 381 | |
|
386 | 382 | For example (testing the script uniq_stable.py):: |
|
387 | 383 | |
|
388 | 384 | In [1]: run -t uniq_stable |
|
389 | 385 | |
|
390 | 386 | IPython CPU timings (estimated):\\ |
|
391 | 387 | User : 0.19597 s.\\ |
|
392 | 388 | System: 0.0 s.\\ |
|
393 | 389 | |
|
394 | 390 | In [2]: run -t -N5 uniq_stable |
|
395 | 391 | |
|
396 | 392 | IPython CPU timings (estimated):\\ |
|
397 | 393 | Total runs performed: 5\\ |
|
398 | 394 | Times : Total Per run\\ |
|
399 | 395 | User : 0.910862 s, 0.1821724 s.\\ |
|
400 | 396 | System: 0.0 s, 0.0 s. |
|
401 | 397 | |
|
402 | 398 | -d: run your program under the control of pdb, the Python debugger. |
|
403 | 399 | This allows you to execute your program step by step, watch variables, |
|
404 | 400 | etc. Internally, what IPython does is similar to calling: |
|
405 | 401 | |
|
406 | 402 | pdb.run('execfile("YOURFILENAME")') |
|
407 | 403 | |
|
408 | 404 | with a breakpoint set on line 1 of your file. You can change the line |
|
409 | 405 | number for this automatic breakpoint to be <N> by using the -bN option |
|
410 | 406 | (where N must be an integer). For example:: |
|
411 | 407 | |
|
412 | 408 | %run -d -b40 myscript |
|
413 | 409 | |
|
414 | 410 | will set the first breakpoint at line 40 in myscript.py. Note that |
|
415 | 411 | the first breakpoint must be set on a line which actually does |
|
416 | 412 | something (not a comment or docstring) for it to stop execution. |
|
417 | 413 | |
|
418 | 414 | Or you can specify a breakpoint in a different file:: |
|
419 | 415 | |
|
420 | 416 | %run -d -b myotherfile.py:20 myscript |
|
421 | 417 | |
|
422 | 418 | When the pdb debugger starts, you will see a (Pdb) prompt. You must |
|
423 | 419 | first enter 'c' (without quotes) to start execution up to the first |
|
424 | 420 | breakpoint. |
|
425 | 421 | |
|
426 | 422 | Entering 'help' gives information about the use of the debugger. You |
|
427 | 423 | can easily see pdb's full documentation with "import pdb;pdb.help()" |
|
428 | 424 | at a prompt. |
|
429 | 425 | |
|
430 | 426 | -p: run program under the control of the Python profiler module (which |
|
431 | 427 | prints a detailed report of execution times, function calls, etc). |
|
432 | 428 | |
|
433 | 429 | You can pass other options after -p which affect the behavior of the |
|
434 | 430 | profiler itself. See the docs for %prun for details. |
|
435 | 431 | |
|
436 | 432 | In this mode, the program's variables do NOT propagate back to the |
|
437 | 433 | IPython interactive namespace (because they remain in the namespace |
|
438 | 434 | where the profiler executes them). |
|
439 | 435 | |
|
440 | 436 | Internally this triggers a call to %prun, see its documentation for |
|
441 | 437 | details on the options available specifically for profiling. |
|
442 | 438 | |
|
443 | 439 | There is one special usage for which the text above doesn't apply: |
|
444 | 440 | if the filename ends with .ipy, the file is run as ipython script, |
|
445 | 441 | just as if the commands were written on IPython prompt. |
|
446 | 442 | |
|
447 | 443 | -m: specify module name to load instead of script path. Similar to |
|
448 | 444 | the -m option for the python interpreter. Use this option last if you |
|
449 | 445 | want to combine with other %run options. Unlike the python interpreter |
|
450 | 446 | only source modules are allowed no .pyc or .pyo files. |
|
451 | 447 | For example:: |
|
452 | 448 | |
|
453 | 449 | %run -m example |
|
454 | 450 | |
|
455 | 451 | will run the example module. |
|
456 | 452 | |
|
457 | 453 | -G: disable shell-like glob expansion of arguments. |
|
458 | 454 | |
|
459 | 455 | """ |
|
460 | 456 | |
|
461 | 457 | # get arguments and set sys.argv for program to be run. |
|
462 | 458 | opts, arg_lst = self.parse_options(parameter_s, |
|
463 | 459 | 'nidtN:b:pD:l:rs:T:em:G', |
|
464 | 460 | mode='list', list_all=1) |
|
465 | 461 | if "m" in opts: |
|
466 | 462 | modulename = opts["m"][0] |
|
467 | 463 | modpath = find_mod(modulename) |
|
468 | 464 | if modpath is None: |
|
469 | 465 | warn('%r is not a valid modulename on sys.path'%modulename) |
|
470 | 466 | return |
|
471 | 467 | arg_lst = [modpath] + arg_lst |
|
472 | 468 | try: |
|
473 | 469 | filename = file_finder(arg_lst[0]) |
|
474 | 470 | except IndexError: |
|
475 | 471 | warn('you must provide at least a filename.') |
|
476 | 472 | print '\n%run:\n', oinspect.getdoc(self.run) |
|
477 | 473 | return |
|
478 | 474 | except IOError as e: |
|
479 | 475 | try: |
|
480 | 476 | msg = str(e) |
|
481 | 477 | except UnicodeError: |
|
482 | 478 | msg = e.message |
|
483 | 479 | error(msg) |
|
484 | 480 | return |
|
485 | 481 | |
|
486 | 482 | if filename.lower().endswith('.ipy'): |
|
487 | 483 | with preserve_keys(self.shell.user_ns, '__file__'): |
|
488 | 484 | self.shell.user_ns['__file__'] = filename |
|
489 | 485 | self.shell.safe_execfile_ipy(filename) |
|
490 | 486 | return |
|
491 | 487 | |
|
492 | 488 | # Control the response to exit() calls made by the script being run |
|
493 | 489 | exit_ignore = 'e' in opts |
|
494 | 490 | |
|
495 | 491 | # Make sure that the running script gets a proper sys.argv as if it |
|
496 | 492 | # were run from a system shell. |
|
497 | 493 | save_argv = sys.argv # save it for later restoring |
|
498 | 494 | |
|
499 | 495 | if 'G' in opts: |
|
500 | 496 | args = arg_lst[1:] |
|
501 | 497 | else: |
|
502 | 498 | # tilde and glob expansion |
|
503 | 499 | args = shellglob(map(os.path.expanduser, arg_lst[1:])) |
|
504 | 500 | |
|
505 | 501 | sys.argv = [filename] + args # put in the proper filename |
|
506 | 502 | # protect sys.argv from potential unicode strings on Python 2: |
|
507 | 503 | if not py3compat.PY3: |
|
508 | 504 | sys.argv = [ py3compat.cast_bytes(a) for a in sys.argv ] |
|
509 | 505 | |
|
510 | 506 | if 'i' in opts: |
|
511 | 507 | # Run in user's interactive namespace |
|
512 | 508 | prog_ns = self.shell.user_ns |
|
513 | 509 | __name__save = self.shell.user_ns['__name__'] |
|
514 | 510 | prog_ns['__name__'] = '__main__' |
|
515 | 511 | main_mod = self.shell.new_main_mod(prog_ns) |
|
516 | 512 | else: |
|
517 | 513 | # Run in a fresh, empty namespace |
|
518 | 514 | if 'n' in opts: |
|
519 | 515 | name = os.path.splitext(os.path.basename(filename))[0] |
|
520 | 516 | else: |
|
521 | 517 | name = '__main__' |
|
522 | 518 | |
|
523 | 519 | main_mod = self.shell.new_main_mod() |
|
524 | 520 | prog_ns = main_mod.__dict__ |
|
525 | 521 | prog_ns['__name__'] = name |
|
526 | 522 | |
|
527 | 523 | # Since '%run foo' emulates 'python foo.py' at the cmd line, we must |
|
528 | 524 | # set the __file__ global in the script's namespace |
|
529 | 525 | prog_ns['__file__'] = filename |
|
530 | 526 | |
|
531 | 527 | # pickle fix. See interactiveshell for an explanation. But we need to |
|
532 | 528 | # make sure that, if we overwrite __main__, we replace it at the end |
|
533 | 529 | main_mod_name = prog_ns['__name__'] |
|
534 | 530 | |
|
535 | 531 | if main_mod_name == '__main__': |
|
536 | 532 | restore_main = sys.modules['__main__'] |
|
537 | 533 | else: |
|
538 | 534 | restore_main = False |
|
539 | 535 | |
|
540 | 536 | # This needs to be undone at the end to prevent holding references to |
|
541 | 537 | # every single object ever created. |
|
542 | 538 | sys.modules[main_mod_name] = main_mod |
|
543 | 539 | |
|
540 | if 'p' in opts or 'd' in opts: | |
|
541 | if 'm' in opts: | |
|
542 | code = 'run_module(modulename, prog_ns)' | |
|
543 | code_ns = { | |
|
544 | 'run_module': self.shell.safe_run_module, | |
|
545 | 'prog_ns': prog_ns, | |
|
546 | 'modulename': modulename, | |
|
547 | } | |
|
548 | else: | |
|
549 | code = 'execfile(filename, prog_ns)' | |
|
550 | code_ns = { | |
|
551 | 'execfile': self.shell.safe_execfile, | |
|
552 | 'prog_ns': prog_ns, | |
|
553 | 'filename': get_py_filename(filename), | |
|
554 | } | |
|
555 | ||
|
544 | 556 | try: |
|
545 | 557 | stats = None |
|
546 | 558 | with self.shell.readline_no_record: |
|
547 | 559 | if 'p' in opts: |
|
548 |
stats = self. |
|
|
560 | stats = self._run_with_profiler(code, opts, code_ns) | |
|
549 | 561 | else: |
|
550 | 562 | if 'd' in opts: |
|
551 |
|
|
|
552 | # reset Breakpoint state, which is moronically kept | |
|
553 | # in a class | |
|
554 | bdb.Breakpoint.next = 1 | |
|
555 | bdb.Breakpoint.bplist = {} | |
|
556 | bdb.Breakpoint.bpbynumber = [None] | |
|
557 | # Set an initial breakpoint to stop execution | |
|
558 | maxtries = 10 | |
|
559 | bp_file, bp_line = parse_breakpoint(opts.get('b', ['1'])[0], filename) | |
|
560 | checkline = deb.checkline(bp_file, bp_line) | |
|
561 | if not checkline: | |
|
562 | for bp in range(bp_line + 1, bp_line + maxtries + 1): | |
|
563 | if deb.checkline(bp_file, bp): | |
|
564 | break | |
|
565 | else: | |
|
566 | msg = ("\nI failed to find a valid line to set " | |
|
567 | "a breakpoint\n" | |
|
568 | "after trying up to line: %s.\n" | |
|
569 | "Please set a valid breakpoint manually " | |
|
570 | "with the -b option." % bp) | |
|
571 | error(msg) | |
|
572 | return | |
|
573 | # if we find a good linenumber, set the breakpoint | |
|
574 | deb.do_break('%s:%s' % (bp_file, bp_line)) | |
|
575 | ||
|
576 | # Mimic Pdb._runscript(...) | |
|
577 | deb._wait_for_mainpyfile = True | |
|
578 | deb.mainpyfile = deb.canonic(filename) | |
|
579 | ||
|
580 | # Start file run | |
|
581 | print "NOTE: Enter 'c' at the", | |
|
582 | print "%s prompt to start your script." % deb.prompt | |
|
583 | ns = {'execfile': py3compat.execfile, 'prog_ns': prog_ns} | |
|
584 | try: | |
|
585 | #save filename so it can be used by methods on the deb object | |
|
586 | deb._exec_filename = filename | |
|
587 | deb.run('execfile("%s", prog_ns)' % filename, ns) | |
|
588 | ||
|
589 | except: | |
|
590 | etype, value, tb = sys.exc_info() | |
|
591 | # Skip three frames in the traceback: the %run one, | |
|
592 | # one inside bdb.py, and the command-line typed by the | |
|
593 | # user (run by exec in pdb itself). | |
|
594 | self.shell.InteractiveTB(etype, value, tb, tb_offset=3) | |
|
563 | self._run_with_debugger( | |
|
564 | code, code_ns, opts.get('b', ['1'])[0], filename) | |
|
595 | 565 | else: |
|
596 |
if |
|
|
597 |
|
|
|
598 | if runner is None: | |
|
599 |
|
|
|
566 | if 'm' in opts: | |
|
567 | def run(): | |
|
568 | self.shell.safe_run_module(modulename, prog_ns) | |
|
569 | else: | |
|
570 | if runner is None: | |
|
571 | runner = self.default_runner | |
|
572 | if runner is None: | |
|
573 | runner = self.shell.safe_execfile | |
|
574 | ||
|
575 | def run(): | |
|
576 | runner(filename, prog_ns, prog_ns, | |
|
577 | exit_ignore=exit_ignore) | |
|
578 | ||
|
600 | 579 | if 't' in opts: |
|
601 | 580 | # timed execution |
|
602 | 581 | try: |
|
603 | 582 | nruns = int(opts['N'][0]) |
|
604 | 583 | if nruns < 1: |
|
605 | 584 | error('Number of runs must be >=1') |
|
606 | 585 | return |
|
607 | 586 | except (KeyError): |
|
608 | 587 | nruns = 1 |
|
609 |
|
|
|
610 | if nruns == 1: | |
|
611 | t0 = clock2() | |
|
612 | runner(filename, prog_ns, prog_ns, | |
|
613 | exit_ignore=exit_ignore) | |
|
614 | t1 = clock2() | |
|
615 | t_usr = t1[0] - t0[0] | |
|
616 | t_sys = t1[1] - t0[1] | |
|
617 | print "\nIPython CPU timings (estimated):" | |
|
618 | print " User : %10.2f s." % t_usr | |
|
619 | print " System : %10.2f s." % t_sys | |
|
620 | else: | |
|
621 | runs = range(nruns) | |
|
622 | t0 = clock2() | |
|
623 | for nr in runs: | |
|
624 | runner(filename, prog_ns, prog_ns, | |
|
625 | exit_ignore=exit_ignore) | |
|
626 | t1 = clock2() | |
|
627 | t_usr = t1[0] - t0[0] | |
|
628 | t_sys = t1[1] - t0[1] | |
|
629 | print "\nIPython CPU timings (estimated):" | |
|
630 | print "Total runs performed:", nruns | |
|
631 | print " Times : %10s %10s" % ('Total', 'Per run') | |
|
632 | print " User : %10.2f s, %10.2f s." % (t_usr, t_usr / nruns) | |
|
633 | print " System : %10.2f s, %10.2f s." % (t_sys, t_sys / nruns) | |
|
634 | twall1 = time.time() | |
|
635 | print "Wall time: %10.2f s." % (twall1 - twall0) | |
|
636 | ||
|
588 | self._run_with_timing(run, nruns) | |
|
637 | 589 | else: |
|
638 | 590 | # regular execution |
|
639 | runner(filename, prog_ns, prog_ns, exit_ignore=exit_ignore) | |
|
591 | run() | |
|
640 | 592 | |
|
641 | 593 | if 'i' in opts: |
|
642 | 594 | self.shell.user_ns['__name__'] = __name__save |
|
643 | 595 | else: |
|
644 | 596 | # The shell MUST hold a reference to prog_ns so after %run |
|
645 | 597 | # exits, the python deletion mechanism doesn't zero it out |
|
646 | 598 | # (leaving dangling references). |
|
647 | 599 | self.shell.cache_main_mod(prog_ns, filename) |
|
648 | 600 | # update IPython interactive namespace |
|
649 | 601 | |
|
650 | 602 | # Some forms of read errors on the file may mean the |
|
651 | 603 | # __name__ key was never set; using pop we don't have to |
|
652 | 604 | # worry about a possible KeyError. |
|
653 | 605 | prog_ns.pop('__name__', None) |
|
654 | 606 | |
|
655 | 607 | with preserve_keys(self.shell.user_ns, '__file__'): |
|
656 | 608 | self.shell.user_ns.update(prog_ns) |
|
657 | 609 | finally: |
|
658 | 610 | # It's a bit of a mystery why, but __builtins__ can change from |
|
659 | 611 | # being a module to becoming a dict missing some key data after |
|
660 | 612 | # %run. As best I can see, this is NOT something IPython is doing |
|
661 | 613 | # at all, and similar problems have been reported before: |
|
662 | 614 | # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html |
|
663 | 615 | # Since this seems to be done by the interpreter itself, the best |
|
664 | 616 | # we can do is to at least restore __builtins__ for the user on |
|
665 | 617 | # exit. |
|
666 | 618 | self.shell.user_ns['__builtins__'] = builtin_mod |
|
667 | 619 | |
|
668 | 620 | # Ensure key global structures are restored |
|
669 | 621 | sys.argv = save_argv |
|
670 | 622 | if restore_main: |
|
671 | 623 | sys.modules['__main__'] = restore_main |
|
672 | 624 | else: |
|
673 | 625 | # Remove from sys.modules the reference to main_mod we'd |
|
674 | 626 | # added. Otherwise it will trap references to objects |
|
675 | 627 | # contained therein. |
|
676 | 628 | del sys.modules[main_mod_name] |
|
677 | 629 | |
|
678 | 630 | return stats |
|
679 | ||
|
631 | ||
|
632 | def _run_with_debugger(self, code, code_ns, break_point, filename): | |
|
633 | """ | |
|
634 | Run `code` in debugger with a break point. | |
|
635 | ||
|
636 | Parameters | |
|
637 | ---------- | |
|
638 | code : str | |
|
639 | Code to execute. | |
|
640 | code_ns : dict | |
|
641 | A namespace in which `code` is executed. | |
|
642 | break_point : str | |
|
643 | Line number in the file specified by `filename` argument | |
|
644 | or a string in the format ``file:line``. In the latter | |
|
645 | case, `filename` is ignored. | |
|
646 | See also :func:`.parse_breakpoint`. | |
|
647 | filename : str | |
|
648 | Path to the file in which break point is specified. | |
|
649 | ||
|
650 | Raises | |
|
651 | ------ | |
|
652 | UsageError | |
|
653 | If no meaningful break point is given by `break_point` and | |
|
654 | `filename`. | |
|
655 | ||
|
656 | """ | |
|
657 | deb = debugger.Pdb(self.shell.colors) | |
|
658 | # reset Breakpoint state, which is moronically kept | |
|
659 | # in a class | |
|
660 | bdb.Breakpoint.next = 1 | |
|
661 | bdb.Breakpoint.bplist = {} | |
|
662 | bdb.Breakpoint.bpbynumber = [None] | |
|
663 | # Set an initial breakpoint to stop execution | |
|
664 | maxtries = 10 | |
|
665 | bp_file, bp_line = parse_breakpoint(break_point, filename) | |
|
666 | checkline = deb.checkline(bp_file, bp_line) | |
|
667 | if not checkline: | |
|
668 | for bp in range(bp_line + 1, bp_line + maxtries + 1): | |
|
669 | if deb.checkline(bp_file, bp): | |
|
670 | break | |
|
671 | else: | |
|
672 | msg = ("\nI failed to find a valid line to set " | |
|
673 | "a breakpoint\n" | |
|
674 | "after trying up to line: %s.\n" | |
|
675 | "Please set a valid breakpoint manually " | |
|
676 | "with the -b option." % bp) | |
|
677 | raise UsageError(msg) | |
|
678 | # if we find a good linenumber, set the breakpoint | |
|
679 | deb.do_break('%s:%s' % (bp_file, bp_line)) | |
|
680 | ||
|
681 | # Mimic Pdb._runscript(...) | |
|
682 | deb._wait_for_mainpyfile = True | |
|
683 | deb.mainpyfile = deb.canonic(filename) | |
|
684 | ||
|
685 | # Start file run | |
|
686 | print "NOTE: Enter 'c' at the", | |
|
687 | print "%s prompt to start your script." % deb.prompt | |
|
688 | try: | |
|
689 | #save filename so it can be used by methods on the deb object | |
|
690 | deb._exec_filename = filename | |
|
691 | deb.run(code, code_ns) | |
|
692 | ||
|
693 | except: | |
|
694 | etype, value, tb = sys.exc_info() | |
|
695 | # Skip three frames in the traceback: the %run one, | |
|
696 | # one inside bdb.py, and the command-line typed by the | |
|
697 | # user (run by exec in pdb itself). | |
|
698 | self.shell.InteractiveTB(etype, value, tb, tb_offset=3) | |
|
699 | ||
|
700 | @staticmethod | |
|
701 | def _run_with_timing(run, nruns): | |
|
702 | """ | |
|
703 | Run function `run` and print timing information. | |
|
704 | ||
|
705 | Parameters | |
|
706 | ---------- | |
|
707 | run : callable | |
|
708 | Any callable object which takes no argument. | |
|
709 | nruns : int | |
|
710 | Number of times to execute `run`. | |
|
711 | ||
|
712 | """ | |
|
713 | twall0 = time.time() | |
|
714 | if nruns == 1: | |
|
715 | t0 = clock2() | |
|
716 | run() | |
|
717 | t1 = clock2() | |
|
718 | t_usr = t1[0] - t0[0] | |
|
719 | t_sys = t1[1] - t0[1] | |
|
720 | print "\nIPython CPU timings (estimated):" | |
|
721 | print " User : %10.2f s." % t_usr | |
|
722 | print " System : %10.2f s." % t_sys | |
|
723 | else: | |
|
724 | runs = range(nruns) | |
|
725 | t0 = clock2() | |
|
726 | for nr in runs: | |
|
727 | run() | |
|
728 | t1 = clock2() | |
|
729 | t_usr = t1[0] - t0[0] | |
|
730 | t_sys = t1[1] - t0[1] | |
|
731 | print "\nIPython CPU timings (estimated):" | |
|
732 | print "Total runs performed:", nruns | |
|
733 | print " Times : %10s %10s" % ('Total', 'Per run') | |
|
734 | print " User : %10.2f s, %10.2f s." % (t_usr, t_usr / nruns) | |
|
735 | print " System : %10.2f s, %10.2f s." % (t_sys, t_sys / nruns) | |
|
736 | twall1 = time.time() | |
|
737 | print "Wall time: %10.2f s." % (twall1 - twall0) | |
|
738 | ||
|
680 | 739 | @skip_doctest |
|
681 | 740 | @line_cell_magic |
|
682 | 741 | def timeit(self, line='', cell=None): |
|
683 | 742 | """Time execution of a Python statement or expression |
|
684 | 743 | |
|
685 | 744 | Usage, in line mode: |
|
686 | 745 | %timeit [-n<N> -r<R> [-t|-c]] statement |
|
687 | 746 | or in cell mode: |
|
688 | 747 | %%timeit [-n<N> -r<R> [-t|-c]] setup_code |
|
689 | 748 | code |
|
690 | 749 | code... |
|
691 | 750 | |
|
692 | 751 | Time execution of a Python statement or expression using the timeit |
|
693 | 752 | module. This function can be used both as a line and cell magic: |
|
694 | 753 | |
|
695 | 754 | - In line mode you can time a single-line statement (though multiple |
|
696 | 755 | ones can be chained with using semicolons). |
|
697 | 756 | |
|
698 | 757 | - In cell mode, the statement in the first line is used as setup code |
|
699 | 758 | (executed but not timed) and the body of the cell is timed. The cell |
|
700 | 759 | body has access to any variables created in the setup code. |
|
701 | 760 | |
|
702 | 761 | Options: |
|
703 | 762 | -n<N>: execute the given statement <N> times in a loop. If this value |
|
704 | 763 | is not given, a fitting value is chosen. |
|
705 | 764 | |
|
706 | 765 | -r<R>: repeat the loop iteration <R> times and take the best result. |
|
707 | 766 | Default: 3 |
|
708 | 767 | |
|
709 | 768 | -t: use time.time to measure the time, which is the default on Unix. |
|
710 | 769 | This function measures wall time. |
|
711 | 770 | |
|
712 | 771 | -c: use time.clock to measure the time, which is the default on |
|
713 | 772 | Windows and measures wall time. On Unix, resource.getrusage is used |
|
714 | 773 | instead and returns the CPU user time. |
|
715 | 774 | |
|
716 | 775 | -p<P>: use a precision of <P> digits to display the timing result. |
|
717 | 776 | Default: 3 |
|
718 | 777 | |
|
719 | 778 | |
|
720 | 779 | Examples |
|
721 | 780 | -------- |
|
722 | 781 | :: |
|
723 | 782 | |
|
724 | 783 | In [1]: %timeit pass |
|
725 | 784 | 10000000 loops, best of 3: 53.3 ns per loop |
|
726 | 785 | |
|
727 | 786 | In [2]: u = None |
|
728 | 787 | |
|
729 | 788 | In [3]: %timeit u is None |
|
730 | 789 | 10000000 loops, best of 3: 184 ns per loop |
|
731 | 790 | |
|
732 | 791 | In [4]: %timeit -r 4 u == None |
|
733 | 792 | 1000000 loops, best of 4: 242 ns per loop |
|
734 | 793 | |
|
735 | 794 | In [5]: import time |
|
736 | 795 | |
|
737 | 796 | In [6]: %timeit -n1 time.sleep(2) |
|
738 | 797 | 1 loops, best of 3: 2 s per loop |
|
739 | 798 | |
|
740 | 799 | |
|
741 | 800 | The times reported by %timeit will be slightly higher than those |
|
742 | 801 | reported by the timeit.py script when variables are accessed. This is |
|
743 | 802 | due to the fact that %timeit executes the statement in the namespace |
|
744 | 803 | of the shell, compared with timeit.py, which uses a single setup |
|
745 | 804 | statement to import function or create variables. Generally, the bias |
|
746 | 805 | does not matter as long as results from timeit.py are not mixed with |
|
747 | 806 | those from %timeit.""" |
|
748 | 807 | |
|
749 | 808 | import timeit |
|
750 | 809 | |
|
751 | 810 | opts, stmt = self.parse_options(line,'n:r:tcp:', |
|
752 | 811 | posix=False, strict=False) |
|
753 | 812 | if stmt == "" and cell is None: |
|
754 | 813 | return |
|
755 | 814 | |
|
756 | 815 | timefunc = timeit.default_timer |
|
757 | 816 | number = int(getattr(opts, "n", 0)) |
|
758 | 817 | repeat = int(getattr(opts, "r", timeit.default_repeat)) |
|
759 | 818 | precision = int(getattr(opts, "p", 3)) |
|
760 | 819 | if hasattr(opts, "t"): |
|
761 | 820 | timefunc = time.time |
|
762 | 821 | if hasattr(opts, "c"): |
|
763 | 822 | timefunc = clock |
|
764 | 823 | |
|
765 | 824 | timer = timeit.Timer(timer=timefunc) |
|
766 | 825 | # this code has tight coupling to the inner workings of timeit.Timer, |
|
767 | 826 | # but is there a better way to achieve that the code stmt has access |
|
768 | 827 | # to the shell namespace? |
|
769 | 828 | transform = self.shell.input_splitter.transform_cell |
|
770 | 829 | |
|
771 | 830 | if cell is None: |
|
772 | 831 | # called as line magic |
|
773 | 832 | ast_setup = ast.parse("pass") |
|
774 | 833 | ast_stmt = ast.parse(transform(stmt)) |
|
775 | 834 | else: |
|
776 | 835 | ast_setup = ast.parse(transform(stmt)) |
|
777 | 836 | ast_stmt = ast.parse(transform(cell)) |
|
778 | 837 | |
|
779 | 838 | ast_setup = self.shell.transform_ast(ast_setup) |
|
780 | 839 | ast_stmt = self.shell.transform_ast(ast_stmt) |
|
781 | 840 | |
|
782 | 841 | # This codestring is taken from timeit.template - we fill it in as an |
|
783 | 842 | # AST, so that we can apply our AST transformations to the user code |
|
784 | 843 | # without affecting the timing code. |
|
785 | 844 | timeit_ast_template = ast.parse('def inner(_it, _timer):\n' |
|
786 | 845 | ' setup\n' |
|
787 | 846 | ' _t0 = _timer()\n' |
|
788 | 847 | ' for _i in _it:\n' |
|
789 | 848 | ' stmt\n' |
|
790 | 849 | ' _t1 = _timer()\n' |
|
791 | 850 | ' return _t1 - _t0\n') |
|
792 | 851 | |
|
793 | 852 | class TimeitTemplateFiller(ast.NodeTransformer): |
|
794 | 853 | "This is quite tightly tied to the template definition above." |
|
795 | 854 | def visit_FunctionDef(self, node): |
|
796 | 855 | "Fill in the setup statement" |
|
797 | 856 | self.generic_visit(node) |
|
798 | 857 | if node.name == "inner": |
|
799 | 858 | node.body[:1] = ast_setup.body |
|
800 | 859 | |
|
801 | 860 | return node |
|
802 | 861 | |
|
803 | 862 | def visit_For(self, node): |
|
804 | 863 | "Fill in the statement to be timed" |
|
805 | 864 | if getattr(getattr(node.body[0], 'value', None), 'id', None) == 'stmt': |
|
806 | 865 | node.body = ast_stmt.body |
|
807 | 866 | return node |
|
808 | 867 | |
|
809 | 868 | timeit_ast = TimeitTemplateFiller().visit(timeit_ast_template) |
|
810 | 869 | timeit_ast = ast.fix_missing_locations(timeit_ast) |
|
811 | 870 | |
|
812 | 871 | # Track compilation time so it can be reported if too long |
|
813 | 872 | # Minimum time above which compilation time will be reported |
|
814 | 873 | tc_min = 0.1 |
|
815 | 874 | |
|
816 | 875 | t0 = clock() |
|
817 | 876 | code = compile(timeit_ast, "<magic-timeit>", "exec") |
|
818 | 877 | tc = clock()-t0 |
|
819 | 878 | |
|
820 | 879 | ns = {} |
|
821 | 880 | exec code in self.shell.user_ns, ns |
|
822 | 881 | timer.inner = ns["inner"] |
|
823 | 882 | |
|
824 | 883 | if number == 0: |
|
825 | 884 | # determine number so that 0.2 <= total time < 2.0 |
|
826 | 885 | number = 1 |
|
827 | 886 | for i in range(1, 10): |
|
828 | 887 | if timer.timeit(number) >= 0.2: |
|
829 | 888 | break |
|
830 | 889 | number *= 10 |
|
831 | 890 | |
|
832 | 891 | best = min(timer.repeat(repeat, number)) / number |
|
833 | 892 | |
|
834 | 893 | print u"%d loops, best of %d: %s per loop" % (number, repeat, |
|
835 | 894 | _format_time(best, precision)) |
|
836 | 895 | if tc > tc_min: |
|
837 | 896 | print "Compiler time: %.2f s" % tc |
|
838 | 897 | |
|
839 | 898 | @skip_doctest |
|
840 | 899 | @needs_local_scope |
|
841 | 900 | @line_cell_magic |
|
842 | 901 | def time(self,line='', cell=None, local_ns=None): |
|
843 | 902 | """Time execution of a Python statement or expression. |
|
844 | 903 | |
|
845 | 904 | The CPU and wall clock times are printed, and the value of the |
|
846 | 905 | expression (if any) is returned. Note that under Win32, system time |
|
847 | 906 | is always reported as 0, since it can not be measured. |
|
848 | 907 | |
|
849 | 908 | This function can be used both as a line and cell magic: |
|
850 | 909 | |
|
851 | 910 | - In line mode you can time a single-line statement (though multiple |
|
852 | 911 | ones can be chained with using semicolons). |
|
853 | 912 | |
|
854 | 913 | - In cell mode, you can time the cell body (a directly |
|
855 | 914 | following statement raises an error). |
|
856 | 915 | |
|
857 | 916 | This function provides very basic timing functionality. Use the timeit |
|
858 | 917 | magic for more controll over the measurement. |
|
859 | 918 | |
|
860 | 919 | Examples |
|
861 | 920 | -------- |
|
862 | 921 | :: |
|
863 | 922 | |
|
864 | 923 | In [1]: %time 2**128 |
|
865 | 924 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
866 | 925 | Wall time: 0.00 |
|
867 | 926 | Out[1]: 340282366920938463463374607431768211456L |
|
868 | 927 | |
|
869 | 928 | In [2]: n = 1000000 |
|
870 | 929 | |
|
871 | 930 | In [3]: %time sum(range(n)) |
|
872 | 931 | CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s |
|
873 | 932 | Wall time: 1.37 |
|
874 | 933 | Out[3]: 499999500000L |
|
875 | 934 | |
|
876 | 935 | In [4]: %time print 'hello world' |
|
877 | 936 | hello world |
|
878 | 937 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
879 | 938 | Wall time: 0.00 |
|
880 | 939 | |
|
881 | 940 | Note that the time needed by Python to compile the given expression |
|
882 | 941 | will be reported if it is more than 0.1s. In this example, the |
|
883 | 942 | actual exponentiation is done by Python at compilation time, so while |
|
884 | 943 | the expression can take a noticeable amount of time to compute, that |
|
885 | 944 | time is purely due to the compilation: |
|
886 | 945 | |
|
887 | 946 | In [5]: %time 3**9999; |
|
888 | 947 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
889 | 948 | Wall time: 0.00 s |
|
890 | 949 | |
|
891 | 950 | In [6]: %time 3**999999; |
|
892 | 951 | CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s |
|
893 | 952 | Wall time: 0.00 s |
|
894 | 953 | Compiler : 0.78 s |
|
895 | 954 | """ |
|
896 | 955 | |
|
897 | 956 | # fail immediately if the given expression can't be compiled |
|
898 | 957 | |
|
899 | 958 | if line and cell: |
|
900 | 959 | raise UsageError("Can't use statement directly after '%%time'!") |
|
901 | 960 | |
|
902 | 961 | if cell: |
|
903 | 962 | expr = self.shell.prefilter(cell,False) |
|
904 | 963 | else: |
|
905 | 964 | expr = self.shell.prefilter(line,False) |
|
906 | 965 | |
|
907 | 966 | # Minimum time above which parse time will be reported |
|
908 | 967 | tp_min = 0.1 |
|
909 | 968 | |
|
910 | 969 | t0 = clock() |
|
911 | 970 | expr_ast = ast.parse(expr) |
|
912 | 971 | tp = clock()-t0 |
|
913 | 972 | |
|
914 | 973 | # Apply AST transformations |
|
915 | 974 | expr_ast = self.shell.transform_ast(expr_ast) |
|
916 | 975 | |
|
917 | 976 | # Minimum time above which compilation time will be reported |
|
918 | 977 | tc_min = 0.1 |
|
919 | 978 | |
|
920 | 979 | if len(expr_ast.body)==1 and isinstance(expr_ast.body[0], ast.Expr): |
|
921 | 980 | mode = 'eval' |
|
922 | 981 | source = '<timed eval>' |
|
923 | 982 | expr_ast = ast.Expression(expr_ast.body[0].value) |
|
924 | 983 | else: |
|
925 | 984 | mode = 'exec' |
|
926 | 985 | source = '<timed exec>' |
|
927 | 986 | t0 = clock() |
|
928 | 987 | code = compile(expr_ast, source, mode) |
|
929 | 988 | tc = clock()-t0 |
|
930 | 989 | |
|
931 | 990 | # skew measurement as little as possible |
|
932 | 991 | glob = self.shell.user_ns |
|
933 | 992 | wtime = time.time |
|
934 | 993 | # time execution |
|
935 | 994 | wall_st = wtime() |
|
936 | 995 | if mode=='eval': |
|
937 | 996 | st = clock2() |
|
938 | 997 | out = eval(code, glob, local_ns) |
|
939 | 998 | end = clock2() |
|
940 | 999 | else: |
|
941 | 1000 | st = clock2() |
|
942 | 1001 | exec code in glob, local_ns |
|
943 | 1002 | end = clock2() |
|
944 | 1003 | out = None |
|
945 | 1004 | wall_end = wtime() |
|
946 | 1005 | # Compute actual times and report |
|
947 | 1006 | wall_time = wall_end-wall_st |
|
948 | 1007 | cpu_user = end[0]-st[0] |
|
949 | 1008 | cpu_sys = end[1]-st[1] |
|
950 | 1009 | cpu_tot = cpu_user+cpu_sys |
|
951 | 1010 | # On windows cpu_sys is always zero, so no new information to the next print |
|
952 | 1011 | if sys.platform != 'win32': |
|
953 | 1012 | print "CPU times: user %s, sys: %s, total: %s" % \ |
|
954 | 1013 | (_format_time(cpu_user),_format_time(cpu_sys),_format_time(cpu_tot)) |
|
955 | 1014 | print "Wall time: %s" % _format_time(wall_time) |
|
956 | 1015 | if tc > tc_min: |
|
957 | 1016 | print "Compiler : %s" % _format_time(tc) |
|
958 | 1017 | if tp > tp_min: |
|
959 | 1018 | print "Parser : %s" % _format_time(tp) |
|
960 | 1019 | return out |
|
961 | 1020 | |
|
962 | 1021 | @skip_doctest |
|
963 | 1022 | @line_magic |
|
964 | 1023 | def macro(self, parameter_s=''): |
|
965 | 1024 | """Define a macro for future re-execution. It accepts ranges of history, |
|
966 | 1025 | filenames or string objects. |
|
967 | 1026 | |
|
968 | 1027 | Usage:\\ |
|
969 | 1028 | %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ... |
|
970 | 1029 | |
|
971 | 1030 | Options: |
|
972 | 1031 | |
|
973 | 1032 | -r: use 'raw' input. By default, the 'processed' history is used, |
|
974 | 1033 | so that magics are loaded in their transformed version to valid |
|
975 | 1034 | Python. If this option is given, the raw input as typed as the |
|
976 | 1035 | command line is used instead. |
|
977 | 1036 | |
|
978 | 1037 | This will define a global variable called `name` which is a string |
|
979 | 1038 | made of joining the slices and lines you specify (n1,n2,... numbers |
|
980 | 1039 | above) from your input history into a single string. This variable |
|
981 | 1040 | acts like an automatic function which re-executes those lines as if |
|
982 | 1041 | you had typed them. You just type 'name' at the prompt and the code |
|
983 | 1042 | executes. |
|
984 | 1043 | |
|
985 | 1044 | The syntax for indicating input ranges is described in %history. |
|
986 | 1045 | |
|
987 | 1046 | Note: as a 'hidden' feature, you can also use traditional python slice |
|
988 | 1047 | notation, where N:M means numbers N through M-1. |
|
989 | 1048 | |
|
990 | 1049 | For example, if your history contains (%hist prints it):: |
|
991 | 1050 | |
|
992 | 1051 | 44: x=1 |
|
993 | 1052 | 45: y=3 |
|
994 | 1053 | 46: z=x+y |
|
995 | 1054 | 47: print x |
|
996 | 1055 | 48: a=5 |
|
997 | 1056 | 49: print 'x',x,'y',y |
|
998 | 1057 | |
|
999 | 1058 | you can create a macro with lines 44 through 47 (included) and line 49 |
|
1000 | 1059 | called my_macro with:: |
|
1001 | 1060 | |
|
1002 | 1061 | In [55]: %macro my_macro 44-47 49 |
|
1003 | 1062 | |
|
1004 | 1063 | Now, typing `my_macro` (without quotes) will re-execute all this code |
|
1005 | 1064 | in one pass. |
|
1006 | 1065 | |
|
1007 | 1066 | You don't need to give the line-numbers in order, and any given line |
|
1008 | 1067 | number can appear multiple times. You can assemble macros with any |
|
1009 | 1068 | lines from your input history in any order. |
|
1010 | 1069 | |
|
1011 | 1070 | The macro is a simple object which holds its value in an attribute, |
|
1012 | 1071 | but IPython's display system checks for macros and executes them as |
|
1013 | 1072 | code instead of printing them when you type their name. |
|
1014 | 1073 | |
|
1015 | 1074 | You can view a macro's contents by explicitly printing it with:: |
|
1016 | 1075 | |
|
1017 | 1076 | print macro_name |
|
1018 | 1077 | |
|
1019 | 1078 | """ |
|
1020 | 1079 | opts,args = self.parse_options(parameter_s,'r',mode='list') |
|
1021 | 1080 | if not args: # List existing macros |
|
1022 | 1081 | return sorted(k for k,v in self.shell.user_ns.iteritems() if\ |
|
1023 | 1082 | isinstance(v, Macro)) |
|
1024 | 1083 | if len(args) == 1: |
|
1025 | 1084 | raise UsageError( |
|
1026 | 1085 | "%macro insufficient args; usage '%macro name n1-n2 n3-4...") |
|
1027 | 1086 | name, codefrom = args[0], " ".join(args[1:]) |
|
1028 | 1087 | |
|
1029 | 1088 | #print 'rng',ranges # dbg |
|
1030 | 1089 | try: |
|
1031 | 1090 | lines = self.shell.find_user_code(codefrom, 'r' in opts) |
|
1032 | 1091 | except (ValueError, TypeError) as e: |
|
1033 | 1092 | print e.args[0] |
|
1034 | 1093 | return |
|
1035 | 1094 | macro = Macro(lines) |
|
1036 | 1095 | self.shell.define_macro(name, macro) |
|
1037 | 1096 | print 'Macro `%s` created. To execute, type its name (without quotes).' % name |
|
1038 | 1097 | print '=== Macro contents: ===' |
|
1039 | 1098 | print macro, |
|
1040 | 1099 | |
|
1041 | 1100 | @magic_arguments.magic_arguments() |
|
1042 | 1101 | @magic_arguments.argument('output', type=str, default='', nargs='?', |
|
1043 | 1102 | help="""The name of the variable in which to store output. |
|
1044 | 1103 | This is a utils.io.CapturedIO object with stdout/err attributes |
|
1045 | 1104 | for the text of the captured output. |
|
1046 | 1105 | |
|
1047 | 1106 | CapturedOutput also has a show() method for displaying the output, |
|
1048 | 1107 | and __call__ as well, so you can use that to quickly display the |
|
1049 | 1108 | output. |
|
1050 | 1109 | |
|
1051 | 1110 | If unspecified, captured output is discarded. |
|
1052 | 1111 | """ |
|
1053 | 1112 | ) |
|
1054 | 1113 | @magic_arguments.argument('--no-stderr', action="store_true", |
|
1055 | 1114 | help="""Don't capture stderr.""" |
|
1056 | 1115 | ) |
|
1057 | 1116 | @magic_arguments.argument('--no-stdout', action="store_true", |
|
1058 | 1117 | help="""Don't capture stdout.""" |
|
1059 | 1118 | ) |
|
1060 | 1119 | @cell_magic |
|
1061 | 1120 | def capture(self, line, cell): |
|
1062 | 1121 | """run the cell, capturing stdout/err""" |
|
1063 | 1122 | args = magic_arguments.parse_argstring(self.capture, line) |
|
1064 | 1123 | out = not args.no_stdout |
|
1065 | 1124 | err = not args.no_stderr |
|
1066 | 1125 | with capture_output(out, err) as io: |
|
1067 | 1126 | self.shell.run_cell(cell) |
|
1068 | 1127 | if args.output: |
|
1069 | 1128 | self.shell.user_ns[args.output] = io |
|
1070 | 1129 | |
|
1071 | 1130 | def parse_breakpoint(text, current_file): |
|
1072 | 1131 | '''Returns (file, line) for file:line and (current_file, line) for line''' |
|
1073 | 1132 | colon = text.find(':') |
|
1074 | 1133 | if colon == -1: |
|
1075 | 1134 | return current_file, int(text) |
|
1076 | 1135 | else: |
|
1077 | 1136 | return text[:colon], int(text[colon+1:]) |
|
1078 | 1137 | |
|
1079 | 1138 | def _format_time(timespan, precision=3): |
|
1080 | 1139 | """Formats the timespan in a human readable form""" |
|
1081 | 1140 | import math |
|
1082 | 1141 | |
|
1083 | 1142 | if timespan >= 60.0: |
|
1084 | 1143 | # we have more than a minute, format that in a human readable form |
|
1085 | 1144 | # Idea from http://snipplr.com/view/5713/ |
|
1086 | 1145 | parts = [("d", 60*60*24),("h", 60*60),("min", 60), ("s", 1)] |
|
1087 | 1146 | time = [] |
|
1088 | 1147 | leftover = timespan |
|
1089 | 1148 | for suffix, length in parts: |
|
1090 | 1149 | value = int(leftover / length) |
|
1091 | 1150 | if value > 0: |
|
1092 | 1151 | leftover = leftover % length |
|
1093 | 1152 | time.append(u'%s%s' % (str(value), suffix)) |
|
1094 | 1153 | if leftover < 1: |
|
1095 | 1154 | break |
|
1096 | 1155 | return " ".join(time) |
|
1097 | 1156 | |
|
1098 | 1157 | |
|
1099 | 1158 | # Unfortunately the unicode 'micro' symbol can cause problems in |
|
1100 | 1159 | # certain terminals. |
|
1101 | 1160 | # See bug: https://bugs.launchpad.net/ipython/+bug/348466 |
|
1102 | 1161 | # Try to prevent crashes by being more secure than it needs to |
|
1103 | 1162 | # E.g. eclipse is able to print a Β΅, but has no sys.stdout.encoding set. |
|
1104 | 1163 | units = [u"s", u"ms",u'us',"ns"] # the save value |
|
1105 | 1164 | if hasattr(sys.stdout, 'encoding') and sys.stdout.encoding: |
|
1106 | 1165 | try: |
|
1107 | 1166 | u'\xb5'.encode(sys.stdout.encoding) |
|
1108 | 1167 | units = [u"s", u"ms",u'\xb5s',"ns"] |
|
1109 | 1168 | except: |
|
1110 | 1169 | pass |
|
1111 | 1170 | scaling = [1, 1e3, 1e6, 1e9] |
|
1112 | 1171 | |
|
1113 | 1172 | if timespan > 0.0: |
|
1114 | 1173 | order = min(-int(math.floor(math.log10(timespan)) // 3), 3) |
|
1115 | 1174 | else: |
|
1116 | 1175 | order = 3 |
|
1117 | 1176 | ret = u"%.*g %s" % (precision, timespan * scaling[order], units[order]) |
|
1118 | 1177 | return ret |
@@ -1,339 +1,416 b'' | |||
|
1 | 1 | # encoding: utf-8 |
|
2 | 2 | """Tests for code execution (%run and related), which is particularly tricky. |
|
3 | 3 | |
|
4 | 4 | Because of how %run manages namespaces, and the fact that we are trying here to |
|
5 | 5 | verify subtle object deletion and reference counting issues, the %run tests |
|
6 | 6 | will be kept in this separate file. This makes it easier to aggregate in one |
|
7 | 7 | place the tricks needed to handle it; most other magics are much easier to test |
|
8 | 8 | and we do so in a common test_magic file. |
|
9 | 9 | """ |
|
10 | 10 | from __future__ import absolute_import |
|
11 | 11 | |
|
12 | 12 | #----------------------------------------------------------------------------- |
|
13 | 13 | # Imports |
|
14 | 14 | #----------------------------------------------------------------------------- |
|
15 | 15 | |
|
16 | import functools | |
|
16 | 17 | import os |
|
18 | import random | |
|
17 | 19 | import sys |
|
18 | 20 | import tempfile |
|
21 | import textwrap | |
|
22 | import unittest | |
|
19 | 23 | |
|
20 | 24 | import nose.tools as nt |
|
21 | 25 | from nose import SkipTest |
|
22 | 26 | |
|
23 | 27 | from IPython.testing import decorators as dec |
|
24 | 28 | from IPython.testing import tools as tt |
|
25 | 29 | from IPython.utils import py3compat |
|
30 | from IPython.utils.tempdir import TemporaryDirectory | |
|
31 | from IPython.core import debugger | |
|
26 | 32 | |
|
27 | 33 | #----------------------------------------------------------------------------- |
|
28 | 34 | # Test functions begin |
|
29 | 35 | #----------------------------------------------------------------------------- |
|
30 | 36 | |
|
31 | 37 | def doctest_refbug(): |
|
32 | 38 | """Very nasty problem with references held by multiple runs of a script. |
|
33 | 39 | See: https://github.com/ipython/ipython/issues/141 |
|
34 | 40 | |
|
35 | 41 | In [1]: _ip.clear_main_mod_cache() |
|
36 | 42 | # random |
|
37 | 43 | |
|
38 | 44 | In [2]: %run refbug |
|
39 | 45 | |
|
40 | 46 | In [3]: call_f() |
|
41 | 47 | lowercased: hello |
|
42 | 48 | |
|
43 | 49 | In [4]: %run refbug |
|
44 | 50 | |
|
45 | 51 | In [5]: call_f() |
|
46 | 52 | lowercased: hello |
|
47 | 53 | lowercased: hello |
|
48 | 54 | """ |
|
49 | 55 | |
|
50 | 56 | |
|
51 | 57 | def doctest_run_builtins(): |
|
52 | 58 | r"""Check that %run doesn't damage __builtins__. |
|
53 | 59 | |
|
54 | 60 | In [1]: import tempfile |
|
55 | 61 | |
|
56 | 62 | In [2]: bid1 = id(__builtins__) |
|
57 | 63 | |
|
58 | 64 | In [3]: fname = tempfile.mkstemp('.py')[1] |
|
59 | 65 | |
|
60 | 66 | In [3]: f = open(fname,'w') |
|
61 | 67 | |
|
62 | 68 | In [4]: dummy= f.write('pass\n') |
|
63 | 69 | |
|
64 | 70 | In [5]: f.flush() |
|
65 | 71 | |
|
66 | 72 | In [6]: t1 = type(__builtins__) |
|
67 | 73 | |
|
68 | 74 | In [7]: %run $fname |
|
69 | 75 | |
|
70 | 76 | In [7]: f.close() |
|
71 | 77 | |
|
72 | 78 | In [8]: bid2 = id(__builtins__) |
|
73 | 79 | |
|
74 | 80 | In [9]: t2 = type(__builtins__) |
|
75 | 81 | |
|
76 | 82 | In [10]: t1 == t2 |
|
77 | 83 | Out[10]: True |
|
78 | 84 | |
|
79 | 85 | In [10]: bid1 == bid2 |
|
80 | 86 | Out[10]: True |
|
81 | 87 | |
|
82 | 88 | In [12]: try: |
|
83 | 89 | ....: os.unlink(fname) |
|
84 | 90 | ....: except: |
|
85 | 91 | ....: pass |
|
86 | 92 | ....: |
|
87 | 93 | """ |
|
88 | 94 | |
|
89 | 95 | |
|
90 | 96 | def doctest_run_option_parser(): |
|
91 | 97 | r"""Test option parser in %run. |
|
92 | 98 | |
|
93 | 99 | In [1]: %run print_argv.py |
|
94 | 100 | [] |
|
95 | 101 | |
|
96 | 102 | In [2]: %run print_argv.py print*.py |
|
97 | 103 | ['print_argv.py'] |
|
98 | 104 | |
|
99 | 105 | In [3]: %run -G print_argv.py print*.py |
|
100 | 106 | ['print*.py'] |
|
101 | 107 | |
|
102 | 108 | """ |
|
103 | 109 | |
|
104 | 110 | |
|
105 | 111 | @dec.skip_win32 |
|
106 | 112 | def doctest_run_option_parser_for_posix(): |
|
107 | 113 | r"""Test option parser in %run (Linux/OSX specific). |
|
108 | 114 | |
|
109 | 115 | You need double quote to escape glob in POSIX systems: |
|
110 | 116 | |
|
111 | 117 | In [1]: %run print_argv.py print\\*.py |
|
112 | 118 | ['print*.py'] |
|
113 | 119 | |
|
114 | 120 | You can't use quote to escape glob in POSIX systems: |
|
115 | 121 | |
|
116 | 122 | In [2]: %run print_argv.py 'print*.py' |
|
117 | 123 | ['print_argv.py'] |
|
118 | 124 | |
|
119 | 125 | """ |
|
120 | 126 | |
|
121 | 127 | |
|
122 | 128 | @dec.skip_if_not_win32 |
|
123 | 129 | def doctest_run_option_parser_for_windows(): |
|
124 | 130 | r"""Test option parser in %run (Windows specific). |
|
125 | 131 | |
|
126 | 132 | In Windows, you can't escape ``*` `by backslash: |
|
127 | 133 | |
|
128 | 134 | In [1]: %run print_argv.py print\\*.py |
|
129 | 135 | ['print\\*.py'] |
|
130 | 136 | |
|
131 | 137 | You can use quote to escape glob: |
|
132 | 138 | |
|
133 | 139 | In [2]: %run print_argv.py 'print*.py' |
|
134 | 140 | ['print*.py'] |
|
135 | 141 | |
|
136 | 142 | """ |
|
137 | 143 | |
|
138 | 144 | |
|
139 | 145 | @py3compat.doctest_refactor_print |
|
140 | 146 | def doctest_reset_del(): |
|
141 | 147 | """Test that resetting doesn't cause errors in __del__ methods. |
|
142 | 148 | |
|
143 | 149 | In [2]: class A(object): |
|
144 | 150 | ...: def __del__(self): |
|
145 | 151 | ...: print str("Hi") |
|
146 | 152 | ...: |
|
147 | 153 | |
|
148 | 154 | In [3]: a = A() |
|
149 | 155 | |
|
150 | 156 | In [4]: get_ipython().reset() |
|
151 | 157 | Hi |
|
152 | 158 | |
|
153 | 159 | In [5]: 1+1 |
|
154 | 160 | Out[5]: 2 |
|
155 | 161 | """ |
|
156 | 162 | |
|
157 | 163 | # For some tests, it will be handy to organize them in a class with a common |
|
158 | 164 | # setup that makes a temp file |
|
159 | 165 | |
|
160 | 166 | class TestMagicRunPass(tt.TempFileMixin): |
|
161 | 167 | |
|
162 | 168 | def setup(self): |
|
163 | 169 | """Make a valid python temp file.""" |
|
164 | 170 | self.mktmp('pass\n') |
|
165 | 171 | |
|
166 | 172 | def run_tmpfile(self): |
|
167 | 173 | _ip = get_ipython() |
|
168 | 174 | # This fails on Windows if self.tmpfile.name has spaces or "~" in it. |
|
169 | 175 | # See below and ticket https://bugs.launchpad.net/bugs/366353 |
|
170 | 176 | _ip.magic('run %s' % self.fname) |
|
171 | 177 | |
|
172 | 178 | def run_tmpfile_p(self): |
|
173 | 179 | _ip = get_ipython() |
|
174 | 180 | # This fails on Windows if self.tmpfile.name has spaces or "~" in it. |
|
175 | 181 | # See below and ticket https://bugs.launchpad.net/bugs/366353 |
|
176 | 182 | _ip.magic('run -p %s' % self.fname) |
|
177 | 183 | |
|
178 | 184 | def test_builtins_id(self): |
|
179 | 185 | """Check that %run doesn't damage __builtins__ """ |
|
180 | 186 | _ip = get_ipython() |
|
181 | 187 | # Test that the id of __builtins__ is not modified by %run |
|
182 | 188 | bid1 = id(_ip.user_ns['__builtins__']) |
|
183 | 189 | self.run_tmpfile() |
|
184 | 190 | bid2 = id(_ip.user_ns['__builtins__']) |
|
185 | 191 | nt.assert_equal(bid1, bid2) |
|
186 | 192 | |
|
187 | 193 | def test_builtins_type(self): |
|
188 | 194 | """Check that the type of __builtins__ doesn't change with %run. |
|
189 | 195 | |
|
190 | 196 | However, the above could pass if __builtins__ was already modified to |
|
191 | 197 | be a dict (it should be a module) by a previous use of %run. So we |
|
192 | 198 | also check explicitly that it really is a module: |
|
193 | 199 | """ |
|
194 | 200 | _ip = get_ipython() |
|
195 | 201 | self.run_tmpfile() |
|
196 | 202 | nt.assert_equal(type(_ip.user_ns['__builtins__']),type(sys)) |
|
197 | 203 | |
|
198 | 204 | def test_prompts(self): |
|
199 | 205 | """Test that prompts correctly generate after %run""" |
|
200 | 206 | self.run_tmpfile() |
|
201 | 207 | _ip = get_ipython() |
|
202 | 208 | p2 = _ip.prompt_manager.render('in2').strip() |
|
203 | 209 | nt.assert_equal(p2[:3], '...') |
|
204 | 210 | |
|
205 | 211 | def test_run_profile( self ): |
|
206 | 212 | """Test that the option -p, which invokes the profiler, do not |
|
207 | 213 | crash by invoking execfile""" |
|
208 | 214 | _ip = get_ipython() |
|
209 | 215 | self.run_tmpfile_p() |
|
210 | 216 | |
|
211 | 217 | |
|
212 | 218 | class TestMagicRunSimple(tt.TempFileMixin): |
|
213 | 219 | |
|
214 | 220 | def test_simpledef(self): |
|
215 | 221 | """Test that simple class definitions work.""" |
|
216 | 222 | src = ("class foo: pass\n" |
|
217 | 223 | "def f(): return foo()") |
|
218 | 224 | self.mktmp(src) |
|
219 | 225 | _ip.magic('run %s' % self.fname) |
|
220 | 226 | _ip.run_cell('t = isinstance(f(), foo)') |
|
221 | 227 | nt.assert_true(_ip.user_ns['t']) |
|
222 | 228 | |
|
223 | 229 | def test_obj_del(self): |
|
224 | 230 | """Test that object's __del__ methods are called on exit.""" |
|
225 | 231 | if sys.platform == 'win32': |
|
226 | 232 | try: |
|
227 | 233 | import win32api |
|
228 | 234 | except ImportError: |
|
229 | 235 | raise SkipTest("Test requires pywin32") |
|
230 | 236 | src = ("class A(object):\n" |
|
231 | 237 | " def __del__(self):\n" |
|
232 | 238 | " print 'object A deleted'\n" |
|
233 | 239 | "a = A()\n") |
|
234 | 240 | self.mktmp(py3compat.doctest_refactor_print(src)) |
|
235 | 241 | if dec.module_not_available('sqlite3'): |
|
236 | 242 | err = 'WARNING: IPython History requires SQLite, your history will not be saved\n' |
|
237 | 243 | else: |
|
238 | 244 | err = None |
|
239 | 245 | tt.ipexec_validate(self.fname, 'object A deleted', err) |
|
240 | 246 | |
|
241 | 247 | @dec.skip_known_failure |
|
242 | 248 | def test_aggressive_namespace_cleanup(self): |
|
243 | 249 | """Test that namespace cleanup is not too aggressive GH-238 |
|
244 | 250 | |
|
245 | 251 | Returning from another run magic deletes the namespace""" |
|
246 | 252 | # see ticket https://github.com/ipython/ipython/issues/238 |
|
247 | 253 | class secondtmp(tt.TempFileMixin): pass |
|
248 | 254 | empty = secondtmp() |
|
249 | 255 | empty.mktmp('') |
|
250 | 256 | src = ("ip = get_ipython()\n" |
|
251 | 257 | "for i in range(5):\n" |
|
252 | 258 | " try:\n" |
|
253 | 259 | " ip.magic('run %s')\n" |
|
254 | 260 | " except NameError as e:\n" |
|
255 | 261 | " print i;break\n" % empty.fname) |
|
256 | 262 | self.mktmp(py3compat.doctest_refactor_print(src)) |
|
257 | 263 | _ip.magic('run %s' % self.fname) |
|
258 | 264 | _ip.run_cell('ip == get_ipython()') |
|
259 | 265 | nt.assert_equal(_ip.user_ns['i'], 5) |
|
260 | 266 | |
|
261 | 267 | @dec.skip_win32 |
|
262 | 268 | def test_tclass(self): |
|
263 | 269 | mydir = os.path.dirname(__file__) |
|
264 | 270 | tc = os.path.join(mydir, 'tclass') |
|
265 | 271 | src = ("%%run '%s' C-first\n" |
|
266 | 272 | "%%run '%s' C-second\n" |
|
267 | 273 | "%%run '%s' C-third\n") % (tc, tc, tc) |
|
268 | 274 | self.mktmp(src, '.ipy') |
|
269 | 275 | out = """\ |
|
270 | 276 | ARGV 1-: ['C-first'] |
|
271 | 277 | ARGV 1-: ['C-second'] |
|
272 | 278 | tclass.py: deleting object: C-first |
|
273 | 279 | ARGV 1-: ['C-third'] |
|
274 | 280 | tclass.py: deleting object: C-second |
|
275 | 281 | tclass.py: deleting object: C-third |
|
276 | 282 | """ |
|
277 | 283 | if dec.module_not_available('sqlite3'): |
|
278 | 284 | err = 'WARNING: IPython History requires SQLite, your history will not be saved\n' |
|
279 | 285 | else: |
|
280 | 286 | err = None |
|
281 | 287 | tt.ipexec_validate(self.fname, out, err) |
|
282 | 288 | |
|
283 | 289 | def test_run_i_after_reset(self): |
|
284 | 290 | """Check that %run -i still works after %reset (gh-693)""" |
|
285 | 291 | src = "yy = zz\n" |
|
286 | 292 | self.mktmp(src) |
|
287 | 293 | _ip.run_cell("zz = 23") |
|
288 | 294 | _ip.magic('run -i %s' % self.fname) |
|
289 | 295 | nt.assert_equal(_ip.user_ns['yy'], 23) |
|
290 | 296 | _ip.magic('reset -f') |
|
291 | 297 | _ip.run_cell("zz = 23") |
|
292 | 298 | _ip.magic('run -i %s' % self.fname) |
|
293 | 299 | nt.assert_equal(_ip.user_ns['yy'], 23) |
|
294 | 300 | |
|
295 | 301 | def test_unicode(self): |
|
296 | 302 | """Check that files in odd encodings are accepted.""" |
|
297 | 303 | mydir = os.path.dirname(__file__) |
|
298 | 304 | na = os.path.join(mydir, 'nonascii.py') |
|
299 | 305 | _ip.magic('run "%s"' % na) |
|
300 | 306 | nt.assert_equal(_ip.user_ns['u'], u'ΠΡβΠ€') |
|
301 | 307 | |
|
302 | 308 | def test_run_py_file_attribute(self): |
|
303 | 309 | """Test handling of `__file__` attribute in `%run <file>.py`.""" |
|
304 | 310 | src = "t = __file__\n" |
|
305 | 311 | self.mktmp(src) |
|
306 | 312 | _missing = object() |
|
307 | 313 | file1 = _ip.user_ns.get('__file__', _missing) |
|
308 | 314 | _ip.magic('run %s' % self.fname) |
|
309 | 315 | file2 = _ip.user_ns.get('__file__', _missing) |
|
310 | 316 | |
|
311 | 317 | # Check that __file__ was equal to the filename in the script's |
|
312 | 318 | # namespace. |
|
313 | 319 | nt.assert_equal(_ip.user_ns['t'], self.fname) |
|
314 | 320 | |
|
315 | 321 | # Check that __file__ was not leaked back into user_ns. |
|
316 | 322 | nt.assert_equal(file1, file2) |
|
317 | 323 | |
|
318 | 324 | def test_run_ipy_file_attribute(self): |
|
319 | 325 | """Test handling of `__file__` attribute in `%run <file.ipy>`.""" |
|
320 | 326 | src = "t = __file__\n" |
|
321 | 327 | self.mktmp(src, ext='.ipy') |
|
322 | 328 | _missing = object() |
|
323 | 329 | file1 = _ip.user_ns.get('__file__', _missing) |
|
324 | 330 | _ip.magic('run %s' % self.fname) |
|
325 | 331 | file2 = _ip.user_ns.get('__file__', _missing) |
|
326 | 332 | |
|
327 | 333 | # Check that __file__ was equal to the filename in the script's |
|
328 | 334 | # namespace. |
|
329 | 335 | nt.assert_equal(_ip.user_ns['t'], self.fname) |
|
330 | 336 | |
|
331 | 337 | # Check that __file__ was not leaked back into user_ns. |
|
332 | 338 | nt.assert_equal(file1, file2) |
|
333 | 339 | |
|
334 | 340 | def test_run_formatting(self): |
|
335 | 341 | """ Test that %run -t -N<N> does not raise a TypeError for N > 1.""" |
|
336 | 342 | src = "pass" |
|
337 | 343 | self.mktmp(src) |
|
338 | 344 | _ip.magic('run -t -N 1 %s' % self.fname) |
|
339 | 345 | _ip.magic('run -t -N 10 %s' % self.fname) |
|
346 | ||
|
347 | ||
|
348 | class TestMagicRunWithPackage(unittest.TestCase): | |
|
349 | ||
|
350 | def writefile(self, name, content): | |
|
351 | path = os.path.join(self.tempdir.name, name) | |
|
352 | d = os.path.dirname(path) | |
|
353 | if not os.path.isdir(d): | |
|
354 | os.makedirs(d) | |
|
355 | with open(path, 'w') as f: | |
|
356 | f.write(textwrap.dedent(content)) | |
|
357 | ||
|
358 | def setUp(self): | |
|
359 | self.package = package = 'tmp{0}'.format(repr(random.random())[2:]) | |
|
360 | """Temporary valid python package name.""" | |
|
361 | ||
|
362 | self.value = int(random.random() * 10000) | |
|
363 | ||
|
364 | self.tempdir = TemporaryDirectory() | |
|
365 | self.__orig_cwd = os.getcwdu() | |
|
366 | sys.path.insert(0, self.tempdir.name) | |
|
367 | ||
|
368 | self.writefile(os.path.join(package, '__init__.py'), '') | |
|
369 | self.writefile(os.path.join(package, 'sub.py'), """ | |
|
370 | x = {0!r} | |
|
371 | """.format(self.value)) | |
|
372 | self.writefile(os.path.join(package, 'relative.py'), """ | |
|
373 | from .sub import x | |
|
374 | """) | |
|
375 | self.writefile(os.path.join(package, 'absolute.py'), """ | |
|
376 | from {0}.sub import x | |
|
377 | """.format(package)) | |
|
378 | ||
|
379 | def tearDown(self): | |
|
380 | os.chdir(self.__orig_cwd) | |
|
381 | sys.path[:] = [p for p in sys.path if p != self.tempdir.name] | |
|
382 | self.tempdir.cleanup() | |
|
383 | ||
|
384 | def check_run_submodule(self, submodule, opts=''): | |
|
385 | _ip.magic('run {2} -m {0}.{1}'.format(self.package, submodule, opts)) | |
|
386 | self.assertEqual(_ip.user_ns['x'], self.value, | |
|
387 | 'Variable `x` is not loaded from module `{0}`.' | |
|
388 | .format(submodule)) | |
|
389 | ||
|
390 | def test_run_submodule_with_absolute_import(self): | |
|
391 | self.check_run_submodule('absolute') | |
|
392 | ||
|
393 | def test_run_submodule_with_relative_import(self): | |
|
394 | """Run submodule that has a relative import statement (#2727).""" | |
|
395 | self.check_run_submodule('relative') | |
|
396 | ||
|
397 | def test_prun_submodule_with_absolute_import(self): | |
|
398 | self.check_run_submodule('absolute', '-p') | |
|
399 | ||
|
400 | def test_prun_submodule_with_relative_import(self): | |
|
401 | self.check_run_submodule('relative', '-p') | |
|
402 | ||
|
403 | def with_fake_debugger(func): | |
|
404 | @functools.wraps(func) | |
|
405 | def wrapper(*args, **kwds): | |
|
406 | with tt.monkeypatch(debugger.Pdb, 'run', staticmethod(eval)): | |
|
407 | return func(*args, **kwds) | |
|
408 | return wrapper | |
|
409 | ||
|
410 | @with_fake_debugger | |
|
411 | def test_debug_run_submodule_with_absolute_import(self): | |
|
412 | self.check_run_submodule('absolute', '-d') | |
|
413 | ||
|
414 | @with_fake_debugger | |
|
415 | def test_debug_run_submodule_with_relative_import(self): | |
|
416 | self.check_run_submodule('relative', '-d') |
General Comments 0
You need to be logged in to leave comments.
Login now