##// END OF EJS Templates
Further Python 3 fixes in core.
Thomas Kluyver -
Show More
@@ -1,2573 +1,2575 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Main IPython class."""
3 3
4 4 #-----------------------------------------------------------------------------
5 5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 7 # Copyright (C) 2008-2011 The IPython Development Team
8 8 #
9 9 # Distributed under the terms of the BSD License. The full license is in
10 10 # the file COPYING, distributed as part of this software.
11 11 #-----------------------------------------------------------------------------
12 12
13 13 #-----------------------------------------------------------------------------
14 14 # Imports
15 15 #-----------------------------------------------------------------------------
16 16
17 17 from __future__ import with_statement
18 18 from __future__ import absolute_import
19 19
20 20 import __builtin__ as builtin_mod
21 21 import __future__
22 22 import abc
23 23 import ast
24 24 import atexit
25 25 import codeop
26 26 import inspect
27 27 import os
28 28 import re
29 29 import sys
30 30 import tempfile
31 31 import types
32 32 from contextlib import nested
33 33
34 34 from IPython.config.configurable import SingletonConfigurable
35 35 from IPython.core import debugger, oinspect
36 36 from IPython.core import history as ipcorehist
37 37 from IPython.core import page
38 38 from IPython.core import prefilter
39 39 from IPython.core import shadowns
40 40 from IPython.core import ultratb
41 41 from IPython.core.alias import AliasManager, AliasError
42 42 from IPython.core.autocall import ExitAutocall
43 43 from IPython.core.builtin_trap import BuiltinTrap
44 44 from IPython.core.compilerop import CachingCompiler
45 45 from IPython.core.display_trap import DisplayTrap
46 46 from IPython.core.displayhook import DisplayHook
47 47 from IPython.core.displaypub import DisplayPublisher
48 48 from IPython.core.error import TryNext, UsageError
49 49 from IPython.core.extensions import ExtensionManager
50 50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
51 51 from IPython.core.formatters import DisplayFormatter
52 52 from IPython.core.history import HistoryManager
53 53 from IPython.core.inputsplitter import IPythonInputSplitter
54 54 from IPython.core.logger import Logger
55 55 from IPython.core.macro import Macro
56 56 from IPython.core.magic import Magic
57 57 from IPython.core.payload import PayloadManager
58 58 from IPython.core.plugin import PluginManager
59 59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
60 60 from IPython.core.profiledir import ProfileDir
61 61 from IPython.external.Itpl import ItplNS
62 62 from IPython.utils import PyColorize
63 63 from IPython.utils import io
64 64 from IPython.utils import py3compat
65 65 from IPython.utils.doctestreload import doctest_reload
66 66 from IPython.utils.io import ask_yes_no, rprint
67 67 from IPython.utils.ipstruct import Struct
68 68 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
69 69 from IPython.utils.pickleshare import PickleShareDB
70 70 from IPython.utils.process import system, getoutput
71 71 from IPython.utils.strdispatch import StrDispatch
72 72 from IPython.utils.syspathcontext import prepended_to_syspath
73 73 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
74 74 from IPython.utils.traitlets import (Int, CBool, CaselessStrEnum, Enum,
75 75 List, Unicode, Instance, Type)
76 76 from IPython.utils.warn import warn, error, fatal
77 77 import IPython.core.hooks
78 78
79 79 #-----------------------------------------------------------------------------
80 80 # Globals
81 81 #-----------------------------------------------------------------------------
82 82
83 83 # compiled regexps for autoindent management
84 84 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
85 85
86 86 #-----------------------------------------------------------------------------
87 87 # Utilities
88 88 #-----------------------------------------------------------------------------
89 89
90 90 def softspace(file, newvalue):
91 91 """Copied from code.py, to remove the dependency"""
92 92
93 93 oldvalue = 0
94 94 try:
95 95 oldvalue = file.softspace
96 96 except AttributeError:
97 97 pass
98 98 try:
99 99 file.softspace = newvalue
100 100 except (AttributeError, TypeError):
101 101 # "attribute-less object" or "read-only attributes"
102 102 pass
103 103 return oldvalue
104 104
105 105
106 106 def no_op(*a, **kw): pass
107 107
108 108 class SpaceInInput(Exception): pass
109 109
110 110 class Bunch: pass
111 111
112 112
113 113 def get_default_colors():
114 114 if sys.platform=='darwin':
115 115 return "LightBG"
116 116 elif os.name=='nt':
117 117 return 'Linux'
118 118 else:
119 119 return 'Linux'
120 120
121 121
122 122 class SeparateUnicode(Unicode):
123 123 """A Unicode subclass to validate separate_in, separate_out, etc.
124 124
125 125 This is a Unicode based trait that converts '0'->'' and '\\n'->'\n'.
126 126 """
127 127
128 128 def validate(self, obj, value):
129 129 if value == '0': value = ''
130 130 value = value.replace('\\n','\n')
131 131 return super(SeparateUnicode, self).validate(obj, value)
132 132
133 133
134 134 class ReadlineNoRecord(object):
135 135 """Context manager to execute some code, then reload readline history
136 136 so that interactive input to the code doesn't appear when pressing up."""
137 137 def __init__(self, shell):
138 138 self.shell = shell
139 139 self._nested_level = 0
140 140
141 141 def __enter__(self):
142 142 if self._nested_level == 0:
143 143 try:
144 144 self.orig_length = self.current_length()
145 145 self.readline_tail = self.get_readline_tail()
146 146 except (AttributeError, IndexError): # Can fail with pyreadline
147 147 self.orig_length, self.readline_tail = 999999, []
148 148 self._nested_level += 1
149 149
150 150 def __exit__(self, type, value, traceback):
151 151 self._nested_level -= 1
152 152 if self._nested_level == 0:
153 153 # Try clipping the end if it's got longer
154 154 try:
155 155 e = self.current_length() - self.orig_length
156 156 if e > 0:
157 157 for _ in range(e):
158 158 self.shell.readline.remove_history_item(self.orig_length)
159 159
160 160 # If it still doesn't match, just reload readline history.
161 161 if self.current_length() != self.orig_length \
162 162 or self.get_readline_tail() != self.readline_tail:
163 163 self.shell.refill_readline_hist()
164 164 except (AttributeError, IndexError):
165 165 pass
166 166 # Returning False will cause exceptions to propagate
167 167 return False
168 168
169 169 def current_length(self):
170 170 return self.shell.readline.get_current_history_length()
171 171
172 172 def get_readline_tail(self, n=10):
173 173 """Get the last n items in readline history."""
174 174 end = self.shell.readline.get_current_history_length() + 1
175 175 start = max(end-n, 1)
176 176 ghi = self.shell.readline.get_history_item
177 177 return [ghi(x) for x in range(start, end)]
178 178
179 179
180 180 _autocall_help = """
181 181 Make IPython automatically call any callable object even if
182 182 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
183 183 automatically. The value can be '0' to disable the feature, '1' for 'smart'
184 184 autocall, where it is not applied if there are no more arguments on the line,
185 185 and '2' for 'full' autocall, where all callable objects are automatically
186 186 called (even if no arguments are present). The default is '1'.
187 187 """
188 188
189 189 #-----------------------------------------------------------------------------
190 190 # Main IPython class
191 191 #-----------------------------------------------------------------------------
192 192
193 193 class InteractiveShell(SingletonConfigurable, Magic):
194 194 """An enhanced, interactive shell for Python."""
195 195
196 196 _instance = None
197 197
198 198 autocall = Enum((0,1,2), default_value=1, config=True, help=
199 199 """
200 200 Make IPython automatically call any callable object even if you didn't
201 201 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
202 202 automatically. The value can be '0' to disable the feature, '1' for
203 203 'smart' autocall, where it is not applied if there are no more
204 204 arguments on the line, and '2' for 'full' autocall, where all callable
205 205 objects are automatically called (even if no arguments are present).
206 206 The default is '1'.
207 207 """
208 208 )
209 209 # TODO: remove all autoindent logic and put into frontends.
210 210 # We can't do this yet because even runlines uses the autoindent.
211 211 autoindent = CBool(True, config=True, help=
212 212 """
213 213 Autoindent IPython code entered interactively.
214 214 """
215 215 )
216 216 automagic = CBool(True, config=True, help=
217 217 """
218 218 Enable magic commands to be called without the leading %.
219 219 """
220 220 )
221 221 cache_size = Int(1000, config=True, help=
222 222 """
223 223 Set the size of the output cache. The default is 1000, you can
224 224 change it permanently in your config file. Setting it to 0 completely
225 225 disables the caching system, and the minimum value accepted is 20 (if
226 226 you provide a value less than 20, it is reset to 0 and a warning is
227 227 issued). This limit is defined because otherwise you'll spend more
228 228 time re-flushing a too small cache than working
229 229 """
230 230 )
231 231 color_info = CBool(True, config=True, help=
232 232 """
233 233 Use colors for displaying information about objects. Because this
234 234 information is passed through a pager (like 'less'), and some pagers
235 235 get confused with color codes, this capability can be turned off.
236 236 """
237 237 )
238 238 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
239 239 default_value=get_default_colors(), config=True,
240 240 help="Set the color scheme (NoColor, Linux, or LightBG)."
241 241 )
242 242 debug = CBool(False, config=True)
243 243 deep_reload = CBool(False, config=True, help=
244 244 """
245 245 Enable deep (recursive) reloading by default. IPython can use the
246 246 deep_reload module which reloads changes in modules recursively (it
247 247 replaces the reload() function, so you don't need to change anything to
248 248 use it). deep_reload() forces a full reload of modules whose code may
249 249 have changed, which the default reload() function does not. When
250 250 deep_reload is off, IPython will use the normal reload(), but
251 251 deep_reload will still be available as dreload().
252 252 """
253 253 )
254 254 display_formatter = Instance(DisplayFormatter)
255 255 displayhook_class = Type(DisplayHook)
256 256 display_pub_class = Type(DisplayPublisher)
257 257
258 258 exit_now = CBool(False)
259 259 exiter = Instance(ExitAutocall)
260 260 def _exiter_default(self):
261 261 return ExitAutocall(self)
262 262 # Monotonically increasing execution counter
263 263 execution_count = Int(1)
264 264 filename = Unicode("<ipython console>")
265 265 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
266 266
267 267 # Input splitter, to split entire cells of input into either individual
268 268 # interactive statements or whole blocks.
269 269 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
270 270 (), {})
271 271 logstart = CBool(False, config=True, help=
272 272 """
273 273 Start logging to the default log file.
274 274 """
275 275 )
276 276 logfile = Unicode('', config=True, help=
277 277 """
278 278 The name of the logfile to use.
279 279 """
280 280 )
281 281 logappend = Unicode('', config=True, help=
282 282 """
283 283 Start logging to the given file in append mode.
284 284 """
285 285 )
286 286 object_info_string_level = Enum((0,1,2), default_value=0,
287 287 config=True)
288 288 pdb = CBool(False, config=True, help=
289 289 """
290 290 Automatically call the pdb debugger after every exception.
291 291 """
292 292 )
293 293
294 294 prompt_in1 = Unicode('In [\\#]: ', config=True)
295 295 prompt_in2 = Unicode(' .\\D.: ', config=True)
296 296 prompt_out = Unicode('Out[\\#]: ', config=True)
297 297 prompts_pad_left = CBool(True, config=True)
298 298 quiet = CBool(False, config=True)
299 299
300 300 history_length = Int(10000, config=True)
301 301
302 302 # The readline stuff will eventually be moved to the terminal subclass
303 303 # but for now, we can't do that as readline is welded in everywhere.
304 304 readline_use = CBool(True, config=True)
305 305 readline_merge_completions = CBool(True, config=True)
306 306 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
307 307 readline_remove_delims = Unicode('-/~', config=True)
308 308 # don't use \M- bindings by default, because they
309 309 # conflict with 8-bit encodings. See gh-58,gh-88
310 310 readline_parse_and_bind = List([
311 311 'tab: complete',
312 312 '"\C-l": clear-screen',
313 313 'set show-all-if-ambiguous on',
314 314 '"\C-o": tab-insert',
315 315 '"\C-r": reverse-search-history',
316 316 '"\C-s": forward-search-history',
317 317 '"\C-p": history-search-backward',
318 318 '"\C-n": history-search-forward',
319 319 '"\e[A": history-search-backward',
320 320 '"\e[B": history-search-forward',
321 321 '"\C-k": kill-line',
322 322 '"\C-u": unix-line-discard',
323 323 ], allow_none=False, config=True)
324 324
325 325 # TODO: this part of prompt management should be moved to the frontends.
326 326 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
327 327 separate_in = SeparateUnicode('\n', config=True)
328 328 separate_out = SeparateUnicode('', config=True)
329 329 separate_out2 = SeparateUnicode('', config=True)
330 330 wildcards_case_sensitive = CBool(True, config=True)
331 331 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
332 332 default_value='Context', config=True)
333 333
334 334 # Subcomponents of InteractiveShell
335 335 alias_manager = Instance('IPython.core.alias.AliasManager')
336 336 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
337 337 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
338 338 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
339 339 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
340 340 plugin_manager = Instance('IPython.core.plugin.PluginManager')
341 341 payload_manager = Instance('IPython.core.payload.PayloadManager')
342 342 history_manager = Instance('IPython.core.history.HistoryManager')
343 343
344 344 profile_dir = Instance('IPython.core.application.ProfileDir')
345 345 @property
346 346 def profile(self):
347 347 if self.profile_dir is not None:
348 348 name = os.path.basename(self.profile_dir.location)
349 349 return name.replace('profile_','')
350 350
351 351
352 352 # Private interface
353 353 _post_execute = Instance(dict)
354 354
355 355 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
356 356 user_ns=None, user_global_ns=None,
357 357 custom_exceptions=((), None)):
358 358
359 359 # This is where traits with a config_key argument are updated
360 360 # from the values on config.
361 361 super(InteractiveShell, self).__init__(config=config)
362 362
363 363 # These are relatively independent and stateless
364 364 self.init_ipython_dir(ipython_dir)
365 365 self.init_profile_dir(profile_dir)
366 366 self.init_instance_attrs()
367 367 self.init_environment()
368 368
369 369 # Create namespaces (user_ns, user_global_ns, etc.)
370 370 self.init_create_namespaces(user_ns, user_global_ns)
371 371 # This has to be done after init_create_namespaces because it uses
372 372 # something in self.user_ns, but before init_sys_modules, which
373 373 # is the first thing to modify sys.
374 374 # TODO: When we override sys.stdout and sys.stderr before this class
375 375 # is created, we are saving the overridden ones here. Not sure if this
376 376 # is what we want to do.
377 377 self.save_sys_module_state()
378 378 self.init_sys_modules()
379 379
380 380 # While we're trying to have each part of the code directly access what
381 381 # it needs without keeping redundant references to objects, we have too
382 382 # much legacy code that expects ip.db to exist.
383 383 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
384 384
385 385 self.init_history()
386 386 self.init_encoding()
387 387 self.init_prefilter()
388 388
389 389 Magic.__init__(self, self)
390 390
391 391 self.init_syntax_highlighting()
392 392 self.init_hooks()
393 393 self.init_pushd_popd_magic()
394 394 # self.init_traceback_handlers use to be here, but we moved it below
395 395 # because it and init_io have to come after init_readline.
396 396 self.init_user_ns()
397 397 self.init_logger()
398 398 self.init_alias()
399 399 self.init_builtins()
400 400
401 401 # pre_config_initialization
402 402
403 403 # The next section should contain everything that was in ipmaker.
404 404 self.init_logstart()
405 405
406 406 # The following was in post_config_initialization
407 407 self.init_inspector()
408 408 # init_readline() must come before init_io(), because init_io uses
409 409 # readline related things.
410 410 self.init_readline()
411 411 # We save this here in case user code replaces raw_input, but it needs
412 412 # to be after init_readline(), because PyPy's readline works by replacing
413 413 # raw_input.
414 414 self.raw_input_original = raw_input
415 415 # init_completer must come after init_readline, because it needs to
416 416 # know whether readline is present or not system-wide to configure the
417 417 # completers, since the completion machinery can now operate
418 418 # independently of readline (e.g. over the network)
419 419 self.init_completer()
420 420 # TODO: init_io() needs to happen before init_traceback handlers
421 421 # because the traceback handlers hardcode the stdout/stderr streams.
422 422 # This logic in in debugger.Pdb and should eventually be changed.
423 423 self.init_io()
424 424 self.init_traceback_handlers(custom_exceptions)
425 425 self.init_prompts()
426 426 self.init_display_formatter()
427 427 self.init_display_pub()
428 428 self.init_displayhook()
429 429 self.init_reload_doctest()
430 430 self.init_magics()
431 431 self.init_pdb()
432 432 self.init_extension_manager()
433 433 self.init_plugin_manager()
434 434 self.init_payload()
435 435 self.hooks.late_startup_hook()
436 436 atexit.register(self.atexit_operations)
437 437
438 438 def get_ipython(self):
439 439 """Return the currently running IPython instance."""
440 440 return self
441 441
442 442 #-------------------------------------------------------------------------
443 443 # Trait changed handlers
444 444 #-------------------------------------------------------------------------
445 445
446 446 def _ipython_dir_changed(self, name, new):
447 447 if not os.path.isdir(new):
448 448 os.makedirs(new, mode = 0777)
449 449
450 450 def set_autoindent(self,value=None):
451 451 """Set the autoindent flag, checking for readline support.
452 452
453 453 If called with no arguments, it acts as a toggle."""
454 454
455 455 if not self.has_readline:
456 456 if os.name == 'posix':
457 457 warn("The auto-indent feature requires the readline library")
458 458 self.autoindent = 0
459 459 return
460 460 if value is None:
461 461 self.autoindent = not self.autoindent
462 462 else:
463 463 self.autoindent = value
464 464
465 465 #-------------------------------------------------------------------------
466 466 # init_* methods called by __init__
467 467 #-------------------------------------------------------------------------
468 468
469 469 def init_ipython_dir(self, ipython_dir):
470 470 if ipython_dir is not None:
471 471 self.ipython_dir = ipython_dir
472 472 return
473 473
474 474 self.ipython_dir = get_ipython_dir()
475 475
476 476 def init_profile_dir(self, profile_dir):
477 477 if profile_dir is not None:
478 478 self.profile_dir = profile_dir
479 479 return
480 480 self.profile_dir =\
481 481 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
482 482
483 483 def init_instance_attrs(self):
484 484 self.more = False
485 485
486 486 # command compiler
487 487 self.compile = CachingCompiler()
488 488
489 489 # Make an empty namespace, which extension writers can rely on both
490 490 # existing and NEVER being used by ipython itself. This gives them a
491 491 # convenient location for storing additional information and state
492 492 # their extensions may require, without fear of collisions with other
493 493 # ipython names that may develop later.
494 494 self.meta = Struct()
495 495
496 496 # Temporary files used for various purposes. Deleted at exit.
497 497 self.tempfiles = []
498 498
499 499 # Keep track of readline usage (later set by init_readline)
500 500 self.has_readline = False
501 501
502 502 # keep track of where we started running (mainly for crash post-mortem)
503 503 # This is not being used anywhere currently.
504 504 self.starting_dir = os.getcwdu()
505 505
506 506 # Indentation management
507 507 self.indent_current_nsp = 0
508 508
509 509 # Dict to track post-execution functions that have been registered
510 510 self._post_execute = {}
511 511
512 512 def init_environment(self):
513 513 """Any changes we need to make to the user's environment."""
514 514 pass
515 515
516 516 def init_encoding(self):
517 517 # Get system encoding at startup time. Certain terminals (like Emacs
518 518 # under Win32 have it set to None, and we need to have a known valid
519 519 # encoding to use in the raw_input() method
520 520 try:
521 521 self.stdin_encoding = sys.stdin.encoding or 'ascii'
522 522 except AttributeError:
523 523 self.stdin_encoding = 'ascii'
524 524
525 525 def init_syntax_highlighting(self):
526 526 # Python source parser/formatter for syntax highlighting
527 527 pyformat = PyColorize.Parser().format
528 528 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
529 529
530 530 def init_pushd_popd_magic(self):
531 531 # for pushd/popd management
532 532 try:
533 533 self.home_dir = get_home_dir()
534 534 except HomeDirError, msg:
535 535 fatal(msg)
536 536
537 537 self.dir_stack = []
538 538
539 539 def init_logger(self):
540 540 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
541 541 logmode='rotate')
542 542
543 543 def init_logstart(self):
544 544 """Initialize logging in case it was requested at the command line.
545 545 """
546 546 if self.logappend:
547 547 self.magic_logstart(self.logappend + ' append')
548 548 elif self.logfile:
549 549 self.magic_logstart(self.logfile)
550 550 elif self.logstart:
551 551 self.magic_logstart()
552 552
553 553 def init_builtins(self):
554 554 self.builtin_trap = BuiltinTrap(shell=self)
555 555
556 556 def init_inspector(self):
557 557 # Object inspector
558 558 self.inspector = oinspect.Inspector(oinspect.InspectColors,
559 559 PyColorize.ANSICodeColors,
560 560 'NoColor',
561 561 self.object_info_string_level)
562 562
563 563 def init_io(self):
564 564 # This will just use sys.stdout and sys.stderr. If you want to
565 565 # override sys.stdout and sys.stderr themselves, you need to do that
566 566 # *before* instantiating this class, because io holds onto
567 567 # references to the underlying streams.
568 568 if sys.platform == 'win32' and self.has_readline:
569 569 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
570 570 else:
571 571 io.stdout = io.IOStream(sys.stdout)
572 572 io.stderr = io.IOStream(sys.stderr)
573 573
574 574 def init_prompts(self):
575 575 # TODO: This is a pass for now because the prompts are managed inside
576 576 # the DisplayHook. Once there is a separate prompt manager, this
577 577 # will initialize that object and all prompt related information.
578 578 pass
579 579
580 580 def init_display_formatter(self):
581 581 self.display_formatter = DisplayFormatter(config=self.config)
582 582
583 583 def init_display_pub(self):
584 584 self.display_pub = self.display_pub_class(config=self.config)
585 585
586 586 def init_displayhook(self):
587 587 # Initialize displayhook, set in/out prompts and printing system
588 588 self.displayhook = self.displayhook_class(
589 589 config=self.config,
590 590 shell=self,
591 591 cache_size=self.cache_size,
592 592 input_sep = self.separate_in,
593 593 output_sep = self.separate_out,
594 594 output_sep2 = self.separate_out2,
595 595 ps1 = self.prompt_in1,
596 596 ps2 = self.prompt_in2,
597 597 ps_out = self.prompt_out,
598 598 pad_left = self.prompts_pad_left
599 599 )
600 600 # This is a context manager that installs/revmoes the displayhook at
601 601 # the appropriate time.
602 602 self.display_trap = DisplayTrap(hook=self.displayhook)
603 603
604 604 def init_reload_doctest(self):
605 605 # Do a proper resetting of doctest, including the necessary displayhook
606 606 # monkeypatching
607 607 try:
608 608 doctest_reload()
609 609 except ImportError:
610 610 warn("doctest module does not exist.")
611 611
612 612 #-------------------------------------------------------------------------
613 613 # Things related to injections into the sys module
614 614 #-------------------------------------------------------------------------
615 615
616 616 def save_sys_module_state(self):
617 617 """Save the state of hooks in the sys module.
618 618
619 619 This has to be called after self.user_ns is created.
620 620 """
621 621 self._orig_sys_module_state = {}
622 622 self._orig_sys_module_state['stdin'] = sys.stdin
623 623 self._orig_sys_module_state['stdout'] = sys.stdout
624 624 self._orig_sys_module_state['stderr'] = sys.stderr
625 625 self._orig_sys_module_state['excepthook'] = sys.excepthook
626 626 try:
627 627 self._orig_sys_modules_main_name = self.user_ns['__name__']
628 628 except KeyError:
629 629 pass
630 630
631 631 def restore_sys_module_state(self):
632 632 """Restore the state of the sys module."""
633 633 try:
634 634 for k, v in self._orig_sys_module_state.iteritems():
635 635 setattr(sys, k, v)
636 636 except AttributeError:
637 637 pass
638 638 # Reset what what done in self.init_sys_modules
639 639 try:
640 640 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
641 641 except (AttributeError, KeyError):
642 642 pass
643 643
644 644 #-------------------------------------------------------------------------
645 645 # Things related to hooks
646 646 #-------------------------------------------------------------------------
647 647
648 648 def init_hooks(self):
649 649 # hooks holds pointers used for user-side customizations
650 650 self.hooks = Struct()
651 651
652 652 self.strdispatchers = {}
653 653
654 654 # Set all default hooks, defined in the IPython.hooks module.
655 655 hooks = IPython.core.hooks
656 656 for hook_name in hooks.__all__:
657 657 # default hooks have priority 100, i.e. low; user hooks should have
658 658 # 0-100 priority
659 659 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
660 660
661 661 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
662 662 """set_hook(name,hook) -> sets an internal IPython hook.
663 663
664 664 IPython exposes some of its internal API as user-modifiable hooks. By
665 665 adding your function to one of these hooks, you can modify IPython's
666 666 behavior to call at runtime your own routines."""
667 667
668 668 # At some point in the future, this should validate the hook before it
669 669 # accepts it. Probably at least check that the hook takes the number
670 670 # of args it's supposed to.
671 671
672 672 f = types.MethodType(hook,self)
673 673
674 674 # check if the hook is for strdispatcher first
675 675 if str_key is not None:
676 676 sdp = self.strdispatchers.get(name, StrDispatch())
677 677 sdp.add_s(str_key, f, priority )
678 678 self.strdispatchers[name] = sdp
679 679 return
680 680 if re_key is not None:
681 681 sdp = self.strdispatchers.get(name, StrDispatch())
682 682 sdp.add_re(re.compile(re_key), f, priority )
683 683 self.strdispatchers[name] = sdp
684 684 return
685 685
686 686 dp = getattr(self.hooks, name, None)
687 687 if name not in IPython.core.hooks.__all__:
688 688 print "Warning! Hook '%s' is not one of %s" % \
689 689 (name, IPython.core.hooks.__all__ )
690 690 if not dp:
691 691 dp = IPython.core.hooks.CommandChainDispatcher()
692 692
693 693 try:
694 694 dp.add(f,priority)
695 695 except AttributeError:
696 696 # it was not commandchain, plain old func - replace
697 697 dp = f
698 698
699 699 setattr(self.hooks,name, dp)
700 700
701 701 def register_post_execute(self, func):
702 702 """Register a function for calling after code execution.
703 703 """
704 704 if not callable(func):
705 705 raise ValueError('argument %s must be callable' % func)
706 706 self._post_execute[func] = True
707 707
708 708 #-------------------------------------------------------------------------
709 709 # Things related to the "main" module
710 710 #-------------------------------------------------------------------------
711 711
712 712 def new_main_mod(self,ns=None):
713 713 """Return a new 'main' module object for user code execution.
714 714 """
715 715 main_mod = self._user_main_module
716 716 init_fakemod_dict(main_mod,ns)
717 717 return main_mod
718 718
719 719 def cache_main_mod(self,ns,fname):
720 720 """Cache a main module's namespace.
721 721
722 722 When scripts are executed via %run, we must keep a reference to the
723 723 namespace of their __main__ module (a FakeModule instance) around so
724 724 that Python doesn't clear it, rendering objects defined therein
725 725 useless.
726 726
727 727 This method keeps said reference in a private dict, keyed by the
728 728 absolute path of the module object (which corresponds to the script
729 729 path). This way, for multiple executions of the same script we only
730 730 keep one copy of the namespace (the last one), thus preventing memory
731 731 leaks from old references while allowing the objects from the last
732 732 execution to be accessible.
733 733
734 734 Note: we can not allow the actual FakeModule instances to be deleted,
735 735 because of how Python tears down modules (it hard-sets all their
736 736 references to None without regard for reference counts). This method
737 737 must therefore make a *copy* of the given namespace, to allow the
738 738 original module's __dict__ to be cleared and reused.
739 739
740 740
741 741 Parameters
742 742 ----------
743 743 ns : a namespace (a dict, typically)
744 744
745 745 fname : str
746 746 Filename associated with the namespace.
747 747
748 748 Examples
749 749 --------
750 750
751 751 In [10]: import IPython
752 752
753 753 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
754 754
755 755 In [12]: IPython.__file__ in _ip._main_ns_cache
756 756 Out[12]: True
757 757 """
758 758 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
759 759
760 760 def clear_main_mod_cache(self):
761 761 """Clear the cache of main modules.
762 762
763 763 Mainly for use by utilities like %reset.
764 764
765 765 Examples
766 766 --------
767 767
768 768 In [15]: import IPython
769 769
770 770 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
771 771
772 772 In [17]: len(_ip._main_ns_cache) > 0
773 773 Out[17]: True
774 774
775 775 In [18]: _ip.clear_main_mod_cache()
776 776
777 777 In [19]: len(_ip._main_ns_cache) == 0
778 778 Out[19]: True
779 779 """
780 780 self._main_ns_cache.clear()
781 781
782 782 #-------------------------------------------------------------------------
783 783 # Things related to debugging
784 784 #-------------------------------------------------------------------------
785 785
786 786 def init_pdb(self):
787 787 # Set calling of pdb on exceptions
788 788 # self.call_pdb is a property
789 789 self.call_pdb = self.pdb
790 790
791 791 def _get_call_pdb(self):
792 792 return self._call_pdb
793 793
794 794 def _set_call_pdb(self,val):
795 795
796 796 if val not in (0,1,False,True):
797 797 raise ValueError,'new call_pdb value must be boolean'
798 798
799 799 # store value in instance
800 800 self._call_pdb = val
801 801
802 802 # notify the actual exception handlers
803 803 self.InteractiveTB.call_pdb = val
804 804
805 805 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
806 806 'Control auto-activation of pdb at exceptions')
807 807
808 808 def debugger(self,force=False):
809 809 """Call the pydb/pdb debugger.
810 810
811 811 Keywords:
812 812
813 813 - force(False): by default, this routine checks the instance call_pdb
814 814 flag and does not actually invoke the debugger if the flag is false.
815 815 The 'force' option forces the debugger to activate even if the flag
816 816 is false.
817 817 """
818 818
819 819 if not (force or self.call_pdb):
820 820 return
821 821
822 822 if not hasattr(sys,'last_traceback'):
823 823 error('No traceback has been produced, nothing to debug.')
824 824 return
825 825
826 826 # use pydb if available
827 827 if debugger.has_pydb:
828 828 from pydb import pm
829 829 else:
830 830 # fallback to our internal debugger
831 831 pm = lambda : self.InteractiveTB.debugger(force=True)
832 832
833 833 with self.readline_no_record:
834 834 pm()
835 835
836 836 #-------------------------------------------------------------------------
837 837 # Things related to IPython's various namespaces
838 838 #-------------------------------------------------------------------------
839 839
840 840 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
841 841 # Create the namespace where the user will operate. user_ns is
842 842 # normally the only one used, and it is passed to the exec calls as
843 843 # the locals argument. But we do carry a user_global_ns namespace
844 844 # given as the exec 'globals' argument, This is useful in embedding
845 845 # situations where the ipython shell opens in a context where the
846 846 # distinction between locals and globals is meaningful. For
847 847 # non-embedded contexts, it is just the same object as the user_ns dict.
848 848
849 849 # FIXME. For some strange reason, __builtins__ is showing up at user
850 850 # level as a dict instead of a module. This is a manual fix, but I
851 851 # should really track down where the problem is coming from. Alex
852 852 # Schmolck reported this problem first.
853 853
854 854 # A useful post by Alex Martelli on this topic:
855 855 # Re: inconsistent value from __builtins__
856 856 # Von: Alex Martelli <aleaxit@yahoo.com>
857 857 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
858 858 # Gruppen: comp.lang.python
859 859
860 860 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
861 861 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
862 862 # > <type 'dict'>
863 863 # > >>> print type(__builtins__)
864 864 # > <type 'module'>
865 865 # > Is this difference in return value intentional?
866 866
867 867 # Well, it's documented that '__builtins__' can be either a dictionary
868 868 # or a module, and it's been that way for a long time. Whether it's
869 869 # intentional (or sensible), I don't know. In any case, the idea is
870 870 # that if you need to access the built-in namespace directly, you
871 871 # should start with "import __builtin__" (note, no 's') which will
872 872 # definitely give you a module. Yeah, it's somewhat confusing:-(.
873 873
874 874 # These routines return properly built dicts as needed by the rest of
875 875 # the code, and can also be used by extension writers to generate
876 876 # properly initialized namespaces.
877 877 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
878 878 user_global_ns)
879 879
880 880 # Assign namespaces
881 881 # This is the namespace where all normal user variables live
882 882 self.user_ns = user_ns
883 883 self.user_global_ns = user_global_ns
884 884
885 885 # An auxiliary namespace that checks what parts of the user_ns were
886 886 # loaded at startup, so we can list later only variables defined in
887 887 # actual interactive use. Since it is always a subset of user_ns, it
888 888 # doesn't need to be separately tracked in the ns_table.
889 889 self.user_ns_hidden = {}
890 890
891 891 # A namespace to keep track of internal data structures to prevent
892 892 # them from cluttering user-visible stuff. Will be updated later
893 893 self.internal_ns = {}
894 894
895 895 # Now that FakeModule produces a real module, we've run into a nasty
896 896 # problem: after script execution (via %run), the module where the user
897 897 # code ran is deleted. Now that this object is a true module (needed
898 898 # so docetst and other tools work correctly), the Python module
899 899 # teardown mechanism runs over it, and sets to None every variable
900 900 # present in that module. Top-level references to objects from the
901 901 # script survive, because the user_ns is updated with them. However,
902 902 # calling functions defined in the script that use other things from
903 903 # the script will fail, because the function's closure had references
904 904 # to the original objects, which are now all None. So we must protect
905 905 # these modules from deletion by keeping a cache.
906 906 #
907 907 # To avoid keeping stale modules around (we only need the one from the
908 908 # last run), we use a dict keyed with the full path to the script, so
909 909 # only the last version of the module is held in the cache. Note,
910 910 # however, that we must cache the module *namespace contents* (their
911 911 # __dict__). Because if we try to cache the actual modules, old ones
912 912 # (uncached) could be destroyed while still holding references (such as
913 913 # those held by GUI objects that tend to be long-lived)>
914 914 #
915 915 # The %reset command will flush this cache. See the cache_main_mod()
916 916 # and clear_main_mod_cache() methods for details on use.
917 917
918 918 # This is the cache used for 'main' namespaces
919 919 self._main_ns_cache = {}
920 920 # And this is the single instance of FakeModule whose __dict__ we keep
921 921 # copying and clearing for reuse on each %run
922 922 self._user_main_module = FakeModule()
923 923
924 924 # A table holding all the namespaces IPython deals with, so that
925 925 # introspection facilities can search easily.
926 926 self.ns_table = {'user':user_ns,
927 927 'user_global':user_global_ns,
928 928 'internal':self.internal_ns,
929 929 'builtin':builtin_mod.__dict__
930 930 }
931 931
932 932 # Similarly, track all namespaces where references can be held and that
933 933 # we can safely clear (so it can NOT include builtin). This one can be
934 934 # a simple list. Note that the main execution namespaces, user_ns and
935 935 # user_global_ns, can NOT be listed here, as clearing them blindly
936 936 # causes errors in object __del__ methods. Instead, the reset() method
937 937 # clears them manually and carefully.
938 938 self.ns_refs_table = [ self.user_ns_hidden,
939 939 self.internal_ns, self._main_ns_cache ]
940 940
941 941 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
942 942 """Return a valid local and global user interactive namespaces.
943 943
944 944 This builds a dict with the minimal information needed to operate as a
945 945 valid IPython user namespace, which you can pass to the various
946 946 embedding classes in ipython. The default implementation returns the
947 947 same dict for both the locals and the globals to allow functions to
948 948 refer to variables in the namespace. Customized implementations can
949 949 return different dicts. The locals dictionary can actually be anything
950 950 following the basic mapping protocol of a dict, but the globals dict
951 951 must be a true dict, not even a subclass. It is recommended that any
952 952 custom object for the locals namespace synchronize with the globals
953 953 dict somehow.
954 954
955 955 Raises TypeError if the provided globals namespace is not a true dict.
956 956
957 957 Parameters
958 958 ----------
959 959 user_ns : dict-like, optional
960 960 The current user namespace. The items in this namespace should
961 961 be included in the output. If None, an appropriate blank
962 962 namespace should be created.
963 963 user_global_ns : dict, optional
964 964 The current user global namespace. The items in this namespace
965 965 should be included in the output. If None, an appropriate
966 966 blank namespace should be created.
967 967
968 968 Returns
969 969 -------
970 970 A pair of dictionary-like object to be used as the local namespace
971 971 of the interpreter and a dict to be used as the global namespace.
972 972 """
973 973
974 974
975 975 # We must ensure that __builtin__ (without the final 's') is always
976 976 # available and pointing to the __builtin__ *module*. For more details:
977 977 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
978 978
979 979 if user_ns is None:
980 980 # Set __name__ to __main__ to better match the behavior of the
981 981 # normal interpreter.
982 982 user_ns = {'__name__' :'__main__',
983 983 py3compat.builtin_mod_name: builtin_mod,
984 984 '__builtins__' : builtin_mod,
985 985 }
986 986 else:
987 987 user_ns.setdefault('__name__','__main__')
988 988 user_ns.setdefault(py3compat.builtin_mod_name,builtin_mod)
989 989 user_ns.setdefault('__builtins__',builtin_mod)
990 990
991 991 if user_global_ns is None:
992 992 user_global_ns = user_ns
993 993 if type(user_global_ns) is not dict:
994 994 raise TypeError("user_global_ns must be a true dict; got %r"
995 995 % type(user_global_ns))
996 996
997 997 return user_ns, user_global_ns
998 998
999 999 def init_sys_modules(self):
1000 1000 # We need to insert into sys.modules something that looks like a
1001 1001 # module but which accesses the IPython namespace, for shelve and
1002 1002 # pickle to work interactively. Normally they rely on getting
1003 1003 # everything out of __main__, but for embedding purposes each IPython
1004 1004 # instance has its own private namespace, so we can't go shoving
1005 1005 # everything into __main__.
1006 1006
1007 1007 # note, however, that we should only do this for non-embedded
1008 1008 # ipythons, which really mimic the __main__.__dict__ with their own
1009 1009 # namespace. Embedded instances, on the other hand, should not do
1010 1010 # this because they need to manage the user local/global namespaces
1011 1011 # only, but they live within a 'normal' __main__ (meaning, they
1012 1012 # shouldn't overtake the execution environment of the script they're
1013 1013 # embedded in).
1014 1014
1015 1015 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1016 1016
1017 1017 try:
1018 1018 main_name = self.user_ns['__name__']
1019 1019 except KeyError:
1020 1020 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1021 1021 else:
1022 1022 sys.modules[main_name] = FakeModule(self.user_ns)
1023 1023
1024 1024 def init_user_ns(self):
1025 1025 """Initialize all user-visible namespaces to their minimum defaults.
1026 1026
1027 1027 Certain history lists are also initialized here, as they effectively
1028 1028 act as user namespaces.
1029 1029
1030 1030 Notes
1031 1031 -----
1032 1032 All data structures here are only filled in, they are NOT reset by this
1033 1033 method. If they were not empty before, data will simply be added to
1034 1034 therm.
1035 1035 """
1036 1036 # This function works in two parts: first we put a few things in
1037 1037 # user_ns, and we sync that contents into user_ns_hidden so that these
1038 1038 # initial variables aren't shown by %who. After the sync, we add the
1039 1039 # rest of what we *do* want the user to see with %who even on a new
1040 1040 # session (probably nothing, so theye really only see their own stuff)
1041 1041
1042 1042 # The user dict must *always* have a __builtin__ reference to the
1043 1043 # Python standard __builtin__ namespace, which must be imported.
1044 1044 # This is so that certain operations in prompt evaluation can be
1045 1045 # reliably executed with builtins. Note that we can NOT use
1046 1046 # __builtins__ (note the 's'), because that can either be a dict or a
1047 1047 # module, and can even mutate at runtime, depending on the context
1048 1048 # (Python makes no guarantees on it). In contrast, __builtin__ is
1049 1049 # always a module object, though it must be explicitly imported.
1050 1050
1051 1051 # For more details:
1052 1052 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1053 1053 ns = dict(__builtin__ = builtin_mod)
1054 1054
1055 1055 # Put 'help' in the user namespace
1056 1056 try:
1057 1057 from site import _Helper
1058 1058 ns['help'] = _Helper()
1059 1059 except ImportError:
1060 1060 warn('help() not available - check site.py')
1061 1061
1062 1062 # make global variables for user access to the histories
1063 1063 ns['_ih'] = self.history_manager.input_hist_parsed
1064 1064 ns['_oh'] = self.history_manager.output_hist
1065 1065 ns['_dh'] = self.history_manager.dir_hist
1066 1066
1067 1067 ns['_sh'] = shadowns
1068 1068
1069 1069 # user aliases to input and output histories. These shouldn't show up
1070 1070 # in %who, as they can have very large reprs.
1071 1071 ns['In'] = self.history_manager.input_hist_parsed
1072 1072 ns['Out'] = self.history_manager.output_hist
1073 1073
1074 1074 # Store myself as the public api!!!
1075 1075 ns['get_ipython'] = self.get_ipython
1076 1076
1077 1077 ns['exit'] = self.exiter
1078 1078 ns['quit'] = self.exiter
1079 1079
1080 1080 # Sync what we've added so far to user_ns_hidden so these aren't seen
1081 1081 # by %who
1082 1082 self.user_ns_hidden.update(ns)
1083 1083
1084 1084 # Anything put into ns now would show up in %who. Think twice before
1085 1085 # putting anything here, as we really want %who to show the user their
1086 1086 # stuff, not our variables.
1087 1087
1088 1088 # Finally, update the real user's namespace
1089 1089 self.user_ns.update(ns)
1090 1090
1091 1091 def reset(self, new_session=True):
1092 1092 """Clear all internal namespaces, and attempt to release references to
1093 1093 user objects.
1094 1094
1095 1095 If new_session is True, a new history session will be opened.
1096 1096 """
1097 1097 # Clear histories
1098 1098 self.history_manager.reset(new_session)
1099 1099 # Reset counter used to index all histories
1100 1100 if new_session:
1101 1101 self.execution_count = 1
1102 1102
1103 1103 # Flush cached output items
1104 1104 if self.displayhook.do_full_cache:
1105 1105 self.displayhook.flush()
1106 1106
1107 1107 # Restore the user namespaces to minimal usability
1108 1108 for ns in self.ns_refs_table:
1109 1109 ns.clear()
1110 1110
1111 1111 # The main execution namespaces must be cleared very carefully,
1112 1112 # skipping the deletion of the builtin-related keys, because doing so
1113 1113 # would cause errors in many object's __del__ methods.
1114 1114 for ns in [self.user_ns, self.user_global_ns]:
1115 1115 drop_keys = set(ns.keys())
1116 1116 drop_keys.discard('__builtin__')
1117 1117 drop_keys.discard('__builtins__')
1118 1118 for k in drop_keys:
1119 1119 del ns[k]
1120 1120
1121 1121 # Restore the user namespaces to minimal usability
1122 1122 self.init_user_ns()
1123 1123
1124 1124 # Restore the default and user aliases
1125 1125 self.alias_manager.clear_aliases()
1126 1126 self.alias_manager.init_aliases()
1127 1127
1128 1128 # Flush the private list of module references kept for script
1129 1129 # execution protection
1130 1130 self.clear_main_mod_cache()
1131 1131
1132 1132 # Clear out the namespace from the last %run
1133 1133 self.new_main_mod()
1134 1134
1135 1135 def del_var(self, varname, by_name=False):
1136 1136 """Delete a variable from the various namespaces, so that, as
1137 1137 far as possible, we're not keeping any hidden references to it.
1138 1138
1139 1139 Parameters
1140 1140 ----------
1141 1141 varname : str
1142 1142 The name of the variable to delete.
1143 1143 by_name : bool
1144 1144 If True, delete variables with the given name in each
1145 1145 namespace. If False (default), find the variable in the user
1146 1146 namespace, and delete references to it.
1147 1147 """
1148 1148 if varname in ('__builtin__', '__builtins__'):
1149 1149 raise ValueError("Refusing to delete %s" % varname)
1150 1150 ns_refs = self.ns_refs_table + [self.user_ns,
1151 1151 self.user_global_ns, self._user_main_module.__dict__] +\
1152 1152 self._main_ns_cache.values()
1153 1153
1154 1154 if by_name: # Delete by name
1155 1155 for ns in ns_refs:
1156 1156 try:
1157 1157 del ns[varname]
1158 1158 except KeyError:
1159 1159 pass
1160 1160 else: # Delete by object
1161 1161 try:
1162 1162 obj = self.user_ns[varname]
1163 1163 except KeyError:
1164 1164 raise NameError("name '%s' is not defined" % varname)
1165 1165 # Also check in output history
1166 1166 ns_refs.append(self.history_manager.output_hist)
1167 1167 for ns in ns_refs:
1168 1168 to_delete = [n for n, o in ns.iteritems() if o is obj]
1169 1169 for name in to_delete:
1170 1170 del ns[name]
1171 1171
1172 1172 # displayhook keeps extra references, but not in a dictionary
1173 1173 for name in ('_', '__', '___'):
1174 1174 if getattr(self.displayhook, name) is obj:
1175 1175 setattr(self.displayhook, name, None)
1176 1176
1177 1177 def reset_selective(self, regex=None):
1178 1178 """Clear selective variables from internal namespaces based on a
1179 1179 specified regular expression.
1180 1180
1181 1181 Parameters
1182 1182 ----------
1183 1183 regex : string or compiled pattern, optional
1184 1184 A regular expression pattern that will be used in searching
1185 1185 variable names in the users namespaces.
1186 1186 """
1187 1187 if regex is not None:
1188 1188 try:
1189 1189 m = re.compile(regex)
1190 1190 except TypeError:
1191 1191 raise TypeError('regex must be a string or compiled pattern')
1192 1192 # Search for keys in each namespace that match the given regex
1193 1193 # If a match is found, delete the key/value pair.
1194 1194 for ns in self.ns_refs_table:
1195 1195 for var in ns:
1196 1196 if m.search(var):
1197 1197 del ns[var]
1198 1198
1199 1199 def push(self, variables, interactive=True):
1200 1200 """Inject a group of variables into the IPython user namespace.
1201 1201
1202 1202 Parameters
1203 1203 ----------
1204 1204 variables : dict, str or list/tuple of str
1205 1205 The variables to inject into the user's namespace. If a dict, a
1206 1206 simple update is done. If a str, the string is assumed to have
1207 1207 variable names separated by spaces. A list/tuple of str can also
1208 1208 be used to give the variable names. If just the variable names are
1209 1209 give (list/tuple/str) then the variable values looked up in the
1210 1210 callers frame.
1211 1211 interactive : bool
1212 1212 If True (default), the variables will be listed with the ``who``
1213 1213 magic.
1214 1214 """
1215 1215 vdict = None
1216 1216
1217 1217 # We need a dict of name/value pairs to do namespace updates.
1218 1218 if isinstance(variables, dict):
1219 1219 vdict = variables
1220 1220 elif isinstance(variables, (basestring, list, tuple)):
1221 1221 if isinstance(variables, basestring):
1222 1222 vlist = variables.split()
1223 1223 else:
1224 1224 vlist = variables
1225 1225 vdict = {}
1226 1226 cf = sys._getframe(1)
1227 1227 for name in vlist:
1228 1228 try:
1229 1229 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1230 1230 except:
1231 1231 print ('Could not get variable %s from %s' %
1232 1232 (name,cf.f_code.co_name))
1233 1233 else:
1234 1234 raise ValueError('variables must be a dict/str/list/tuple')
1235 1235
1236 1236 # Propagate variables to user namespace
1237 1237 self.user_ns.update(vdict)
1238 1238
1239 1239 # And configure interactive visibility
1240 1240 config_ns = self.user_ns_hidden
1241 1241 if interactive:
1242 1242 for name, val in vdict.iteritems():
1243 1243 config_ns.pop(name, None)
1244 1244 else:
1245 1245 for name,val in vdict.iteritems():
1246 1246 config_ns[name] = val
1247 1247
1248 1248 #-------------------------------------------------------------------------
1249 1249 # Things related to object introspection
1250 1250 #-------------------------------------------------------------------------
1251 1251
1252 1252 def _ofind(self, oname, namespaces=None):
1253 1253 """Find an object in the available namespaces.
1254 1254
1255 1255 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1256 1256
1257 1257 Has special code to detect magic functions.
1258 1258 """
1259 1259 oname = oname.strip()
1260 1260 #print '1- oname: <%r>' % oname # dbg
1261 1261 if not py3compat.isidentifier(oname.lstrip(ESC_MAGIC), dotted=True):
1262 1262 print 'Python identifiers can only contain ascii characters.'
1263 1263 return dict(found=False)
1264 1264
1265 1265 alias_ns = None
1266 1266 if namespaces is None:
1267 1267 # Namespaces to search in:
1268 1268 # Put them in a list. The order is important so that we
1269 1269 # find things in the same order that Python finds them.
1270 1270 namespaces = [ ('Interactive', self.user_ns),
1271 1271 ('IPython internal', self.internal_ns),
1272 1272 ('Python builtin', builtin_mod.__dict__),
1273 1273 ('Alias', self.alias_manager.alias_table),
1274 1274 ]
1275 1275 alias_ns = self.alias_manager.alias_table
1276 1276
1277 1277 # initialize results to 'null'
1278 1278 found = False; obj = None; ospace = None; ds = None;
1279 1279 ismagic = False; isalias = False; parent = None
1280 1280
1281 1281 # We need to special-case 'print', which as of python2.6 registers as a
1282 1282 # function but should only be treated as one if print_function was
1283 1283 # loaded with a future import. In this case, just bail.
1284 1284 if (oname == 'print' and not py3compat.PY3 and not \
1285 1285 (self.compile.compiler_flags & __future__.CO_FUTURE_PRINT_FUNCTION)):
1286 1286 return {'found':found, 'obj':obj, 'namespace':ospace,
1287 1287 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1288 1288
1289 1289 # Look for the given name by splitting it in parts. If the head is
1290 1290 # found, then we look for all the remaining parts as members, and only
1291 1291 # declare success if we can find them all.
1292 1292 oname_parts = oname.split('.')
1293 1293 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1294 1294 for nsname,ns in namespaces:
1295 1295 try:
1296 1296 obj = ns[oname_head]
1297 1297 except KeyError:
1298 1298 continue
1299 1299 else:
1300 1300 #print 'oname_rest:', oname_rest # dbg
1301 1301 for part in oname_rest:
1302 1302 try:
1303 1303 parent = obj
1304 1304 obj = getattr(obj,part)
1305 1305 except:
1306 1306 # Blanket except b/c some badly implemented objects
1307 1307 # allow __getattr__ to raise exceptions other than
1308 1308 # AttributeError, which then crashes IPython.
1309 1309 break
1310 1310 else:
1311 1311 # If we finish the for loop (no break), we got all members
1312 1312 found = True
1313 1313 ospace = nsname
1314 1314 if ns == alias_ns:
1315 1315 isalias = True
1316 1316 break # namespace loop
1317 1317
1318 1318 # Try to see if it's magic
1319 1319 if not found:
1320 1320 if oname.startswith(ESC_MAGIC):
1321 1321 oname = oname[1:]
1322 1322 obj = getattr(self,'magic_'+oname,None)
1323 1323 if obj is not None:
1324 1324 found = True
1325 1325 ospace = 'IPython internal'
1326 1326 ismagic = True
1327 1327
1328 1328 # Last try: special-case some literals like '', [], {}, etc:
1329 1329 if not found and oname_head in ["''",'""','[]','{}','()']:
1330 1330 obj = eval(oname_head)
1331 1331 found = True
1332 1332 ospace = 'Interactive'
1333 1333
1334 1334 return {'found':found, 'obj':obj, 'namespace':ospace,
1335 1335 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1336 1336
1337 1337 def _ofind_property(self, oname, info):
1338 1338 """Second part of object finding, to look for property details."""
1339 1339 if info.found:
1340 1340 # Get the docstring of the class property if it exists.
1341 1341 path = oname.split('.')
1342 1342 root = '.'.join(path[:-1])
1343 1343 if info.parent is not None:
1344 1344 try:
1345 1345 target = getattr(info.parent, '__class__')
1346 1346 # The object belongs to a class instance.
1347 1347 try:
1348 1348 target = getattr(target, path[-1])
1349 1349 # The class defines the object.
1350 1350 if isinstance(target, property):
1351 1351 oname = root + '.__class__.' + path[-1]
1352 1352 info = Struct(self._ofind(oname))
1353 1353 except AttributeError: pass
1354 1354 except AttributeError: pass
1355 1355
1356 1356 # We return either the new info or the unmodified input if the object
1357 1357 # hadn't been found
1358 1358 return info
1359 1359
1360 1360 def _object_find(self, oname, namespaces=None):
1361 1361 """Find an object and return a struct with info about it."""
1362 1362 inf = Struct(self._ofind(oname, namespaces))
1363 1363 return Struct(self._ofind_property(oname, inf))
1364 1364
1365 1365 def _inspect(self, meth, oname, namespaces=None, **kw):
1366 1366 """Generic interface to the inspector system.
1367 1367
1368 1368 This function is meant to be called by pdef, pdoc & friends."""
1369 1369 info = self._object_find(oname)
1370 1370 if info.found:
1371 1371 pmethod = getattr(self.inspector, meth)
1372 1372 formatter = format_screen if info.ismagic else None
1373 1373 if meth == 'pdoc':
1374 1374 pmethod(info.obj, oname, formatter)
1375 1375 elif meth == 'pinfo':
1376 1376 pmethod(info.obj, oname, formatter, info, **kw)
1377 1377 else:
1378 1378 pmethod(info.obj, oname)
1379 1379 else:
1380 1380 print 'Object `%s` not found.' % oname
1381 1381 return 'not found' # so callers can take other action
1382 1382
1383 1383 def object_inspect(self, oname):
1384 1384 with self.builtin_trap:
1385 1385 info = self._object_find(oname)
1386 1386 if info.found:
1387 1387 return self.inspector.info(info.obj, oname, info=info)
1388 1388 else:
1389 1389 return oinspect.object_info(name=oname, found=False)
1390 1390
1391 1391 #-------------------------------------------------------------------------
1392 1392 # Things related to history management
1393 1393 #-------------------------------------------------------------------------
1394 1394
1395 1395 def init_history(self):
1396 1396 """Sets up the command history, and starts regular autosaves."""
1397 1397 self.history_manager = HistoryManager(shell=self, config=self.config)
1398 1398
1399 1399 #-------------------------------------------------------------------------
1400 1400 # Things related to exception handling and tracebacks (not debugging)
1401 1401 #-------------------------------------------------------------------------
1402 1402
1403 1403 def init_traceback_handlers(self, custom_exceptions):
1404 1404 # Syntax error handler.
1405 1405 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1406 1406
1407 1407 # The interactive one is initialized with an offset, meaning we always
1408 1408 # want to remove the topmost item in the traceback, which is our own
1409 1409 # internal code. Valid modes: ['Plain','Context','Verbose']
1410 1410 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1411 1411 color_scheme='NoColor',
1412 1412 tb_offset = 1,
1413 1413 check_cache=self.compile.check_cache)
1414 1414
1415 1415 # The instance will store a pointer to the system-wide exception hook,
1416 1416 # so that runtime code (such as magics) can access it. This is because
1417 1417 # during the read-eval loop, it may get temporarily overwritten.
1418 1418 self.sys_excepthook = sys.excepthook
1419 1419
1420 1420 # and add any custom exception handlers the user may have specified
1421 1421 self.set_custom_exc(*custom_exceptions)
1422 1422
1423 1423 # Set the exception mode
1424 1424 self.InteractiveTB.set_mode(mode=self.xmode)
1425 1425
1426 1426 def set_custom_exc(self, exc_tuple, handler):
1427 1427 """set_custom_exc(exc_tuple,handler)
1428 1428
1429 1429 Set a custom exception handler, which will be called if any of the
1430 1430 exceptions in exc_tuple occur in the mainloop (specifically, in the
1431 1431 run_code() method.
1432 1432
1433 1433 Inputs:
1434 1434
1435 1435 - exc_tuple: a *tuple* of valid exceptions to call the defined
1436 1436 handler for. It is very important that you use a tuple, and NOT A
1437 1437 LIST here, because of the way Python's except statement works. If
1438 1438 you only want to trap a single exception, use a singleton tuple:
1439 1439
1440 1440 exc_tuple == (MyCustomException,)
1441 1441
1442 1442 - handler: this must be defined as a function with the following
1443 1443 basic interface::
1444 1444
1445 1445 def my_handler(self, etype, value, tb, tb_offset=None)
1446 1446 ...
1447 1447 # The return value must be
1448 1448 return structured_traceback
1449 1449
1450 1450 This will be made into an instance method (via types.MethodType)
1451 1451 of IPython itself, and it will be called if any of the exceptions
1452 1452 listed in the exc_tuple are caught. If the handler is None, an
1453 1453 internal basic one is used, which just prints basic info.
1454 1454
1455 1455 WARNING: by putting in your own exception handler into IPython's main
1456 1456 execution loop, you run a very good chance of nasty crashes. This
1457 1457 facility should only be used if you really know what you are doing."""
1458 1458
1459 1459 assert type(exc_tuple)==type(()) , \
1460 1460 "The custom exceptions must be given AS A TUPLE."
1461 1461
1462 1462 def dummy_handler(self,etype,value,tb):
1463 1463 print '*** Simple custom exception handler ***'
1464 1464 print 'Exception type :',etype
1465 1465 print 'Exception value:',value
1466 1466 print 'Traceback :',tb
1467 1467 #print 'Source code :','\n'.join(self.buffer)
1468 1468
1469 1469 if handler is None: handler = dummy_handler
1470 1470
1471 1471 self.CustomTB = types.MethodType(handler,self)
1472 1472 self.custom_exceptions = exc_tuple
1473 1473
1474 1474 def excepthook(self, etype, value, tb):
1475 1475 """One more defense for GUI apps that call sys.excepthook.
1476 1476
1477 1477 GUI frameworks like wxPython trap exceptions and call
1478 1478 sys.excepthook themselves. I guess this is a feature that
1479 1479 enables them to keep running after exceptions that would
1480 1480 otherwise kill their mainloop. This is a bother for IPython
1481 1481 which excepts to catch all of the program exceptions with a try:
1482 1482 except: statement.
1483 1483
1484 1484 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1485 1485 any app directly invokes sys.excepthook, it will look to the user like
1486 1486 IPython crashed. In order to work around this, we can disable the
1487 1487 CrashHandler and replace it with this excepthook instead, which prints a
1488 1488 regular traceback using our InteractiveTB. In this fashion, apps which
1489 1489 call sys.excepthook will generate a regular-looking exception from
1490 1490 IPython, and the CrashHandler will only be triggered by real IPython
1491 1491 crashes.
1492 1492
1493 1493 This hook should be used sparingly, only in places which are not likely
1494 1494 to be true IPython errors.
1495 1495 """
1496 1496 self.showtraceback((etype,value,tb),tb_offset=0)
1497 1497
1498 1498 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1499 1499 exception_only=False):
1500 1500 """Display the exception that just occurred.
1501 1501
1502 1502 If nothing is known about the exception, this is the method which
1503 1503 should be used throughout the code for presenting user tracebacks,
1504 1504 rather than directly invoking the InteractiveTB object.
1505 1505
1506 1506 A specific showsyntaxerror() also exists, but this method can take
1507 1507 care of calling it if needed, so unless you are explicitly catching a
1508 1508 SyntaxError exception, don't try to analyze the stack manually and
1509 1509 simply call this method."""
1510 1510
1511 1511 try:
1512 1512 if exc_tuple is None:
1513 1513 etype, value, tb = sys.exc_info()
1514 1514 else:
1515 1515 etype, value, tb = exc_tuple
1516 1516
1517 1517 if etype is None:
1518 1518 if hasattr(sys, 'last_type'):
1519 1519 etype, value, tb = sys.last_type, sys.last_value, \
1520 1520 sys.last_traceback
1521 1521 else:
1522 1522 self.write_err('No traceback available to show.\n')
1523 1523 return
1524 1524
1525 1525 if etype is SyntaxError:
1526 1526 # Though this won't be called by syntax errors in the input
1527 1527 # line, there may be SyntaxError cases with imported code.
1528 1528 self.showsyntaxerror(filename)
1529 1529 elif etype is UsageError:
1530 1530 print "UsageError:", value
1531 1531 else:
1532 1532 # WARNING: these variables are somewhat deprecated and not
1533 1533 # necessarily safe to use in a threaded environment, but tools
1534 1534 # like pdb depend on their existence, so let's set them. If we
1535 1535 # find problems in the field, we'll need to revisit their use.
1536 1536 sys.last_type = etype
1537 1537 sys.last_value = value
1538 1538 sys.last_traceback = tb
1539 1539 if etype in self.custom_exceptions:
1540 1540 # FIXME: Old custom traceback objects may just return a
1541 1541 # string, in that case we just put it into a list
1542 1542 stb = self.CustomTB(etype, value, tb, tb_offset)
1543 1543 if isinstance(ctb, basestring):
1544 1544 stb = [stb]
1545 1545 else:
1546 1546 if exception_only:
1547 1547 stb = ['An exception has occurred, use %tb to see '
1548 1548 'the full traceback.\n']
1549 1549 stb.extend(self.InteractiveTB.get_exception_only(etype,
1550 1550 value))
1551 1551 else:
1552 1552 stb = self.InteractiveTB.structured_traceback(etype,
1553 1553 value, tb, tb_offset=tb_offset)
1554 1554
1555 1555 if self.call_pdb:
1556 1556 # drop into debugger
1557 1557 self.debugger(force=True)
1558 1558
1559 1559 # Actually show the traceback
1560 1560 self._showtraceback(etype, value, stb)
1561 1561
1562 1562 except KeyboardInterrupt:
1563 1563 self.write_err("\nKeyboardInterrupt\n")
1564 1564
1565 1565 def _showtraceback(self, etype, evalue, stb):
1566 1566 """Actually show a traceback.
1567 1567
1568 1568 Subclasses may override this method to put the traceback on a different
1569 1569 place, like a side channel.
1570 1570 """
1571 1571 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1572 1572
1573 1573 def showsyntaxerror(self, filename=None):
1574 1574 """Display the syntax error that just occurred.
1575 1575
1576 1576 This doesn't display a stack trace because there isn't one.
1577 1577
1578 1578 If a filename is given, it is stuffed in the exception instead
1579 1579 of what was there before (because Python's parser always uses
1580 1580 "<string>" when reading from a string).
1581 1581 """
1582 1582 etype, value, last_traceback = sys.exc_info()
1583 1583
1584 1584 # See note about these variables in showtraceback() above
1585 1585 sys.last_type = etype
1586 1586 sys.last_value = value
1587 1587 sys.last_traceback = last_traceback
1588 1588
1589 1589 if filename and etype is SyntaxError:
1590 1590 # Work hard to stuff the correct filename in the exception
1591 1591 try:
1592 1592 msg, (dummy_filename, lineno, offset, line) = value
1593 1593 except:
1594 1594 # Not the format we expect; leave it alone
1595 1595 pass
1596 1596 else:
1597 1597 # Stuff in the right filename
1598 1598 try:
1599 1599 # Assume SyntaxError is a class exception
1600 1600 value = SyntaxError(msg, (filename, lineno, offset, line))
1601 1601 except:
1602 1602 # If that failed, assume SyntaxError is a string
1603 1603 value = msg, (filename, lineno, offset, line)
1604 1604 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1605 1605 self._showtraceback(etype, value, stb)
1606 1606
1607 1607 # This is overridden in TerminalInteractiveShell to show a message about
1608 1608 # the %paste magic.
1609 1609 def showindentationerror(self):
1610 1610 """Called by run_cell when there's an IndentationError in code entered
1611 1611 at the prompt.
1612 1612
1613 1613 This is overridden in TerminalInteractiveShell to show a message about
1614 1614 the %paste magic."""
1615 1615 self.showsyntaxerror()
1616 1616
1617 1617 #-------------------------------------------------------------------------
1618 1618 # Things related to readline
1619 1619 #-------------------------------------------------------------------------
1620 1620
1621 1621 def init_readline(self):
1622 1622 """Command history completion/saving/reloading."""
1623 1623
1624 1624 if self.readline_use:
1625 1625 import IPython.utils.rlineimpl as readline
1626 1626
1627 1627 self.rl_next_input = None
1628 1628 self.rl_do_indent = False
1629 1629
1630 1630 if not self.readline_use or not readline.have_readline:
1631 1631 self.has_readline = False
1632 1632 self.readline = None
1633 1633 # Set a number of methods that depend on readline to be no-op
1634 1634 self.set_readline_completer = no_op
1635 1635 self.set_custom_completer = no_op
1636 1636 self.set_completer_frame = no_op
1637 1637 warn('Readline services not available or not loaded.')
1638 1638 else:
1639 1639 self.has_readline = True
1640 1640 self.readline = readline
1641 1641 sys.modules['readline'] = readline
1642 1642
1643 1643 # Platform-specific configuration
1644 1644 if os.name == 'nt':
1645 1645 # FIXME - check with Frederick to see if we can harmonize
1646 1646 # naming conventions with pyreadline to avoid this
1647 1647 # platform-dependent check
1648 1648 self.readline_startup_hook = readline.set_pre_input_hook
1649 1649 else:
1650 1650 self.readline_startup_hook = readline.set_startup_hook
1651 1651
1652 1652 # Load user's initrc file (readline config)
1653 1653 # Or if libedit is used, load editrc.
1654 1654 inputrc_name = os.environ.get('INPUTRC')
1655 1655 if inputrc_name is None:
1656 1656 home_dir = get_home_dir()
1657 1657 if home_dir is not None:
1658 1658 inputrc_name = '.inputrc'
1659 1659 if readline.uses_libedit:
1660 1660 inputrc_name = '.editrc'
1661 1661 inputrc_name = os.path.join(home_dir, inputrc_name)
1662 1662 if os.path.isfile(inputrc_name):
1663 1663 try:
1664 1664 readline.read_init_file(inputrc_name)
1665 1665 except:
1666 1666 warn('Problems reading readline initialization file <%s>'
1667 1667 % inputrc_name)
1668 1668
1669 1669 # Configure readline according to user's prefs
1670 1670 # This is only done if GNU readline is being used. If libedit
1671 1671 # is being used (as on Leopard) the readline config is
1672 1672 # not run as the syntax for libedit is different.
1673 1673 if not readline.uses_libedit:
1674 1674 for rlcommand in self.readline_parse_and_bind:
1675 1675 #print "loading rl:",rlcommand # dbg
1676 1676 readline.parse_and_bind(rlcommand)
1677 1677
1678 1678 # Remove some chars from the delimiters list. If we encounter
1679 1679 # unicode chars, discard them.
1680 delims = readline.get_completer_delims().encode("ascii", "ignore")
1680 delims = readline.get_completer_delims()
1681 if not py3compat.PY3:
1682 delims = delims.encode("ascii", "ignore")
1681 1683 for d in self.readline_remove_delims:
1682 1684 delims = delims.replace(d, "")
1683 1685 delims = delims.replace(ESC_MAGIC, '')
1684 1686 readline.set_completer_delims(delims)
1685 1687 # otherwise we end up with a monster history after a while:
1686 1688 readline.set_history_length(self.history_length)
1687 1689
1688 1690 self.refill_readline_hist()
1689 1691 self.readline_no_record = ReadlineNoRecord(self)
1690 1692
1691 1693 # Configure auto-indent for all platforms
1692 1694 self.set_autoindent(self.autoindent)
1693 1695
1694 1696 def refill_readline_hist(self):
1695 1697 # Load the last 1000 lines from history
1696 1698 self.readline.clear_history()
1697 1699 stdin_encoding = sys.stdin.encoding or "utf-8"
1698 1700 for _, _, cell in self.history_manager.get_tail(1000,
1699 1701 include_latest=True):
1700 1702 if cell.strip(): # Ignore blank lines
1701 1703 for line in cell.splitlines():
1702 1704 self.readline.add_history(py3compat.unicode_to_str(line,
1703 1705 stdin_encoding))
1704 1706
1705 1707 def set_next_input(self, s):
1706 1708 """ Sets the 'default' input string for the next command line.
1707 1709
1708 1710 Requires readline.
1709 1711
1710 1712 Example:
1711 1713
1712 1714 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1713 1715 [D:\ipython]|2> Hello Word_ # cursor is here
1714 1716 """
1715 1717 if isinstance(s, unicode):
1716 1718 s = s.encode(self.stdin_encoding, 'replace')
1717 1719 self.rl_next_input = s
1718 1720
1719 1721 # Maybe move this to the terminal subclass?
1720 1722 def pre_readline(self):
1721 1723 """readline hook to be used at the start of each line.
1722 1724
1723 1725 Currently it handles auto-indent only."""
1724 1726
1725 1727 if self.rl_do_indent:
1726 1728 self.readline.insert_text(self._indent_current_str())
1727 1729 if self.rl_next_input is not None:
1728 1730 self.readline.insert_text(self.rl_next_input)
1729 1731 self.rl_next_input = None
1730 1732
1731 1733 def _indent_current_str(self):
1732 1734 """return the current level of indentation as a string"""
1733 1735 return self.input_splitter.indent_spaces * ' '
1734 1736
1735 1737 #-------------------------------------------------------------------------
1736 1738 # Things related to text completion
1737 1739 #-------------------------------------------------------------------------
1738 1740
1739 1741 def init_completer(self):
1740 1742 """Initialize the completion machinery.
1741 1743
1742 1744 This creates completion machinery that can be used by client code,
1743 1745 either interactively in-process (typically triggered by the readline
1744 1746 library), programatically (such as in test suites) or out-of-prcess
1745 1747 (typically over the network by remote frontends).
1746 1748 """
1747 1749 from IPython.core.completer import IPCompleter
1748 1750 from IPython.core.completerlib import (module_completer,
1749 1751 magic_run_completer, cd_completer)
1750 1752
1751 1753 self.Completer = IPCompleter(self,
1752 1754 self.user_ns,
1753 1755 self.user_global_ns,
1754 1756 self.readline_omit__names,
1755 1757 self.alias_manager.alias_table,
1756 1758 self.has_readline)
1757 1759
1758 1760 # Add custom completers to the basic ones built into IPCompleter
1759 1761 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1760 1762 self.strdispatchers['complete_command'] = sdisp
1761 1763 self.Completer.custom_completers = sdisp
1762 1764
1763 1765 self.set_hook('complete_command', module_completer, str_key = 'import')
1764 1766 self.set_hook('complete_command', module_completer, str_key = 'from')
1765 1767 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1766 1768 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1767 1769
1768 1770 # Only configure readline if we truly are using readline. IPython can
1769 1771 # do tab-completion over the network, in GUIs, etc, where readline
1770 1772 # itself may be absent
1771 1773 if self.has_readline:
1772 1774 self.set_readline_completer()
1773 1775
1774 1776 def complete(self, text, line=None, cursor_pos=None):
1775 1777 """Return the completed text and a list of completions.
1776 1778
1777 1779 Parameters
1778 1780 ----------
1779 1781
1780 1782 text : string
1781 1783 A string of text to be completed on. It can be given as empty and
1782 1784 instead a line/position pair are given. In this case, the
1783 1785 completer itself will split the line like readline does.
1784 1786
1785 1787 line : string, optional
1786 1788 The complete line that text is part of.
1787 1789
1788 1790 cursor_pos : int, optional
1789 1791 The position of the cursor on the input line.
1790 1792
1791 1793 Returns
1792 1794 -------
1793 1795 text : string
1794 1796 The actual text that was completed.
1795 1797
1796 1798 matches : list
1797 1799 A sorted list with all possible completions.
1798 1800
1799 1801 The optional arguments allow the completion to take more context into
1800 1802 account, and are part of the low-level completion API.
1801 1803
1802 1804 This is a wrapper around the completion mechanism, similar to what
1803 1805 readline does at the command line when the TAB key is hit. By
1804 1806 exposing it as a method, it can be used by other non-readline
1805 1807 environments (such as GUIs) for text completion.
1806 1808
1807 1809 Simple usage example:
1808 1810
1809 1811 In [1]: x = 'hello'
1810 1812
1811 1813 In [2]: _ip.complete('x.l')
1812 1814 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1813 1815 """
1814 1816
1815 1817 # Inject names into __builtin__ so we can complete on the added names.
1816 1818 with self.builtin_trap:
1817 1819 return self.Completer.complete(text, line, cursor_pos)
1818 1820
1819 1821 def set_custom_completer(self, completer, pos=0):
1820 1822 """Adds a new custom completer function.
1821 1823
1822 1824 The position argument (defaults to 0) is the index in the completers
1823 1825 list where you want the completer to be inserted."""
1824 1826
1825 1827 newcomp = types.MethodType(completer,self.Completer)
1826 1828 self.Completer.matchers.insert(pos,newcomp)
1827 1829
1828 1830 def set_readline_completer(self):
1829 1831 """Reset readline's completer to be our own."""
1830 1832 self.readline.set_completer(self.Completer.rlcomplete)
1831 1833
1832 1834 def set_completer_frame(self, frame=None):
1833 1835 """Set the frame of the completer."""
1834 1836 if frame:
1835 1837 self.Completer.namespace = frame.f_locals
1836 1838 self.Completer.global_namespace = frame.f_globals
1837 1839 else:
1838 1840 self.Completer.namespace = self.user_ns
1839 1841 self.Completer.global_namespace = self.user_global_ns
1840 1842
1841 1843 #-------------------------------------------------------------------------
1842 1844 # Things related to magics
1843 1845 #-------------------------------------------------------------------------
1844 1846
1845 1847 def init_magics(self):
1846 1848 # FIXME: Move the color initialization to the DisplayHook, which
1847 1849 # should be split into a prompt manager and displayhook. We probably
1848 1850 # even need a centralize colors management object.
1849 1851 self.magic_colors(self.colors)
1850 1852 # History was moved to a separate module
1851 1853 from . import history
1852 1854 history.init_ipython(self)
1853 1855
1854 1856 def magic(self, arg_s, next_input=None):
1855 1857 """Call a magic function by name.
1856 1858
1857 1859 Input: a string containing the name of the magic function to call and
1858 1860 any additional arguments to be passed to the magic.
1859 1861
1860 1862 magic('name -opt foo bar') is equivalent to typing at the ipython
1861 1863 prompt:
1862 1864
1863 1865 In[1]: %name -opt foo bar
1864 1866
1865 1867 To call a magic without arguments, simply use magic('name').
1866 1868
1867 1869 This provides a proper Python function to call IPython's magics in any
1868 1870 valid Python code you can type at the interpreter, including loops and
1869 1871 compound statements.
1870 1872 """
1871 1873 # Allow setting the next input - this is used if the user does `a=abs?`.
1872 1874 # We do this first so that magic functions can override it.
1873 1875 if next_input:
1874 1876 self.set_next_input(next_input)
1875 1877
1876 1878 args = arg_s.split(' ',1)
1877 1879 magic_name = args[0]
1878 1880 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1879 1881
1880 1882 try:
1881 1883 magic_args = args[1]
1882 1884 except IndexError:
1883 1885 magic_args = ''
1884 1886 fn = getattr(self,'magic_'+magic_name,None)
1885 1887 if fn is None:
1886 1888 error("Magic function `%s` not found." % magic_name)
1887 1889 else:
1888 1890 magic_args = self.var_expand(magic_args,1)
1889 1891 # Grab local namespace if we need it:
1890 1892 if getattr(fn, "needs_local_scope", False):
1891 1893 self._magic_locals = sys._getframe(1).f_locals
1892 1894 with self.builtin_trap:
1893 1895 result = fn(magic_args)
1894 1896 # Ensure we're not keeping object references around:
1895 1897 self._magic_locals = {}
1896 1898 return result
1897 1899
1898 1900 def define_magic(self, magicname, func):
1899 1901 """Expose own function as magic function for ipython
1900 1902
1901 1903 def foo_impl(self,parameter_s=''):
1902 1904 'My very own magic!. (Use docstrings, IPython reads them).'
1903 1905 print 'Magic function. Passed parameter is between < >:'
1904 1906 print '<%s>' % parameter_s
1905 1907 print 'The self object is:',self
1906 1908
1907 1909 self.define_magic('foo',foo_impl)
1908 1910 """
1909 1911 im = types.MethodType(func,self)
1910 1912 old = getattr(self, "magic_" + magicname, None)
1911 1913 setattr(self, "magic_" + magicname, im)
1912 1914 return old
1913 1915
1914 1916 #-------------------------------------------------------------------------
1915 1917 # Things related to macros
1916 1918 #-------------------------------------------------------------------------
1917 1919
1918 1920 def define_macro(self, name, themacro):
1919 1921 """Define a new macro
1920 1922
1921 1923 Parameters
1922 1924 ----------
1923 1925 name : str
1924 1926 The name of the macro.
1925 1927 themacro : str or Macro
1926 1928 The action to do upon invoking the macro. If a string, a new
1927 1929 Macro object is created by passing the string to it.
1928 1930 """
1929 1931
1930 1932 from IPython.core import macro
1931 1933
1932 1934 if isinstance(themacro, basestring):
1933 1935 themacro = macro.Macro(themacro)
1934 1936 if not isinstance(themacro, macro.Macro):
1935 1937 raise ValueError('A macro must be a string or a Macro instance.')
1936 1938 self.user_ns[name] = themacro
1937 1939
1938 1940 #-------------------------------------------------------------------------
1939 1941 # Things related to the running of system commands
1940 1942 #-------------------------------------------------------------------------
1941 1943
1942 1944 def system_piped(self, cmd):
1943 1945 """Call the given cmd in a subprocess, piping stdout/err
1944 1946
1945 1947 Parameters
1946 1948 ----------
1947 1949 cmd : str
1948 1950 Command to execute (can not end in '&', as background processes are
1949 1951 not supported. Should not be a command that expects input
1950 1952 other than simple text.
1951 1953 """
1952 1954 if cmd.rstrip().endswith('&'):
1953 1955 # this is *far* from a rigorous test
1954 1956 # We do not support backgrounding processes because we either use
1955 1957 # pexpect or pipes to read from. Users can always just call
1956 1958 # os.system() or use ip.system=ip.system_raw
1957 1959 # if they really want a background process.
1958 1960 raise OSError("Background processes not supported.")
1959 1961
1960 1962 # we explicitly do NOT return the subprocess status code, because
1961 1963 # a non-None value would trigger :func:`sys.displayhook` calls.
1962 1964 # Instead, we store the exit_code in user_ns.
1963 1965 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1964 1966
1965 1967 def system_raw(self, cmd):
1966 1968 """Call the given cmd in a subprocess using os.system
1967 1969
1968 1970 Parameters
1969 1971 ----------
1970 1972 cmd : str
1971 1973 Command to execute.
1972 1974 """
1973 1975 # We explicitly do NOT return the subprocess status code, because
1974 1976 # a non-None value would trigger :func:`sys.displayhook` calls.
1975 1977 # Instead, we store the exit_code in user_ns.
1976 1978 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1977 1979
1978 1980 # use piped system by default, because it is better behaved
1979 1981 system = system_piped
1980 1982
1981 1983 def getoutput(self, cmd, split=True):
1982 1984 """Get output (possibly including stderr) from a subprocess.
1983 1985
1984 1986 Parameters
1985 1987 ----------
1986 1988 cmd : str
1987 1989 Command to execute (can not end in '&', as background processes are
1988 1990 not supported.
1989 1991 split : bool, optional
1990 1992
1991 1993 If True, split the output into an IPython SList. Otherwise, an
1992 1994 IPython LSString is returned. These are objects similar to normal
1993 1995 lists and strings, with a few convenience attributes for easier
1994 1996 manipulation of line-based output. You can use '?' on them for
1995 1997 details.
1996 1998 """
1997 1999 if cmd.rstrip().endswith('&'):
1998 2000 # this is *far* from a rigorous test
1999 2001 raise OSError("Background processes not supported.")
2000 2002 out = getoutput(self.var_expand(cmd, depth=2))
2001 2003 if split:
2002 2004 out = SList(out.splitlines())
2003 2005 else:
2004 2006 out = LSString(out)
2005 2007 return out
2006 2008
2007 2009 #-------------------------------------------------------------------------
2008 2010 # Things related to aliases
2009 2011 #-------------------------------------------------------------------------
2010 2012
2011 2013 def init_alias(self):
2012 2014 self.alias_manager = AliasManager(shell=self, config=self.config)
2013 2015 self.ns_table['alias'] = self.alias_manager.alias_table,
2014 2016
2015 2017 #-------------------------------------------------------------------------
2016 2018 # Things related to extensions and plugins
2017 2019 #-------------------------------------------------------------------------
2018 2020
2019 2021 def init_extension_manager(self):
2020 2022 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2021 2023
2022 2024 def init_plugin_manager(self):
2023 2025 self.plugin_manager = PluginManager(config=self.config)
2024 2026
2025 2027 #-------------------------------------------------------------------------
2026 2028 # Things related to payloads
2027 2029 #-------------------------------------------------------------------------
2028 2030
2029 2031 def init_payload(self):
2030 2032 self.payload_manager = PayloadManager(config=self.config)
2031 2033
2032 2034 #-------------------------------------------------------------------------
2033 2035 # Things related to the prefilter
2034 2036 #-------------------------------------------------------------------------
2035 2037
2036 2038 def init_prefilter(self):
2037 2039 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2038 2040 # Ultimately this will be refactored in the new interpreter code, but
2039 2041 # for now, we should expose the main prefilter method (there's legacy
2040 2042 # code out there that may rely on this).
2041 2043 self.prefilter = self.prefilter_manager.prefilter_lines
2042 2044
2043 2045 def auto_rewrite_input(self, cmd):
2044 2046 """Print to the screen the rewritten form of the user's command.
2045 2047
2046 2048 This shows visual feedback by rewriting input lines that cause
2047 2049 automatic calling to kick in, like::
2048 2050
2049 2051 /f x
2050 2052
2051 2053 into::
2052 2054
2053 2055 ------> f(x)
2054 2056
2055 2057 after the user's input prompt. This helps the user understand that the
2056 2058 input line was transformed automatically by IPython.
2057 2059 """
2058 2060 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2059 2061
2060 2062 try:
2061 2063 # plain ascii works better w/ pyreadline, on some machines, so
2062 2064 # we use it and only print uncolored rewrite if we have unicode
2063 2065 rw = str(rw)
2064 2066 print >> io.stdout, rw
2065 2067 except UnicodeEncodeError:
2066 2068 print "------> " + cmd
2067 2069
2068 2070 #-------------------------------------------------------------------------
2069 2071 # Things related to extracting values/expressions from kernel and user_ns
2070 2072 #-------------------------------------------------------------------------
2071 2073
2072 2074 def _simple_error(self):
2073 2075 etype, value = sys.exc_info()[:2]
2074 2076 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2075 2077
2076 2078 def user_variables(self, names):
2077 2079 """Get a list of variable names from the user's namespace.
2078 2080
2079 2081 Parameters
2080 2082 ----------
2081 2083 names : list of strings
2082 2084 A list of names of variables to be read from the user namespace.
2083 2085
2084 2086 Returns
2085 2087 -------
2086 2088 A dict, keyed by the input names and with the repr() of each value.
2087 2089 """
2088 2090 out = {}
2089 2091 user_ns = self.user_ns
2090 2092 for varname in names:
2091 2093 try:
2092 2094 value = repr(user_ns[varname])
2093 2095 except:
2094 2096 value = self._simple_error()
2095 2097 out[varname] = value
2096 2098 return out
2097 2099
2098 2100 def user_expressions(self, expressions):
2099 2101 """Evaluate a dict of expressions in the user's namespace.
2100 2102
2101 2103 Parameters
2102 2104 ----------
2103 2105 expressions : dict
2104 2106 A dict with string keys and string values. The expression values
2105 2107 should be valid Python expressions, each of which will be evaluated
2106 2108 in the user namespace.
2107 2109
2108 2110 Returns
2109 2111 -------
2110 2112 A dict, keyed like the input expressions dict, with the repr() of each
2111 2113 value.
2112 2114 """
2113 2115 out = {}
2114 2116 user_ns = self.user_ns
2115 2117 global_ns = self.user_global_ns
2116 2118 for key, expr in expressions.iteritems():
2117 2119 try:
2118 2120 value = repr(eval(expr, global_ns, user_ns))
2119 2121 except:
2120 2122 value = self._simple_error()
2121 2123 out[key] = value
2122 2124 return out
2123 2125
2124 2126 #-------------------------------------------------------------------------
2125 2127 # Things related to the running of code
2126 2128 #-------------------------------------------------------------------------
2127 2129
2128 2130 def ex(self, cmd):
2129 2131 """Execute a normal python statement in user namespace."""
2130 2132 with self.builtin_trap:
2131 2133 exec cmd in self.user_global_ns, self.user_ns
2132 2134
2133 2135 def ev(self, expr):
2134 2136 """Evaluate python expression expr in user namespace.
2135 2137
2136 2138 Returns the result of evaluation
2137 2139 """
2138 2140 with self.builtin_trap:
2139 2141 return eval(expr, self.user_global_ns, self.user_ns)
2140 2142
2141 2143 def safe_execfile(self, fname, *where, **kw):
2142 2144 """A safe version of the builtin execfile().
2143 2145
2144 2146 This version will never throw an exception, but instead print
2145 2147 helpful error messages to the screen. This only works on pure
2146 2148 Python files with the .py extension.
2147 2149
2148 2150 Parameters
2149 2151 ----------
2150 2152 fname : string
2151 2153 The name of the file to be executed.
2152 2154 where : tuple
2153 2155 One or two namespaces, passed to execfile() as (globals,locals).
2154 2156 If only one is given, it is passed as both.
2155 2157 exit_ignore : bool (False)
2156 2158 If True, then silence SystemExit for non-zero status (it is always
2157 2159 silenced for zero status, as it is so common).
2158 2160 """
2159 2161 kw.setdefault('exit_ignore', False)
2160 2162
2161 2163 fname = os.path.abspath(os.path.expanduser(fname))
2162 2164
2163 2165 # Make sure we can open the file
2164 2166 try:
2165 2167 with open(fname) as thefile:
2166 2168 pass
2167 2169 except:
2168 2170 warn('Could not open file <%s> for safe execution.' % fname)
2169 2171 return
2170 2172
2171 2173 # Find things also in current directory. This is needed to mimic the
2172 2174 # behavior of running a script from the system command line, where
2173 2175 # Python inserts the script's directory into sys.path
2174 2176 dname = os.path.dirname(fname)
2175 2177
2176 2178 with prepended_to_syspath(dname):
2177 2179 try:
2178 2180 py3compat.execfile(fname,*where)
2179 2181 except SystemExit, status:
2180 2182 # If the call was made with 0 or None exit status (sys.exit(0)
2181 2183 # or sys.exit() ), don't bother showing a traceback, as both of
2182 2184 # these are considered normal by the OS:
2183 2185 # > python -c'import sys;sys.exit(0)'; echo $?
2184 2186 # 0
2185 2187 # > python -c'import sys;sys.exit()'; echo $?
2186 2188 # 0
2187 2189 # For other exit status, we show the exception unless
2188 2190 # explicitly silenced, but only in short form.
2189 2191 if status.code not in (0, None) and not kw['exit_ignore']:
2190 2192 self.showtraceback(exception_only=True)
2191 2193 except:
2192 2194 self.showtraceback()
2193 2195
2194 2196 def safe_execfile_ipy(self, fname):
2195 2197 """Like safe_execfile, but for .ipy files with IPython syntax.
2196 2198
2197 2199 Parameters
2198 2200 ----------
2199 2201 fname : str
2200 2202 The name of the file to execute. The filename must have a
2201 2203 .ipy extension.
2202 2204 """
2203 2205 fname = os.path.abspath(os.path.expanduser(fname))
2204 2206
2205 2207 # Make sure we can open the file
2206 2208 try:
2207 2209 with open(fname) as thefile:
2208 2210 pass
2209 2211 except:
2210 2212 warn('Could not open file <%s> for safe execution.' % fname)
2211 2213 return
2212 2214
2213 2215 # Find things also in current directory. This is needed to mimic the
2214 2216 # behavior of running a script from the system command line, where
2215 2217 # Python inserts the script's directory into sys.path
2216 2218 dname = os.path.dirname(fname)
2217 2219
2218 2220 with prepended_to_syspath(dname):
2219 2221 try:
2220 2222 with open(fname) as thefile:
2221 2223 # self.run_cell currently captures all exceptions
2222 2224 # raised in user code. It would be nice if there were
2223 2225 # versions of runlines, execfile that did raise, so
2224 2226 # we could catch the errors.
2225 2227 self.run_cell(thefile.read(), store_history=False)
2226 2228 except:
2227 2229 self.showtraceback()
2228 2230 warn('Unknown failure executing file: <%s>' % fname)
2229 2231
2230 2232 def run_cell(self, raw_cell, store_history=True):
2231 2233 """Run a complete IPython cell.
2232 2234
2233 2235 Parameters
2234 2236 ----------
2235 2237 raw_cell : str
2236 2238 The code (including IPython code such as %magic functions) to run.
2237 2239 store_history : bool
2238 2240 If True, the raw and translated cell will be stored in IPython's
2239 2241 history. For user code calling back into IPython's machinery, this
2240 2242 should be set to False.
2241 2243 """
2242 2244 if (not raw_cell) or raw_cell.isspace():
2243 2245 return
2244 2246
2245 2247 for line in raw_cell.splitlines():
2246 2248 self.input_splitter.push(line)
2247 2249 cell = self.input_splitter.source_reset()
2248 2250
2249 2251 with self.builtin_trap:
2250 2252 prefilter_failed = False
2251 2253 if len(cell.splitlines()) == 1:
2252 2254 try:
2253 2255 # use prefilter_lines to handle trailing newlines
2254 2256 # restore trailing newline for ast.parse
2255 2257 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2256 2258 except AliasError as e:
2257 2259 error(e)
2258 2260 prefilter_failed = True
2259 2261 except Exception:
2260 2262 # don't allow prefilter errors to crash IPython
2261 2263 self.showtraceback()
2262 2264 prefilter_failed = True
2263 2265
2264 2266 # Store raw and processed history
2265 2267 if store_history:
2266 2268 self.history_manager.store_inputs(self.execution_count,
2267 2269 cell, raw_cell)
2268 2270
2269 2271 self.logger.log(cell, raw_cell)
2270 2272
2271 2273 if not prefilter_failed:
2272 2274 # don't run if prefilter failed
2273 2275 cell_name = self.compile.cache(cell, self.execution_count)
2274 2276
2275 2277 with self.display_trap:
2276 2278 try:
2277 2279 code_ast = ast.parse(cell, filename=cell_name)
2278 2280 except IndentationError:
2279 2281 self.showindentationerror()
2280 2282 self.execution_count += 1
2281 2283 return None
2282 2284 except (OverflowError, SyntaxError, ValueError, TypeError,
2283 2285 MemoryError):
2284 2286 self.showsyntaxerror()
2285 2287 self.execution_count += 1
2286 2288 return None
2287 2289
2288 2290 self.run_ast_nodes(code_ast.body, cell_name,
2289 2291 interactivity="last_expr")
2290 2292
2291 2293 # Execute any registered post-execution functions.
2292 2294 for func, status in self._post_execute.iteritems():
2293 2295 if not status:
2294 2296 continue
2295 2297 try:
2296 2298 func()
2297 2299 except:
2298 2300 self.showtraceback()
2299 2301 # Deactivate failing function
2300 2302 self._post_execute[func] = False
2301 2303
2302 2304 if store_history:
2303 2305 # Write output to the database. Does nothing unless
2304 2306 # history output logging is enabled.
2305 2307 self.history_manager.store_output(self.execution_count)
2306 2308 # Each cell is a *single* input, regardless of how many lines it has
2307 2309 self.execution_count += 1
2308 2310
2309 2311 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2310 2312 """Run a sequence of AST nodes. The execution mode depends on the
2311 2313 interactivity parameter.
2312 2314
2313 2315 Parameters
2314 2316 ----------
2315 2317 nodelist : list
2316 2318 A sequence of AST nodes to run.
2317 2319 cell_name : str
2318 2320 Will be passed to the compiler as the filename of the cell. Typically
2319 2321 the value returned by ip.compile.cache(cell).
2320 2322 interactivity : str
2321 2323 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2322 2324 run interactively (displaying output from expressions). 'last_expr'
2323 2325 will run the last node interactively only if it is an expression (i.e.
2324 2326 expressions in loops or other blocks are not displayed. Other values
2325 2327 for this parameter will raise a ValueError.
2326 2328 """
2327 2329 if not nodelist:
2328 2330 return
2329 2331
2330 2332 if interactivity == 'last_expr':
2331 2333 if isinstance(nodelist[-1], ast.Expr):
2332 2334 interactivity = "last"
2333 2335 else:
2334 2336 interactivity = "none"
2335 2337
2336 2338 if interactivity == 'none':
2337 2339 to_run_exec, to_run_interactive = nodelist, []
2338 2340 elif interactivity == 'last':
2339 2341 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2340 2342 elif interactivity == 'all':
2341 2343 to_run_exec, to_run_interactive = [], nodelist
2342 2344 else:
2343 2345 raise ValueError("Interactivity was %r" % interactivity)
2344 2346
2345 2347 exec_count = self.execution_count
2346 2348
2347 2349 try:
2348 2350 for i, node in enumerate(to_run_exec):
2349 2351 mod = ast.Module([node])
2350 2352 code = self.compile(mod, cell_name, "exec")
2351 2353 if self.run_code(code):
2352 2354 return True
2353 2355
2354 2356 for i, node in enumerate(to_run_interactive):
2355 2357 mod = ast.Interactive([node])
2356 2358 code = self.compile(mod, cell_name, "single")
2357 2359 if self.run_code(code):
2358 2360 return True
2359 2361 except:
2360 2362 # It's possible to have exceptions raised here, typically by
2361 2363 # compilation of odd code (such as a naked 'return' outside a
2362 2364 # function) that did parse but isn't valid. Typically the exception
2363 2365 # is a SyntaxError, but it's safest just to catch anything and show
2364 2366 # the user a traceback.
2365 2367
2366 2368 # We do only one try/except outside the loop to minimize the impact
2367 2369 # on runtime, and also because if any node in the node list is
2368 2370 # broken, we should stop execution completely.
2369 2371 self.showtraceback()
2370 2372
2371 2373 return False
2372 2374
2373 2375 def run_code(self, code_obj):
2374 2376 """Execute a code object.
2375 2377
2376 2378 When an exception occurs, self.showtraceback() is called to display a
2377 2379 traceback.
2378 2380
2379 2381 Parameters
2380 2382 ----------
2381 2383 code_obj : code object
2382 2384 A compiled code object, to be executed
2383 2385 post_execute : bool [default: True]
2384 2386 whether to call post_execute hooks after this particular execution.
2385 2387
2386 2388 Returns
2387 2389 -------
2388 2390 False : successful execution.
2389 2391 True : an error occurred.
2390 2392 """
2391 2393
2392 2394 # Set our own excepthook in case the user code tries to call it
2393 2395 # directly, so that the IPython crash handler doesn't get triggered
2394 2396 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2395 2397
2396 2398 # we save the original sys.excepthook in the instance, in case config
2397 2399 # code (such as magics) needs access to it.
2398 2400 self.sys_excepthook = old_excepthook
2399 2401 outflag = 1 # happens in more places, so it's easier as default
2400 2402 try:
2401 2403 try:
2402 2404 self.hooks.pre_run_code_hook()
2403 2405 #rprint('Running code', repr(code_obj)) # dbg
2404 2406 exec code_obj in self.user_global_ns, self.user_ns
2405 2407 finally:
2406 2408 # Reset our crash handler in place
2407 2409 sys.excepthook = old_excepthook
2408 2410 except SystemExit:
2409 2411 self.showtraceback(exception_only=True)
2410 2412 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2411 2413 except self.custom_exceptions:
2412 2414 etype,value,tb = sys.exc_info()
2413 2415 self.CustomTB(etype,value,tb)
2414 2416 except:
2415 2417 self.showtraceback()
2416 2418 else:
2417 2419 outflag = 0
2418 2420 if softspace(sys.stdout, 0):
2419 2421 print
2420 2422
2421 2423 return outflag
2422 2424
2423 2425 # For backwards compatibility
2424 2426 runcode = run_code
2425 2427
2426 2428 #-------------------------------------------------------------------------
2427 2429 # Things related to GUI support and pylab
2428 2430 #-------------------------------------------------------------------------
2429 2431
2430 2432 def enable_pylab(self, gui=None, import_all=True):
2431 2433 raise NotImplementedError('Implement enable_pylab in a subclass')
2432 2434
2433 2435 #-------------------------------------------------------------------------
2434 2436 # Utilities
2435 2437 #-------------------------------------------------------------------------
2436 2438
2437 2439 def var_expand(self,cmd,depth=0):
2438 2440 """Expand python variables in a string.
2439 2441
2440 2442 The depth argument indicates how many frames above the caller should
2441 2443 be walked to look for the local namespace where to expand variables.
2442 2444
2443 2445 The global namespace for expansion is always the user's interactive
2444 2446 namespace.
2445 2447 """
2446 2448 res = ItplNS(cmd, self.user_ns, # globals
2447 2449 # Skip our own frame in searching for locals:
2448 2450 sys._getframe(depth+1).f_locals # locals
2449 2451 )
2450 2452 return str(res).decode(res.codec)
2451 2453
2452 2454 def mktempfile(self, data=None, prefix='ipython_edit_'):
2453 2455 """Make a new tempfile and return its filename.
2454 2456
2455 2457 This makes a call to tempfile.mktemp, but it registers the created
2456 2458 filename internally so ipython cleans it up at exit time.
2457 2459
2458 2460 Optional inputs:
2459 2461
2460 2462 - data(None): if data is given, it gets written out to the temp file
2461 2463 immediately, and the file is closed again."""
2462 2464
2463 2465 filename = tempfile.mktemp('.py', prefix)
2464 2466 self.tempfiles.append(filename)
2465 2467
2466 2468 if data:
2467 2469 tmp_file = open(filename,'w')
2468 2470 tmp_file.write(data)
2469 2471 tmp_file.close()
2470 2472 return filename
2471 2473
2472 2474 # TODO: This should be removed when Term is refactored.
2473 2475 def write(self,data):
2474 2476 """Write a string to the default output"""
2475 2477 io.stdout.write(data)
2476 2478
2477 2479 # TODO: This should be removed when Term is refactored.
2478 2480 def write_err(self,data):
2479 2481 """Write a string to the default error output"""
2480 2482 io.stderr.write(data)
2481 2483
2482 2484 def ask_yes_no(self,prompt,default=True):
2483 2485 if self.quiet:
2484 2486 return True
2485 2487 return ask_yes_no(prompt,default)
2486 2488
2487 2489 def show_usage(self):
2488 2490 """Show a usage message"""
2489 2491 page.page(IPython.core.usage.interactive_usage)
2490 2492
2491 2493 def find_user_code(self, target, raw=True):
2492 2494 """Get a code string from history, file, or a string or macro.
2493 2495
2494 2496 This is mainly used by magic functions.
2495 2497
2496 2498 Parameters
2497 2499 ----------
2498 2500 target : str
2499 2501 A string specifying code to retrieve. This will be tried respectively
2500 2502 as: ranges of input history (see %history for syntax), a filename, or
2501 2503 an expression evaluating to a string or Macro in the user namespace.
2502 2504 raw : bool
2503 2505 If true (default), retrieve raw history. Has no effect on the other
2504 2506 retrieval mechanisms.
2505 2507
2506 2508 Returns
2507 2509 -------
2508 2510 A string of code.
2509 2511
2510 2512 ValueError is raised if nothing is found, and TypeError if it evaluates
2511 2513 to an object of another type. In each case, .args[0] is a printable
2512 2514 message.
2513 2515 """
2514 2516 code = self.extract_input_lines(target, raw=raw) # Grab history
2515 2517 if code:
2516 2518 return code
2517 2519 if os.path.isfile(target): # Read file
2518 2520 return open(target, "r").read()
2519 2521
2520 2522 try: # User namespace
2521 2523 codeobj = eval(target, self.user_ns)
2522 2524 except Exception:
2523 2525 raise ValueError(("'%s' was not found in history, as a file, nor in"
2524 2526 " the user namespace.") % target)
2525 2527 if isinstance(codeobj, basestring):
2526 2528 return codeobj
2527 2529 elif isinstance(codeobj, Macro):
2528 2530 return codeobj.value
2529 2531
2530 2532 raise TypeError("%s is neither a string nor a macro." % target,
2531 2533 codeobj)
2532 2534
2533 2535 #-------------------------------------------------------------------------
2534 2536 # Things related to IPython exiting
2535 2537 #-------------------------------------------------------------------------
2536 2538 def atexit_operations(self):
2537 2539 """This will be executed at the time of exit.
2538 2540
2539 2541 Cleanup operations and saving of persistent data that is done
2540 2542 unconditionally by IPython should be performed here.
2541 2543
2542 2544 For things that may depend on startup flags or platform specifics (such
2543 2545 as having readline or not), register a separate atexit function in the
2544 2546 code that has the appropriate information, rather than trying to
2545 2547 clutter
2546 2548 """
2547 2549 # Close the history session (this stores the end time and line count)
2548 2550 # this must be *before* the tempfile cleanup, in case of temporary
2549 2551 # history db
2550 2552 self.history_manager.end_session()
2551 2553
2552 2554 # Cleanup all tempfiles left around
2553 2555 for tfile in self.tempfiles:
2554 2556 try:
2555 2557 os.unlink(tfile)
2556 2558 except OSError:
2557 2559 pass
2558 2560
2559 2561 # Clear all user namespaces to release all references cleanly.
2560 2562 self.reset(new_session=False)
2561 2563
2562 2564 # Run user hooks
2563 2565 self.hooks.shutdown_hook()
2564 2566
2565 2567 def cleanup(self):
2566 2568 self.restore_sys_module_state()
2567 2569
2568 2570
2569 2571 class InteractiveShellABC(object):
2570 2572 """An abstract base class for InteractiveShell."""
2571 2573 __metaclass__ = abc.ABCMeta
2572 2574
2573 2575 InteractiveShellABC.register(InteractiveShell)
@@ -1,58 +1,59 b''
1 1 """Support for interactive macros in IPython"""
2 2
3 3 #*****************************************************************************
4 4 # Copyright (C) 2001-2005 Fernando Perez <fperez@colorado.edu>
5 5 #
6 6 # Distributed under the terms of the BSD License. The full license is in
7 7 # the file COPYING, distributed as part of this software.
8 8 #*****************************************************************************
9 9
10 10 import re
11 11 import sys
12 12
13 from IPython.utils import py3compat
14
13 15 coding_declaration = re.compile(r"#\s*coding[:=]\s*([-\w.]+)")
14 16
15 17 class Macro(object):
16 18 """Simple class to store the value of macros as strings.
17 19
18 20 Macro is just a callable that executes a string of IPython
19 21 input when called.
20 22
21 23 Args to macro are available in _margv list if you need them.
22 24 """
23 25
24 26 def __init__(self,code):
25 27 """store the macro value, as a single string which can be executed"""
26 28 lines = []
27 29 enc = None
28 30 for line in code.splitlines():
29 31 coding_match = coding_declaration.match(line)
30 32 if coding_match:
31 33 enc = coding_match.group(1)
32 34 else:
33 35 lines.append(line)
34 36 code = "\n".join(lines)
35 37 if isinstance(code, bytes):
36 38 code = code.decode(enc or sys.getdefaultencoding())
37 39 self.value = code + '\n'
38 40
39 41 def __str__(self):
40 enc = sys.stdin.encoding or sys.getdefaultencoding()
41 return self.value.encode(enc, "replace")
42 return py3compat.unicode_to_str(self.value)
42 43
43 44 def __unicode__(self):
44 45 return self.value
45 46
46 47 def __repr__(self):
47 48 return 'IPython.macro.Macro(%s)' % repr(self.value)
48 49
49 50 def __getstate__(self):
50 51 """ needed for safe pickling via %store """
51 52 return {'value': self.value}
52 53
53 54 def __add__(self, other):
54 55 if isinstance(other, Macro):
55 56 return Macro(self.value + other.value)
56 57 elif isinstance(other, basestring):
57 58 return Macro(self.value + other)
58 59 raise TypeError
@@ -1,3570 +1,3570 b''
1 1 # encoding: utf-8
2 2 """Magic functions for InteractiveShell.
3 3 """
4 4
5 5 #-----------------------------------------------------------------------------
6 6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
8 8 # Copyright (C) 2008-2009 The IPython Development Team
9 9
10 10 # Distributed under the terms of the BSD License. The full license is in
11 11 # the file COPYING, distributed as part of this software.
12 12 #-----------------------------------------------------------------------------
13 13
14 14 #-----------------------------------------------------------------------------
15 15 # Imports
16 16 #-----------------------------------------------------------------------------
17 17
18 18 import __builtin__ as builtin_mod
19 19 import __future__
20 20 import bdb
21 21 import inspect
22 22 import os
23 23 import sys
24 24 import shutil
25 25 import re
26 26 import time
27 27 import textwrap
28 28 from cStringIO import StringIO
29 29 from getopt import getopt,GetoptError
30 30 from pprint import pformat
31 31 from xmlrpclib import ServerProxy
32 32
33 33 # cProfile was added in Python2.5
34 34 try:
35 35 import cProfile as profile
36 36 import pstats
37 37 except ImportError:
38 38 # profile isn't bundled by default in Debian for license reasons
39 39 try:
40 40 import profile,pstats
41 41 except ImportError:
42 42 profile = pstats = None
43 43
44 44 import IPython
45 45 from IPython.core import debugger, oinspect
46 46 from IPython.core.error import TryNext
47 47 from IPython.core.error import UsageError
48 48 from IPython.core.fakemodule import FakeModule
49 49 from IPython.core.profiledir import ProfileDir
50 50 from IPython.core.macro import Macro
51 51 from IPython.core import magic_arguments, page
52 52 from IPython.core.prefilter import ESC_MAGIC
53 53 from IPython.lib.pylabtools import mpl_runner
54 54 from IPython.testing.skipdoctest import skip_doctest
55 55 from IPython.utils.io import file_read, nlprint
56 56 from IPython.utils.path import get_py_filename, unquote_filename
57 57 from IPython.utils.process import arg_split, abbrev_cwd
58 58 from IPython.utils.terminal import set_term_title
59 59 from IPython.utils.text import LSString, SList, format_screen
60 60 from IPython.utils.timing import clock, clock2
61 61 from IPython.utils.warn import warn, error
62 62 from IPython.utils.ipstruct import Struct
63 63 import IPython.utils.generics
64 64
65 65 #-----------------------------------------------------------------------------
66 66 # Utility functions
67 67 #-----------------------------------------------------------------------------
68 68
69 69 def on_off(tag):
70 70 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
71 71 return ['OFF','ON'][tag]
72 72
73 73 class Bunch: pass
74 74
75 75 def compress_dhist(dh):
76 76 head, tail = dh[:-10], dh[-10:]
77 77
78 78 newhead = []
79 79 done = set()
80 80 for h in head:
81 81 if h in done:
82 82 continue
83 83 newhead.append(h)
84 84 done.add(h)
85 85
86 86 return newhead + tail
87 87
88 88 def needs_local_scope(func):
89 89 """Decorator to mark magic functions which need to local scope to run."""
90 90 func.needs_local_scope = True
91 91 return func
92 92
93 93 # Used for exception handling in magic_edit
94 94 class MacroToEdit(ValueError): pass
95 95
96 96 #***************************************************************************
97 97 # Main class implementing Magic functionality
98 98
99 99 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
100 100 # on construction of the main InteractiveShell object. Something odd is going
101 101 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
102 102 # eventually this needs to be clarified.
103 103 # BG: This is because InteractiveShell inherits from this, but is itself a
104 104 # Configurable. This messes up the MRO in some way. The fix is that we need to
105 105 # make Magic a configurable that InteractiveShell does not subclass.
106 106
107 107 class Magic:
108 108 """Magic functions for InteractiveShell.
109 109
110 110 Shell functions which can be reached as %function_name. All magic
111 111 functions should accept a string, which they can parse for their own
112 112 needs. This can make some functions easier to type, eg `%cd ../`
113 113 vs. `%cd("../")`
114 114
115 115 ALL definitions MUST begin with the prefix magic_. The user won't need it
116 116 at the command line, but it is is needed in the definition. """
117 117
118 118 # class globals
119 119 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
120 120 'Automagic is ON, % prefix NOT needed for magic functions.']
121 121
122 122 #......................................................................
123 123 # some utility functions
124 124
125 125 def __init__(self,shell):
126 126
127 127 self.options_table = {}
128 128 if profile is None:
129 129 self.magic_prun = self.profile_missing_notice
130 130 self.shell = shell
131 131
132 132 # namespace for holding state we may need
133 133 self._magic_state = Bunch()
134 134
135 135 def profile_missing_notice(self, *args, **kwargs):
136 136 error("""\
137 137 The profile module could not be found. It has been removed from the standard
138 138 python packages because of its non-free license. To use profiling, install the
139 139 python-profiler package from non-free.""")
140 140
141 141 def default_option(self,fn,optstr):
142 142 """Make an entry in the options_table for fn, with value optstr"""
143 143
144 144 if fn not in self.lsmagic():
145 145 error("%s is not a magic function" % fn)
146 146 self.options_table[fn] = optstr
147 147
148 148 def lsmagic(self):
149 149 """Return a list of currently available magic functions.
150 150
151 151 Gives a list of the bare names after mangling (['ls','cd', ...], not
152 152 ['magic_ls','magic_cd',...]"""
153 153
154 154 # FIXME. This needs a cleanup, in the way the magics list is built.
155 155
156 156 # magics in class definition
157 157 class_magic = lambda fn: fn.startswith('magic_') and \
158 158 callable(Magic.__dict__[fn])
159 159 # in instance namespace (run-time user additions)
160 160 inst_magic = lambda fn: fn.startswith('magic_') and \
161 161 callable(self.__dict__[fn])
162 162 # and bound magics by user (so they can access self):
163 163 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
164 164 callable(self.__class__.__dict__[fn])
165 165 magics = filter(class_magic,Magic.__dict__.keys()) + \
166 166 filter(inst_magic,self.__dict__.keys()) + \
167 167 filter(inst_bound_magic,self.__class__.__dict__.keys())
168 168 out = []
169 169 for fn in set(magics):
170 170 out.append(fn.replace('magic_','',1))
171 171 out.sort()
172 172 return out
173 173
174 174 def extract_input_lines(self, range_str, raw=False):
175 175 """Return as a string a set of input history slices.
176 176
177 177 Inputs:
178 178
179 179 - range_str: the set of slices is given as a string, like
180 180 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
181 181 which get their arguments as strings. The number before the / is the
182 182 session number: ~n goes n back from the current session.
183 183
184 184 Optional inputs:
185 185
186 186 - raw(False): by default, the processed input is used. If this is
187 187 true, the raw input history is used instead.
188 188
189 189 Note that slices can be called with two notations:
190 190
191 191 N:M -> standard python form, means including items N...(M-1).
192 192
193 193 N-M -> include items N..M (closed endpoint)."""
194 194 lines = self.shell.history_manager.\
195 195 get_range_by_str(range_str, raw=raw)
196 196 return "\n".join(x for _, _, x in lines)
197 197
198 198 def arg_err(self,func):
199 199 """Print docstring if incorrect arguments were passed"""
200 200 print 'Error in arguments:'
201 201 print oinspect.getdoc(func)
202 202
203 203 def format_latex(self,strng):
204 204 """Format a string for latex inclusion."""
205 205
206 206 # Characters that need to be escaped for latex:
207 207 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
208 208 # Magic command names as headers:
209 209 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
210 210 re.MULTILINE)
211 211 # Magic commands
212 212 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
213 213 re.MULTILINE)
214 214 # Paragraph continue
215 215 par_re = re.compile(r'\\$',re.MULTILINE)
216 216
217 217 # The "\n" symbol
218 218 newline_re = re.compile(r'\\n')
219 219
220 220 # Now build the string for output:
221 221 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
222 222 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
223 223 strng)
224 224 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
225 225 strng = par_re.sub(r'\\\\',strng)
226 226 strng = escape_re.sub(r'\\\1',strng)
227 227 strng = newline_re.sub(r'\\textbackslash{}n',strng)
228 228 return strng
229 229
230 230 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
231 231 """Parse options passed to an argument string.
232 232
233 233 The interface is similar to that of getopt(), but it returns back a
234 234 Struct with the options as keys and the stripped argument string still
235 235 as a string.
236 236
237 237 arg_str is quoted as a true sys.argv vector by using shlex.split.
238 238 This allows us to easily expand variables, glob files, quote
239 239 arguments, etc.
240 240
241 241 Options:
242 242 -mode: default 'string'. If given as 'list', the argument string is
243 243 returned as a list (split on whitespace) instead of a string.
244 244
245 245 -list_all: put all option values in lists. Normally only options
246 246 appearing more than once are put in a list.
247 247
248 248 -posix (True): whether to split the input line in POSIX mode or not,
249 249 as per the conventions outlined in the shlex module from the
250 250 standard library."""
251 251
252 252 # inject default options at the beginning of the input line
253 253 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
254 254 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
255 255
256 256 mode = kw.get('mode','string')
257 257 if mode not in ['string','list']:
258 258 raise ValueError,'incorrect mode given: %s' % mode
259 259 # Get options
260 260 list_all = kw.get('list_all',0)
261 261 posix = kw.get('posix', os.name == 'posix')
262 262
263 263 # Check if we have more than one argument to warrant extra processing:
264 264 odict = {} # Dictionary with options
265 265 args = arg_str.split()
266 266 if len(args) >= 1:
267 267 # If the list of inputs only has 0 or 1 thing in it, there's no
268 268 # need to look for options
269 269 argv = arg_split(arg_str,posix)
270 270 # Do regular option processing
271 271 try:
272 272 opts,args = getopt(argv,opt_str,*long_opts)
273 273 except GetoptError,e:
274 274 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
275 275 " ".join(long_opts)))
276 276 for o,a in opts:
277 277 if o.startswith('--'):
278 278 o = o[2:]
279 279 else:
280 280 o = o[1:]
281 281 try:
282 282 odict[o].append(a)
283 283 except AttributeError:
284 284 odict[o] = [odict[o],a]
285 285 except KeyError:
286 286 if list_all:
287 287 odict[o] = [a]
288 288 else:
289 289 odict[o] = a
290 290
291 291 # Prepare opts,args for return
292 292 opts = Struct(odict)
293 293 if mode == 'string':
294 294 args = ' '.join(args)
295 295
296 296 return opts,args
297 297
298 298 #......................................................................
299 299 # And now the actual magic functions
300 300
301 301 # Functions for IPython shell work (vars,funcs, config, etc)
302 302 def magic_lsmagic(self, parameter_s = ''):
303 303 """List currently available magic functions."""
304 304 mesc = ESC_MAGIC
305 305 print 'Available magic functions:\n'+mesc+\
306 306 (' '+mesc).join(self.lsmagic())
307 307 print '\n' + Magic.auto_status[self.shell.automagic]
308 308 return None
309 309
310 310 def magic_magic(self, parameter_s = ''):
311 311 """Print information about the magic function system.
312 312
313 313 Supported formats: -latex, -brief, -rest
314 314 """
315 315
316 316 mode = ''
317 317 try:
318 318 if parameter_s.split()[0] == '-latex':
319 319 mode = 'latex'
320 320 if parameter_s.split()[0] == '-brief':
321 321 mode = 'brief'
322 322 if parameter_s.split()[0] == '-rest':
323 323 mode = 'rest'
324 324 rest_docs = []
325 325 except:
326 326 pass
327 327
328 328 magic_docs = []
329 329 for fname in self.lsmagic():
330 330 mname = 'magic_' + fname
331 331 for space in (Magic,self,self.__class__):
332 332 try:
333 333 fn = space.__dict__[mname]
334 334 except KeyError:
335 335 pass
336 336 else:
337 337 break
338 338 if mode == 'brief':
339 339 # only first line
340 340 if fn.__doc__:
341 341 fndoc = fn.__doc__.split('\n',1)[0]
342 342 else:
343 343 fndoc = 'No documentation'
344 344 else:
345 345 if fn.__doc__:
346 346 fndoc = fn.__doc__.rstrip()
347 347 else:
348 348 fndoc = 'No documentation'
349 349
350 350
351 351 if mode == 'rest':
352 352 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
353 353 fname,fndoc))
354 354
355 355 else:
356 356 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
357 357 fname,fndoc))
358 358
359 359 magic_docs = ''.join(magic_docs)
360 360
361 361 if mode == 'rest':
362 362 return "".join(rest_docs)
363 363
364 364 if mode == 'latex':
365 365 print self.format_latex(magic_docs)
366 366 return
367 367 else:
368 368 magic_docs = format_screen(magic_docs)
369 369 if mode == 'brief':
370 370 return magic_docs
371 371
372 372 outmsg = """
373 373 IPython's 'magic' functions
374 374 ===========================
375 375
376 376 The magic function system provides a series of functions which allow you to
377 377 control the behavior of IPython itself, plus a lot of system-type
378 378 features. All these functions are prefixed with a % character, but parameters
379 379 are given without parentheses or quotes.
380 380
381 381 NOTE: If you have 'automagic' enabled (via the command line option or with the
382 382 %automagic function), you don't need to type in the % explicitly. By default,
383 383 IPython ships with automagic on, so you should only rarely need the % escape.
384 384
385 385 Example: typing '%cd mydir' (without the quotes) changes you working directory
386 386 to 'mydir', if it exists.
387 387
388 388 For a list of the available magic functions, use %lsmagic. For a description
389 389 of any of them, type %magic_name?, e.g. '%cd?'.
390 390
391 391 Currently the magic system has the following functions:\n"""
392 392
393 393 mesc = ESC_MAGIC
394 394 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
395 395 "\n\n%s%s\n\n%s" % (outmsg,
396 396 magic_docs,mesc,mesc,
397 397 (' '+mesc).join(self.lsmagic()),
398 398 Magic.auto_status[self.shell.automagic] ) )
399 399 page.page(outmsg)
400 400
401 401 def magic_automagic(self, parameter_s = ''):
402 402 """Make magic functions callable without having to type the initial %.
403 403
404 404 Without argumentsl toggles on/off (when off, you must call it as
405 405 %automagic, of course). With arguments it sets the value, and you can
406 406 use any of (case insensitive):
407 407
408 408 - on,1,True: to activate
409 409
410 410 - off,0,False: to deactivate.
411 411
412 412 Note that magic functions have lowest priority, so if there's a
413 413 variable whose name collides with that of a magic fn, automagic won't
414 414 work for that function (you get the variable instead). However, if you
415 415 delete the variable (del var), the previously shadowed magic function
416 416 becomes visible to automagic again."""
417 417
418 418 arg = parameter_s.lower()
419 419 if parameter_s in ('on','1','true'):
420 420 self.shell.automagic = True
421 421 elif parameter_s in ('off','0','false'):
422 422 self.shell.automagic = False
423 423 else:
424 424 self.shell.automagic = not self.shell.automagic
425 425 print '\n' + Magic.auto_status[self.shell.automagic]
426 426
427 427 @skip_doctest
428 428 def magic_autocall(self, parameter_s = ''):
429 429 """Make functions callable without having to type parentheses.
430 430
431 431 Usage:
432 432
433 433 %autocall [mode]
434 434
435 435 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
436 436 value is toggled on and off (remembering the previous state).
437 437
438 438 In more detail, these values mean:
439 439
440 440 0 -> fully disabled
441 441
442 442 1 -> active, but do not apply if there are no arguments on the line.
443 443
444 444 In this mode, you get:
445 445
446 446 In [1]: callable
447 447 Out[1]: <built-in function callable>
448 448
449 449 In [2]: callable 'hello'
450 450 ------> callable('hello')
451 451 Out[2]: False
452 452
453 453 2 -> Active always. Even if no arguments are present, the callable
454 454 object is called:
455 455
456 456 In [2]: float
457 457 ------> float()
458 458 Out[2]: 0.0
459 459
460 460 Note that even with autocall off, you can still use '/' at the start of
461 461 a line to treat the first argument on the command line as a function
462 462 and add parentheses to it:
463 463
464 464 In [8]: /str 43
465 465 ------> str(43)
466 466 Out[8]: '43'
467 467
468 468 # all-random (note for auto-testing)
469 469 """
470 470
471 471 if parameter_s:
472 472 arg = int(parameter_s)
473 473 else:
474 474 arg = 'toggle'
475 475
476 476 if not arg in (0,1,2,'toggle'):
477 477 error('Valid modes: (0->Off, 1->Smart, 2->Full')
478 478 return
479 479
480 480 if arg in (0,1,2):
481 481 self.shell.autocall = arg
482 482 else: # toggle
483 483 if self.shell.autocall:
484 484 self._magic_state.autocall_save = self.shell.autocall
485 485 self.shell.autocall = 0
486 486 else:
487 487 try:
488 488 self.shell.autocall = self._magic_state.autocall_save
489 489 except AttributeError:
490 490 self.shell.autocall = self._magic_state.autocall_save = 1
491 491
492 492 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
493 493
494 494
495 495 def magic_page(self, parameter_s=''):
496 496 """Pretty print the object and display it through a pager.
497 497
498 498 %page [options] OBJECT
499 499
500 500 If no object is given, use _ (last output).
501 501
502 502 Options:
503 503
504 504 -r: page str(object), don't pretty-print it."""
505 505
506 506 # After a function contributed by Olivier Aubert, slightly modified.
507 507
508 508 # Process options/args
509 509 opts,args = self.parse_options(parameter_s,'r')
510 510 raw = 'r' in opts
511 511
512 512 oname = args and args or '_'
513 513 info = self._ofind(oname)
514 514 if info['found']:
515 515 txt = (raw and str or pformat)( info['obj'] )
516 516 page.page(txt)
517 517 else:
518 518 print 'Object `%s` not found' % oname
519 519
520 520 def magic_profile(self, parameter_s=''):
521 521 """Print your currently active IPython profile."""
522 522 print self.shell.profile
523 523
524 524 def magic_pinfo(self, parameter_s='', namespaces=None):
525 525 """Provide detailed information about an object.
526 526
527 527 '%pinfo object' is just a synonym for object? or ?object."""
528 528
529 529 #print 'pinfo par: <%s>' % parameter_s # dbg
530 530
531 531
532 532 # detail_level: 0 -> obj? , 1 -> obj??
533 533 detail_level = 0
534 534 # We need to detect if we got called as 'pinfo pinfo foo', which can
535 535 # happen if the user types 'pinfo foo?' at the cmd line.
536 536 pinfo,qmark1,oname,qmark2 = \
537 537 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
538 538 if pinfo or qmark1 or qmark2:
539 539 detail_level = 1
540 540 if "*" in oname:
541 541 self.magic_psearch(oname)
542 542 else:
543 543 self.shell._inspect('pinfo', oname, detail_level=detail_level,
544 544 namespaces=namespaces)
545 545
546 546 def magic_pinfo2(self, parameter_s='', namespaces=None):
547 547 """Provide extra detailed information about an object.
548 548
549 549 '%pinfo2 object' is just a synonym for object?? or ??object."""
550 550 self.shell._inspect('pinfo', parameter_s, detail_level=1,
551 551 namespaces=namespaces)
552 552
553 553 @skip_doctest
554 554 def magic_pdef(self, parameter_s='', namespaces=None):
555 555 """Print the definition header for any callable object.
556 556
557 557 If the object is a class, print the constructor information.
558 558
559 559 Examples
560 560 --------
561 561 ::
562 562
563 563 In [3]: %pdef urllib.urlopen
564 564 urllib.urlopen(url, data=None, proxies=None)
565 565 """
566 566 self._inspect('pdef',parameter_s, namespaces)
567 567
568 568 def magic_pdoc(self, parameter_s='', namespaces=None):
569 569 """Print the docstring for an object.
570 570
571 571 If the given object is a class, it will print both the class and the
572 572 constructor docstrings."""
573 573 self._inspect('pdoc',parameter_s, namespaces)
574 574
575 575 def magic_psource(self, parameter_s='', namespaces=None):
576 576 """Print (or run through pager) the source code for an object."""
577 577 self._inspect('psource',parameter_s, namespaces)
578 578
579 579 def magic_pfile(self, parameter_s=''):
580 580 """Print (or run through pager) the file where an object is defined.
581 581
582 582 The file opens at the line where the object definition begins. IPython
583 583 will honor the environment variable PAGER if set, and otherwise will
584 584 do its best to print the file in a convenient form.
585 585
586 586 If the given argument is not an object currently defined, IPython will
587 587 try to interpret it as a filename (automatically adding a .py extension
588 588 if needed). You can thus use %pfile as a syntax highlighting code
589 589 viewer."""
590 590
591 591 # first interpret argument as an object name
592 592 out = self._inspect('pfile',parameter_s)
593 593 # if not, try the input as a filename
594 594 if out == 'not found':
595 595 try:
596 596 filename = get_py_filename(parameter_s)
597 597 except IOError,msg:
598 598 print msg
599 599 return
600 600 page.page(self.shell.inspector.format(file(filename).read()))
601 601
602 602 def magic_psearch(self, parameter_s=''):
603 603 """Search for object in namespaces by wildcard.
604 604
605 605 %psearch [options] PATTERN [OBJECT TYPE]
606 606
607 607 Note: ? can be used as a synonym for %psearch, at the beginning or at
608 608 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
609 609 rest of the command line must be unchanged (options come first), so
610 610 for example the following forms are equivalent
611 611
612 612 %psearch -i a* function
613 613 -i a* function?
614 614 ?-i a* function
615 615
616 616 Arguments:
617 617
618 618 PATTERN
619 619
620 620 where PATTERN is a string containing * as a wildcard similar to its
621 621 use in a shell. The pattern is matched in all namespaces on the
622 622 search path. By default objects starting with a single _ are not
623 623 matched, many IPython generated objects have a single
624 624 underscore. The default is case insensitive matching. Matching is
625 625 also done on the attributes of objects and not only on the objects
626 626 in a module.
627 627
628 628 [OBJECT TYPE]
629 629
630 630 Is the name of a python type from the types module. The name is
631 631 given in lowercase without the ending type, ex. StringType is
632 632 written string. By adding a type here only objects matching the
633 633 given type are matched. Using all here makes the pattern match all
634 634 types (this is the default).
635 635
636 636 Options:
637 637
638 638 -a: makes the pattern match even objects whose names start with a
639 639 single underscore. These names are normally ommitted from the
640 640 search.
641 641
642 642 -i/-c: make the pattern case insensitive/sensitive. If neither of
643 643 these options are given, the default is read from your configuration
644 644 file, with the option ``InteractiveShell.wildcards_case_sensitive``.
645 645 If this option is not specified in your configuration file, IPython's
646 646 internal default is to do a case sensitive search.
647 647
648 648 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
649 649 specifiy can be searched in any of the following namespaces:
650 650 'builtin', 'user', 'user_global','internal', 'alias', where
651 651 'builtin' and 'user' are the search defaults. Note that you should
652 652 not use quotes when specifying namespaces.
653 653
654 654 'Builtin' contains the python module builtin, 'user' contains all
655 655 user data, 'alias' only contain the shell aliases and no python
656 656 objects, 'internal' contains objects used by IPython. The
657 657 'user_global' namespace is only used by embedded IPython instances,
658 658 and it contains module-level globals. You can add namespaces to the
659 659 search with -s or exclude them with -e (these options can be given
660 660 more than once).
661 661
662 662 Examples:
663 663
664 664 %psearch a* -> objects beginning with an a
665 665 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
666 666 %psearch a* function -> all functions beginning with an a
667 667 %psearch re.e* -> objects beginning with an e in module re
668 668 %psearch r*.e* -> objects that start with e in modules starting in r
669 669 %psearch r*.* string -> all strings in modules beginning with r
670 670
671 671 Case sensitve search:
672 672
673 673 %psearch -c a* list all object beginning with lower case a
674 674
675 675 Show objects beginning with a single _:
676 676
677 677 %psearch -a _* list objects beginning with a single underscore"""
678 678 try:
679 parameter_s = parameter_s.encode('ascii')
679 parameter_s.encode('ascii')
680 680 except UnicodeEncodeError:
681 681 print 'Python identifiers can only contain ascii characters.'
682 682 return
683 683
684 684 # default namespaces to be searched
685 685 def_search = ['user','builtin']
686 686
687 687 # Process options/args
688 688 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
689 689 opt = opts.get
690 690 shell = self.shell
691 691 psearch = shell.inspector.psearch
692 692
693 693 # select case options
694 694 if opts.has_key('i'):
695 695 ignore_case = True
696 696 elif opts.has_key('c'):
697 697 ignore_case = False
698 698 else:
699 699 ignore_case = not shell.wildcards_case_sensitive
700 700
701 701 # Build list of namespaces to search from user options
702 702 def_search.extend(opt('s',[]))
703 703 ns_exclude = ns_exclude=opt('e',[])
704 704 ns_search = [nm for nm in def_search if nm not in ns_exclude]
705 705
706 706 # Call the actual search
707 707 try:
708 708 psearch(args,shell.ns_table,ns_search,
709 709 show_all=opt('a'),ignore_case=ignore_case)
710 710 except:
711 711 shell.showtraceback()
712 712
713 713 @skip_doctest
714 714 def magic_who_ls(self, parameter_s=''):
715 715 """Return a sorted list of all interactive variables.
716 716
717 717 If arguments are given, only variables of types matching these
718 718 arguments are returned.
719 719
720 720 Examples
721 721 --------
722 722
723 723 Define two variables and list them with who_ls::
724 724
725 725 In [1]: alpha = 123
726 726
727 727 In [2]: beta = 'test'
728 728
729 729 In [3]: %who_ls
730 730 Out[3]: ['alpha', 'beta']
731 731
732 732 In [4]: %who_ls int
733 733 Out[4]: ['alpha']
734 734
735 735 In [5]: %who_ls str
736 736 Out[5]: ['beta']
737 737 """
738 738
739 739 user_ns = self.shell.user_ns
740 740 internal_ns = self.shell.internal_ns
741 741 user_ns_hidden = self.shell.user_ns_hidden
742 742 out = [ i for i in user_ns
743 743 if not i.startswith('_') \
744 744 and not (i in internal_ns or i in user_ns_hidden) ]
745 745
746 746 typelist = parameter_s.split()
747 747 if typelist:
748 748 typeset = set(typelist)
749 749 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
750 750
751 751 out.sort()
752 752 return out
753 753
754 754 @skip_doctest
755 755 def magic_who(self, parameter_s=''):
756 756 """Print all interactive variables, with some minimal formatting.
757 757
758 758 If any arguments are given, only variables whose type matches one of
759 759 these are printed. For example:
760 760
761 761 %who function str
762 762
763 763 will only list functions and strings, excluding all other types of
764 764 variables. To find the proper type names, simply use type(var) at a
765 765 command line to see how python prints type names. For example:
766 766
767 767 In [1]: type('hello')\\
768 768 Out[1]: <type 'str'>
769 769
770 770 indicates that the type name for strings is 'str'.
771 771
772 772 %who always excludes executed names loaded through your configuration
773 773 file and things which are internal to IPython.
774 774
775 775 This is deliberate, as typically you may load many modules and the
776 776 purpose of %who is to show you only what you've manually defined.
777 777
778 778 Examples
779 779 --------
780 780
781 781 Define two variables and list them with who::
782 782
783 783 In [1]: alpha = 123
784 784
785 785 In [2]: beta = 'test'
786 786
787 787 In [3]: %who
788 788 alpha beta
789 789
790 790 In [4]: %who int
791 791 alpha
792 792
793 793 In [5]: %who str
794 794 beta
795 795 """
796 796
797 797 varlist = self.magic_who_ls(parameter_s)
798 798 if not varlist:
799 799 if parameter_s:
800 800 print 'No variables match your requested type.'
801 801 else:
802 802 print 'Interactive namespace is empty.'
803 803 return
804 804
805 805 # if we have variables, move on...
806 806 count = 0
807 807 for i in varlist:
808 808 print i+'\t',
809 809 count += 1
810 810 if count > 8:
811 811 count = 0
812 812 print
813 813 print
814 814
815 815 @skip_doctest
816 816 def magic_whos(self, parameter_s=''):
817 817 """Like %who, but gives some extra information about each variable.
818 818
819 819 The same type filtering of %who can be applied here.
820 820
821 821 For all variables, the type is printed. Additionally it prints:
822 822
823 823 - For {},[],(): their length.
824 824
825 825 - For numpy arrays, a summary with shape, number of
826 826 elements, typecode and size in memory.
827 827
828 828 - Everything else: a string representation, snipping their middle if
829 829 too long.
830 830
831 831 Examples
832 832 --------
833 833
834 834 Define two variables and list them with whos::
835 835
836 836 In [1]: alpha = 123
837 837
838 838 In [2]: beta = 'test'
839 839
840 840 In [3]: %whos
841 841 Variable Type Data/Info
842 842 --------------------------------
843 843 alpha int 123
844 844 beta str test
845 845 """
846 846
847 847 varnames = self.magic_who_ls(parameter_s)
848 848 if not varnames:
849 849 if parameter_s:
850 850 print 'No variables match your requested type.'
851 851 else:
852 852 print 'Interactive namespace is empty.'
853 853 return
854 854
855 855 # if we have variables, move on...
856 856
857 857 # for these types, show len() instead of data:
858 858 seq_types = ['dict', 'list', 'tuple']
859 859
860 860 # for numpy/Numeric arrays, display summary info
861 861 try:
862 862 import numpy
863 863 except ImportError:
864 864 ndarray_type = None
865 865 else:
866 866 ndarray_type = numpy.ndarray.__name__
867 867 try:
868 868 import Numeric
869 869 except ImportError:
870 870 array_type = None
871 871 else:
872 872 array_type = Numeric.ArrayType.__name__
873 873
874 874 # Find all variable names and types so we can figure out column sizes
875 875 def get_vars(i):
876 876 return self.shell.user_ns[i]
877 877
878 878 # some types are well known and can be shorter
879 879 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
880 880 def type_name(v):
881 881 tn = type(v).__name__
882 882 return abbrevs.get(tn,tn)
883 883
884 884 varlist = map(get_vars,varnames)
885 885
886 886 typelist = []
887 887 for vv in varlist:
888 888 tt = type_name(vv)
889 889
890 890 if tt=='instance':
891 891 typelist.append( abbrevs.get(str(vv.__class__),
892 892 str(vv.__class__)))
893 893 else:
894 894 typelist.append(tt)
895 895
896 896 # column labels and # of spaces as separator
897 897 varlabel = 'Variable'
898 898 typelabel = 'Type'
899 899 datalabel = 'Data/Info'
900 900 colsep = 3
901 901 # variable format strings
902 902 vformat = "{0:<{varwidth}}{1:<{typewidth}}"
903 903 aformat = "%s: %s elems, type `%s`, %s bytes"
904 904 # find the size of the columns to format the output nicely
905 905 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
906 906 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
907 907 # table header
908 908 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
909 909 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
910 910 # and the table itself
911 911 kb = 1024
912 912 Mb = 1048576 # kb**2
913 913 for vname,var,vtype in zip(varnames,varlist,typelist):
914 914 print vformat.format(vname, vtype, varwidth=varwidth, typewidth=typewidth),
915 915 if vtype in seq_types:
916 916 print "n="+str(len(var))
917 917 elif vtype in [array_type,ndarray_type]:
918 918 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
919 919 if vtype==ndarray_type:
920 920 # numpy
921 921 vsize = var.size
922 922 vbytes = vsize*var.itemsize
923 923 vdtype = var.dtype
924 924 else:
925 925 # Numeric
926 926 vsize = Numeric.size(var)
927 927 vbytes = vsize*var.itemsize()
928 928 vdtype = var.typecode()
929 929
930 930 if vbytes < 100000:
931 931 print aformat % (vshape,vsize,vdtype,vbytes)
932 932 else:
933 933 print aformat % (vshape,vsize,vdtype,vbytes),
934 934 if vbytes < Mb:
935 935 print '(%s kb)' % (vbytes/kb,)
936 936 else:
937 937 print '(%s Mb)' % (vbytes/Mb,)
938 938 else:
939 939 try:
940 940 vstr = str(var)
941 941 except UnicodeEncodeError:
942 942 vstr = unicode(var).encode(sys.getdefaultencoding(),
943 943 'backslashreplace')
944 944 vstr = vstr.replace('\n','\\n')
945 945 if len(vstr) < 50:
946 946 print vstr
947 947 else:
948 948 print vstr[:25] + "<...>" + vstr[-25:]
949 949
950 950 def magic_reset(self, parameter_s=''):
951 951 """Resets the namespace by removing all names defined by the user.
952 952
953 953 Parameters
954 954 ----------
955 955 -f : force reset without asking for confirmation.
956 956
957 957 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
958 958 References to objects may be kept. By default (without this option),
959 959 we do a 'hard' reset, giving you a new session and removing all
960 960 references to objects from the current session.
961 961
962 962 Examples
963 963 --------
964 964 In [6]: a = 1
965 965
966 966 In [7]: a
967 967 Out[7]: 1
968 968
969 969 In [8]: 'a' in _ip.user_ns
970 970 Out[8]: True
971 971
972 972 In [9]: %reset -f
973 973
974 974 In [1]: 'a' in _ip.user_ns
975 975 Out[1]: False
976 976 """
977 977 opts, args = self.parse_options(parameter_s,'sf')
978 978 if 'f' in opts:
979 979 ans = True
980 980 else:
981 981 ans = self.shell.ask_yes_no(
982 982 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
983 983 if not ans:
984 984 print 'Nothing done.'
985 985 return
986 986
987 987 if 's' in opts: # Soft reset
988 988 user_ns = self.shell.user_ns
989 989 for i in self.magic_who_ls():
990 990 del(user_ns[i])
991 991
992 992 else: # Hard reset
993 993 self.shell.reset(new_session = False)
994 994
995 995
996 996
997 997 def magic_reset_selective(self, parameter_s=''):
998 998 """Resets the namespace by removing names defined by the user.
999 999
1000 1000 Input/Output history are left around in case you need them.
1001 1001
1002 1002 %reset_selective [-f] regex
1003 1003
1004 1004 No action is taken if regex is not included
1005 1005
1006 1006 Options
1007 1007 -f : force reset without asking for confirmation.
1008 1008
1009 1009 Examples
1010 1010 --------
1011 1011
1012 1012 We first fully reset the namespace so your output looks identical to
1013 1013 this example for pedagogical reasons; in practice you do not need a
1014 1014 full reset.
1015 1015
1016 1016 In [1]: %reset -f
1017 1017
1018 1018 Now, with a clean namespace we can make a few variables and use
1019 1019 %reset_selective to only delete names that match our regexp:
1020 1020
1021 1021 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1022 1022
1023 1023 In [3]: who_ls
1024 1024 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1025 1025
1026 1026 In [4]: %reset_selective -f b[2-3]m
1027 1027
1028 1028 In [5]: who_ls
1029 1029 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1030 1030
1031 1031 In [6]: %reset_selective -f d
1032 1032
1033 1033 In [7]: who_ls
1034 1034 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1035 1035
1036 1036 In [8]: %reset_selective -f c
1037 1037
1038 1038 In [9]: who_ls
1039 1039 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1040 1040
1041 1041 In [10]: %reset_selective -f b
1042 1042
1043 1043 In [11]: who_ls
1044 1044 Out[11]: ['a']
1045 1045 """
1046 1046
1047 1047 opts, regex = self.parse_options(parameter_s,'f')
1048 1048
1049 1049 if opts.has_key('f'):
1050 1050 ans = True
1051 1051 else:
1052 1052 ans = self.shell.ask_yes_no(
1053 1053 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1054 1054 if not ans:
1055 1055 print 'Nothing done.'
1056 1056 return
1057 1057 user_ns = self.shell.user_ns
1058 1058 if not regex:
1059 1059 print 'No regex pattern specified. Nothing done.'
1060 1060 return
1061 1061 else:
1062 1062 try:
1063 1063 m = re.compile(regex)
1064 1064 except TypeError:
1065 1065 raise TypeError('regex must be a string or compiled pattern')
1066 1066 for i in self.magic_who_ls():
1067 1067 if m.search(i):
1068 1068 del(user_ns[i])
1069 1069
1070 1070 def magic_xdel(self, parameter_s=''):
1071 1071 """Delete a variable, trying to clear it from anywhere that
1072 1072 IPython's machinery has references to it. By default, this uses
1073 1073 the identity of the named object in the user namespace to remove
1074 1074 references held under other names. The object is also removed
1075 1075 from the output history.
1076 1076
1077 1077 Options
1078 1078 -n : Delete the specified name from all namespaces, without
1079 1079 checking their identity.
1080 1080 """
1081 1081 opts, varname = self.parse_options(parameter_s,'n')
1082 1082 try:
1083 1083 self.shell.del_var(varname, ('n' in opts))
1084 1084 except (NameError, ValueError) as e:
1085 1085 print type(e).__name__ +": "+ str(e)
1086 1086
1087 1087 def magic_logstart(self,parameter_s=''):
1088 1088 """Start logging anywhere in a session.
1089 1089
1090 1090 %logstart [-o|-r|-t] [log_name [log_mode]]
1091 1091
1092 1092 If no name is given, it defaults to a file named 'ipython_log.py' in your
1093 1093 current directory, in 'rotate' mode (see below).
1094 1094
1095 1095 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1096 1096 history up to that point and then continues logging.
1097 1097
1098 1098 %logstart takes a second optional parameter: logging mode. This can be one
1099 1099 of (note that the modes are given unquoted):\\
1100 1100 append: well, that says it.\\
1101 1101 backup: rename (if exists) to name~ and start name.\\
1102 1102 global: single logfile in your home dir, appended to.\\
1103 1103 over : overwrite existing log.\\
1104 1104 rotate: create rotating logs name.1~, name.2~, etc.
1105 1105
1106 1106 Options:
1107 1107
1108 1108 -o: log also IPython's output. In this mode, all commands which
1109 1109 generate an Out[NN] prompt are recorded to the logfile, right after
1110 1110 their corresponding input line. The output lines are always
1111 1111 prepended with a '#[Out]# ' marker, so that the log remains valid
1112 1112 Python code.
1113 1113
1114 1114 Since this marker is always the same, filtering only the output from
1115 1115 a log is very easy, using for example a simple awk call:
1116 1116
1117 1117 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1118 1118
1119 1119 -r: log 'raw' input. Normally, IPython's logs contain the processed
1120 1120 input, so that user lines are logged in their final form, converted
1121 1121 into valid Python. For example, %Exit is logged as
1122 1122 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1123 1123 exactly as typed, with no transformations applied.
1124 1124
1125 1125 -t: put timestamps before each input line logged (these are put in
1126 1126 comments)."""
1127 1127
1128 1128 opts,par = self.parse_options(parameter_s,'ort')
1129 1129 log_output = 'o' in opts
1130 1130 log_raw_input = 'r' in opts
1131 1131 timestamp = 't' in opts
1132 1132
1133 1133 logger = self.shell.logger
1134 1134
1135 1135 # if no args are given, the defaults set in the logger constructor by
1136 1136 # ipytohn remain valid
1137 1137 if par:
1138 1138 try:
1139 1139 logfname,logmode = par.split()
1140 1140 except:
1141 1141 logfname = par
1142 1142 logmode = 'backup'
1143 1143 else:
1144 1144 logfname = logger.logfname
1145 1145 logmode = logger.logmode
1146 1146 # put logfname into rc struct as if it had been called on the command
1147 1147 # line, so it ends up saved in the log header Save it in case we need
1148 1148 # to restore it...
1149 1149 old_logfile = self.shell.logfile
1150 1150 if logfname:
1151 1151 logfname = os.path.expanduser(logfname)
1152 1152 self.shell.logfile = logfname
1153 1153
1154 1154 loghead = '# IPython log file\n\n'
1155 1155 try:
1156 1156 started = logger.logstart(logfname,loghead,logmode,
1157 1157 log_output,timestamp,log_raw_input)
1158 1158 except:
1159 1159 self.shell.logfile = old_logfile
1160 1160 warn("Couldn't start log: %s" % sys.exc_info()[1])
1161 1161 else:
1162 1162 # log input history up to this point, optionally interleaving
1163 1163 # output if requested
1164 1164
1165 1165 if timestamp:
1166 1166 # disable timestamping for the previous history, since we've
1167 1167 # lost those already (no time machine here).
1168 1168 logger.timestamp = False
1169 1169
1170 1170 if log_raw_input:
1171 1171 input_hist = self.shell.history_manager.input_hist_raw
1172 1172 else:
1173 1173 input_hist = self.shell.history_manager.input_hist_parsed
1174 1174
1175 1175 if log_output:
1176 1176 log_write = logger.log_write
1177 1177 output_hist = self.shell.history_manager.output_hist
1178 1178 for n in range(1,len(input_hist)-1):
1179 1179 log_write(input_hist[n].rstrip() + '\n')
1180 1180 if n in output_hist:
1181 1181 log_write(repr(output_hist[n]),'output')
1182 1182 else:
1183 1183 logger.log_write('\n'.join(input_hist[1:]))
1184 1184 logger.log_write('\n')
1185 1185 if timestamp:
1186 1186 # re-enable timestamping
1187 1187 logger.timestamp = True
1188 1188
1189 1189 print ('Activating auto-logging. '
1190 1190 'Current session state plus future input saved.')
1191 1191 logger.logstate()
1192 1192
1193 1193 def magic_logstop(self,parameter_s=''):
1194 1194 """Fully stop logging and close log file.
1195 1195
1196 1196 In order to start logging again, a new %logstart call needs to be made,
1197 1197 possibly (though not necessarily) with a new filename, mode and other
1198 1198 options."""
1199 1199 self.logger.logstop()
1200 1200
1201 1201 def magic_logoff(self,parameter_s=''):
1202 1202 """Temporarily stop logging.
1203 1203
1204 1204 You must have previously started logging."""
1205 1205 self.shell.logger.switch_log(0)
1206 1206
1207 1207 def magic_logon(self,parameter_s=''):
1208 1208 """Restart logging.
1209 1209
1210 1210 This function is for restarting logging which you've temporarily
1211 1211 stopped with %logoff. For starting logging for the first time, you
1212 1212 must use the %logstart function, which allows you to specify an
1213 1213 optional log filename."""
1214 1214
1215 1215 self.shell.logger.switch_log(1)
1216 1216
1217 1217 def magic_logstate(self,parameter_s=''):
1218 1218 """Print the status of the logging system."""
1219 1219
1220 1220 self.shell.logger.logstate()
1221 1221
1222 1222 def magic_pdb(self, parameter_s=''):
1223 1223 """Control the automatic calling of the pdb interactive debugger.
1224 1224
1225 1225 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1226 1226 argument it works as a toggle.
1227 1227
1228 1228 When an exception is triggered, IPython can optionally call the
1229 1229 interactive pdb debugger after the traceback printout. %pdb toggles
1230 1230 this feature on and off.
1231 1231
1232 1232 The initial state of this feature is set in your configuration
1233 1233 file (the option is ``InteractiveShell.pdb``).
1234 1234
1235 1235 If you want to just activate the debugger AFTER an exception has fired,
1236 1236 without having to type '%pdb on' and rerunning your code, you can use
1237 1237 the %debug magic."""
1238 1238
1239 1239 par = parameter_s.strip().lower()
1240 1240
1241 1241 if par:
1242 1242 try:
1243 1243 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1244 1244 except KeyError:
1245 1245 print ('Incorrect argument. Use on/1, off/0, '
1246 1246 'or nothing for a toggle.')
1247 1247 return
1248 1248 else:
1249 1249 # toggle
1250 1250 new_pdb = not self.shell.call_pdb
1251 1251
1252 1252 # set on the shell
1253 1253 self.shell.call_pdb = new_pdb
1254 1254 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1255 1255
1256 1256 def magic_debug(self, parameter_s=''):
1257 1257 """Activate the interactive debugger in post-mortem mode.
1258 1258
1259 1259 If an exception has just occurred, this lets you inspect its stack
1260 1260 frames interactively. Note that this will always work only on the last
1261 1261 traceback that occurred, so you must call this quickly after an
1262 1262 exception that you wish to inspect has fired, because if another one
1263 1263 occurs, it clobbers the previous one.
1264 1264
1265 1265 If you want IPython to automatically do this on every exception, see
1266 1266 the %pdb magic for more details.
1267 1267 """
1268 1268 self.shell.debugger(force=True)
1269 1269
1270 1270 @skip_doctest
1271 1271 def magic_prun(self, parameter_s ='',user_mode=1,
1272 1272 opts=None,arg_lst=None,prog_ns=None):
1273 1273
1274 1274 """Run a statement through the python code profiler.
1275 1275
1276 1276 Usage:
1277 1277 %prun [options] statement
1278 1278
1279 1279 The given statement (which doesn't require quote marks) is run via the
1280 1280 python profiler in a manner similar to the profile.run() function.
1281 1281 Namespaces are internally managed to work correctly; profile.run
1282 1282 cannot be used in IPython because it makes certain assumptions about
1283 1283 namespaces which do not hold under IPython.
1284 1284
1285 1285 Options:
1286 1286
1287 1287 -l <limit>: you can place restrictions on what or how much of the
1288 1288 profile gets printed. The limit value can be:
1289 1289
1290 1290 * A string: only information for function names containing this string
1291 1291 is printed.
1292 1292
1293 1293 * An integer: only these many lines are printed.
1294 1294
1295 1295 * A float (between 0 and 1): this fraction of the report is printed
1296 1296 (for example, use a limit of 0.4 to see the topmost 40% only).
1297 1297
1298 1298 You can combine several limits with repeated use of the option. For
1299 1299 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1300 1300 information about class constructors.
1301 1301
1302 1302 -r: return the pstats.Stats object generated by the profiling. This
1303 1303 object has all the information about the profile in it, and you can
1304 1304 later use it for further analysis or in other functions.
1305 1305
1306 1306 -s <key>: sort profile by given key. You can provide more than one key
1307 1307 by using the option several times: '-s key1 -s key2 -s key3...'. The
1308 1308 default sorting key is 'time'.
1309 1309
1310 1310 The following is copied verbatim from the profile documentation
1311 1311 referenced below:
1312 1312
1313 1313 When more than one key is provided, additional keys are used as
1314 1314 secondary criteria when the there is equality in all keys selected
1315 1315 before them.
1316 1316
1317 1317 Abbreviations can be used for any key names, as long as the
1318 1318 abbreviation is unambiguous. The following are the keys currently
1319 1319 defined:
1320 1320
1321 1321 Valid Arg Meaning
1322 1322 "calls" call count
1323 1323 "cumulative" cumulative time
1324 1324 "file" file name
1325 1325 "module" file name
1326 1326 "pcalls" primitive call count
1327 1327 "line" line number
1328 1328 "name" function name
1329 1329 "nfl" name/file/line
1330 1330 "stdname" standard name
1331 1331 "time" internal time
1332 1332
1333 1333 Note that all sorts on statistics are in descending order (placing
1334 1334 most time consuming items first), where as name, file, and line number
1335 1335 searches are in ascending order (i.e., alphabetical). The subtle
1336 1336 distinction between "nfl" and "stdname" is that the standard name is a
1337 1337 sort of the name as printed, which means that the embedded line
1338 1338 numbers get compared in an odd way. For example, lines 3, 20, and 40
1339 1339 would (if the file names were the same) appear in the string order
1340 1340 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1341 1341 line numbers. In fact, sort_stats("nfl") is the same as
1342 1342 sort_stats("name", "file", "line").
1343 1343
1344 1344 -T <filename>: save profile results as shown on screen to a text
1345 1345 file. The profile is still shown on screen.
1346 1346
1347 1347 -D <filename>: save (via dump_stats) profile statistics to given
1348 1348 filename. This data is in a format understod by the pstats module, and
1349 1349 is generated by a call to the dump_stats() method of profile
1350 1350 objects. The profile is still shown on screen.
1351 1351
1352 1352 If you want to run complete programs under the profiler's control, use
1353 1353 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1354 1354 contains profiler specific options as described here.
1355 1355
1356 1356 You can read the complete documentation for the profile module with::
1357 1357
1358 1358 In [1]: import profile; profile.help()
1359 1359 """
1360 1360
1361 1361 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1362 1362 # protect user quote marks
1363 1363 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1364 1364
1365 1365 if user_mode: # regular user call
1366 1366 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1367 1367 list_all=1)
1368 1368 namespace = self.shell.user_ns
1369 1369 else: # called to run a program by %run -p
1370 1370 try:
1371 1371 filename = get_py_filename(arg_lst[0])
1372 1372 except IOError,msg:
1373 1373 error(msg)
1374 1374 return
1375 1375
1376 1376 arg_str = 'execfile(filename,prog_ns)'
1377 1377 namespace = locals()
1378 1378
1379 1379 opts.merge(opts_def)
1380 1380
1381 1381 prof = profile.Profile()
1382 1382 try:
1383 1383 prof = prof.runctx(arg_str,namespace,namespace)
1384 1384 sys_exit = ''
1385 1385 except SystemExit:
1386 1386 sys_exit = """*** SystemExit exception caught in code being profiled."""
1387 1387
1388 1388 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1389 1389
1390 1390 lims = opts.l
1391 1391 if lims:
1392 1392 lims = [] # rebuild lims with ints/floats/strings
1393 1393 for lim in opts.l:
1394 1394 try:
1395 1395 lims.append(int(lim))
1396 1396 except ValueError:
1397 1397 try:
1398 1398 lims.append(float(lim))
1399 1399 except ValueError:
1400 1400 lims.append(lim)
1401 1401
1402 1402 # Trap output.
1403 1403 stdout_trap = StringIO()
1404 1404
1405 1405 if hasattr(stats,'stream'):
1406 1406 # In newer versions of python, the stats object has a 'stream'
1407 1407 # attribute to write into.
1408 1408 stats.stream = stdout_trap
1409 1409 stats.print_stats(*lims)
1410 1410 else:
1411 1411 # For older versions, we manually redirect stdout during printing
1412 1412 sys_stdout = sys.stdout
1413 1413 try:
1414 1414 sys.stdout = stdout_trap
1415 1415 stats.print_stats(*lims)
1416 1416 finally:
1417 1417 sys.stdout = sys_stdout
1418 1418
1419 1419 output = stdout_trap.getvalue()
1420 1420 output = output.rstrip()
1421 1421
1422 1422 page.page(output)
1423 1423 print sys_exit,
1424 1424
1425 1425 dump_file = opts.D[0]
1426 1426 text_file = opts.T[0]
1427 1427 if dump_file:
1428 1428 dump_file = unquote_filename(dump_file)
1429 1429 prof.dump_stats(dump_file)
1430 1430 print '\n*** Profile stats marshalled to file',\
1431 1431 `dump_file`+'.',sys_exit
1432 1432 if text_file:
1433 1433 text_file = unquote_filename(text_file)
1434 1434 pfile = file(text_file,'w')
1435 1435 pfile.write(output)
1436 1436 pfile.close()
1437 1437 print '\n*** Profile printout saved to text file',\
1438 1438 `text_file`+'.',sys_exit
1439 1439
1440 1440 if opts.has_key('r'):
1441 1441 return stats
1442 1442 else:
1443 1443 return None
1444 1444
1445 1445 @skip_doctest
1446 1446 def magic_run(self, parameter_s ='',runner=None,
1447 1447 file_finder=get_py_filename):
1448 1448 """Run the named file inside IPython as a program.
1449 1449
1450 1450 Usage:\\
1451 1451 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1452 1452
1453 1453 Parameters after the filename are passed as command-line arguments to
1454 1454 the program (put in sys.argv). Then, control returns to IPython's
1455 1455 prompt.
1456 1456
1457 1457 This is similar to running at a system prompt:\\
1458 1458 $ python file args\\
1459 1459 but with the advantage of giving you IPython's tracebacks, and of
1460 1460 loading all variables into your interactive namespace for further use
1461 1461 (unless -p is used, see below).
1462 1462
1463 1463 The file is executed in a namespace initially consisting only of
1464 1464 __name__=='__main__' and sys.argv constructed as indicated. It thus
1465 1465 sees its environment as if it were being run as a stand-alone program
1466 1466 (except for sharing global objects such as previously imported
1467 1467 modules). But after execution, the IPython interactive namespace gets
1468 1468 updated with all variables defined in the program (except for __name__
1469 1469 and sys.argv). This allows for very convenient loading of code for
1470 1470 interactive work, while giving each program a 'clean sheet' to run in.
1471 1471
1472 1472 Options:
1473 1473
1474 1474 -n: __name__ is NOT set to '__main__', but to the running file's name
1475 1475 without extension (as python does under import). This allows running
1476 1476 scripts and reloading the definitions in them without calling code
1477 1477 protected by an ' if __name__ == "__main__" ' clause.
1478 1478
1479 1479 -i: run the file in IPython's namespace instead of an empty one. This
1480 1480 is useful if you are experimenting with code written in a text editor
1481 1481 which depends on variables defined interactively.
1482 1482
1483 1483 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1484 1484 being run. This is particularly useful if IPython is being used to
1485 1485 run unittests, which always exit with a sys.exit() call. In such
1486 1486 cases you are interested in the output of the test results, not in
1487 1487 seeing a traceback of the unittest module.
1488 1488
1489 1489 -t: print timing information at the end of the run. IPython will give
1490 1490 you an estimated CPU time consumption for your script, which under
1491 1491 Unix uses the resource module to avoid the wraparound problems of
1492 1492 time.clock(). Under Unix, an estimate of time spent on system tasks
1493 1493 is also given (for Windows platforms this is reported as 0.0).
1494 1494
1495 1495 If -t is given, an additional -N<N> option can be given, where <N>
1496 1496 must be an integer indicating how many times you want the script to
1497 1497 run. The final timing report will include total and per run results.
1498 1498
1499 1499 For example (testing the script uniq_stable.py):
1500 1500
1501 1501 In [1]: run -t uniq_stable
1502 1502
1503 1503 IPython CPU timings (estimated):\\
1504 1504 User : 0.19597 s.\\
1505 1505 System: 0.0 s.\\
1506 1506
1507 1507 In [2]: run -t -N5 uniq_stable
1508 1508
1509 1509 IPython CPU timings (estimated):\\
1510 1510 Total runs performed: 5\\
1511 1511 Times : Total Per run\\
1512 1512 User : 0.910862 s, 0.1821724 s.\\
1513 1513 System: 0.0 s, 0.0 s.
1514 1514
1515 1515 -d: run your program under the control of pdb, the Python debugger.
1516 1516 This allows you to execute your program step by step, watch variables,
1517 1517 etc. Internally, what IPython does is similar to calling:
1518 1518
1519 1519 pdb.run('execfile("YOURFILENAME")')
1520 1520
1521 1521 with a breakpoint set on line 1 of your file. You can change the line
1522 1522 number for this automatic breakpoint to be <N> by using the -bN option
1523 1523 (where N must be an integer). For example:
1524 1524
1525 1525 %run -d -b40 myscript
1526 1526
1527 1527 will set the first breakpoint at line 40 in myscript.py. Note that
1528 1528 the first breakpoint must be set on a line which actually does
1529 1529 something (not a comment or docstring) for it to stop execution.
1530 1530
1531 1531 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1532 1532 first enter 'c' (without qoutes) to start execution up to the first
1533 1533 breakpoint.
1534 1534
1535 1535 Entering 'help' gives information about the use of the debugger. You
1536 1536 can easily see pdb's full documentation with "import pdb;pdb.help()"
1537 1537 at a prompt.
1538 1538
1539 1539 -p: run program under the control of the Python profiler module (which
1540 1540 prints a detailed report of execution times, function calls, etc).
1541 1541
1542 1542 You can pass other options after -p which affect the behavior of the
1543 1543 profiler itself. See the docs for %prun for details.
1544 1544
1545 1545 In this mode, the program's variables do NOT propagate back to the
1546 1546 IPython interactive namespace (because they remain in the namespace
1547 1547 where the profiler executes them).
1548 1548
1549 1549 Internally this triggers a call to %prun, see its documentation for
1550 1550 details on the options available specifically for profiling.
1551 1551
1552 1552 There is one special usage for which the text above doesn't apply:
1553 1553 if the filename ends with .ipy, the file is run as ipython script,
1554 1554 just as if the commands were written on IPython prompt.
1555 1555 """
1556 1556
1557 1557 # get arguments and set sys.argv for program to be run.
1558 1558 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1559 1559 mode='list',list_all=1)
1560 1560
1561 1561 try:
1562 1562 filename = file_finder(arg_lst[0])
1563 1563 except IndexError:
1564 1564 warn('you must provide at least a filename.')
1565 1565 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1566 1566 return
1567 1567 except IOError,msg:
1568 1568 error(msg)
1569 1569 return
1570 1570
1571 1571 if filename.lower().endswith('.ipy'):
1572 1572 self.shell.safe_execfile_ipy(filename)
1573 1573 return
1574 1574
1575 1575 # Control the response to exit() calls made by the script being run
1576 1576 exit_ignore = opts.has_key('e')
1577 1577
1578 1578 # Make sure that the running script gets a proper sys.argv as if it
1579 1579 # were run from a system shell.
1580 1580 save_argv = sys.argv # save it for later restoring
1581 1581
1582 1582 # simulate shell expansion on arguments, at least tilde expansion
1583 1583 args = [ os.path.expanduser(a) for a in arg_lst[1:] ]
1584 1584
1585 1585 sys.argv = [filename]+ args # put in the proper filename
1586 1586
1587 1587 if opts.has_key('i'):
1588 1588 # Run in user's interactive namespace
1589 1589 prog_ns = self.shell.user_ns
1590 1590 __name__save = self.shell.user_ns['__name__']
1591 1591 prog_ns['__name__'] = '__main__'
1592 1592 main_mod = self.shell.new_main_mod(prog_ns)
1593 1593 else:
1594 1594 # Run in a fresh, empty namespace
1595 1595 if opts.has_key('n'):
1596 1596 name = os.path.splitext(os.path.basename(filename))[0]
1597 1597 else:
1598 1598 name = '__main__'
1599 1599
1600 1600 main_mod = self.shell.new_main_mod()
1601 1601 prog_ns = main_mod.__dict__
1602 1602 prog_ns['__name__'] = name
1603 1603
1604 1604 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1605 1605 # set the __file__ global in the script's namespace
1606 1606 prog_ns['__file__'] = filename
1607 1607
1608 1608 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1609 1609 # that, if we overwrite __main__, we replace it at the end
1610 1610 main_mod_name = prog_ns['__name__']
1611 1611
1612 1612 if main_mod_name == '__main__':
1613 1613 restore_main = sys.modules['__main__']
1614 1614 else:
1615 1615 restore_main = False
1616 1616
1617 1617 # This needs to be undone at the end to prevent holding references to
1618 1618 # every single object ever created.
1619 1619 sys.modules[main_mod_name] = main_mod
1620 1620
1621 1621 try:
1622 1622 stats = None
1623 1623 with self.readline_no_record:
1624 1624 if opts.has_key('p'):
1625 1625 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1626 1626 else:
1627 1627 if opts.has_key('d'):
1628 1628 deb = debugger.Pdb(self.shell.colors)
1629 1629 # reset Breakpoint state, which is moronically kept
1630 1630 # in a class
1631 1631 bdb.Breakpoint.next = 1
1632 1632 bdb.Breakpoint.bplist = {}
1633 1633 bdb.Breakpoint.bpbynumber = [None]
1634 1634 # Set an initial breakpoint to stop execution
1635 1635 maxtries = 10
1636 1636 bp = int(opts.get('b',[1])[0])
1637 1637 checkline = deb.checkline(filename,bp)
1638 1638 if not checkline:
1639 1639 for bp in range(bp+1,bp+maxtries+1):
1640 1640 if deb.checkline(filename,bp):
1641 1641 break
1642 1642 else:
1643 1643 msg = ("\nI failed to find a valid line to set "
1644 1644 "a breakpoint\n"
1645 1645 "after trying up to line: %s.\n"
1646 1646 "Please set a valid breakpoint manually "
1647 1647 "with the -b option." % bp)
1648 1648 error(msg)
1649 1649 return
1650 1650 # if we find a good linenumber, set the breakpoint
1651 1651 deb.do_break('%s:%s' % (filename,bp))
1652 1652 # Start file run
1653 1653 print "NOTE: Enter 'c' at the",
1654 1654 print "%s prompt to start your script." % deb.prompt
1655 1655 try:
1656 1656 deb.run('execfile("%s")' % filename,prog_ns)
1657 1657
1658 1658 except:
1659 1659 etype, value, tb = sys.exc_info()
1660 1660 # Skip three frames in the traceback: the %run one,
1661 1661 # one inside bdb.py, and the command-line typed by the
1662 1662 # user (run by exec in pdb itself).
1663 1663 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1664 1664 else:
1665 1665 if runner is None:
1666 1666 runner = self.shell.safe_execfile
1667 1667 if opts.has_key('t'):
1668 1668 # timed execution
1669 1669 try:
1670 1670 nruns = int(opts['N'][0])
1671 1671 if nruns < 1:
1672 1672 error('Number of runs must be >=1')
1673 1673 return
1674 1674 except (KeyError):
1675 1675 nruns = 1
1676 1676 twall0 = time.time()
1677 1677 if nruns == 1:
1678 1678 t0 = clock2()
1679 1679 runner(filename,prog_ns,prog_ns,
1680 1680 exit_ignore=exit_ignore)
1681 1681 t1 = clock2()
1682 1682 t_usr = t1[0]-t0[0]
1683 1683 t_sys = t1[1]-t0[1]
1684 1684 print "\nIPython CPU timings (estimated):"
1685 1685 print " User : %10.2f s." % t_usr
1686 1686 print " System : %10.2f s." % t_sys
1687 1687 else:
1688 1688 runs = range(nruns)
1689 1689 t0 = clock2()
1690 1690 for nr in runs:
1691 1691 runner(filename,prog_ns,prog_ns,
1692 1692 exit_ignore=exit_ignore)
1693 1693 t1 = clock2()
1694 1694 t_usr = t1[0]-t0[0]
1695 1695 t_sys = t1[1]-t0[1]
1696 1696 print "\nIPython CPU timings (estimated):"
1697 1697 print "Total runs performed:",nruns
1698 1698 print " Times : %10.2f %10.2f" % ('Total','Per run')
1699 1699 print " User : %10.2f s, %10.2f s." % (t_usr,t_usr/nruns)
1700 1700 print " System : %10.2f s, %10.2f s." % (t_sys,t_sys/nruns)
1701 1701 twall1 = time.time()
1702 1702 print "Wall time: %10.2f s." % (twall1-twall0)
1703 1703
1704 1704 else:
1705 1705 # regular execution
1706 1706 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1707 1707
1708 1708 if opts.has_key('i'):
1709 1709 self.shell.user_ns['__name__'] = __name__save
1710 1710 else:
1711 1711 # The shell MUST hold a reference to prog_ns so after %run
1712 1712 # exits, the python deletion mechanism doesn't zero it out
1713 1713 # (leaving dangling references).
1714 1714 self.shell.cache_main_mod(prog_ns,filename)
1715 1715 # update IPython interactive namespace
1716 1716
1717 1717 # Some forms of read errors on the file may mean the
1718 1718 # __name__ key was never set; using pop we don't have to
1719 1719 # worry about a possible KeyError.
1720 1720 prog_ns.pop('__name__', None)
1721 1721
1722 1722 self.shell.user_ns.update(prog_ns)
1723 1723 finally:
1724 1724 # It's a bit of a mystery why, but __builtins__ can change from
1725 1725 # being a module to becoming a dict missing some key data after
1726 1726 # %run. As best I can see, this is NOT something IPython is doing
1727 1727 # at all, and similar problems have been reported before:
1728 1728 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1729 1729 # Since this seems to be done by the interpreter itself, the best
1730 1730 # we can do is to at least restore __builtins__ for the user on
1731 1731 # exit.
1732 1732 self.shell.user_ns['__builtins__'] = builtin_mod
1733 1733
1734 1734 # Ensure key global structures are restored
1735 1735 sys.argv = save_argv
1736 1736 if restore_main:
1737 1737 sys.modules['__main__'] = restore_main
1738 1738 else:
1739 1739 # Remove from sys.modules the reference to main_mod we'd
1740 1740 # added. Otherwise it will trap references to objects
1741 1741 # contained therein.
1742 1742 del sys.modules[main_mod_name]
1743 1743
1744 1744 return stats
1745 1745
1746 1746 @skip_doctest
1747 1747 def magic_timeit(self, parameter_s =''):
1748 1748 """Time execution of a Python statement or expression
1749 1749
1750 1750 Usage:\\
1751 1751 %timeit [-n<N> -r<R> [-t|-c]] statement
1752 1752
1753 1753 Time execution of a Python statement or expression using the timeit
1754 1754 module.
1755 1755
1756 1756 Options:
1757 1757 -n<N>: execute the given statement <N> times in a loop. If this value
1758 1758 is not given, a fitting value is chosen.
1759 1759
1760 1760 -r<R>: repeat the loop iteration <R> times and take the best result.
1761 1761 Default: 3
1762 1762
1763 1763 -t: use time.time to measure the time, which is the default on Unix.
1764 1764 This function measures wall time.
1765 1765
1766 1766 -c: use time.clock to measure the time, which is the default on
1767 1767 Windows and measures wall time. On Unix, resource.getrusage is used
1768 1768 instead and returns the CPU user time.
1769 1769
1770 1770 -p<P>: use a precision of <P> digits to display the timing result.
1771 1771 Default: 3
1772 1772
1773 1773
1774 1774 Examples:
1775 1775
1776 1776 In [1]: %timeit pass
1777 1777 10000000 loops, best of 3: 53.3 ns per loop
1778 1778
1779 1779 In [2]: u = None
1780 1780
1781 1781 In [3]: %timeit u is None
1782 1782 10000000 loops, best of 3: 184 ns per loop
1783 1783
1784 1784 In [4]: %timeit -r 4 u == None
1785 1785 1000000 loops, best of 4: 242 ns per loop
1786 1786
1787 1787 In [5]: import time
1788 1788
1789 1789 In [6]: %timeit -n1 time.sleep(2)
1790 1790 1 loops, best of 3: 2 s per loop
1791 1791
1792 1792
1793 1793 The times reported by %timeit will be slightly higher than those
1794 1794 reported by the timeit.py script when variables are accessed. This is
1795 1795 due to the fact that %timeit executes the statement in the namespace
1796 1796 of the shell, compared with timeit.py, which uses a single setup
1797 1797 statement to import function or create variables. Generally, the bias
1798 1798 does not matter as long as results from timeit.py are not mixed with
1799 1799 those from %timeit."""
1800 1800
1801 1801 import timeit
1802 1802 import math
1803 1803
1804 1804 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1805 1805 # certain terminals. Until we figure out a robust way of
1806 1806 # auto-detecting if the terminal can deal with it, use plain 'us' for
1807 1807 # microseconds. I am really NOT happy about disabling the proper
1808 1808 # 'micro' prefix, but crashing is worse... If anyone knows what the
1809 1809 # right solution for this is, I'm all ears...
1810 1810 #
1811 1811 # Note: using
1812 1812 #
1813 1813 # s = u'\xb5'
1814 1814 # s.encode(sys.getdefaultencoding())
1815 1815 #
1816 1816 # is not sufficient, as I've seen terminals where that fails but
1817 1817 # print s
1818 1818 #
1819 1819 # succeeds
1820 1820 #
1821 1821 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1822 1822
1823 1823 #units = [u"s", u"ms",u'\xb5',"ns"]
1824 1824 units = [u"s", u"ms",u'us',"ns"]
1825 1825
1826 1826 scaling = [1, 1e3, 1e6, 1e9]
1827 1827
1828 1828 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1829 1829 posix=False)
1830 1830 if stmt == "":
1831 1831 return
1832 1832 timefunc = timeit.default_timer
1833 1833 number = int(getattr(opts, "n", 0))
1834 1834 repeat = int(getattr(opts, "r", timeit.default_repeat))
1835 1835 precision = int(getattr(opts, "p", 3))
1836 1836 if hasattr(opts, "t"):
1837 1837 timefunc = time.time
1838 1838 if hasattr(opts, "c"):
1839 1839 timefunc = clock
1840 1840
1841 1841 timer = timeit.Timer(timer=timefunc)
1842 1842 # this code has tight coupling to the inner workings of timeit.Timer,
1843 1843 # but is there a better way to achieve that the code stmt has access
1844 1844 # to the shell namespace?
1845 1845
1846 1846 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1847 1847 'setup': "pass"}
1848 1848 # Track compilation time so it can be reported if too long
1849 1849 # Minimum time above which compilation time will be reported
1850 1850 tc_min = 0.1
1851 1851
1852 1852 t0 = clock()
1853 1853 code = compile(src, "<magic-timeit>", "exec")
1854 1854 tc = clock()-t0
1855 1855
1856 1856 ns = {}
1857 1857 exec code in self.shell.user_ns, ns
1858 1858 timer.inner = ns["inner"]
1859 1859
1860 1860 if number == 0:
1861 1861 # determine number so that 0.2 <= total time < 2.0
1862 1862 number = 1
1863 1863 for i in range(1, 10):
1864 1864 if timer.timeit(number) >= 0.2:
1865 1865 break
1866 1866 number *= 10
1867 1867
1868 1868 best = min(timer.repeat(repeat, number)) / number
1869 1869
1870 1870 if best > 0.0 and best < 1000.0:
1871 1871 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1872 1872 elif best >= 1000.0:
1873 1873 order = 0
1874 1874 else:
1875 1875 order = 3
1876 1876 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1877 1877 precision,
1878 1878 best * scaling[order],
1879 1879 units[order])
1880 1880 if tc > tc_min:
1881 1881 print "Compiler time: %.2f s" % tc
1882 1882
1883 1883 @skip_doctest
1884 1884 @needs_local_scope
1885 1885 def magic_time(self,parameter_s = ''):
1886 1886 """Time execution of a Python statement or expression.
1887 1887
1888 1888 The CPU and wall clock times are printed, and the value of the
1889 1889 expression (if any) is returned. Note that under Win32, system time
1890 1890 is always reported as 0, since it can not be measured.
1891 1891
1892 1892 This function provides very basic timing functionality. In Python
1893 1893 2.3, the timeit module offers more control and sophistication, so this
1894 1894 could be rewritten to use it (patches welcome).
1895 1895
1896 1896 Some examples:
1897 1897
1898 1898 In [1]: time 2**128
1899 1899 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1900 1900 Wall time: 0.00
1901 1901 Out[1]: 340282366920938463463374607431768211456L
1902 1902
1903 1903 In [2]: n = 1000000
1904 1904
1905 1905 In [3]: time sum(range(n))
1906 1906 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1907 1907 Wall time: 1.37
1908 1908 Out[3]: 499999500000L
1909 1909
1910 1910 In [4]: time print 'hello world'
1911 1911 hello world
1912 1912 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1913 1913 Wall time: 0.00
1914 1914
1915 1915 Note that the time needed by Python to compile the given expression
1916 1916 will be reported if it is more than 0.1s. In this example, the
1917 1917 actual exponentiation is done by Python at compilation time, so while
1918 1918 the expression can take a noticeable amount of time to compute, that
1919 1919 time is purely due to the compilation:
1920 1920
1921 1921 In [5]: time 3**9999;
1922 1922 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1923 1923 Wall time: 0.00 s
1924 1924
1925 1925 In [6]: time 3**999999;
1926 1926 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1927 1927 Wall time: 0.00 s
1928 1928 Compiler : 0.78 s
1929 1929 """
1930 1930
1931 1931 # fail immediately if the given expression can't be compiled
1932 1932
1933 1933 expr = self.shell.prefilter(parameter_s,False)
1934 1934
1935 1935 # Minimum time above which compilation time will be reported
1936 1936 tc_min = 0.1
1937 1937
1938 1938 try:
1939 1939 mode = 'eval'
1940 1940 t0 = clock()
1941 1941 code = compile(expr,'<timed eval>',mode)
1942 1942 tc = clock()-t0
1943 1943 except SyntaxError:
1944 1944 mode = 'exec'
1945 1945 t0 = clock()
1946 1946 code = compile(expr,'<timed exec>',mode)
1947 1947 tc = clock()-t0
1948 1948 # skew measurement as little as possible
1949 1949 glob = self.shell.user_ns
1950 1950 locs = self._magic_locals
1951 1951 clk = clock2
1952 1952 wtime = time.time
1953 1953 # time execution
1954 1954 wall_st = wtime()
1955 1955 if mode=='eval':
1956 1956 st = clk()
1957 1957 out = eval(code, glob, locs)
1958 1958 end = clk()
1959 1959 else:
1960 1960 st = clk()
1961 1961 exec code in glob, locs
1962 1962 end = clk()
1963 1963 out = None
1964 1964 wall_end = wtime()
1965 1965 # Compute actual times and report
1966 1966 wall_time = wall_end-wall_st
1967 1967 cpu_user = end[0]-st[0]
1968 1968 cpu_sys = end[1]-st[1]
1969 1969 cpu_tot = cpu_user+cpu_sys
1970 1970 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1971 1971 (cpu_user,cpu_sys,cpu_tot)
1972 1972 print "Wall time: %.2f s" % wall_time
1973 1973 if tc > tc_min:
1974 1974 print "Compiler : %.2f s" % tc
1975 1975 return out
1976 1976
1977 1977 @skip_doctest
1978 1978 def magic_macro(self,parameter_s = ''):
1979 1979 """Define a macro for future re-execution. It accepts ranges of history,
1980 1980 filenames or string objects.
1981 1981
1982 1982 Usage:\\
1983 1983 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1984 1984
1985 1985 Options:
1986 1986
1987 1987 -r: use 'raw' input. By default, the 'processed' history is used,
1988 1988 so that magics are loaded in their transformed version to valid
1989 1989 Python. If this option is given, the raw input as typed as the
1990 1990 command line is used instead.
1991 1991
1992 1992 This will define a global variable called `name` which is a string
1993 1993 made of joining the slices and lines you specify (n1,n2,... numbers
1994 1994 above) from your input history into a single string. This variable
1995 1995 acts like an automatic function which re-executes those lines as if
1996 1996 you had typed them. You just type 'name' at the prompt and the code
1997 1997 executes.
1998 1998
1999 1999 The syntax for indicating input ranges is described in %history.
2000 2000
2001 2001 Note: as a 'hidden' feature, you can also use traditional python slice
2002 2002 notation, where N:M means numbers N through M-1.
2003 2003
2004 2004 For example, if your history contains (%hist prints it):
2005 2005
2006 2006 44: x=1
2007 2007 45: y=3
2008 2008 46: z=x+y
2009 2009 47: print x
2010 2010 48: a=5
2011 2011 49: print 'x',x,'y',y
2012 2012
2013 2013 you can create a macro with lines 44 through 47 (included) and line 49
2014 2014 called my_macro with:
2015 2015
2016 2016 In [55]: %macro my_macro 44-47 49
2017 2017
2018 2018 Now, typing `my_macro` (without quotes) will re-execute all this code
2019 2019 in one pass.
2020 2020
2021 2021 You don't need to give the line-numbers in order, and any given line
2022 2022 number can appear multiple times. You can assemble macros with any
2023 2023 lines from your input history in any order.
2024 2024
2025 2025 The macro is a simple object which holds its value in an attribute,
2026 2026 but IPython's display system checks for macros and executes them as
2027 2027 code instead of printing them when you type their name.
2028 2028
2029 2029 You can view a macro's contents by explicitly printing it with:
2030 2030
2031 2031 'print macro_name'.
2032 2032
2033 2033 """
2034 2034 opts,args = self.parse_options(parameter_s,'r',mode='list')
2035 2035 if not args: # List existing macros
2036 2036 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2037 2037 isinstance(v, Macro))
2038 2038 if len(args) == 1:
2039 2039 raise UsageError(
2040 2040 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2041 2041 name, codefrom = args[0], " ".join(args[1:])
2042 2042
2043 2043 #print 'rng',ranges # dbg
2044 2044 try:
2045 2045 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2046 2046 except (ValueError, TypeError) as e:
2047 2047 print e.args[0]
2048 2048 return
2049 2049 macro = Macro(lines)
2050 2050 self.shell.define_macro(name, macro)
2051 2051 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2052 2052 print '=== Macro contents: ==='
2053 2053 print macro,
2054 2054
2055 2055 def magic_save(self,parameter_s = ''):
2056 2056 """Save a set of lines or a macro to a given filename.
2057 2057
2058 2058 Usage:\\
2059 2059 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2060 2060
2061 2061 Options:
2062 2062
2063 2063 -r: use 'raw' input. By default, the 'processed' history is used,
2064 2064 so that magics are loaded in their transformed version to valid
2065 2065 Python. If this option is given, the raw input as typed as the
2066 2066 command line is used instead.
2067 2067
2068 2068 This function uses the same syntax as %history for input ranges,
2069 2069 then saves the lines to the filename you specify.
2070 2070
2071 2071 It adds a '.py' extension to the file if you don't do so yourself, and
2072 2072 it asks for confirmation before overwriting existing files."""
2073 2073
2074 2074 opts,args = self.parse_options(parameter_s,'r',mode='list')
2075 2075 fname, codefrom = unquote_filename(args[0]), " ".join(args[1:])
2076 2076 if not fname.endswith('.py'):
2077 2077 fname += '.py'
2078 2078 if os.path.isfile(fname):
2079 2079 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2080 2080 if ans.lower() not in ['y','yes']:
2081 2081 print 'Operation cancelled.'
2082 2082 return
2083 2083 try:
2084 2084 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2085 2085 except (TypeError, ValueError) as e:
2086 2086 print e.args[0]
2087 2087 return
2088 2088 if isinstance(cmds, unicode):
2089 2089 cmds = cmds.encode("utf-8")
2090 2090 with open(fname,'w') as f:
2091 2091 f.write("# coding: utf-8\n")
2092 2092 f.write(cmds)
2093 2093 print 'The following commands were written to file `%s`:' % fname
2094 2094 print cmds
2095 2095
2096 2096 def magic_pastebin(self, parameter_s = ''):
2097 2097 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2098 2098 try:
2099 2099 code = self.shell.find_user_code(parameter_s)
2100 2100 except (ValueError, TypeError) as e:
2101 2101 print e.args[0]
2102 2102 return
2103 2103 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2104 2104 id = pbserver.pastes.newPaste("python", code)
2105 2105 return "http://paste.pocoo.org/show/" + id
2106 2106
2107 2107 def magic_loadpy(self, arg_s):
2108 2108 """Load a .py python script into the GUI console.
2109 2109
2110 2110 This magic command can either take a local filename or a url::
2111 2111
2112 2112 %loadpy myscript.py
2113 2113 %loadpy http://www.example.com/myscript.py
2114 2114 """
2115 2115 arg_s = unquote_filename(arg_s)
2116 2116 if not arg_s.endswith('.py'):
2117 2117 raise ValueError('%%load only works with .py files: %s' % arg_s)
2118 2118 if arg_s.startswith('http'):
2119 2119 import urllib2
2120 2120 response = urllib2.urlopen(arg_s)
2121 2121 content = response.read()
2122 2122 else:
2123 2123 with open(arg_s) as f:
2124 2124 content = f.read()
2125 2125 self.set_next_input(content)
2126 2126
2127 2127 def _find_edit_target(self, args, opts, last_call):
2128 2128 """Utility method used by magic_edit to find what to edit."""
2129 2129
2130 2130 def make_filename(arg):
2131 2131 "Make a filename from the given args"
2132 2132 arg = unquote_filename(arg)
2133 2133 try:
2134 2134 filename = get_py_filename(arg)
2135 2135 except IOError:
2136 2136 # If it ends with .py but doesn't already exist, assume we want
2137 2137 # a new file.
2138 2138 if arg.endswith('.py'):
2139 2139 filename = arg
2140 2140 else:
2141 2141 filename = None
2142 2142 return filename
2143 2143
2144 2144 # Set a few locals from the options for convenience:
2145 2145 opts_prev = 'p' in opts
2146 2146 opts_raw = 'r' in opts
2147 2147
2148 2148 # custom exceptions
2149 2149 class DataIsObject(Exception): pass
2150 2150
2151 2151 # Default line number value
2152 2152 lineno = opts.get('n',None)
2153 2153
2154 2154 if opts_prev:
2155 2155 args = '_%s' % last_call[0]
2156 2156 if not self.shell.user_ns.has_key(args):
2157 2157 args = last_call[1]
2158 2158
2159 2159 # use last_call to remember the state of the previous call, but don't
2160 2160 # let it be clobbered by successive '-p' calls.
2161 2161 try:
2162 2162 last_call[0] = self.shell.displayhook.prompt_count
2163 2163 if not opts_prev:
2164 2164 last_call[1] = parameter_s
2165 2165 except:
2166 2166 pass
2167 2167
2168 2168 # by default this is done with temp files, except when the given
2169 2169 # arg is a filename
2170 2170 use_temp = True
2171 2171
2172 2172 data = ''
2173 2173
2174 2174 # First, see if the arguments should be a filename.
2175 2175 filename = make_filename(args)
2176 2176 if filename:
2177 2177 use_temp = False
2178 2178 elif args:
2179 2179 # Mode where user specifies ranges of lines, like in %macro.
2180 2180 data = self.extract_input_lines(args, opts_raw)
2181 2181 if not data:
2182 2182 try:
2183 2183 # Load the parameter given as a variable. If not a string,
2184 2184 # process it as an object instead (below)
2185 2185
2186 2186 #print '*** args',args,'type',type(args) # dbg
2187 2187 data = eval(args, self.shell.user_ns)
2188 2188 if not isinstance(data, basestring):
2189 2189 raise DataIsObject
2190 2190
2191 2191 except (NameError,SyntaxError):
2192 2192 # given argument is not a variable, try as a filename
2193 2193 filename = make_filename(args)
2194 2194 if filename is None:
2195 2195 warn("Argument given (%s) can't be found as a variable "
2196 2196 "or as a filename." % args)
2197 2197 return
2198 2198 use_temp = False
2199 2199
2200 2200 except DataIsObject:
2201 2201 # macros have a special edit function
2202 2202 if isinstance(data, Macro):
2203 2203 raise MacroToEdit(data)
2204 2204
2205 2205 # For objects, try to edit the file where they are defined
2206 2206 try:
2207 2207 filename = inspect.getabsfile(data)
2208 2208 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2209 2209 # class created by %edit? Try to find source
2210 2210 # by looking for method definitions instead, the
2211 2211 # __module__ in those classes is FakeModule.
2212 2212 attrs = [getattr(data, aname) for aname in dir(data)]
2213 2213 for attr in attrs:
2214 2214 if not inspect.ismethod(attr):
2215 2215 continue
2216 2216 filename = inspect.getabsfile(attr)
2217 2217 if filename and 'fakemodule' not in filename.lower():
2218 2218 # change the attribute to be the edit target instead
2219 2219 data = attr
2220 2220 break
2221 2221
2222 2222 datafile = 1
2223 2223 except TypeError:
2224 2224 filename = make_filename(args)
2225 2225 datafile = 1
2226 2226 warn('Could not find file where `%s` is defined.\n'
2227 2227 'Opening a file named `%s`' % (args,filename))
2228 2228 # Now, make sure we can actually read the source (if it was in
2229 2229 # a temp file it's gone by now).
2230 2230 if datafile:
2231 2231 try:
2232 2232 if lineno is None:
2233 2233 lineno = inspect.getsourcelines(data)[1]
2234 2234 except IOError:
2235 2235 filename = make_filename(args)
2236 2236 if filename is None:
2237 2237 warn('The file `%s` where `%s` was defined cannot '
2238 2238 'be read.' % (filename,data))
2239 2239 return
2240 2240 use_temp = False
2241 2241
2242 2242 if use_temp:
2243 2243 filename = self.shell.mktempfile(data)
2244 2244 print 'IPython will make a temporary file named:',filename
2245 2245
2246 2246 return filename, lineno, use_temp
2247 2247
2248 2248 def _edit_macro(self,mname,macro):
2249 2249 """open an editor with the macro data in a file"""
2250 2250 filename = self.shell.mktempfile(macro.value)
2251 2251 self.shell.hooks.editor(filename)
2252 2252
2253 2253 # and make a new macro object, to replace the old one
2254 2254 mfile = open(filename)
2255 2255 mvalue = mfile.read()
2256 2256 mfile.close()
2257 2257 self.shell.user_ns[mname] = Macro(mvalue)
2258 2258
2259 2259 def magic_ed(self,parameter_s=''):
2260 2260 """Alias to %edit."""
2261 2261 return self.magic_edit(parameter_s)
2262 2262
2263 2263 @skip_doctest
2264 2264 def magic_edit(self,parameter_s='',last_call=['','']):
2265 2265 """Bring up an editor and execute the resulting code.
2266 2266
2267 2267 Usage:
2268 2268 %edit [options] [args]
2269 2269
2270 2270 %edit runs IPython's editor hook. The default version of this hook is
2271 2271 set to call the editor specified by your $EDITOR environment variable.
2272 2272 If this isn't found, it will default to vi under Linux/Unix and to
2273 2273 notepad under Windows. See the end of this docstring for how to change
2274 2274 the editor hook.
2275 2275
2276 2276 You can also set the value of this editor via the
2277 2277 ``TerminalInteractiveShell.editor`` option in your configuration file.
2278 2278 This is useful if you wish to use a different editor from your typical
2279 2279 default with IPython (and for Windows users who typically don't set
2280 2280 environment variables).
2281 2281
2282 2282 This command allows you to conveniently edit multi-line code right in
2283 2283 your IPython session.
2284 2284
2285 2285 If called without arguments, %edit opens up an empty editor with a
2286 2286 temporary file and will execute the contents of this file when you
2287 2287 close it (don't forget to save it!).
2288 2288
2289 2289
2290 2290 Options:
2291 2291
2292 2292 -n <number>: open the editor at a specified line number. By default,
2293 2293 the IPython editor hook uses the unix syntax 'editor +N filename', but
2294 2294 you can configure this by providing your own modified hook if your
2295 2295 favorite editor supports line-number specifications with a different
2296 2296 syntax.
2297 2297
2298 2298 -p: this will call the editor with the same data as the previous time
2299 2299 it was used, regardless of how long ago (in your current session) it
2300 2300 was.
2301 2301
2302 2302 -r: use 'raw' input. This option only applies to input taken from the
2303 2303 user's history. By default, the 'processed' history is used, so that
2304 2304 magics are loaded in their transformed version to valid Python. If
2305 2305 this option is given, the raw input as typed as the command line is
2306 2306 used instead. When you exit the editor, it will be executed by
2307 2307 IPython's own processor.
2308 2308
2309 2309 -x: do not execute the edited code immediately upon exit. This is
2310 2310 mainly useful if you are editing programs which need to be called with
2311 2311 command line arguments, which you can then do using %run.
2312 2312
2313 2313
2314 2314 Arguments:
2315 2315
2316 2316 If arguments are given, the following possibilites exist:
2317 2317
2318 2318 - If the argument is a filename, IPython will load that into the
2319 2319 editor. It will execute its contents with execfile() when you exit,
2320 2320 loading any code in the file into your interactive namespace.
2321 2321
2322 2322 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2323 2323 The syntax is the same as in the %history magic.
2324 2324
2325 2325 - If the argument is a string variable, its contents are loaded
2326 2326 into the editor. You can thus edit any string which contains
2327 2327 python code (including the result of previous edits).
2328 2328
2329 2329 - If the argument is the name of an object (other than a string),
2330 2330 IPython will try to locate the file where it was defined and open the
2331 2331 editor at the point where it is defined. You can use `%edit function`
2332 2332 to load an editor exactly at the point where 'function' is defined,
2333 2333 edit it and have the file be executed automatically.
2334 2334
2335 2335 - If the object is a macro (see %macro for details), this opens up your
2336 2336 specified editor with a temporary file containing the macro's data.
2337 2337 Upon exit, the macro is reloaded with the contents of the file.
2338 2338
2339 2339 Note: opening at an exact line is only supported under Unix, and some
2340 2340 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2341 2341 '+NUMBER' parameter necessary for this feature. Good editors like
2342 2342 (X)Emacs, vi, jed, pico and joe all do.
2343 2343
2344 2344 After executing your code, %edit will return as output the code you
2345 2345 typed in the editor (except when it was an existing file). This way
2346 2346 you can reload the code in further invocations of %edit as a variable,
2347 2347 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2348 2348 the output.
2349 2349
2350 2350 Note that %edit is also available through the alias %ed.
2351 2351
2352 2352 This is an example of creating a simple function inside the editor and
2353 2353 then modifying it. First, start up the editor:
2354 2354
2355 2355 In [1]: ed
2356 2356 Editing... done. Executing edited code...
2357 2357 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2358 2358
2359 2359 We can then call the function foo():
2360 2360
2361 2361 In [2]: foo()
2362 2362 foo() was defined in an editing session
2363 2363
2364 2364 Now we edit foo. IPython automatically loads the editor with the
2365 2365 (temporary) file where foo() was previously defined:
2366 2366
2367 2367 In [3]: ed foo
2368 2368 Editing... done. Executing edited code...
2369 2369
2370 2370 And if we call foo() again we get the modified version:
2371 2371
2372 2372 In [4]: foo()
2373 2373 foo() has now been changed!
2374 2374
2375 2375 Here is an example of how to edit a code snippet successive
2376 2376 times. First we call the editor:
2377 2377
2378 2378 In [5]: ed
2379 2379 Editing... done. Executing edited code...
2380 2380 hello
2381 2381 Out[5]: "print 'hello'n"
2382 2382
2383 2383 Now we call it again with the previous output (stored in _):
2384 2384
2385 2385 In [6]: ed _
2386 2386 Editing... done. Executing edited code...
2387 2387 hello world
2388 2388 Out[6]: "print 'hello world'n"
2389 2389
2390 2390 Now we call it with the output #8 (stored in _8, also as Out[8]):
2391 2391
2392 2392 In [7]: ed _8
2393 2393 Editing... done. Executing edited code...
2394 2394 hello again
2395 2395 Out[7]: "print 'hello again'n"
2396 2396
2397 2397
2398 2398 Changing the default editor hook:
2399 2399
2400 2400 If you wish to write your own editor hook, you can put it in a
2401 2401 configuration file which you load at startup time. The default hook
2402 2402 is defined in the IPython.core.hooks module, and you can use that as a
2403 2403 starting example for further modifications. That file also has
2404 2404 general instructions on how to set a new hook for use once you've
2405 2405 defined it."""
2406 2406 opts,args = self.parse_options(parameter_s,'prxn:')
2407 2407
2408 2408 try:
2409 2409 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2410 2410 except MacroToEdit as e:
2411 2411 self._edit_macro(args, e.args[0])
2412 2412 return
2413 2413
2414 2414 # do actual editing here
2415 2415 print 'Editing...',
2416 2416 sys.stdout.flush()
2417 2417 try:
2418 2418 # Quote filenames that may have spaces in them
2419 2419 if ' ' in filename:
2420 2420 filename = "'%s'" % filename
2421 2421 self.shell.hooks.editor(filename,lineno)
2422 2422 except TryNext:
2423 2423 warn('Could not open editor')
2424 2424 return
2425 2425
2426 2426 # XXX TODO: should this be generalized for all string vars?
2427 2427 # For now, this is special-cased to blocks created by cpaste
2428 2428 if args.strip() == 'pasted_block':
2429 2429 self.shell.user_ns['pasted_block'] = file_read(filename)
2430 2430
2431 2431 if 'x' in opts: # -x prevents actual execution
2432 2432 print
2433 2433 else:
2434 2434 print 'done. Executing edited code...'
2435 2435 if 'r' in opts: # Untranslated IPython code
2436 2436 self.shell.run_cell(file_read(filename),
2437 2437 store_history=False)
2438 2438 else:
2439 2439 self.shell.safe_execfile(filename,self.shell.user_ns,
2440 2440 self.shell.user_ns)
2441 2441
2442 2442 if is_temp:
2443 2443 try:
2444 2444 return open(filename).read()
2445 2445 except IOError,msg:
2446 2446 if msg.filename == filename:
2447 2447 warn('File not found. Did you forget to save?')
2448 2448 return
2449 2449 else:
2450 2450 self.shell.showtraceback()
2451 2451
2452 2452 def magic_xmode(self,parameter_s = ''):
2453 2453 """Switch modes for the exception handlers.
2454 2454
2455 2455 Valid modes: Plain, Context and Verbose.
2456 2456
2457 2457 If called without arguments, acts as a toggle."""
2458 2458
2459 2459 def xmode_switch_err(name):
2460 2460 warn('Error changing %s exception modes.\n%s' %
2461 2461 (name,sys.exc_info()[1]))
2462 2462
2463 2463 shell = self.shell
2464 2464 new_mode = parameter_s.strip().capitalize()
2465 2465 try:
2466 2466 shell.InteractiveTB.set_mode(mode=new_mode)
2467 2467 print 'Exception reporting mode:',shell.InteractiveTB.mode
2468 2468 except:
2469 2469 xmode_switch_err('user')
2470 2470
2471 2471 def magic_colors(self,parameter_s = ''):
2472 2472 """Switch color scheme for prompts, info system and exception handlers.
2473 2473
2474 2474 Currently implemented schemes: NoColor, Linux, LightBG.
2475 2475
2476 2476 Color scheme names are not case-sensitive.
2477 2477
2478 2478 Examples
2479 2479 --------
2480 2480 To get a plain black and white terminal::
2481 2481
2482 2482 %colors nocolor
2483 2483 """
2484 2484
2485 2485 def color_switch_err(name):
2486 2486 warn('Error changing %s color schemes.\n%s' %
2487 2487 (name,sys.exc_info()[1]))
2488 2488
2489 2489
2490 2490 new_scheme = parameter_s.strip()
2491 2491 if not new_scheme:
2492 2492 raise UsageError(
2493 2493 "%colors: you must specify a color scheme. See '%colors?'")
2494 2494 return
2495 2495 # local shortcut
2496 2496 shell = self.shell
2497 2497
2498 2498 import IPython.utils.rlineimpl as readline
2499 2499
2500 2500 if not readline.have_readline and sys.platform == "win32":
2501 2501 msg = """\
2502 2502 Proper color support under MS Windows requires the pyreadline library.
2503 2503 You can find it at:
2504 2504 http://ipython.scipy.org/moin/PyReadline/Intro
2505 2505 Gary's readline needs the ctypes module, from:
2506 2506 http://starship.python.net/crew/theller/ctypes
2507 2507 (Note that ctypes is already part of Python versions 2.5 and newer).
2508 2508
2509 2509 Defaulting color scheme to 'NoColor'"""
2510 2510 new_scheme = 'NoColor'
2511 2511 warn(msg)
2512 2512
2513 2513 # readline option is 0
2514 2514 if not shell.has_readline:
2515 2515 new_scheme = 'NoColor'
2516 2516
2517 2517 # Set prompt colors
2518 2518 try:
2519 2519 shell.displayhook.set_colors(new_scheme)
2520 2520 except:
2521 2521 color_switch_err('prompt')
2522 2522 else:
2523 2523 shell.colors = \
2524 2524 shell.displayhook.color_table.active_scheme_name
2525 2525 # Set exception colors
2526 2526 try:
2527 2527 shell.InteractiveTB.set_colors(scheme = new_scheme)
2528 2528 shell.SyntaxTB.set_colors(scheme = new_scheme)
2529 2529 except:
2530 2530 color_switch_err('exception')
2531 2531
2532 2532 # Set info (for 'object?') colors
2533 2533 if shell.color_info:
2534 2534 try:
2535 2535 shell.inspector.set_active_scheme(new_scheme)
2536 2536 except:
2537 2537 color_switch_err('object inspector')
2538 2538 else:
2539 2539 shell.inspector.set_active_scheme('NoColor')
2540 2540
2541 2541 def magic_pprint(self, parameter_s=''):
2542 2542 """Toggle pretty printing on/off."""
2543 2543 ptformatter = self.shell.display_formatter.formatters['text/plain']
2544 2544 ptformatter.pprint = bool(1 - ptformatter.pprint)
2545 2545 print 'Pretty printing has been turned', \
2546 2546 ['OFF','ON'][ptformatter.pprint]
2547 2547
2548 2548 #......................................................................
2549 2549 # Functions to implement unix shell-type things
2550 2550
2551 2551 @skip_doctest
2552 2552 def magic_alias(self, parameter_s = ''):
2553 2553 """Define an alias for a system command.
2554 2554
2555 2555 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2556 2556
2557 2557 Then, typing 'alias_name params' will execute the system command 'cmd
2558 2558 params' (from your underlying operating system).
2559 2559
2560 2560 Aliases have lower precedence than magic functions and Python normal
2561 2561 variables, so if 'foo' is both a Python variable and an alias, the
2562 2562 alias can not be executed until 'del foo' removes the Python variable.
2563 2563
2564 2564 You can use the %l specifier in an alias definition to represent the
2565 2565 whole line when the alias is called. For example:
2566 2566
2567 2567 In [2]: alias bracket echo "Input in brackets: <%l>"
2568 2568 In [3]: bracket hello world
2569 2569 Input in brackets: <hello world>
2570 2570
2571 2571 You can also define aliases with parameters using %s specifiers (one
2572 2572 per parameter):
2573 2573
2574 2574 In [1]: alias parts echo first %s second %s
2575 2575 In [2]: %parts A B
2576 2576 first A second B
2577 2577 In [3]: %parts A
2578 2578 Incorrect number of arguments: 2 expected.
2579 2579 parts is an alias to: 'echo first %s second %s'
2580 2580
2581 2581 Note that %l and %s are mutually exclusive. You can only use one or
2582 2582 the other in your aliases.
2583 2583
2584 2584 Aliases expand Python variables just like system calls using ! or !!
2585 2585 do: all expressions prefixed with '$' get expanded. For details of
2586 2586 the semantic rules, see PEP-215:
2587 2587 http://www.python.org/peps/pep-0215.html. This is the library used by
2588 2588 IPython for variable expansion. If you want to access a true shell
2589 2589 variable, an extra $ is necessary to prevent its expansion by IPython:
2590 2590
2591 2591 In [6]: alias show echo
2592 2592 In [7]: PATH='A Python string'
2593 2593 In [8]: show $PATH
2594 2594 A Python string
2595 2595 In [9]: show $$PATH
2596 2596 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2597 2597
2598 2598 You can use the alias facility to acess all of $PATH. See the %rehash
2599 2599 and %rehashx functions, which automatically create aliases for the
2600 2600 contents of your $PATH.
2601 2601
2602 2602 If called with no parameters, %alias prints the current alias table."""
2603 2603
2604 2604 par = parameter_s.strip()
2605 2605 if not par:
2606 2606 stored = self.db.get('stored_aliases', {} )
2607 2607 aliases = sorted(self.shell.alias_manager.aliases)
2608 2608 # for k, v in stored:
2609 2609 # atab.append(k, v[0])
2610 2610
2611 2611 print "Total number of aliases:", len(aliases)
2612 2612 sys.stdout.flush()
2613 2613 return aliases
2614 2614
2615 2615 # Now try to define a new one
2616 2616 try:
2617 2617 alias,cmd = par.split(None, 1)
2618 2618 except:
2619 2619 print oinspect.getdoc(self.magic_alias)
2620 2620 else:
2621 2621 self.shell.alias_manager.soft_define_alias(alias, cmd)
2622 2622 # end magic_alias
2623 2623
2624 2624 def magic_unalias(self, parameter_s = ''):
2625 2625 """Remove an alias"""
2626 2626
2627 2627 aname = parameter_s.strip()
2628 2628 self.shell.alias_manager.undefine_alias(aname)
2629 2629 stored = self.db.get('stored_aliases', {} )
2630 2630 if aname in stored:
2631 2631 print "Removing %stored alias",aname
2632 2632 del stored[aname]
2633 2633 self.db['stored_aliases'] = stored
2634 2634
2635 2635 def magic_rehashx(self, parameter_s = ''):
2636 2636 """Update the alias table with all executable files in $PATH.
2637 2637
2638 2638 This version explicitly checks that every entry in $PATH is a file
2639 2639 with execute access (os.X_OK), so it is much slower than %rehash.
2640 2640
2641 2641 Under Windows, it checks executability as a match agains a
2642 2642 '|'-separated string of extensions, stored in the IPython config
2643 2643 variable win_exec_ext. This defaults to 'exe|com|bat'.
2644 2644
2645 2645 This function also resets the root module cache of module completer,
2646 2646 used on slow filesystems.
2647 2647 """
2648 2648 from IPython.core.alias import InvalidAliasError
2649 2649
2650 2650 # for the benefit of module completer in ipy_completers.py
2651 2651 del self.db['rootmodules']
2652 2652
2653 2653 path = [os.path.abspath(os.path.expanduser(p)) for p in
2654 2654 os.environ.get('PATH','').split(os.pathsep)]
2655 2655 path = filter(os.path.isdir,path)
2656 2656
2657 2657 syscmdlist = []
2658 2658 # Now define isexec in a cross platform manner.
2659 2659 if os.name == 'posix':
2660 2660 isexec = lambda fname:os.path.isfile(fname) and \
2661 2661 os.access(fname,os.X_OK)
2662 2662 else:
2663 2663 try:
2664 2664 winext = os.environ['pathext'].replace(';','|').replace('.','')
2665 2665 except KeyError:
2666 2666 winext = 'exe|com|bat|py'
2667 2667 if 'py' not in winext:
2668 2668 winext += '|py'
2669 2669 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2670 2670 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2671 2671 savedir = os.getcwdu()
2672 2672
2673 2673 # Now walk the paths looking for executables to alias.
2674 2674 try:
2675 2675 # write the whole loop for posix/Windows so we don't have an if in
2676 2676 # the innermost part
2677 2677 if os.name == 'posix':
2678 2678 for pdir in path:
2679 2679 os.chdir(pdir)
2680 2680 for ff in os.listdir(pdir):
2681 2681 if isexec(ff):
2682 2682 try:
2683 2683 # Removes dots from the name since ipython
2684 2684 # will assume names with dots to be python.
2685 2685 self.shell.alias_manager.define_alias(
2686 2686 ff.replace('.',''), ff)
2687 2687 except InvalidAliasError:
2688 2688 pass
2689 2689 else:
2690 2690 syscmdlist.append(ff)
2691 2691 else:
2692 2692 no_alias = self.shell.alias_manager.no_alias
2693 2693 for pdir in path:
2694 2694 os.chdir(pdir)
2695 2695 for ff in os.listdir(pdir):
2696 2696 base, ext = os.path.splitext(ff)
2697 2697 if isexec(ff) and base.lower() not in no_alias:
2698 2698 if ext.lower() == '.exe':
2699 2699 ff = base
2700 2700 try:
2701 2701 # Removes dots from the name since ipython
2702 2702 # will assume names with dots to be python.
2703 2703 self.shell.alias_manager.define_alias(
2704 2704 base.lower().replace('.',''), ff)
2705 2705 except InvalidAliasError:
2706 2706 pass
2707 2707 syscmdlist.append(ff)
2708 2708 db = self.db
2709 2709 db['syscmdlist'] = syscmdlist
2710 2710 finally:
2711 2711 os.chdir(savedir)
2712 2712
2713 2713 @skip_doctest
2714 2714 def magic_pwd(self, parameter_s = ''):
2715 2715 """Return the current working directory path.
2716 2716
2717 2717 Examples
2718 2718 --------
2719 2719 ::
2720 2720
2721 2721 In [9]: pwd
2722 2722 Out[9]: '/home/tsuser/sprint/ipython'
2723 2723 """
2724 2724 return os.getcwdu()
2725 2725
2726 2726 @skip_doctest
2727 2727 def magic_cd(self, parameter_s=''):
2728 2728 """Change the current working directory.
2729 2729
2730 2730 This command automatically maintains an internal list of directories
2731 2731 you visit during your IPython session, in the variable _dh. The
2732 2732 command %dhist shows this history nicely formatted. You can also
2733 2733 do 'cd -<tab>' to see directory history conveniently.
2734 2734
2735 2735 Usage:
2736 2736
2737 2737 cd 'dir': changes to directory 'dir'.
2738 2738
2739 2739 cd -: changes to the last visited directory.
2740 2740
2741 2741 cd -<n>: changes to the n-th directory in the directory history.
2742 2742
2743 2743 cd --foo: change to directory that matches 'foo' in history
2744 2744
2745 2745 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2746 2746 (note: cd <bookmark_name> is enough if there is no
2747 2747 directory <bookmark_name>, but a bookmark with the name exists.)
2748 2748 'cd -b <tab>' allows you to tab-complete bookmark names.
2749 2749
2750 2750 Options:
2751 2751
2752 2752 -q: quiet. Do not print the working directory after the cd command is
2753 2753 executed. By default IPython's cd command does print this directory,
2754 2754 since the default prompts do not display path information.
2755 2755
2756 2756 Note that !cd doesn't work for this purpose because the shell where
2757 2757 !command runs is immediately discarded after executing 'command'.
2758 2758
2759 2759 Examples
2760 2760 --------
2761 2761 ::
2762 2762
2763 2763 In [10]: cd parent/child
2764 2764 /home/tsuser/parent/child
2765 2765 """
2766 2766
2767 2767 parameter_s = parameter_s.strip()
2768 2768 #bkms = self.shell.persist.get("bookmarks",{})
2769 2769
2770 2770 oldcwd = os.getcwdu()
2771 2771 numcd = re.match(r'(-)(\d+)$',parameter_s)
2772 2772 # jump in directory history by number
2773 2773 if numcd:
2774 2774 nn = int(numcd.group(2))
2775 2775 try:
2776 2776 ps = self.shell.user_ns['_dh'][nn]
2777 2777 except IndexError:
2778 2778 print 'The requested directory does not exist in history.'
2779 2779 return
2780 2780 else:
2781 2781 opts = {}
2782 2782 elif parameter_s.startswith('--'):
2783 2783 ps = None
2784 2784 fallback = None
2785 2785 pat = parameter_s[2:]
2786 2786 dh = self.shell.user_ns['_dh']
2787 2787 # first search only by basename (last component)
2788 2788 for ent in reversed(dh):
2789 2789 if pat in os.path.basename(ent) and os.path.isdir(ent):
2790 2790 ps = ent
2791 2791 break
2792 2792
2793 2793 if fallback is None and pat in ent and os.path.isdir(ent):
2794 2794 fallback = ent
2795 2795
2796 2796 # if we have no last part match, pick the first full path match
2797 2797 if ps is None:
2798 2798 ps = fallback
2799 2799
2800 2800 if ps is None:
2801 2801 print "No matching entry in directory history"
2802 2802 return
2803 2803 else:
2804 2804 opts = {}
2805 2805
2806 2806
2807 2807 else:
2808 2808 #turn all non-space-escaping backslashes to slashes,
2809 2809 # for c:\windows\directory\names\
2810 2810 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2811 2811 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2812 2812 # jump to previous
2813 2813 if ps == '-':
2814 2814 try:
2815 2815 ps = self.shell.user_ns['_dh'][-2]
2816 2816 except IndexError:
2817 2817 raise UsageError('%cd -: No previous directory to change to.')
2818 2818 # jump to bookmark if needed
2819 2819 else:
2820 2820 if not os.path.isdir(ps) or opts.has_key('b'):
2821 2821 bkms = self.db.get('bookmarks', {})
2822 2822
2823 2823 if bkms.has_key(ps):
2824 2824 target = bkms[ps]
2825 2825 print '(bookmark:%s) -> %s' % (ps,target)
2826 2826 ps = target
2827 2827 else:
2828 2828 if opts.has_key('b'):
2829 2829 raise UsageError("Bookmark '%s' not found. "
2830 2830 "Use '%%bookmark -l' to see your bookmarks." % ps)
2831 2831
2832 2832 # strip extra quotes on Windows, because os.chdir doesn't like them
2833 2833 ps = unquote_filename(ps)
2834 2834 # at this point ps should point to the target dir
2835 2835 if ps:
2836 2836 try:
2837 2837 os.chdir(os.path.expanduser(ps))
2838 2838 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2839 2839 set_term_title('IPython: ' + abbrev_cwd())
2840 2840 except OSError:
2841 2841 print sys.exc_info()[1]
2842 2842 else:
2843 2843 cwd = os.getcwdu()
2844 2844 dhist = self.shell.user_ns['_dh']
2845 2845 if oldcwd != cwd:
2846 2846 dhist.append(cwd)
2847 2847 self.db['dhist'] = compress_dhist(dhist)[-100:]
2848 2848
2849 2849 else:
2850 2850 os.chdir(self.shell.home_dir)
2851 2851 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2852 2852 set_term_title('IPython: ' + '~')
2853 2853 cwd = os.getcwdu()
2854 2854 dhist = self.shell.user_ns['_dh']
2855 2855
2856 2856 if oldcwd != cwd:
2857 2857 dhist.append(cwd)
2858 2858 self.db['dhist'] = compress_dhist(dhist)[-100:]
2859 2859 if not 'q' in opts and self.shell.user_ns['_dh']:
2860 2860 print self.shell.user_ns['_dh'][-1]
2861 2861
2862 2862
2863 2863 def magic_env(self, parameter_s=''):
2864 2864 """List environment variables."""
2865 2865
2866 2866 return os.environ.data
2867 2867
2868 2868 def magic_pushd(self, parameter_s=''):
2869 2869 """Place the current dir on stack and change directory.
2870 2870
2871 2871 Usage:\\
2872 2872 %pushd ['dirname']
2873 2873 """
2874 2874
2875 2875 dir_s = self.shell.dir_stack
2876 2876 tgt = os.path.expanduser(unquote_filename(parameter_s))
2877 2877 cwd = os.getcwdu().replace(self.home_dir,'~')
2878 2878 if tgt:
2879 2879 self.magic_cd(parameter_s)
2880 2880 dir_s.insert(0,cwd)
2881 2881 return self.magic_dirs()
2882 2882
2883 2883 def magic_popd(self, parameter_s=''):
2884 2884 """Change to directory popped off the top of the stack.
2885 2885 """
2886 2886 if not self.shell.dir_stack:
2887 2887 raise UsageError("%popd on empty stack")
2888 2888 top = self.shell.dir_stack.pop(0)
2889 2889 self.magic_cd(top)
2890 2890 print "popd ->",top
2891 2891
2892 2892 def magic_dirs(self, parameter_s=''):
2893 2893 """Return the current directory stack."""
2894 2894
2895 2895 return self.shell.dir_stack
2896 2896
2897 2897 def magic_dhist(self, parameter_s=''):
2898 2898 """Print your history of visited directories.
2899 2899
2900 2900 %dhist -> print full history\\
2901 2901 %dhist n -> print last n entries only\\
2902 2902 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2903 2903
2904 2904 This history is automatically maintained by the %cd command, and
2905 2905 always available as the global list variable _dh. You can use %cd -<n>
2906 2906 to go to directory number <n>.
2907 2907
2908 2908 Note that most of time, you should view directory history by entering
2909 2909 cd -<TAB>.
2910 2910
2911 2911 """
2912 2912
2913 2913 dh = self.shell.user_ns['_dh']
2914 2914 if parameter_s:
2915 2915 try:
2916 2916 args = map(int,parameter_s.split())
2917 2917 except:
2918 2918 self.arg_err(Magic.magic_dhist)
2919 2919 return
2920 2920 if len(args) == 1:
2921 2921 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2922 2922 elif len(args) == 2:
2923 2923 ini,fin = args
2924 2924 else:
2925 2925 self.arg_err(Magic.magic_dhist)
2926 2926 return
2927 2927 else:
2928 2928 ini,fin = 0,len(dh)
2929 2929 nlprint(dh,
2930 2930 header = 'Directory history (kept in _dh)',
2931 2931 start=ini,stop=fin)
2932 2932
2933 2933 @skip_doctest
2934 2934 def magic_sc(self, parameter_s=''):
2935 2935 """Shell capture - execute a shell command and capture its output.
2936 2936
2937 2937 DEPRECATED. Suboptimal, retained for backwards compatibility.
2938 2938
2939 2939 You should use the form 'var = !command' instead. Example:
2940 2940
2941 2941 "%sc -l myfiles = ls ~" should now be written as
2942 2942
2943 2943 "myfiles = !ls ~"
2944 2944
2945 2945 myfiles.s, myfiles.l and myfiles.n still apply as documented
2946 2946 below.
2947 2947
2948 2948 --
2949 2949 %sc [options] varname=command
2950 2950
2951 2951 IPython will run the given command using commands.getoutput(), and
2952 2952 will then update the user's interactive namespace with a variable
2953 2953 called varname, containing the value of the call. Your command can
2954 2954 contain shell wildcards, pipes, etc.
2955 2955
2956 2956 The '=' sign in the syntax is mandatory, and the variable name you
2957 2957 supply must follow Python's standard conventions for valid names.
2958 2958
2959 2959 (A special format without variable name exists for internal use)
2960 2960
2961 2961 Options:
2962 2962
2963 2963 -l: list output. Split the output on newlines into a list before
2964 2964 assigning it to the given variable. By default the output is stored
2965 2965 as a single string.
2966 2966
2967 2967 -v: verbose. Print the contents of the variable.
2968 2968
2969 2969 In most cases you should not need to split as a list, because the
2970 2970 returned value is a special type of string which can automatically
2971 2971 provide its contents either as a list (split on newlines) or as a
2972 2972 space-separated string. These are convenient, respectively, either
2973 2973 for sequential processing or to be passed to a shell command.
2974 2974
2975 2975 For example:
2976 2976
2977 2977 # all-random
2978 2978
2979 2979 # Capture into variable a
2980 2980 In [1]: sc a=ls *py
2981 2981
2982 2982 # a is a string with embedded newlines
2983 2983 In [2]: a
2984 2984 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2985 2985
2986 2986 # which can be seen as a list:
2987 2987 In [3]: a.l
2988 2988 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2989 2989
2990 2990 # or as a whitespace-separated string:
2991 2991 In [4]: a.s
2992 2992 Out[4]: 'setup.py win32_manual_post_install.py'
2993 2993
2994 2994 # a.s is useful to pass as a single command line:
2995 2995 In [5]: !wc -l $a.s
2996 2996 146 setup.py
2997 2997 130 win32_manual_post_install.py
2998 2998 276 total
2999 2999
3000 3000 # while the list form is useful to loop over:
3001 3001 In [6]: for f in a.l:
3002 3002 ...: !wc -l $f
3003 3003 ...:
3004 3004 146 setup.py
3005 3005 130 win32_manual_post_install.py
3006 3006
3007 3007 Similiarly, the lists returned by the -l option are also special, in
3008 3008 the sense that you can equally invoke the .s attribute on them to
3009 3009 automatically get a whitespace-separated string from their contents:
3010 3010
3011 3011 In [7]: sc -l b=ls *py
3012 3012
3013 3013 In [8]: b
3014 3014 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3015 3015
3016 3016 In [9]: b.s
3017 3017 Out[9]: 'setup.py win32_manual_post_install.py'
3018 3018
3019 3019 In summary, both the lists and strings used for ouptut capture have
3020 3020 the following special attributes:
3021 3021
3022 3022 .l (or .list) : value as list.
3023 3023 .n (or .nlstr): value as newline-separated string.
3024 3024 .s (or .spstr): value as space-separated string.
3025 3025 """
3026 3026
3027 3027 opts,args = self.parse_options(parameter_s,'lv')
3028 3028 # Try to get a variable name and command to run
3029 3029 try:
3030 3030 # the variable name must be obtained from the parse_options
3031 3031 # output, which uses shlex.split to strip options out.
3032 3032 var,_ = args.split('=',1)
3033 3033 var = var.strip()
3034 3034 # But the the command has to be extracted from the original input
3035 3035 # parameter_s, not on what parse_options returns, to avoid the
3036 3036 # quote stripping which shlex.split performs on it.
3037 3037 _,cmd = parameter_s.split('=',1)
3038 3038 except ValueError:
3039 3039 var,cmd = '',''
3040 3040 # If all looks ok, proceed
3041 3041 split = 'l' in opts
3042 3042 out = self.shell.getoutput(cmd, split=split)
3043 3043 if opts.has_key('v'):
3044 3044 print '%s ==\n%s' % (var,pformat(out))
3045 3045 if var:
3046 3046 self.shell.user_ns.update({var:out})
3047 3047 else:
3048 3048 return out
3049 3049
3050 3050 def magic_sx(self, parameter_s=''):
3051 3051 """Shell execute - run a shell command and capture its output.
3052 3052
3053 3053 %sx command
3054 3054
3055 3055 IPython will run the given command using commands.getoutput(), and
3056 3056 return the result formatted as a list (split on '\\n'). Since the
3057 3057 output is _returned_, it will be stored in ipython's regular output
3058 3058 cache Out[N] and in the '_N' automatic variables.
3059 3059
3060 3060 Notes:
3061 3061
3062 3062 1) If an input line begins with '!!', then %sx is automatically
3063 3063 invoked. That is, while:
3064 3064 !ls
3065 3065 causes ipython to simply issue system('ls'), typing
3066 3066 !!ls
3067 3067 is a shorthand equivalent to:
3068 3068 %sx ls
3069 3069
3070 3070 2) %sx differs from %sc in that %sx automatically splits into a list,
3071 3071 like '%sc -l'. The reason for this is to make it as easy as possible
3072 3072 to process line-oriented shell output via further python commands.
3073 3073 %sc is meant to provide much finer control, but requires more
3074 3074 typing.
3075 3075
3076 3076 3) Just like %sc -l, this is a list with special attributes:
3077 3077
3078 3078 .l (or .list) : value as list.
3079 3079 .n (or .nlstr): value as newline-separated string.
3080 3080 .s (or .spstr): value as whitespace-separated string.
3081 3081
3082 3082 This is very useful when trying to use such lists as arguments to
3083 3083 system commands."""
3084 3084
3085 3085 if parameter_s:
3086 3086 return self.shell.getoutput(parameter_s)
3087 3087
3088 3088
3089 3089 def magic_bookmark(self, parameter_s=''):
3090 3090 """Manage IPython's bookmark system.
3091 3091
3092 3092 %bookmark <name> - set bookmark to current dir
3093 3093 %bookmark <name> <dir> - set bookmark to <dir>
3094 3094 %bookmark -l - list all bookmarks
3095 3095 %bookmark -d <name> - remove bookmark
3096 3096 %bookmark -r - remove all bookmarks
3097 3097
3098 3098 You can later on access a bookmarked folder with:
3099 3099 %cd -b <name>
3100 3100 or simply '%cd <name>' if there is no directory called <name> AND
3101 3101 there is such a bookmark defined.
3102 3102
3103 3103 Your bookmarks persist through IPython sessions, but they are
3104 3104 associated with each profile."""
3105 3105
3106 3106 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3107 3107 if len(args) > 2:
3108 3108 raise UsageError("%bookmark: too many arguments")
3109 3109
3110 3110 bkms = self.db.get('bookmarks',{})
3111 3111
3112 3112 if opts.has_key('d'):
3113 3113 try:
3114 3114 todel = args[0]
3115 3115 except IndexError:
3116 3116 raise UsageError(
3117 3117 "%bookmark -d: must provide a bookmark to delete")
3118 3118 else:
3119 3119 try:
3120 3120 del bkms[todel]
3121 3121 except KeyError:
3122 3122 raise UsageError(
3123 3123 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3124 3124
3125 3125 elif opts.has_key('r'):
3126 3126 bkms = {}
3127 3127 elif opts.has_key('l'):
3128 3128 bks = bkms.keys()
3129 3129 bks.sort()
3130 3130 if bks:
3131 3131 size = max(map(len,bks))
3132 3132 else:
3133 3133 size = 0
3134 3134 fmt = '%-'+str(size)+'s -> %s'
3135 3135 print 'Current bookmarks:'
3136 3136 for bk in bks:
3137 3137 print fmt % (bk,bkms[bk])
3138 3138 else:
3139 3139 if not args:
3140 3140 raise UsageError("%bookmark: You must specify the bookmark name")
3141 3141 elif len(args)==1:
3142 3142 bkms[args[0]] = os.getcwdu()
3143 3143 elif len(args)==2:
3144 3144 bkms[args[0]] = args[1]
3145 3145 self.db['bookmarks'] = bkms
3146 3146
3147 3147 def magic_pycat(self, parameter_s=''):
3148 3148 """Show a syntax-highlighted file through a pager.
3149 3149
3150 3150 This magic is similar to the cat utility, but it will assume the file
3151 3151 to be Python source and will show it with syntax highlighting. """
3152 3152
3153 3153 try:
3154 3154 filename = get_py_filename(parameter_s)
3155 3155 cont = file_read(filename)
3156 3156 except IOError:
3157 3157 try:
3158 3158 cont = eval(parameter_s,self.user_ns)
3159 3159 except NameError:
3160 3160 cont = None
3161 3161 if cont is None:
3162 3162 print "Error: no such file or variable"
3163 3163 return
3164 3164
3165 3165 page.page(self.shell.pycolorize(cont))
3166 3166
3167 3167 def _rerun_pasted(self):
3168 3168 """ Rerun a previously pasted command.
3169 3169 """
3170 3170 b = self.user_ns.get('pasted_block', None)
3171 3171 if b is None:
3172 3172 raise UsageError('No previous pasted block available')
3173 3173 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3174 3174 exec b in self.user_ns
3175 3175
3176 3176 def _get_pasted_lines(self, sentinel):
3177 3177 """ Yield pasted lines until the user enters the given sentinel value.
3178 3178 """
3179 3179 from IPython.core import interactiveshell
3180 3180 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3181 3181 while True:
3182 3182 l = self.shell.raw_input_original(':')
3183 3183 if l == sentinel:
3184 3184 return
3185 3185 else:
3186 3186 yield l
3187 3187
3188 3188 def _strip_pasted_lines_for_code(self, raw_lines):
3189 3189 """ Strip non-code parts of a sequence of lines to return a block of
3190 3190 code.
3191 3191 """
3192 3192 # Regular expressions that declare text we strip from the input:
3193 3193 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3194 3194 r'^\s*(\s?>)+', # Python input prompt
3195 3195 r'^\s*\.{3,}', # Continuation prompts
3196 3196 r'^\++',
3197 3197 ]
3198 3198
3199 3199 strip_from_start = map(re.compile,strip_re)
3200 3200
3201 3201 lines = []
3202 3202 for l in raw_lines:
3203 3203 for pat in strip_from_start:
3204 3204 l = pat.sub('',l)
3205 3205 lines.append(l)
3206 3206
3207 3207 block = "\n".join(lines) + '\n'
3208 3208 #print "block:\n",block
3209 3209 return block
3210 3210
3211 3211 def _execute_block(self, block, par):
3212 3212 """ Execute a block, or store it in a variable, per the user's request.
3213 3213 """
3214 3214 if not par:
3215 3215 b = textwrap.dedent(block)
3216 3216 self.user_ns['pasted_block'] = b
3217 3217 exec b in self.user_ns
3218 3218 else:
3219 3219 self.user_ns[par] = SList(block.splitlines())
3220 3220 print "Block assigned to '%s'" % par
3221 3221
3222 3222 def magic_quickref(self,arg):
3223 3223 """ Show a quick reference sheet """
3224 3224 import IPython.core.usage
3225 3225 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3226 3226
3227 3227 page.page(qr)
3228 3228
3229 3229 def magic_doctest_mode(self,parameter_s=''):
3230 3230 """Toggle doctest mode on and off.
3231 3231
3232 3232 This mode is intended to make IPython behave as much as possible like a
3233 3233 plain Python shell, from the perspective of how its prompts, exceptions
3234 3234 and output look. This makes it easy to copy and paste parts of a
3235 3235 session into doctests. It does so by:
3236 3236
3237 3237 - Changing the prompts to the classic ``>>>`` ones.
3238 3238 - Changing the exception reporting mode to 'Plain'.
3239 3239 - Disabling pretty-printing of output.
3240 3240
3241 3241 Note that IPython also supports the pasting of code snippets that have
3242 3242 leading '>>>' and '...' prompts in them. This means that you can paste
3243 3243 doctests from files or docstrings (even if they have leading
3244 3244 whitespace), and the code will execute correctly. You can then use
3245 3245 '%history -t' to see the translated history; this will give you the
3246 3246 input after removal of all the leading prompts and whitespace, which
3247 3247 can be pasted back into an editor.
3248 3248
3249 3249 With these features, you can switch into this mode easily whenever you
3250 3250 need to do testing and changes to doctests, without having to leave
3251 3251 your existing IPython session.
3252 3252 """
3253 3253
3254 3254 from IPython.utils.ipstruct import Struct
3255 3255
3256 3256 # Shorthands
3257 3257 shell = self.shell
3258 3258 oc = shell.displayhook
3259 3259 meta = shell.meta
3260 3260 disp_formatter = self.shell.display_formatter
3261 3261 ptformatter = disp_formatter.formatters['text/plain']
3262 3262 # dstore is a data store kept in the instance metadata bag to track any
3263 3263 # changes we make, so we can undo them later.
3264 3264 dstore = meta.setdefault('doctest_mode',Struct())
3265 3265 save_dstore = dstore.setdefault
3266 3266
3267 3267 # save a few values we'll need to recover later
3268 3268 mode = save_dstore('mode',False)
3269 3269 save_dstore('rc_pprint',ptformatter.pprint)
3270 3270 save_dstore('xmode',shell.InteractiveTB.mode)
3271 3271 save_dstore('rc_separate_out',shell.separate_out)
3272 3272 save_dstore('rc_separate_out2',shell.separate_out2)
3273 3273 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3274 3274 save_dstore('rc_separate_in',shell.separate_in)
3275 3275 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3276 3276
3277 3277 if mode == False:
3278 3278 # turn on
3279 3279 oc.prompt1.p_template = '>>> '
3280 3280 oc.prompt2.p_template = '... '
3281 3281 oc.prompt_out.p_template = ''
3282 3282
3283 3283 # Prompt separators like plain python
3284 3284 oc.input_sep = oc.prompt1.sep = ''
3285 3285 oc.output_sep = ''
3286 3286 oc.output_sep2 = ''
3287 3287
3288 3288 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3289 3289 oc.prompt_out.pad_left = False
3290 3290
3291 3291 ptformatter.pprint = False
3292 3292 disp_formatter.plain_text_only = True
3293 3293
3294 3294 shell.magic_xmode('Plain')
3295 3295 else:
3296 3296 # turn off
3297 3297 oc.prompt1.p_template = shell.prompt_in1
3298 3298 oc.prompt2.p_template = shell.prompt_in2
3299 3299 oc.prompt_out.p_template = shell.prompt_out
3300 3300
3301 3301 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3302 3302
3303 3303 oc.output_sep = dstore.rc_separate_out
3304 3304 oc.output_sep2 = dstore.rc_separate_out2
3305 3305
3306 3306 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3307 3307 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3308 3308
3309 3309 ptformatter.pprint = dstore.rc_pprint
3310 3310 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3311 3311
3312 3312 shell.magic_xmode(dstore.xmode)
3313 3313
3314 3314 # Store new mode and inform
3315 3315 dstore.mode = bool(1-int(mode))
3316 3316 mode_label = ['OFF','ON'][dstore.mode]
3317 3317 print 'Doctest mode is:', mode_label
3318 3318
3319 3319 def magic_gui(self, parameter_s=''):
3320 3320 """Enable or disable IPython GUI event loop integration.
3321 3321
3322 3322 %gui [GUINAME]
3323 3323
3324 3324 This magic replaces IPython's threaded shells that were activated
3325 3325 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3326 3326 can now be enabled, disabled and changed at runtime and keyboard
3327 3327 interrupts should work without any problems. The following toolkits
3328 3328 are supported: wxPython, PyQt4, PyGTK, and Tk::
3329 3329
3330 3330 %gui wx # enable wxPython event loop integration
3331 3331 %gui qt4|qt # enable PyQt4 event loop integration
3332 3332 %gui gtk # enable PyGTK event loop integration
3333 3333 %gui tk # enable Tk event loop integration
3334 3334 %gui # disable all event loop integration
3335 3335
3336 3336 WARNING: after any of these has been called you can simply create
3337 3337 an application object, but DO NOT start the event loop yourself, as
3338 3338 we have already handled that.
3339 3339 """
3340 3340 from IPython.lib.inputhook import enable_gui
3341 3341 opts, arg = self.parse_options(parameter_s, '')
3342 3342 if arg=='': arg = None
3343 3343 return enable_gui(arg)
3344 3344
3345 3345 def magic_load_ext(self, module_str):
3346 3346 """Load an IPython extension by its module name."""
3347 3347 return self.extension_manager.load_extension(module_str)
3348 3348
3349 3349 def magic_unload_ext(self, module_str):
3350 3350 """Unload an IPython extension by its module name."""
3351 3351 self.extension_manager.unload_extension(module_str)
3352 3352
3353 3353 def magic_reload_ext(self, module_str):
3354 3354 """Reload an IPython extension by its module name."""
3355 3355 self.extension_manager.reload_extension(module_str)
3356 3356
3357 3357 @skip_doctest
3358 3358 def magic_install_profiles(self, s):
3359 3359 """Install the default IPython profiles into the .ipython dir.
3360 3360
3361 3361 If the default profiles have already been installed, they will not
3362 3362 be overwritten. You can force overwriting them by using the ``-o``
3363 3363 option::
3364 3364
3365 3365 In [1]: %install_profiles -o
3366 3366 """
3367 3367 if '-o' in s:
3368 3368 overwrite = True
3369 3369 else:
3370 3370 overwrite = False
3371 3371 from IPython.config import profile
3372 3372 profile_dir = os.path.dirname(profile.__file__)
3373 3373 ipython_dir = self.ipython_dir
3374 3374 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3375 3375 for src in os.listdir(profile_dir):
3376 3376 if src.startswith('profile_'):
3377 3377 name = src.replace('profile_', '')
3378 3378 print " %s"%name
3379 3379 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3380 3380 pd.copy_config_file('ipython_config.py', path=src,
3381 3381 overwrite=overwrite)
3382 3382
3383 3383 @skip_doctest
3384 3384 def magic_install_default_config(self, s):
3385 3385 """Install IPython's default config file into the .ipython dir.
3386 3386
3387 3387 If the default config file (:file:`ipython_config.py`) is already
3388 3388 installed, it will not be overwritten. You can force overwriting
3389 3389 by using the ``-o`` option::
3390 3390
3391 3391 In [1]: %install_default_config
3392 3392 """
3393 3393 if '-o' in s:
3394 3394 overwrite = True
3395 3395 else:
3396 3396 overwrite = False
3397 3397 pd = self.shell.profile_dir
3398 3398 print "Installing default config file in: %s" % pd.location
3399 3399 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3400 3400
3401 3401 # Pylab support: simple wrappers that activate pylab, load gui input
3402 3402 # handling and modify slightly %run
3403 3403
3404 3404 @skip_doctest
3405 3405 def _pylab_magic_run(self, parameter_s=''):
3406 3406 Magic.magic_run(self, parameter_s,
3407 3407 runner=mpl_runner(self.shell.safe_execfile))
3408 3408
3409 3409 _pylab_magic_run.__doc__ = magic_run.__doc__
3410 3410
3411 3411 @skip_doctest
3412 3412 def magic_pylab(self, s):
3413 3413 """Load numpy and matplotlib to work interactively.
3414 3414
3415 3415 %pylab [GUINAME]
3416 3416
3417 3417 This function lets you activate pylab (matplotlib, numpy and
3418 3418 interactive support) at any point during an IPython session.
3419 3419
3420 3420 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3421 3421 pylab and mlab, as well as all names from numpy and pylab.
3422 3422
3423 3423 Parameters
3424 3424 ----------
3425 3425 guiname : optional
3426 3426 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3427 3427 'tk'). If given, the corresponding Matplotlib backend is used,
3428 3428 otherwise matplotlib's default (which you can override in your
3429 3429 matplotlib config file) is used.
3430 3430
3431 3431 Examples
3432 3432 --------
3433 3433 In this case, where the MPL default is TkAgg:
3434 3434 In [2]: %pylab
3435 3435
3436 3436 Welcome to pylab, a matplotlib-based Python environment.
3437 3437 Backend in use: TkAgg
3438 3438 For more information, type 'help(pylab)'.
3439 3439
3440 3440 But you can explicitly request a different backend:
3441 3441 In [3]: %pylab qt
3442 3442
3443 3443 Welcome to pylab, a matplotlib-based Python environment.
3444 3444 Backend in use: Qt4Agg
3445 3445 For more information, type 'help(pylab)'.
3446 3446 """
3447 3447 self.shell.enable_pylab(s)
3448 3448
3449 3449 def magic_tb(self, s):
3450 3450 """Print the last traceback with the currently active exception mode.
3451 3451
3452 3452 See %xmode for changing exception reporting modes."""
3453 3453 self.shell.showtraceback()
3454 3454
3455 3455 @skip_doctest
3456 3456 def magic_precision(self, s=''):
3457 3457 """Set floating point precision for pretty printing.
3458 3458
3459 3459 Can set either integer precision or a format string.
3460 3460
3461 3461 If numpy has been imported and precision is an int,
3462 3462 numpy display precision will also be set, via ``numpy.set_printoptions``.
3463 3463
3464 3464 If no argument is given, defaults will be restored.
3465 3465
3466 3466 Examples
3467 3467 --------
3468 3468 ::
3469 3469
3470 3470 In [1]: from math import pi
3471 3471
3472 3472 In [2]: %precision 3
3473 3473 Out[2]: u'%.3f'
3474 3474
3475 3475 In [3]: pi
3476 3476 Out[3]: 3.142
3477 3477
3478 3478 In [4]: %precision %i
3479 3479 Out[4]: u'%i'
3480 3480
3481 3481 In [5]: pi
3482 3482 Out[5]: 3
3483 3483
3484 3484 In [6]: %precision %e
3485 3485 Out[6]: u'%e'
3486 3486
3487 3487 In [7]: pi**10
3488 3488 Out[7]: 9.364805e+04
3489 3489
3490 3490 In [8]: %precision
3491 3491 Out[8]: u'%r'
3492 3492
3493 3493 In [9]: pi**10
3494 3494 Out[9]: 93648.047476082982
3495 3495
3496 3496 """
3497 3497
3498 3498 ptformatter = self.shell.display_formatter.formatters['text/plain']
3499 3499 ptformatter.float_precision = s
3500 3500 return ptformatter.float_format
3501 3501
3502 3502
3503 3503 @magic_arguments.magic_arguments()
3504 3504 @magic_arguments.argument(
3505 3505 '-e', '--export', action='store_true', default=False,
3506 3506 help='Export IPython history as a notebook. The filename argument '
3507 3507 'is used to specify the notebook name and format. For example '
3508 3508 'a filename of notebook.ipynb will result in a notebook name '
3509 3509 'of "notebook" and a format of "xml". Likewise using a ".json" '
3510 3510 'or ".py" file extension will write the notebook in the json '
3511 3511 'or py formats.'
3512 3512 )
3513 3513 @magic_arguments.argument(
3514 3514 '-f', '--format',
3515 3515 help='Convert an existing IPython notebook to a new format. This option '
3516 3516 'specifies the new format and can have the values: xml, json, py. '
3517 3517 'The target filename is choosen automatically based on the new '
3518 3518 'format. The filename argument gives the name of the source file.'
3519 3519 )
3520 3520 @magic_arguments.argument(
3521 3521 'filename', type=unicode,
3522 3522 help='Notebook name or filename'
3523 3523 )
3524 3524 def magic_notebook(self, s):
3525 3525 """Export and convert IPython notebooks.
3526 3526
3527 3527 This function can export the current IPython history to a notebook file
3528 3528 or can convert an existing notebook file into a different format. For
3529 3529 example, to export the history to "foo.ipynb" do "%notebook -e foo.ipynb".
3530 3530 To export the history to "foo.py" do "%notebook -e foo.py". To convert
3531 3531 "foo.ipynb" to "foo.json" do "%notebook -f json foo.ipynb". Possible
3532 3532 formats include (json/ipynb, py).
3533 3533 """
3534 3534 args = magic_arguments.parse_argstring(self.magic_notebook, s)
3535 3535
3536 3536 from IPython.nbformat import current
3537 3537 args.filename = unquote_filename(args.filename)
3538 3538 if args.export:
3539 3539 fname, name, format = current.parse_filename(args.filename)
3540 3540 cells = []
3541 3541 hist = list(self.history_manager.get_range())
3542 3542 for session, prompt_number, input in hist[:-1]:
3543 3543 cells.append(current.new_code_cell(prompt_number=prompt_number, input=input))
3544 3544 worksheet = current.new_worksheet(cells=cells)
3545 3545 nb = current.new_notebook(name=name,worksheets=[worksheet])
3546 3546 with open(fname, 'w') as f:
3547 3547 current.write(nb, f, format);
3548 3548 elif args.format is not None:
3549 3549 old_fname, old_name, old_format = current.parse_filename(args.filename)
3550 3550 new_format = args.format
3551 3551 if new_format == u'xml':
3552 3552 raise ValueError('Notebooks cannot be written as xml.')
3553 3553 elif new_format == u'ipynb' or new_format == u'json':
3554 3554 new_fname = old_name + u'.ipynb'
3555 3555 new_format = u'json'
3556 3556 elif new_format == u'py':
3557 3557 new_fname = old_name + u'.py'
3558 3558 else:
3559 3559 raise ValueError('Invalid notebook format: %s' % new_format)
3560 3560 with open(old_fname, 'r') as f:
3561 3561 s = f.read()
3562 3562 try:
3563 3563 nb = current.reads(s, old_format)
3564 3564 except:
3565 3565 nb = current.reads(s, u'xml')
3566 3566 with open(new_fname, 'w') as f:
3567 3567 current.write(nb, f, new_format)
3568 3568
3569 3569
3570 3570 # end Magic
General Comments 0
You need to be logged in to leave comments. Login now