Show More
interactiveshell.py
2976 lines
| 118.2 KiB
| text/x-python
|
PythonLexer
Ville M. Vainio
|
r1032 | # -*- coding: utf-8 -*- | ||
Brian Granger
|
r2731 | """Main IPython class.""" | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
# Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> | ||||
# Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu> | ||||
Fernando Perez
|
r3297 | # Copyright (C) 2008-2011 The IPython Development Team | ||
Ville M. Vainio
|
r1032 | # | ||
# Distributed under the terms of the BSD License. The full license is in | ||||
# the file COPYING, distributed as part of this software. | ||||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
Brian Granger
|
r2227 | from __future__ import with_statement | ||
Fernando Perez
|
r2421 | from __future__ import absolute_import | ||
Brian Granger
|
r2227 | |||
Thomas Kluyver
|
r4731 | import __builtin__ as builtin_mod | ||
Fernando Perez
|
r2927 | import __future__ | ||
Brian Granger
|
r2738 | import abc | ||
Thomas Kluyver
|
r3527 | import ast | ||
Fernando Perez
|
r2953 | import atexit | ||
Ville M. Vainio
|
r1032 | import os | ||
import re | ||||
Bradley M. Froehle
|
r6029 | import runpy | ||
Ville M. Vainio
|
r1032 | import sys | ||
import tempfile | ||||
Thomas Kluyver
|
r3158 | import types | ||
Fernando Perez
|
r6987 | |||
# We need to use nested to support python 2.6, once we move to >=2.7, we can | ||||
# use the with keyword's new builtin support for nested managers | ||||
try: | ||||
from contextlib import nested | ||||
except: | ||||
from IPython.utils.nested_context import nested | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r3793 | from IPython.config.configurable import SingletonConfigurable | ||
Brian Granger
|
r2037 | from IPython.core import debugger, oinspect | ||
Fernando Perez
|
r6923 | from IPython.core import history as ipcorehist | ||
from IPython.core import magic | ||||
Fernando Perez
|
r2876 | from IPython.core import page | ||
Brian Granger
|
r2202 | from IPython.core import prefilter | ||
Fernando Perez
|
r2363 | from IPython.core import shadowns | ||
from IPython.core import ultratb | ||||
MinRK
|
r3822 | from IPython.core.alias import AliasManager, AliasError | ||
Thomas Kluyver
|
r3721 | from IPython.core.autocall import ExitAutocall | ||
Brian Granger
|
r2227 | from IPython.core.builtin_trap import BuiltinTrap | ||
Fernando Perez
|
r3175 | from IPython.core.compilerop import CachingCompiler | ||
Brian Granger
|
r2231 | from IPython.core.display_trap import DisplayTrap | ||
Fernando Perez
|
r2838 | from IPython.core.displayhook import DisplayHook | ||
Brian Granger
|
r3277 | from IPython.core.displaypub import DisplayPublisher | ||
Matthias BUSSONNIER
|
r6776 | from IPython.core.error import UsageError | ||
Brian Granger
|
r2731 | from IPython.core.extensions import ExtensionManager | ||
Brian Granger
|
r2020 | from IPython.core.fakemodule import FakeModule, init_fakemod_dict | ||
Brian Granger
|
r3278 | from IPython.core.formatters import DisplayFormatter | ||
MinRK
|
r3122 | from IPython.core.history import HistoryManager | ||
Fernando Perez
|
r2967 | from IPython.core.inputsplitter import IPythonInputSplitter | ||
Brian Granger
|
r2032 | from IPython.core.logger import Logger | ||
Thomas Kluyver
|
r3509 | from IPython.core.macro import Macro | ||
Brian Granger
|
r2812 | from IPython.core.payload import PayloadManager | ||
Brian Granger
|
r2738 | from IPython.core.plugin import PluginManager | ||
Fernando Perez
|
r2927 | from IPython.core.prefilter import PrefilterManager, ESC_MAGIC | ||
MinRK
|
r4024 | from IPython.core.profiledir import ProfileDir | ||
Fernando Perez
|
r5469 | from IPython.core.pylabtools import pylab_activate | ||
Thomas Kluyver
|
r5495 | from IPython.core.prompts import PromptManager | ||
Brian Granger
|
r2202 | from IPython.utils import PyColorize | ||
Fernando Perez
|
r2838 | from IPython.utils import io | ||
Thomas Kluyver
|
r4731 | from IPython.utils import py3compat | ||
Matthias BUSSONNIER
|
r6761 | from IPython.utils import openpy | ||
Brian Granger
|
r2498 | from IPython.utils.doctestreload import doctest_reload | ||
Matthias BUSSONNIER
|
r6776 | from IPython.utils.io import ask_yes_no | ||
Fernando Perez
|
r2363 | from IPython.utils.ipstruct import Struct | ||
Matthias BUSSONNIER
|
r6776 | from IPython.utils.path import get_home_dir, get_ipython_dir, get_py_filename, unquote_filename | ||
Thomas Kluyver
|
r3388 | from IPython.utils.pickleshare import PickleShareDB | ||
Fernando Perez
|
r2908 | from IPython.utils.process import system, getoutput | ||
Brian Granger
|
r2252 | from IPython.utils.strdispatch import StrDispatch | ||
from IPython.utils.syspathcontext import prepended_to_syspath | ||||
Matthias BUSSONNIER
|
r6776 | from IPython.utils.text import (format_screen, LSString, SList, | ||
Thomas Kluyver
|
r5355 | DollarFormatter) | ||
MinRK
|
r5344 | from IPython.utils.traitlets import (Integer, CBool, CaselessStrEnum, Enum, | ||
Fernando Perez
|
r2838 | List, Unicode, Instance, Type) | ||
Matthias BUSSONNIER
|
r6776 | from IPython.utils.warn import warn, error | ||
Fernando Perez
|
r2838 | import IPython.core.hooks | ||
Brian Granger
|
r2202 | |||
#----------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | # Globals | ||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
Ville M. Vainio
|
r1032 | # compiled regexps for autoindent management | ||
dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass') | ||||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
# Utilities | ||||
#----------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | def softspace(file, newvalue): | ||
"""Copied from code.py, to remove the dependency""" | ||||
oldvalue = 0 | ||||
try: | ||||
oldvalue = file.softspace | ||||
except AttributeError: | ||||
pass | ||||
try: | ||||
file.softspace = newvalue | ||||
except (AttributeError, TypeError): | ||||
# "attribute-less object" or "read-only attributes" | ||||
pass | ||||
return oldvalue | ||||
Fernando Perez
|
r2377 | def no_op(*a, **kw): pass | ||
epatters
|
r4816 | class NoOpContext(object): | ||
def __enter__(self): pass | ||||
def __exit__(self, type, value, traceback): pass | ||||
no_op_context = NoOpContext() | ||||
Thomas Kluyver
|
r3158 | class SpaceInInput(Exception): pass | ||
Ville M. Vainio
|
r1032 | |||
class Bunch: pass | ||||
Brian Granger
|
r2226 | |||
Brian Granger
|
r2319 | def get_default_colors(): | ||
if sys.platform=='darwin': | ||||
return "LightBG" | ||||
elif os.name=='nt': | ||||
return 'Linux' | ||||
else: | ||||
return 'Linux' | ||||
Thomas Kluyver
|
r4046 | class SeparateUnicode(Unicode): | ||
"""A Unicode subclass to validate separate_in, separate_out, etc. | ||||
Brian Granger
|
r2766 | |||
Thomas Kluyver
|
r4046 | This is a Unicode based trait that converts '0'->'' and '\\n'->'\n'. | ||
Brian Granger
|
r2766 | """ | ||
def validate(self, obj, value): | ||||
if value == '0': value = '' | ||||
value = value.replace('\\n','\n') | ||||
Thomas Kluyver
|
r4046 | return super(SeparateUnicode, self).validate(obj, value) | ||
Brian Granger
|
r2766 | |||
Brian Granger
|
r3793 | |||
Thomas Kluyver
|
r3474 | class ReadlineNoRecord(object): | ||
"""Context manager to execute some code, then reload readline history | ||||
so that interactive input to the code doesn't appear when pressing up.""" | ||||
def __init__(self, shell): | ||||
self.shell = shell | ||||
self._nested_level = 0 | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3474 | def __enter__(self): | ||
Thomas Kluyver
|
r3481 | if self._nested_level == 0: | ||
Thomas Kluyver
|
r3760 | try: | ||
self.orig_length = self.current_length() | ||||
self.readline_tail = self.get_readline_tail() | ||||
except (AttributeError, IndexError): # Can fail with pyreadline | ||||
self.orig_length, self.readline_tail = 999999, [] | ||||
Thomas Kluyver
|
r3474 | self._nested_level += 1 | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3474 | def __exit__(self, type, value, traceback): | ||
self._nested_level -= 1 | ||||
if self._nested_level == 0: | ||||
Thomas Kluyver
|
r3496 | # Try clipping the end if it's got longer | ||
Thomas Kluyver
|
r3760 | try: | ||
e = self.current_length() - self.orig_length | ||||
if e > 0: | ||||
for _ in range(e): | ||||
self.shell.readline.remove_history_item(self.orig_length) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3760 | # If it still doesn't match, just reload readline history. | ||
if self.current_length() != self.orig_length \ | ||||
or self.get_readline_tail() != self.readline_tail: | ||||
self.shell.refill_readline_hist() | ||||
except (AttributeError, IndexError): | ||||
pass | ||||
Thomas Kluyver
|
r3474 | # Returning False will cause exceptions to propagate | ||
return False | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3496 | def current_length(self): | ||
return self.shell.readline.get_current_history_length() | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3481 | def get_readline_tail(self, n=10): | ||
"""Get the last n items in readline history.""" | ||||
end = self.shell.readline.get_current_history_length() + 1 | ||||
start = max(end-n, 1) | ||||
ghi = self.shell.readline.get_history_item | ||||
return [ghi(x) for x in range(start, end)] | ||||
Brian Granger
|
r2799 | |||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
Ville M. Vainio
|
r1032 | # Main IPython class | ||
Brian Granger
|
r2202 | #----------------------------------------------------------------------------- | ||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r6906 | class InteractiveShell(SingletonConfigurable): | ||
Brian Granger
|
r2226 | """An enhanced, interactive shell for Python.""" | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2802 | _instance = None | ||
Brian Granger
|
r3788 | |||
Fernando Perez
|
r5624 | autocall = Enum((0,1,2), default_value=0, config=True, help= | ||
Brian Granger
|
r3788 | """ | ||
Make IPython automatically call any callable object even if you didn't | ||||
type explicit parentheses. For example, 'str 43' becomes 'str(43)' | ||||
automatically. The value can be '0' to disable the feature, '1' for | ||||
'smart' autocall, where it is not applied if there are no more | ||||
Brian Granger
|
r3787 | arguments on the line, and '2' for 'full' autocall, where all callable | ||
objects are automatically called (even if no arguments are present). | ||||
Brian Granger
|
r3788 | """ | ||
Brian Granger
|
r3787 | ) | ||
Brian Granger
|
r2766 | # TODO: remove all autoindent logic and put into frontends. | ||
# We can't do this yet because even runlines uses the autoindent. | ||||
Brian Granger
|
r3788 | autoindent = CBool(True, config=True, help= | ||
""" | ||||
Brian Granger
|
r3789 | Autoindent IPython code entered interactively. | ||
Brian Granger
|
r3788 | """ | ||
) | ||||
automagic = CBool(True, config=True, help= | ||||
""" | ||||
Enable magic commands to be called without the leading %. | ||||
""" | ||||
) | ||||
MinRK
|
r5344 | cache_size = Integer(1000, config=True, help= | ||
Brian Granger
|
r3789 | """ | ||
Set the size of the output cache. The default is 1000, you can | ||||
change it permanently in your config file. Setting it to 0 completely | ||||
disables the caching system, and the minimum value accepted is 20 (if | ||||
you provide a value less than 20, it is reset to 0 and a warning is | ||||
issued). This limit is defined because otherwise you'll spend more | ||||
time re-flushing a too small cache than working | ||||
""" | ||||
) | ||||
color_info = CBool(True, config=True, help= | ||||
""" | ||||
Use colors for displaying information about objects. Because this | ||||
information is passed through a pager (like 'less'), and some pagers | ||||
get confused with color codes, this capability can be turned off. | ||||
""" | ||||
) | ||||
Bernardo B. Marques
|
r4872 | colors = CaselessStrEnum(('NoColor','LightBG','Linux'), | ||
MinRK
|
r3963 | default_value=get_default_colors(), config=True, | ||
MinRK
|
r3967 | help="Set the color scheme (NoColor, Linux, or LightBG)." | ||
MinRK
|
r3963 | ) | ||
epatters
|
r4816 | colors_force = CBool(False, help= | ||
""" | ||||
Force use of ANSI color codes, regardless of OS and readline | ||||
availability. | ||||
""" | ||||
# FIXME: This is essentially a hack to allow ZMQShell to show colors | ||||
# without readline on Win32. When the ZMQ formatting system is | ||||
# refactored, this should be removed. | ||||
) | ||||
Brian Granger
|
r2245 | debug = CBool(False, config=True) | ||
Brian Granger
|
r3789 | deep_reload = CBool(False, config=True, help= | ||
""" | ||||
Enable deep (recursive) reloading by default. IPython can use the | ||||
deep_reload module which reloads changes in modules recursively (it | ||||
replaces the reload() function, so you don't need to change anything to | ||||
use it). deep_reload() forces a full reload of modules whose code may | ||||
have changed, which the default reload() function does not. When | ||||
deep_reload is off, IPython will use the normal reload(), but | ||||
deep_reload will still be available as dreload(). | ||||
""" | ||||
) | ||||
MinRK
|
r5734 | disable_failing_post_execute = CBool(False, config=True, | ||
help="Don't call post-execute functions that have failed in the past.""" | ||||
) | ||||
Brian Granger
|
r3278 | display_formatter = Instance(DisplayFormatter) | ||
Brian Granger
|
r2786 | displayhook_class = Type(DisplayHook) | ||
Brian Granger
|
r3277 | display_pub_class = Type(DisplayPublisher) | ||
Fernando Perez
|
r2950 | exit_now = CBool(False) | ||
Thomas Kluyver
|
r3724 | exiter = Instance(ExitAutocall) | ||
def _exiter_default(self): | ||||
return ExitAutocall(self) | ||||
Fernando Perez
|
r3136 | # Monotonically increasing execution counter | ||
MinRK
|
r5344 | execution_count = Integer(1) | ||
MinRK
|
r3464 | filename = Unicode("<ipython console>") | ||
Brian Granger
|
r2322 | ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__ | ||
Fernando Perez
|
r3049 | |||
# Input splitter, to split entire cells of input into either individual | ||||
# interactive statements or whole blocks. | ||||
input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter', | ||||
(), {}) | ||||
Brian Granger
|
r3789 | logstart = CBool(False, config=True, help= | ||
""" | ||||
Start logging to the default log file. | ||||
""" | ||||
) | ||||
logfile = Unicode('', config=True, help= | ||||
""" | ||||
The name of the logfile to use. | ||||
""" | ||||
) | ||||
logappend = Unicode('', config=True, help= | ||||
""" | ||||
Start logging to the given file in append mode. | ||||
""" | ||||
) | ||||
Brian Granger
|
r2204 | object_info_string_level = Enum((0,1,2), default_value=0, | ||
Brian Granger
|
r2245 | config=True) | ||
Brian Granger
|
r3789 | pdb = CBool(False, config=True, help= | ||
""" | ||||
Automatically call the pdb debugger after every exception. | ||||
""" | ||||
) | ||||
Fernando Perez
|
r5096 | multiline_history = CBool(sys.platform != 'win32', config=True, | ||
Julian Taylor
|
r5178 | help="Save multi-line entries as one entry in readline history" | ||
Julian Taylor
|
r5011 | ) | ||
Fernando Perez
|
r2987 | |||
MinRK
|
r5548 | # deprecated prompt traits: | ||
prompt_in1 = Unicode('In [\\#]: ', config=True, | ||||
help="Deprecated, use PromptManager.in_template") | ||||
prompt_in2 = Unicode(' .\\D.: ', config=True, | ||||
help="Deprecated, use PromptManager.in2_template") | ||||
prompt_out = Unicode('Out[\\#]: ', config=True, | ||||
help="Deprecated, use PromptManager.out_template") | ||||
prompts_pad_left = CBool(True, config=True, | ||||
help="Deprecated, use PromptManager.justify") | ||||
def _prompt_trait_changed(self, name, old, new): | ||||
table = { | ||||
'prompt_in1' : 'in_template', | ||||
'prompt_in2' : 'in2_template', | ||||
'prompt_out' : 'out_template', | ||||
'prompts_pad_left' : 'justify', | ||||
} | ||||
warn("InteractiveShell.{name} is deprecated, use PromptManager.{newname}\n".format( | ||||
name=name, newname=table[name]) | ||||
) | ||||
# protect against weird cases where self.config may not exist: | ||||
if self.config is not None: | ||||
# propagate to corresponding PromptManager trait | ||||
setattr(self.config.PromptManager, table[name], new) | ||||
_prompt_in1_changed = _prompt_trait_changed | ||||
_prompt_in2_changed = _prompt_trait_changed | ||||
_prompt_out_changed = _prompt_trait_changed | ||||
_prompt_pad_left_changed = _prompt_trait_changed | ||||
Thomas Kluyver
|
r5555 | show_rewritten_input = CBool(True, config=True, | ||
help="Show rewritten input, e.g. for autocall." | ||||
) | ||||
Brian Granger
|
r2245 | quiet = CBool(False, config=True) | ||
MinRK
|
r5344 | history_length = Integer(10000, config=True) | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2761 | # The readline stuff will eventually be moved to the terminal subclass | ||
# but for now, we can't do that as readline is welded in everywhere. | ||||
Brian Granger
|
r2245 | readline_use = CBool(True, config=True) | ||
Thomas Kluyver
|
r4046 | readline_remove_delims = Unicode('-/~', config=True) | ||
MinRK
|
r3842 | # don't use \M- bindings by default, because they | ||
# conflict with 8-bit encodings. See gh-58,gh-88 | ||||
Brian Granger
|
r2204 | readline_parse_and_bind = List([ | ||
'tab: complete', | ||||
Fernando Perez
|
r2567 | '"\C-l": clear-screen', | ||
Brian Granger
|
r2204 | 'set show-all-if-ambiguous on', | ||
'"\C-o": tab-insert', | ||||
'"\C-r": reverse-search-history', | ||||
'"\C-s": forward-search-history', | ||||
'"\C-p": history-search-backward', | ||||
'"\C-n": history-search-forward', | ||||
'"\e[A": history-search-backward', | ||||
'"\e[B": history-search-forward', | ||||
'"\C-k": kill-line', | ||||
'"\C-u": unix-line-discard', | ||||
Brian Granger
|
r2245 | ], allow_none=False, config=True) | ||
Brian Granger
|
r2202 | |||
Mike Hansen
|
r7034 | ast_node_interactivity = Enum(['all', 'last', 'last_expr', 'none'], | ||
default_value='last_expr', config=True, | ||||
help=""" | ||||
Mike Hansen
|
r7033 | 'all', 'last', 'last_expr' or 'none'," specifying which nodes should be | ||
Mike Hansen
|
r7034 | run interactively (displaying output from expressions).""") | ||
Mike Hansen
|
r7033 | |||
Brian Granger
|
r2766 | # TODO: this part of prompt management should be moved to the frontends. | ||
# Use custom TraitTypes that convert '0'->'' and '\\n'->'\n' | ||||
Thomas Kluyver
|
r4046 | separate_in = SeparateUnicode('\n', config=True) | ||
separate_out = SeparateUnicode('', config=True) | ||||
separate_out2 = SeparateUnicode('', config=True) | ||||
Brian Granger
|
r2245 | wildcards_case_sensitive = CBool(True, config=True) | ||
Bernardo B. Marques
|
r4872 | xmode = CaselessStrEnum(('Context','Plain', 'Verbose'), | ||
Brian Granger
|
r2245 | default_value='Context', config=True) | ||
Brian Granger
|
r2204 | |||
Brian Granger
|
r2731 | # Subcomponents of InteractiveShell | ||
alias_manager = Instance('IPython.core.alias.AliasManager') | ||||
prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager') | ||||
builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap') | ||||
display_trap = Instance('IPython.core.display_trap.DisplayTrap') | ||||
extension_manager = Instance('IPython.core.extensions.ExtensionManager') | ||||
Brian Granger
|
r2738 | plugin_manager = Instance('IPython.core.plugin.PluginManager') | ||
Brian Granger
|
r2812 | payload_manager = Instance('IPython.core.payload.PayloadManager') | ||
MinRK
|
r3122 | history_manager = Instance('IPython.core.history.HistoryManager') | ||
Fernando Perez
|
r6917 | magics_manager = Instance('IPython.core.magic.MagicsManager') | ||
Brian Granger
|
r2731 | |||
MinRK
|
r4023 | profile_dir = Instance('IPython.core.application.ProfileDir') | ||
MinRK
|
r3963 | @property | ||
def profile(self): | ||||
if self.profile_dir is not None: | ||||
name = os.path.basename(self.profile_dir.location) | ||||
return name.replace('profile_','') | ||||
Fernando Perez
|
r2987 | # Private interface | ||
Fernando Perez
|
r3732 | _post_execute = Instance(dict) | ||
Fernando Perez
|
r2987 | |||
MinRK
|
r3963 | def __init__(self, config=None, ipython_dir=None, profile_dir=None, | ||
Thomas Kluyver
|
r5453 | user_module=None, user_ns=None, | ||
Fernando Perez
|
r2967 | custom_exceptions=((), None)): | ||
Ville M. Vainio
|
r1032 | |||
Dav Clark
|
r2385 | # This is where traits with a config_key argument are updated | ||
Brian Granger
|
r2203 | # from the values on config. | ||
Brian Granger
|
r2731 | super(InteractiveShell, self).__init__(config=config) | ||
MinRK
|
r5225 | self.configurables = [self] | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2226 | # These are relatively independent and stateless | ||
Brian Granger
|
r2322 | self.init_ipython_dir(ipython_dir) | ||
MinRK
|
r3963 | self.init_profile_dir(profile_dir) | ||
Brian Granger
|
r2202 | self.init_instance_attrs() | ||
Fernando Perez
|
r3005 | self.init_environment() | ||
Thomas Kluyver
|
r6085 | |||
# Check if we're in a virtualenv, and set up sys.path. | ||||
self.init_virtualenv() | ||||
Brian Granger
|
r2226 | |||
Brian Granger
|
r2245 | # Create namespaces (user_ns, user_global_ns, etc.) | ||
Thomas Kluyver
|
r5453 | self.init_create_namespaces(user_module, user_ns) | ||
Brian Granger
|
r2226 | # This has to be done after init_create_namespaces because it uses | ||
# something in self.user_ns, but before init_sys_modules, which | ||||
# is the first thing to modify sys. | ||||
Brian Granger
|
r2804 | # TODO: When we override sys.stdout and sys.stderr before this class | ||
# is created, we are saving the overridden ones here. Not sure if this | ||||
# is what we want to do. | ||||
Brian Granger
|
r2226 | self.save_sys_module_state() | ||
self.init_sys_modules() | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3388 | # While we're trying to have each part of the code directly access what | ||
# it needs without keeping redundant references to objects, we have too | ||||
# much legacy code that expects ip.db to exist. | ||||
MinRK
|
r3963 | self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db')) | ||
Brian Granger
|
r2226 | |||
Brian Granger
|
r2202 | self.init_history() | ||
self.init_encoding() | ||||
Brian Granger
|
r2244 | self.init_prefilter() | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2202 | self.init_syntax_highlighting() | ||
self.init_hooks() | ||||
self.init_pushd_popd_magic() | ||||
Brian Granger
|
r2804 | # self.init_traceback_handlers use to be here, but we moved it below | ||
# because it and init_io have to come after init_readline. | ||||
Brian Granger
|
r2226 | self.init_user_ns() | ||
Brian Granger
|
r2202 | self.init_logger() | ||
Brian Granger
|
r2243 | self.init_alias() | ||
Brian Granger
|
r2202 | self.init_builtins() | ||
Brian Granger
|
r2767 | |||
Brian Granger
|
r2203 | # pre_config_initialization | ||
Fernando Perez
|
r2967 | # The next section should contain everything that was in ipmaker. | ||
Brian Granger
|
r2202 | self.init_logstart() | ||
Brian Granger
|
r2203 | |||
# The following was in post_config_initialization | ||||
self.init_inspector() | ||||
Brian Granger
|
r2804 | # init_readline() must come before init_io(), because init_io uses | ||
# readline related things. | ||||
Brian Granger
|
r2203 | self.init_readline() | ||
Thomas Kluyver
|
r4662 | # We save this here in case user code replaces raw_input, but it needs | ||
# to be after init_readline(), because PyPy's readline works by replacing | ||||
# raw_input. | ||||
Thomas Kluyver
|
r4753 | if py3compat.PY3: | ||
self.raw_input_original = input | ||||
else: | ||||
self.raw_input_original = raw_input | ||||
Fernando Perez
|
r2956 | # init_completer must come after init_readline, because it needs to | ||
# know whether readline is present or not system-wide to configure the | ||||
# completers, since the completion machinery can now operate | ||||
# independently of readline (e.g. over the network) | ||||
self.init_completer() | ||||
Brian Granger
|
r2804 | # TODO: init_io() needs to happen before init_traceback handlers | ||
# because the traceback handlers hardcode the stdout/stderr streams. | ||||
# This logic in in debugger.Pdb and should eventually be changed. | ||||
self.init_io() | ||||
self.init_traceback_handlers(custom_exceptions) | ||||
Brian Granger
|
r2203 | self.init_prompts() | ||
Brian Granger
|
r3278 | self.init_display_formatter() | ||
Brian Granger
|
r3277 | self.init_display_pub() | ||
Brian Granger
|
r2203 | self.init_displayhook() | ||
self.init_reload_doctest() | ||||
self.init_magics() | ||||
self.init_pdb() | ||||
Brian Granger
|
r2731 | self.init_extension_manager() | ||
Brian Granger
|
r2738 | self.init_plugin_manager() | ||
Brian Granger
|
r2810 | self.init_payload() | ||
Brian Granger
|
r2203 | self.hooks.late_startup_hook() | ||
Fernando Perez
|
r2953 | atexit.register(self.atexit_operations) | ||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2245 | def get_ipython(self): | ||
Fernando Perez
|
r2400 | """Return the currently running IPython instance.""" | ||
Brian Granger
|
r2245 | return self | ||
Brian Granger
|
r2203 | #------------------------------------------------------------------------- | ||
Dav Clark
|
r2385 | # Trait changed handlers | ||
Brian Granger
|
r2203 | #------------------------------------------------------------------------- | ||
Brian Granger
|
r2322 | def _ipython_dir_changed(self, name, new): | ||
Brian Granger
|
r2245 | if not os.path.isdir(new): | ||
os.makedirs(new, mode = 0777) | ||||
Brian Granger
|
r2242 | def set_autoindent(self,value=None): | ||
"""Set the autoindent flag, checking for readline support. | ||||
If called with no arguments, it acts as a toggle.""" | ||||
MinRK
|
r4828 | if value != 0 and not self.has_readline: | ||
Brian Granger
|
r2242 | if os.name == 'posix': | ||
warn("The auto-indent feature requires the readline library") | ||||
self.autoindent = 0 | ||||
return | ||||
if value is None: | ||||
self.autoindent = not self.autoindent | ||||
else: | ||||
self.autoindent = value | ||||
Brian Granger
|
r2203 | #------------------------------------------------------------------------- | ||
# init_* methods called by __init__ | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2322 | def init_ipython_dir(self, ipython_dir): | ||
if ipython_dir is not None: | ||||
self.ipython_dir = ipython_dir | ||||
Brian Granger
|
r2223 | return | ||
MinRK
|
r3963 | self.ipython_dir = get_ipython_dir() | ||
Brian Granger
|
r2226 | |||
MinRK
|
r3963 | def init_profile_dir(self, profile_dir): | ||
if profile_dir is not None: | ||||
self.profile_dir = profile_dir | ||||
return | ||||
self.profile_dir =\ | ||||
ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default') | ||||
Brian Granger
|
r2223 | |||
Brian Granger
|
r2202 | def init_instance_attrs(self): | ||
self.more = False | ||||
Ville M. Vainio
|
r1032 | |||
# command compiler | ||||
Fernando Perez
|
r3172 | self.compile = CachingCompiler() | ||
Ville M. Vainio
|
r1032 | |||
# Make an empty namespace, which extension writers can rely on both | ||||
# existing and NEVER being used by ipython itself. This gives them a | ||||
# convenient location for storing additional information and state | ||||
# their extensions may require, without fear of collisions with other | ||||
# ipython names that may develop later. | ||||
self.meta = Struct() | ||||
Brian Granger
|
r2202 | # Temporary files used for various purposes. Deleted at exit. | ||
self.tempfiles = [] | ||||
# Keep track of readline usage (later set by init_readline) | ||||
self.has_readline = False | ||||
# keep track of where we started running (mainly for crash post-mortem) | ||||
# This is not being used anywhere currently. | ||||
Jörgen Stenarson
|
r4208 | self.starting_dir = os.getcwdu() | ||
Brian Granger
|
r2202 | |||
# Indentation management | ||||
self.indent_current_nsp = 0 | ||||
Fernando Perez
|
r3732 | # Dict to track post-execution functions that have been registered | ||
self._post_execute = {} | ||||
Fernando Perez
|
r3005 | def init_environment(self): | ||
"""Any changes we need to make to the user's environment.""" | ||||
pass | ||||
Brian Granger
|
r2242 | def init_encoding(self): | ||
# Get system encoding at startup time. Certain terminals (like Emacs | ||||
# under Win32 have it set to None, and we need to have a known valid | ||||
# encoding to use in the raw_input() method | ||||
try: | ||||
self.stdin_encoding = sys.stdin.encoding or 'ascii' | ||||
except AttributeError: | ||||
self.stdin_encoding = 'ascii' | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_syntax_highlighting(self): | ||
# Python source parser/formatter for syntax highlighting | ||||
pyformat = PyColorize.Parser().format | ||||
self.pycolorize = lambda src: pyformat(src,'str',self.colors) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_pushd_popd_magic(self): | ||
# for pushd/popd management | ||||
MinRK
|
r5384 | self.home_dir = get_home_dir() | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | self.dir_stack = [] | ||
Robert Kern
|
r1419 | |||
Brian Granger
|
r2242 | def init_logger(self): | ||
MinRK
|
r3122 | self.logger = Logger(self.home_dir, logfname='ipython_log.py', | ||
logmode='rotate') | ||||
Fernando Perez
|
r1859 | |||
Brian Granger
|
r2242 | def init_logstart(self): | ||
MinRK
|
r3122 | """Initialize logging in case it was requested at the command line. | ||
""" | ||||
Brian Granger
|
r2265 | if self.logappend: | ||
Fernando Perez
|
r6906 | self.magic('logstart %s append' % self.logappend) | ||
Brian Granger
|
r2252 | elif self.logfile: | ||
Fernando Perez
|
r6906 | self.magic('logstart %' % self.logfile) | ||
Brian Granger
|
r2242 | elif self.logstart: | ||
Fernando Perez
|
r6906 | self.magic('logstart') | ||
Fernando Perez
|
r1859 | |||
Brian Granger
|
r2242 | def init_builtins(self): | ||
Fernando Perez
|
r5492 | # A single, static flag that we set to True. Its presence indicates | ||
# that an IPython shell has been created, and we make no attempts at | ||||
# removing on exit or representing the existence of more than one | ||||
# IPython at a time. | ||||
builtin_mod.__dict__['__IPYTHON__'] = True | ||||
# In 0.11 we introduced '__IPYTHON__active' as an integer we'd try to | ||||
# manage on enter/exit, but with all our shells it's virtually | ||||
# impossible to get all the cases right. We're leaving the name in for | ||||
# those who adapted their codes to check for this flag, but will | ||||
# eventually remove it after a few more releases. | ||||
builtin_mod.__dict__['__IPYTHON__active'] = \ | ||||
'Deprecated, check for __IPYTHON__' | ||||
Brian Granger
|
r2740 | self.builtin_trap = BuiltinTrap(shell=self) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_inspector(self): | ||
# Object inspector | ||||
self.inspector = oinspect.Inspector(oinspect.InspectColors, | ||||
PyColorize.ANSICodeColors, | ||||
'NoColor', | ||||
self.object_info_string_level) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2775 | def init_io(self): | ||
Fernando Perez
|
r2974 | # This will just use sys.stdout and sys.stderr. If you want to | ||
# override sys.stdout and sys.stderr themselves, you need to do that | ||||
Bernardo B. Marques
|
r4872 | # *before* instantiating this class, because io holds onto | ||
Fernando Perez
|
r2974 | # references to the underlying streams. | ||
Brian Granger
|
r2808 | if sys.platform == 'win32' and self.has_readline: | ||
MinRK
|
r3800 | io.stdout = io.stderr = io.IOStream(self.readline._outputfile) | ||
Brian Granger
|
r2775 | else: | ||
MinRK
|
r3800 | io.stdout = io.IOStream(sys.stdout) | ||
io.stderr = io.IOStream(sys.stderr) | ||||
Brian Granger
|
r2775 | |||
Brian Granger
|
r2242 | def init_prompts(self): | ||
Thomas Kluyver
|
r5495 | self.prompt_manager = PromptManager(shell=self, config=self.config) | ||
Thomas Kluyver
|
r5511 | self.configurables.append(self.prompt_manager) | ||
Bradley M. Froehle
|
r6749 | # Set system prompts, so that scripts can decide if they are running | ||
# interactively. | ||||
sys.ps1 = 'In : ' | ||||
sys.ps2 = '...: ' | ||||
sys.ps3 = 'Out: ' | ||||
Brian Granger
|
r2781 | |||
Brian Granger
|
r3278 | def init_display_formatter(self): | ||
self.display_formatter = DisplayFormatter(config=self.config) | ||||
MinRK
|
r5225 | self.configurables.append(self.display_formatter) | ||
Brian Granger
|
r3278 | |||
Brian Granger
|
r3277 | def init_display_pub(self): | ||
self.display_pub = self.display_pub_class(config=self.config) | ||||
MinRK
|
r5225 | self.configurables.append(self.display_pub) | ||
Brian Granger
|
r3277 | |||
Brian Granger
|
r2781 | def init_displayhook(self): | ||
# Initialize displayhook, set in/out prompts and printing system | ||||
Brian Granger
|
r2786 | self.displayhook = self.displayhook_class( | ||
Robert Kern
|
r3210 | config=self.config, | ||
Brian Granger
|
r2786 | shell=self, | ||
cache_size=self.cache_size, | ||||
) | ||||
MinRK
|
r5225 | self.configurables.append(self.displayhook) | ||
Brian Granger
|
r2781 | # This is a context manager that installs/revmoes the displayhook at | ||
# the appropriate time. | ||||
self.display_trap = DisplayTrap(hook=self.displayhook) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_reload_doctest(self): | ||
# Do a proper resetting of doctest, including the necessary displayhook | ||||
# monkeypatching | ||||
try: | ||||
doctest_reload() | ||||
except ImportError: | ||||
warn("doctest module does not exist.") | ||||
Thomas Kluyver
|
r6085 | |||
def init_virtualenv(self): | ||||
"""Add a virtualenv to sys.path so the user can import modules from it. | ||||
This isn't perfect: it doesn't use the Python interpreter with which the | ||||
virtualenv was built, and it ignores the --no-site-packages option. A | ||||
warning will appear suggesting the user installs IPython in the | ||||
virtualenv, but for many cases, it probably works well enough. | ||||
Adapted from code snippets online. | ||||
http://blog.ufsoft.org/2009/1/29/ipython-and-virtualenv | ||||
""" | ||||
if 'VIRTUAL_ENV' not in os.environ: | ||||
# Not in a virtualenv | ||||
return | ||||
if sys.executable.startswith(os.environ['VIRTUAL_ENV']): | ||||
# Running properly in the virtualenv, don't need to do anything | ||||
return | ||||
warn("Attempting to work in a virtualenv. If you encounter problems, please " | ||||
"install IPython inside the virtualenv.\n") | ||||
if sys.platform == "win32": | ||||
virtual_env = os.path.join(os.environ['VIRTUAL_ENV'], 'Lib', 'site-packages') | ||||
else: | ||||
virtual_env = os.path.join(os.environ['VIRTUAL_ENV'], 'lib', | ||||
'python%d.%d' % sys.version_info[:2], 'site-packages') | ||||
import site | ||||
sys.path.insert(0, virtual_env) | ||||
site.addsitedir(virtual_env) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to injections into the sys module | ||||
#------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def save_sys_module_state(self): | ||
"""Save the state of hooks in the sys module. | ||||
Brian Granger
|
r2226 | |||
Thomas Kluyver
|
r5453 | This has to be called after self.user_module is created. | ||
Brian Granger
|
r2242 | """ | ||
self._orig_sys_module_state = {} | ||||
self._orig_sys_module_state['stdin'] = sys.stdin | ||||
self._orig_sys_module_state['stdout'] = sys.stdout | ||||
self._orig_sys_module_state['stderr'] = sys.stderr | ||||
self._orig_sys_module_state['excepthook'] = sys.excepthook | ||||
Thomas Kluyver
|
r5453 | self._orig_sys_modules_main_name = self.user_module.__name__ | ||
MinRK
|
r6829 | self._orig_sys_modules_main_mod = sys.modules.get(self.user_module.__name__) | ||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2242 | def restore_sys_module_state(self): | ||
"""Restore the state of the sys module.""" | ||||
try: | ||||
Thomas Kluyver
|
r3158 | for k, v in self._orig_sys_module_state.iteritems(): | ||
Brian Granger
|
r2242 | setattr(sys, k, v) | ||
except AttributeError: | ||||
pass | ||||
# Reset what what done in self.init_sys_modules | ||||
MinRK
|
r6829 | if self._orig_sys_modules_main_mod is not None: | ||
sys.modules[self._orig_sys_modules_main_name] = self._orig_sys_modules_main_mod | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to hooks | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | def init_hooks(self): | ||
# hooks holds pointers used for user-side customizations | ||||
self.hooks = Struct() | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | self.strdispatchers = {} | ||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | # Set all default hooks, defined in the IPython.hooks module. | ||
hooks = IPython.core.hooks | ||||
for hook_name in hooks.__all__: | ||||
# default hooks have priority 100, i.e. low; user hooks should have | ||||
# 0-100 priority | ||||
self.set_hook(hook_name,getattr(hooks,hook_name), 100) | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None): | ||
"""set_hook(name,hook) -> sets an internal IPython hook. | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | IPython exposes some of its internal API as user-modifiable hooks. By | ||
Bernardo B. Marques
|
r4872 | adding your function to one of these hooks, you can modify IPython's | ||
Brian Granger
|
r2242 | behavior to call at runtime your own routines.""" | ||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | # At some point in the future, this should validate the hook before it | ||
# accepts it. Probably at least check that the hook takes the number | ||||
# of args it's supposed to. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3158 | f = types.MethodType(hook,self) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | # check if the hook is for strdispatcher first | ||
if str_key is not None: | ||||
sdp = self.strdispatchers.get(name, StrDispatch()) | ||||
sdp.add_s(str_key, f, priority ) | ||||
self.strdispatchers[name] = sdp | ||||
return | ||||
if re_key is not None: | ||||
sdp = self.strdispatchers.get(name, StrDispatch()) | ||||
sdp.add_re(re.compile(re_key), f, priority ) | ||||
self.strdispatchers[name] = sdp | ||||
return | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | dp = getattr(self.hooks, name, None) | ||
if name not in IPython.core.hooks.__all__: | ||||
Fernando Perez
|
r2955 | print "Warning! Hook '%s' is not one of %s" % \ | ||
(name, IPython.core.hooks.__all__ ) | ||||
Brian Granger
|
r2242 | if not dp: | ||
dp = IPython.core.hooks.CommandChainDispatcher() | ||||
Bernardo B. Marques
|
r4872 | |||
Ville M. Vainio
|
r1032 | try: | ||
Brian Granger
|
r2242 | dp.add(f,priority) | ||
except AttributeError: | ||||
# it was not commandchain, plain old func - replace | ||||
dp = f | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | setattr(self.hooks,name, dp) | ||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r2987 | def register_post_execute(self, func): | ||
"""Register a function for calling after code execution. | ||||
""" | ||||
if not callable(func): | ||||
raise ValueError('argument %s must be callable' % func) | ||||
Fernando Perez
|
r3732 | self._post_execute[func] = True | ||
MinRK
|
r5734 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to the "main" module | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2242 | def new_main_mod(self,ns=None): | ||
"""Return a new 'main' module object for user code execution. | ||||
""" | ||||
main_mod = self._user_main_module | ||||
init_fakemod_dict(main_mod,ns) | ||||
return main_mod | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | def cache_main_mod(self,ns,fname): | ||
"""Cache a main module's namespace. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | When scripts are executed via %run, we must keep a reference to the | ||
namespace of their __main__ module (a FakeModule instance) around so | ||||
that Python doesn't clear it, rendering objects defined therein | ||||
useless. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | This method keeps said reference in a private dict, keyed by the | ||
absolute path of the module object (which corresponds to the script | ||||
path). This way, for multiple executions of the same script we only | ||||
keep one copy of the namespace (the last one), thus preventing memory | ||||
leaks from old references while allowing the objects from the last | ||||
execution to be accessible. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | Note: we can not allow the actual FakeModule instances to be deleted, | ||
because of how Python tears down modules (it hard-sets all their | ||||
references to None without regard for reference counts). This method | ||||
must therefore make a *copy* of the given namespace, to allow the | ||||
original module's __dict__ to be cleared and reused. | ||||
Ville M. Vainio
|
r1032 | |||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | Parameters | ||
---------- | ||||
ns : a namespace (a dict, typically) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | fname : str | ||
Filename associated with the namespace. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | Examples | ||
-------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [10]: import IPython | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [12]: IPython.__file__ in _ip._main_ns_cache | ||
Out[12]: True | ||||
""" | ||||
self._main_ns_cache[os.path.abspath(fname)] = ns.copy() | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def clear_main_mod_cache(self): | ||
"""Clear the cache of main modules. | ||||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2242 | Mainly for use by utilities like %reset. | ||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2242 | Examples | ||
-------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [15]: import IPython | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [17]: len(_ip._main_ns_cache) > 0 | ||
Out[17]: True | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | In [18]: _ip.clear_main_mod_cache() | ||
Fernando Perez
|
r1856 | |||
Brian Granger
|
r2242 | In [19]: len(_ip._main_ns_cache) == 0 | ||
Out[19]: True | ||||
""" | ||||
self._main_ns_cache.clear() | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to debugging | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | def init_pdb(self): | ||
# Set calling of pdb on exceptions | ||||
# self.call_pdb is a property | ||||
self.call_pdb = self.pdb | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def _get_call_pdb(self): | ||
return self._call_pdb | ||||
def _set_call_pdb(self,val): | ||||
if val not in (0,1,False,True): | ||||
raise ValueError,'new call_pdb value must be boolean' | ||||
# store value in instance | ||||
self._call_pdb = val | ||||
# notify the actual exception handlers | ||||
self.InteractiveTB.call_pdb = val | ||||
call_pdb = property(_get_call_pdb,_set_call_pdb,None, | ||||
'Control auto-activation of pdb at exceptions') | ||||
def debugger(self,force=False): | ||||
"""Call the pydb/pdb debugger. | ||||
Keywords: | ||||
- force(False): by default, this routine checks the instance call_pdb | ||||
flag and does not actually invoke the debugger if the flag is false. | ||||
The 'force' option forces the debugger to activate even if the flag | ||||
is false. | ||||
""" | ||||
if not (force or self.call_pdb): | ||||
Brian Granger
|
r2203 | return | ||
Brian Granger
|
r2242 | if not hasattr(sys,'last_traceback'): | ||
error('No traceback has been produced, nothing to debug.') | ||||
return | ||||
# use pydb if available | ||||
if debugger.has_pydb: | ||||
from pydb import pm | ||||
Brian Granger
|
r2203 | else: | ||
Brian Granger
|
r2242 | # fallback to our internal debugger | ||
pm = lambda : self.InteractiveTB.debugger(force=True) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3474 | with self.readline_no_record: | ||
pm() | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to IPython's various namespaces | ||||
#------------------------------------------------------------------------- | ||||
Thomas Kluyver
|
r5669 | default_user_namespaces = True | ||
Brian Granger
|
r2203 | |||
Thomas Kluyver
|
r5453 | def init_create_namespaces(self, user_module=None, user_ns=None): | ||
Brian Granger
|
r2242 | # Create the namespace where the user will operate. user_ns is | ||
# normally the only one used, and it is passed to the exec calls as | ||||
# the locals argument. But we do carry a user_global_ns namespace | ||||
# given as the exec 'globals' argument, This is useful in embedding | ||||
# situations where the ipython shell opens in a context where the | ||||
# distinction between locals and globals is meaningful. For | ||||
# non-embedded contexts, it is just the same object as the user_ns dict. | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | # FIXME. For some strange reason, __builtins__ is showing up at user | ||
# level as a dict instead of a module. This is a manual fix, but I | ||||
# should really track down where the problem is coming from. Alex | ||||
# Schmolck reported this problem first. | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | # A useful post by Alex Martelli on this topic: | ||
# Re: inconsistent value from __builtins__ | ||||
# Von: Alex Martelli <aleaxit@yahoo.com> | ||||
# Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends | ||||
# Gruppen: comp.lang.python | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | # Michael Hohn <hohn@hooknose.lbl.gov> wrote: | ||
# > >>> print type(builtin_check.get_global_binding('__builtins__')) | ||||
# > <type 'dict'> | ||||
# > >>> print type(__builtins__) | ||||
# > <type 'module'> | ||||
# > Is this difference in return value intentional? | ||||
# Well, it's documented that '__builtins__' can be either a dictionary | ||||
# or a module, and it's been that way for a long time. Whether it's | ||||
# intentional (or sensible), I don't know. In any case, the idea is | ||||
# that if you need to access the built-in namespace directly, you | ||||
# should start with "import __builtin__" (note, no 's') which will | ||||
# definitely give you a module. Yeah, it's somewhat confusing:-(. | ||||
Thomas Kluyver
|
r5456 | # These routines return a properly built module and dict as needed by | ||
# the rest of the code, and can also be used by extension writers to | ||||
# generate properly initialized namespaces. | ||||
Thomas Kluyver
|
r5669 | if (user_ns is not None) or (user_module is not None): | ||
self.default_user_namespaces = False | ||||
Thomas Kluyver
|
r5456 | self.user_module, self.user_ns = self.prepare_user_module(user_module, user_ns) | ||
Brian Granger
|
r2242 | |||
Thomas Kluyver
|
r5456 | # A record of hidden variables we have added to the user namespace, so | ||
# we can list later only variables defined in actual interactive use. | ||||
Thomas Kluyver
|
r5452 | self.user_ns_hidden = set() | ||
Brian Granger
|
r2242 | |||
# Now that FakeModule produces a real module, we've run into a nasty | ||||
# problem: after script execution (via %run), the module where the user | ||||
# code ran is deleted. Now that this object is a true module (needed | ||||
# so docetst and other tools work correctly), the Python module | ||||
# teardown mechanism runs over it, and sets to None every variable | ||||
# present in that module. Top-level references to objects from the | ||||
# script survive, because the user_ns is updated with them. However, | ||||
# calling functions defined in the script that use other things from | ||||
# the script will fail, because the function's closure had references | ||||
# to the original objects, which are now all None. So we must protect | ||||
# these modules from deletion by keeping a cache. | ||||
Bernardo B. Marques
|
r4872 | # | ||
Brian Granger
|
r2242 | # To avoid keeping stale modules around (we only need the one from the | ||
# last run), we use a dict keyed with the full path to the script, so | ||||
# only the last version of the module is held in the cache. Note, | ||||
# however, that we must cache the module *namespace contents* (their | ||||
# __dict__). Because if we try to cache the actual modules, old ones | ||||
# (uncached) could be destroyed while still holding references (such as | ||||
# those held by GUI objects that tend to be long-lived)> | ||||
Bernardo B. Marques
|
r4872 | # | ||
Brian Granger
|
r2242 | # The %reset command will flush this cache. See the cache_main_mod() | ||
# and clear_main_mod_cache() methods for details on use. | ||||
# This is the cache used for 'main' namespaces | ||||
self._main_ns_cache = {} | ||||
# And this is the single instance of FakeModule whose __dict__ we keep | ||||
# copying and clearing for reuse on each %run | ||||
self._user_main_module = FakeModule() | ||||
# A table holding all the namespaces IPython deals with, so that | ||||
# introspection facilities can search easily. | ||||
Thomas Kluyver
|
r5453 | self.ns_table = {'user_global':self.user_module.__dict__, | ||
Thomas Kluyver
|
r5550 | 'user_local':self.user_ns, | ||
Thomas Kluyver
|
r4734 | 'builtin':builtin_mod.__dict__ | ||
Brian Granger
|
r2242 | } | ||
Thomas Kluyver
|
r5452 | |||
@property | ||||
def user_global_ns(self): | ||||
return self.user_module.__dict__ | ||||
Brian Granger
|
r2499 | |||
Thomas Kluyver
|
r5456 | def prepare_user_module(self, user_module=None, user_ns=None): | ||
"""Prepare the module and namespace in which user code will be run. | ||||
When IPython is started normally, both parameters are None: a new module | ||||
is created automatically, and its __dict__ used as the namespace. | ||||
If only user_module is provided, its __dict__ is used as the namespace. | ||||
If only user_ns is provided, a dummy module is created, and user_ns | ||||
becomes the global namespace. If both are provided (as they may be | ||||
when embedding), user_ns is the local namespace, and user_module | ||||
provides the global namespace. | ||||
Brian Granger
|
r2499 | |||
Parameters | ||||
---------- | ||||
Thomas Kluyver
|
r5452 | user_module : module, optional | ||
The current user module in which IPython is being run. If None, | ||||
a clean module will be created. | ||||
Thomas Kluyver
|
r5456 | user_ns : dict, optional | ||
A namespace in which to run interactive commands. | ||||
Brian Granger
|
r2499 | |||
Returns | ||||
------- | ||||
Thomas Kluyver
|
r5456 | A tuple of user_module and user_ns, each properly initialised. | ||
Brian Granger
|
r2499 | """ | ||
Thomas Kluyver
|
r5456 | if user_module is None and user_ns is not None: | ||
user_ns.setdefault("__name__", "__main__") | ||||
class DummyMod(object): | ||||
"A dummy module used for IPython's interactive namespace." | ||||
pass | ||||
user_module = DummyMod() | ||||
user_module.__dict__ = user_ns | ||||
Thomas Kluyver
|
r5452 | if user_module is None: | ||
user_module = types.ModuleType("__main__", | ||||
doc="Automatically created module for IPython interactive environment") | ||||
Brian Granger
|
r2499 | # We must ensure that __builtin__ (without the final 's') is always | ||
# available and pointing to the __builtin__ *module*. For more details: | ||||
# http://mail.python.org/pipermail/python-dev/2001-April/014068.html | ||||
Thomas Kluyver
|
r5460 | user_module.__dict__.setdefault('__builtin__', builtin_mod) | ||
user_module.__dict__.setdefault('__builtins__', builtin_mod) | ||||
Thomas Kluyver
|
r5456 | |||
if user_ns is None: | ||||
user_ns = user_module.__dict__ | ||||
Brian Granger
|
r2499 | |||
Thomas Kluyver
|
r5456 | return user_module, user_ns | ||
Brian Granger
|
r2499 | |||
Brian Granger
|
r2242 | def init_sys_modules(self): | ||
# We need to insert into sys.modules something that looks like a | ||||
# module but which accesses the IPython namespace, for shelve and | ||||
# pickle to work interactively. Normally they rely on getting | ||||
# everything out of __main__, but for embedding purposes each IPython | ||||
# instance has its own private namespace, so we can't go shoving | ||||
# everything into __main__. | ||||
# note, however, that we should only do this for non-embedded | ||||
# ipythons, which really mimic the __main__.__dict__ with their own | ||||
# namespace. Embedded instances, on the other hand, should not do | ||||
# this because they need to manage the user local/global namespaces | ||||
# only, but they live within a 'normal' __main__ (meaning, they | ||||
# shouldn't overtake the execution environment of the script they're | ||||
# embedded in). | ||||
Brian Granger
|
r2203 | |||
Brian Granger
|
r2242 | # This is overridden in the InteractiveShellEmbed subclass to a no-op. | ||
Thomas Kluyver
|
r5452 | main_name = self.user_module.__name__ | ||
sys.modules[main_name] = self.user_module | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2226 | def init_user_ns(self): | ||
Fernando Perez
|
r1859 | """Initialize all user-visible namespaces to their minimum defaults. | ||
Certain history lists are also initialized here, as they effectively | ||||
act as user namespaces. | ||||
Brian Granger
|
r2131 | Notes | ||
----- | ||||
Fernando Perez
|
r1859 | All data structures here are only filled in, they are NOT reset by this | ||
method. If they were not empty before, data will simply be added to | ||||
therm. | ||||
""" | ||||
Fernando Perez
|
r2398 | # This function works in two parts: first we put a few things in | ||
Brian Granger
|
r2509 | # user_ns, and we sync that contents into user_ns_hidden so that these | ||
Fernando Perez
|
r2398 | # initial variables aren't shown by %who. After the sync, we add the | ||
# rest of what we *do* want the user to see with %who even on a new | ||||
Fernando Perez
|
r2485 | # session (probably nothing, so theye really only see their own stuff) | ||
# The user dict must *always* have a __builtin__ reference to the | ||||
# Python standard __builtin__ namespace, which must be imported. | ||||
# This is so that certain operations in prompt evaluation can be | ||||
# reliably executed with builtins. Note that we can NOT use | ||||
# __builtins__ (note the 's'), because that can either be a dict or a | ||||
# module, and can even mutate at runtime, depending on the context | ||||
# (Python makes no guarantees on it). In contrast, __builtin__ is | ||||
# always a module object, though it must be explicitly imported. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2485 | # For more details: | ||
# http://mail.python.org/pipermail/python-dev/2001-April/014068.html | ||||
Thomas Kluyver
|
r5452 | ns = dict() | ||
Fernando Perez
|
r2398 | # Put 'help' in the user namespace | ||
try: | ||||
from site import _Helper | ||||
ns['help'] = _Helper() | ||||
except ImportError: | ||||
warn('help() not available - check site.py') | ||||
Fernando Perez
|
r1859 | |||
# make global variables for user access to the histories | ||||
Satrajit Ghosh
|
r3240 | ns['_ih'] = self.history_manager.input_hist_parsed | ||
ns['_oh'] = self.history_manager.output_hist | ||||
ns['_dh'] = self.history_manager.dir_hist | ||||
Fernando Perez
|
r2398 | |||
ns['_sh'] = shadowns | ||||
Fernando Perez
|
r2472 | # user aliases to input and output histories. These shouldn't show up | ||
# in %who, as they can have very large reprs. | ||||
Satrajit Ghosh
|
r3240 | ns['In'] = self.history_manager.input_hist_parsed | ||
ns['Out'] = self.history_manager.output_hist | ||||
Fernando Perez
|
r1859 | |||
Fernando Perez
|
r2398 | # Store myself as the public api!!! | ||
ns['get_ipython'] = self.get_ipython | ||||
Thomas Kluyver
|
r5457 | |||
Thomas Kluyver
|
r3725 | ns['exit'] = self.exiter | ||
ns['quit'] = self.exiter | ||||
Fernando Perez
|
r2472 | |||
Brian Granger
|
r2509 | # Sync what we've added so far to user_ns_hidden so these aren't seen | ||
Fernando Perez
|
r2472 | # by %who | ||
Brian Granger
|
r2509 | self.user_ns_hidden.update(ns) | ||
Fernando Perez
|
r2472 | |||
# Anything put into ns now would show up in %who. Think twice before | ||||
# putting anything here, as we really want %who to show the user their | ||||
# stuff, not our variables. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2472 | # Finally, update the real user's namespace | ||
Thomas Kluyver
|
r5453 | self.user_ns.update(ns) | ||
Thomas Kluyver
|
r5458 | |||
@property | ||||
def all_ns_refs(self): | ||||
"""Get a list of references to all the namespace dictionaries in which | ||||
IPython might store a user-created object. | ||||
Note that this does not include the displayhook, which also caches | ||||
objects from the output.""" | ||||
return [self.user_ns, self.user_global_ns, | ||||
self._user_main_module.__dict__] + self._main_ns_cache.values() | ||||
Fernando Perez
|
r1859 | |||
Thomas Kluyver
|
r3397 | def reset(self, new_session=True): | ||
Thomas Kluyver
|
r3762 | """Clear all internal namespaces, and attempt to release references to | ||
user objects. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3397 | If new_session is True, a new history session will be opened. | ||
Brian Granger
|
r2242 | """ | ||
MinRK
|
r3122 | # Clear histories | ||
Thomas Kluyver
|
r3397 | self.history_manager.reset(new_session) | ||
Thomas Kluyver
|
r3703 | # Reset counter used to index all histories | ||
if new_session: | ||||
self.execution_count = 1 | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3521 | # Flush cached output items | ||
MinRK
|
r3810 | if self.displayhook.do_full_cache: | ||
self.displayhook.flush() | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3157 | # The main execution namespaces must be cleared very carefully, | ||
# skipping the deletion of the builtin-related keys, because doing so | ||||
# would cause errors in many object's __del__ methods. | ||||
Thomas Kluyver
|
r5456 | if self.user_ns is not self.user_global_ns: | ||
self.user_ns.clear() | ||||
ns = self.user_global_ns | ||||
drop_keys = set(ns.keys()) | ||||
drop_keys.discard('__builtin__') | ||||
drop_keys.discard('__builtins__') | ||||
drop_keys.discard('__name__') | ||||
for k in drop_keys: | ||||
del ns[k] | ||||
Thomas Kluyver
|
r5458 | self.user_ns_hidden.clear() | ||
Thomas Kluyver
|
r3157 | # Restore the user namespaces to minimal usability | ||
Brian Granger
|
r2242 | self.init_user_ns() | ||
MinRK
|
r3122 | |||
Brian Granger
|
r2245 | # Restore the default and user aliases | ||
MinRK
|
r3122 | self.alias_manager.clear_aliases() | ||
Brian Granger
|
r2245 | self.alias_manager.init_aliases() | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3521 | # Flush the private list of module references kept for script | ||
# execution protection | ||||
self.clear_main_mod_cache() | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3762 | # Clear out the namespace from the last %run | ||
self.new_main_mod() | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3823 | def del_var(self, varname, by_name=False): | ||
"""Delete a variable from the various namespaces, so that, as | ||||
far as possible, we're not keeping any hidden references to it. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3823 | Parameters | ||
---------- | ||||
varname : str | ||||
The name of the variable to delete. | ||||
by_name : bool | ||||
If True, delete variables with the given name in each | ||||
namespace. If False (default), find the variable in the user | ||||
namespace, and delete references to it. | ||||
""" | ||||
if varname in ('__builtin__', '__builtins__'): | ||||
raise ValueError("Refusing to delete %s" % varname) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r5458 | ns_refs = self.all_ns_refs | ||
Thomas Kluyver
|
r5454 | |||
Thomas Kluyver
|
r3823 | if by_name: # Delete by name | ||
for ns in ns_refs: | ||||
try: | ||||
del ns[varname] | ||||
except KeyError: | ||||
pass | ||||
else: # Delete by object | ||||
try: | ||||
obj = self.user_ns[varname] | ||||
except KeyError: | ||||
raise NameError("name '%s' is not defined" % varname) | ||||
# Also check in output history | ||||
ns_refs.append(self.history_manager.output_hist) | ||||
for ns in ns_refs: | ||||
to_delete = [n for n, o in ns.iteritems() if o is obj] | ||||
for name in to_delete: | ||||
del ns[name] | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3823 | # displayhook keeps extra references, but not in a dictionary | ||
for name in ('_', '__', '___'): | ||||
if getattr(self.displayhook, name) is obj: | ||||
setattr(self.displayhook, name, None) | ||||
Bernardo B. Marques
|
r4872 | |||
Brad Reisfeld
|
r2577 | def reset_selective(self, regex=None): | ||
Fernando Perez
|
r2955 | """Clear selective variables from internal namespaces based on a | ||
specified regular expression. | ||||
Brad Reisfeld
|
r2577 | |||
Parameters | ||||
---------- | ||||
regex : string or compiled pattern, optional | ||||
Fernando Perez
|
r2955 | A regular expression pattern that will be used in searching | ||
variable names in the users namespaces. | ||||
Brad Reisfeld
|
r2577 | """ | ||
if regex is not None: | ||||
try: | ||||
m = re.compile(regex) | ||||
except TypeError: | ||||
raise TypeError('regex must be a string or compiled pattern') | ||||
# Search for keys in each namespace that match the given regex | ||||
# If a match is found, delete the key/value pair. | ||||
Thomas Kluyver
|
r5458 | for ns in self.all_ns_refs: | ||
Brad Reisfeld
|
r2577 | for var in ns: | ||
if m.search(var): | ||||
Bernardo B. Marques
|
r4872 | del ns[var] | ||
Brian Granger
|
r2242 | def push(self, variables, interactive=True): | ||
"""Inject a group of variables into the IPython user namespace. | ||||
Parameters | ||||
---------- | ||||
variables : dict, str or list/tuple of str | ||||
Fernando Perez
|
r2955 | The variables to inject into the user's namespace. If a dict, a | ||
simple update is done. If a str, the string is assumed to have | ||||
variable names separated by spaces. A list/tuple of str can also | ||||
be used to give the variable names. If just the variable names are | ||||
give (list/tuple/str) then the variable values looked up in the | ||||
callers frame. | ||||
Brian Granger
|
r2242 | interactive : bool | ||
If True (default), the variables will be listed with the ``who`` | ||||
magic. | ||||
""" | ||||
vdict = None | ||||
# We need a dict of name/value pairs to do namespace updates. | ||||
if isinstance(variables, dict): | ||||
vdict = variables | ||||
elif isinstance(variables, (basestring, list, tuple)): | ||||
if isinstance(variables, basestring): | ||||
vlist = variables.split() | ||||
else: | ||||
vlist = variables | ||||
vdict = {} | ||||
cf = sys._getframe(1) | ||||
for name in vlist: | ||||
try: | ||||
vdict[name] = eval(name, cf.f_globals, cf.f_locals) | ||||
except: | ||||
print ('Could not get variable %s from %s' % | ||||
(name,cf.f_code.co_name)) | ||||
else: | ||||
raise ValueError('variables must be a dict/str/list/tuple') | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # Propagate variables to user namespace | ||
self.user_ns.update(vdict) | ||||
# And configure interactive visibility | ||||
Thomas Kluyver
|
r5452 | user_ns_hidden = self.user_ns_hidden | ||
Brian Granger
|
r2242 | if interactive: | ||
Thomas Kluyver
|
r5458 | user_ns_hidden.difference_update(vdict) | ||
Brian Granger
|
r2242 | else: | ||
Thomas Kluyver
|
r5458 | user_ns_hidden.update(vdict) | ||
Thomas Kluyver
|
r5068 | |||
def drop_by_id(self, variables): | ||||
"""Remove a dict of variables from the user namespace, if they are the | ||||
same as the values in the dictionary. | ||||
This is intended for use by extensions: variables that they've added can | ||||
be taken back out if they are unloaded, without removing any that the | ||||
user has overwritten. | ||||
Parameters | ||||
---------- | ||||
variables : dict | ||||
A dictionary mapping object names (as strings) to the objects. | ||||
""" | ||||
for name, obj in variables.iteritems(): | ||||
if name in self.user_ns and self.user_ns[name] is obj: | ||||
del self.user_ns[name] | ||||
Thomas Kluyver
|
r5452 | self.user_ns_hidden.discard(name) | ||
Brian Granger
|
r2242 | |||
#------------------------------------------------------------------------- | ||||
Fernando Perez
|
r2927 | # Things related to object introspection | ||
#------------------------------------------------------------------------- | ||||
Fernando Perez
|
r3049 | |||
Fernando Perez
|
r2927 | def _ofind(self, oname, namespaces=None): | ||
"""Find an object in the available namespaces. | ||||
self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic | ||||
Has special code to detect magic functions. | ||||
""" | ||||
Thomas Kluyver
|
r4731 | oname = oname.strip() | ||
Fernando Perez
|
r2929 | #print '1- oname: <%r>' % oname # dbg | ||
Thomas Kluyver
|
r4740 | if not py3compat.isidentifier(oname.lstrip(ESC_MAGIC), dotted=True): | ||
return dict(found=False) | ||||
Fernando Perez
|
r2929 | |||
Fernando Perez
|
r2927 | alias_ns = None | ||
if namespaces is None: | ||||
# Namespaces to search in: | ||||
# Put them in a list. The order is important so that we | ||||
# find things in the same order that Python finds them. | ||||
Fernando Perez
|
r2928 | namespaces = [ ('Interactive', self.user_ns), | ||
Thomas Kluyver
|
r5454 | ('Interactive (global)', self.user_global_ns), | ||
Thomas Kluyver
|
r4734 | ('Python builtin', builtin_mod.__dict__), | ||
Fernando Perez
|
r2928 | ('Alias', self.alias_manager.alias_table), | ||
Fernando Perez
|
r2927 | ] | ||
Fernando Perez
|
r2928 | alias_ns = self.alias_manager.alias_table | ||
Fernando Perez
|
r2927 | |||
# initialize results to 'null' | ||||
found = False; obj = None; ospace = None; ds = None; | ||||
ismagic = False; isalias = False; parent = None | ||||
# We need to special-case 'print', which as of python2.6 registers as a | ||||
# function but should only be treated as one if print_function was | ||||
# loaded with a future import. In this case, just bail. | ||||
Thomas Kluyver
|
r4741 | if (oname == 'print' and not py3compat.PY3 and not \ | ||
(self.compile.compiler_flags & __future__.CO_FUTURE_PRINT_FUNCTION)): | ||||
Fernando Perez
|
r2927 | return {'found':found, 'obj':obj, 'namespace':ospace, | ||
'ismagic':ismagic, 'isalias':isalias, 'parent':parent} | ||||
# Look for the given name by splitting it in parts. If the head is | ||||
# found, then we look for all the remaining parts as members, and only | ||||
# declare success if we can find them all. | ||||
oname_parts = oname.split('.') | ||||
oname_head, oname_rest = oname_parts[0],oname_parts[1:] | ||||
for nsname,ns in namespaces: | ||||
try: | ||||
obj = ns[oname_head] | ||||
except KeyError: | ||||
continue | ||||
else: | ||||
#print 'oname_rest:', oname_rest # dbg | ||||
for part in oname_rest: | ||||
try: | ||||
parent = obj | ||||
obj = getattr(obj,part) | ||||
except: | ||||
# Blanket except b/c some badly implemented objects | ||||
# allow __getattr__ to raise exceptions other than | ||||
# AttributeError, which then crashes IPython. | ||||
break | ||||
else: | ||||
# If we finish the for loop (no break), we got all members | ||||
found = True | ||||
ospace = nsname | ||||
if ns == alias_ns: | ||||
isalias = True | ||||
break # namespace loop | ||||
# Try to see if it's magic | ||||
if not found: | ||||
if oname.startswith(ESC_MAGIC): | ||||
Fernando Perez
|
r6997 | oname = oname.lstrip(ESC_MAGIC) | ||
obj = self.find_line_magic(oname) | ||||
if obj is None: | ||||
obj = self.find_cell_magic(oname) | ||||
Fernando Perez
|
r2927 | if obj is not None: | ||
found = True | ||||
ospace = 'IPython internal' | ||||
ismagic = True | ||||
# Last try: special-case some literals like '', [], {}, etc: | ||||
if not found and oname_head in ["''",'""','[]','{}','()']: | ||||
obj = eval(oname_head) | ||||
found = True | ||||
ospace = 'Interactive' | ||||
Fernando Perez
|
r2929 | |||
Fernando Perez
|
r2927 | return {'found':found, 'obj':obj, 'namespace':ospace, | ||
'ismagic':ismagic, 'isalias':isalias, 'parent':parent} | ||||
Fernando Perez
|
r2929 | def _ofind_property(self, oname, info): | ||
"""Second part of object finding, to look for property details.""" | ||||
Fernando Perez
|
r2927 | if info.found: | ||
# Get the docstring of the class property if it exists. | ||||
path = oname.split('.') | ||||
root = '.'.join(path[:-1]) | ||||
if info.parent is not None: | ||||
try: | ||||
Bernardo B. Marques
|
r4872 | target = getattr(info.parent, '__class__') | ||
# The object belongs to a class instance. | ||||
try: | ||||
Fernando Perez
|
r2927 | target = getattr(target, path[-1]) | ||
Bernardo B. Marques
|
r4872 | # The class defines the object. | ||
Fernando Perez
|
r2927 | if isinstance(target, property): | ||
oname = root + '.__class__.' + path[-1] | ||||
info = Struct(self._ofind(oname)) | ||||
except AttributeError: pass | ||||
except AttributeError: pass | ||||
Fernando Perez
|
r2929 | |||
# We return either the new info or the unmodified input if the object | ||||
# hadn't been found | ||||
return info | ||||
def _object_find(self, oname, namespaces=None): | ||||
"""Find an object and return a struct with info about it.""" | ||||
inf = Struct(self._ofind(oname, namespaces)) | ||||
return Struct(self._ofind_property(oname, inf)) | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2929 | def _inspect(self, meth, oname, namespaces=None, **kw): | ||
"""Generic interface to the inspector system. | ||||
This function is meant to be called by pdef, pdoc & friends.""" | ||||
info = self._object_find(oname) | ||||
if info.found: | ||||
pmethod = getattr(self.inspector, meth) | ||||
formatter = format_screen if info.ismagic else None | ||||
Fernando Perez
|
r2927 | if meth == 'pdoc': | ||
Fernando Perez
|
r2929 | pmethod(info.obj, oname, formatter) | ||
Fernando Perez
|
r2927 | elif meth == 'pinfo': | ||
Fernando Perez
|
r2929 | pmethod(info.obj, oname, formatter, info, **kw) | ||
Fernando Perez
|
r2927 | else: | ||
Fernando Perez
|
r2929 | pmethod(info.obj, oname) | ||
Fernando Perez
|
r2927 | else: | ||
print 'Object `%s` not found.' % oname | ||||
return 'not found' # so callers can take other action | ||||
Fernando Perez
|
r2929 | |||
MinRK
|
r6556 | def object_inspect(self, oname, detail_level=0): | ||
David Warde-Farley
|
r3685 | with self.builtin_trap: | ||
info = self._object_find(oname) | ||||
if info.found: | ||||
MinRK
|
r6556 | return self.inspector.info(info.obj, oname, info=info, | ||
detail_level=detail_level | ||||
) | ||||
David Warde-Farley
|
r3685 | else: | ||
return oinspect.object_info(name=oname, found=False) | ||||
Robert Kern
|
r3053 | |||
Fernando Perez
|
r2927 | #------------------------------------------------------------------------- | ||
Brian Granger
|
r2242 | # Things related to history management | ||
#------------------------------------------------------------------------- | ||||
def init_history(self): | ||||
Thomas Kluyver
|
r3259 | """Sets up the command history, and starts regular autosaves.""" | ||
Thomas Kluyver
|
r3393 | self.history_manager = HistoryManager(shell=self, config=self.config) | ||
MinRK
|
r5225 | self.configurables.append(self.history_manager) | ||
Brian Granger
|
r2242 | |||
#------------------------------------------------------------------------- | ||||
# Things related to exception handling and tracebacks (not debugging) | ||||
#------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_traceback_handlers(self, custom_exceptions): | ||
# Syntax error handler. | ||||
Brian Granger
|
r2792 | self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor') | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # The interactive one is initialized with an offset, meaning we always | ||
# want to remove the topmost item in the traceback, which is our own | ||||
# internal code. Valid modes: ['Plain','Context','Verbose'] | ||||
self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain', | ||||
color_scheme='NoColor', | ||||
Fernando Perez
|
r3175 | tb_offset = 1, | ||
check_cache=self.compile.check_cache) | ||||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r2403 | # The instance will store a pointer to the system-wide exception hook, | ||
# so that runtime code (such as magics) can access it. This is because | ||||
# during the read-eval loop, it may get temporarily overwritten. | ||||
self.sys_excepthook = sys.excepthook | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | # and add any custom exception handlers the user may have specified | ||
self.set_custom_exc(*custom_exceptions) | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2498 | # Set the exception mode | ||
self.InteractiveTB.set_mode(mode=self.xmode) | ||||
Fernando Perez
|
r2838 | def set_custom_exc(self, exc_tuple, handler): | ||
Ville M. Vainio
|
r1032 | """set_custom_exc(exc_tuple,handler) | ||
Set a custom exception handler, which will be called if any of the | ||||
exceptions in exc_tuple occur in the mainloop (specifically, in the | ||||
MinRK
|
r5000 | run_code() method). | ||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5000 | Parameters | ||
---------- | ||||
exc_tuple : tuple of exception classes | ||||
A *tuple* of exception classes, for which to call the defined | ||||
handler. It is very important that you use a tuple, and NOT A | ||||
LIST here, because of the way Python's except statement works. If | ||||
you only want to trap a single exception, use a singleton tuple:: | ||||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5000 | exc_tuple == (MyCustomException,) | ||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5000 | handler : callable | ||
handler must have the following signature:: | ||||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5000 | def my_handler(self, etype, value, tb, tb_offset=None): | ||
... | ||||
return structured_traceback | ||||
Fernando Perez
|
r2838 | |||
MinRK
|
r5000 | Your handler must return a structured traceback (a list of strings), | ||
or None. | ||||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5000 | This will be made into an instance method (via types.MethodType) | ||
of IPython itself, and it will be called if any of the exceptions | ||||
listed in the exc_tuple are caught. If the handler is None, an | ||||
internal basic one is used, which just prints basic info. | ||||
Brian Granger
|
r2061 | |||
MinRK
|
r5000 | To protect IPython from crashes, if your handler ever raises an | ||
exception or returns an invalid result, it will be immediately | ||||
disabled. | ||||
Ville M. Vainio
|
r1032 | |||
WARNING: by putting in your own exception handler into IPython's main | ||||
execution loop, you run a very good chance of nasty crashes. This | ||||
facility should only be used if you really know what you are doing.""" | ||||
assert type(exc_tuple)==type(()) , \ | ||||
"The custom exceptions must be given AS A TUPLE." | ||||
MinRK
|
r4991 | def dummy_handler(self,etype,value,tb,tb_offset=None): | ||
Ville M. Vainio
|
r1032 | print '*** Simple custom exception handler ***' | ||
print 'Exception type :',etype | ||||
print 'Exception value:',value | ||||
print 'Traceback :',tb | ||||
Thomas Kluyver
|
r3756 | #print 'Source code :','\n'.join(self.buffer) | ||
MinRK
|
r4999 | |||
def validate_stb(stb): | ||||
"""validate structured traceback return type | ||||
return type of CustomTB *should* be a list of strings, but allow | ||||
single strings or None, which are harmless. | ||||
This function will *always* return a list of strings, | ||||
and will raise a TypeError if stb is inappropriate. | ||||
""" | ||||
msg = "CustomTB must return list of strings, not %r" % stb | ||||
if stb is None: | ||||
return [] | ||||
elif isinstance(stb, basestring): | ||||
return [stb] | ||||
elif not isinstance(stb, list): | ||||
raise TypeError(msg) | ||||
# it's a list | ||||
for line in stb: | ||||
# check every element | ||||
if not isinstance(line, basestring): | ||||
raise TypeError(msg) | ||||
return stb | ||||
Brian Granger
|
r2061 | |||
MinRK
|
r4991 | if handler is None: | ||
wrapped = dummy_handler | ||||
else: | ||||
def wrapped(self,etype,value,tb,tb_offset=None): | ||||
MinRK
|
r4999 | """wrap CustomTB handler, to protect IPython from user code | ||
This makes it harder (but not impossible) for custom exception | ||||
handlers to crash IPython. | ||||
""" | ||||
MinRK
|
r4991 | try: | ||
MinRK
|
r4999 | stb = handler(self,etype,value,tb,tb_offset=tb_offset) | ||
return validate_stb(stb) | ||||
MinRK
|
r4991 | except: | ||
# clear custom handler immediately | ||||
self.set_custom_exc((), None) | ||||
print >> io.stderr, "Custom TB Handler failed, unregistering" | ||||
# show the exception in handler first | ||||
stb = self.InteractiveTB.structured_traceback(*sys.exc_info()) | ||||
print >> io.stdout, self.InteractiveTB.stb2text(stb) | ||||
print >> io.stdout, "The original exception:" | ||||
MinRK
|
r4999 | stb = self.InteractiveTB.structured_traceback( | ||
(etype,value,tb), tb_offset=tb_offset | ||||
) | ||||
return stb | ||||
MinRK
|
r4991 | |||
self.CustomTB = types.MethodType(wrapped,self) | ||||
Ville M. Vainio
|
r1032 | self.custom_exceptions = exc_tuple | ||
Brian Granger
|
r2242 | def excepthook(self, etype, value, tb): | ||
"""One more defense for GUI apps that call sys.excepthook. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | GUI frameworks like wxPython trap exceptions and call | ||
sys.excepthook themselves. I guess this is a feature that | ||||
enables them to keep running after exceptions that would | ||||
otherwise kill their mainloop. This is a bother for IPython | ||||
which excepts to catch all of the program exceptions with a try: | ||||
except: statement. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | Normally, IPython sets sys.excepthook to a CrashHandler instance, so if | ||
any app directly invokes sys.excepthook, it will look to the user like | ||||
IPython crashed. In order to work around this, we can disable the | ||||
CrashHandler and replace it with this excepthook instead, which prints a | ||||
regular traceback using our InteractiveTB. In this fashion, apps which | ||||
call sys.excepthook will generate a regular-looking exception from | ||||
IPython, and the CrashHandler will only be triggered by real IPython | ||||
crashes. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | This hook should be used sparingly, only in places which are not likely | ||
to be true IPython errors. | ||||
""" | ||||
self.showtraceback((etype,value,tb),tb_offset=0) | ||||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r6109 | def _get_exc_info(self, exc_tuple=None): | ||
"""get exc_info from a given tuple, sys.exc_info() or sys.last_type etc. | ||||
Ensures sys.last_type,value,traceback hold the exc_info we found, | ||||
from whichever source. | ||||
raises ValueError if none of these contain any information | ||||
""" | ||||
if exc_tuple is None: | ||||
etype, value, tb = sys.exc_info() | ||||
else: | ||||
etype, value, tb = exc_tuple | ||||
if etype is None: | ||||
if hasattr(sys, 'last_type'): | ||||
etype, value, tb = sys.last_type, sys.last_value, \ | ||||
sys.last_traceback | ||||
if etype is None: | ||||
raise ValueError("No exception to find") | ||||
# Now store the exception info in sys.last_type etc. | ||||
# WARNING: these variables are somewhat deprecated and not | ||||
# necessarily safe to use in a threaded environment, but tools | ||||
# like pdb depend on their existence, so let's set them. If we | ||||
# find problems in the field, we'll need to revisit their use. | ||||
sys.last_type = etype | ||||
sys.last_value = value | ||||
sys.last_traceback = tb | ||||
return etype, value, tb | ||||
Fernando Perez
|
r2440 | def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None, | ||
exception_only=False): | ||||
Brian Granger
|
r2242 | """Display the exception that just occurred. | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | If nothing is known about the exception, this is the method which | ||
should be used throughout the code for presenting user tracebacks, | ||||
rather than directly invoking the InteractiveTB object. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | A specific showsyntaxerror() also exists, but this method can take | ||
care of calling it if needed, so unless you are explicitly catching a | ||||
SyntaxError exception, don't try to analyze the stack manually and | ||||
simply call this method.""" | ||||
Bernardo B. Marques
|
r4872 | |||
Ville M. Vainio
|
r1032 | try: | ||
MinRK
|
r6109 | try: | ||
etype, value, tb = self._get_exc_info(exc_tuple) | ||||
except ValueError: | ||||
self.write_err('No traceback available to show.\n') | ||||
return | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | if etype is SyntaxError: | ||
Fernando Perez
|
r2440 | # Though this won't be called by syntax errors in the input | ||
Thomas Kluyver
|
r4741 | # line, there may be SyntaxError cases with imported code. | ||
Brian Granger
|
r2242 | self.showsyntaxerror(filename) | ||
elif etype is UsageError: | ||||
MinRK
|
r4951 | self.write_err("UsageError: %s" % value) | ||
Brian Granger
|
r2242 | else: | ||
Thomas Kluyver
|
r7109 | if exception_only: | ||
stb = ['An exception has occurred, use %tb to see ' | ||||
'the full traceback.\n'] | ||||
stb.extend(self.InteractiveTB.get_exception_only(etype, | ||||
value)) | ||||
Brian Granger
|
r2242 | else: | ||
Thomas Kluyver
|
r7109 | stb = self.InteractiveTB.structured_traceback(etype, | ||
value, tb, tb_offset=tb_offset) | ||||
self._showtraceback(etype, value, stb) | ||||
if self.call_pdb: | ||||
# drop into debugger | ||||
self.debugger(force=True) | ||||
return | ||||
Fernando Perez
|
r2838 | |||
# Actually show the traceback | ||||
self._showtraceback(etype, value, stb) | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | except KeyboardInterrupt: | ||
Fernando Perez
|
r2838 | self.write_err("\nKeyboardInterrupt\n") | ||
def _showtraceback(self, etype, evalue, stb): | ||||
"""Actually show a traceback. | ||||
Subclasses may override this method to put the traceback on a different | ||||
place, like a side channel. | ||||
""" | ||||
MinRK
|
r3800 | print >> io.stdout, self.InteractiveTB.stb2text(stb) | ||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | def showsyntaxerror(self, filename=None): | ||
"""Display the syntax error that just occurred. | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | This doesn't display a stack trace because there isn't one. | ||
Brian Granger
|
r2202 | |||
Brian Granger
|
r2242 | If a filename is given, it is stuffed in the exception instead | ||
of what was there before (because Python's parser always uses | ||||
"<string>" when reading from a string). | ||||
""" | ||||
MinRK
|
r6109 | etype, value, last_traceback = self._get_exc_info() | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | if filename and etype is SyntaxError: | ||
try: | ||||
Thomas Kluyver
|
r5827 | value.filename = filename | ||
Brian Granger
|
r2242 | except: | ||
# Not the format we expect; leave it alone | ||||
pass | ||||
Thomas Kluyver
|
r5827 | |||
Fernando Perez
|
r2838 | stb = self.SyntaxTB.structured_traceback(etype, value, []) | ||
self._showtraceback(etype, value, stb) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r4226 | # This is overridden in TerminalInteractiveShell to show a message about | ||
# the %paste magic. | ||||
Thomas Kluyver
|
r4227 | def showindentationerror(self): | ||
"""Called by run_cell when there's an IndentationError in code entered | ||||
at the prompt. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r4227 | This is overridden in TerminalInteractiveShell to show a message about | ||
the %paste magic.""" | ||||
self.showsyntaxerror() | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to readline | ||||
#------------------------------------------------------------------------- | ||||
def init_readline(self): | ||||
"""Command history completion/saving/reloading.""" | ||||
Fernando Perez
|
r2377 | if self.readline_use: | ||
import IPython.utils.rlineimpl as readline | ||||
Brian Granger
|
r2808 | |||
Brian Granger
|
r2242 | self.rl_next_input = None | ||
self.rl_do_indent = False | ||||
Fernando Perez
|
r2377 | if not self.readline_use or not readline.have_readline: | ||
self.has_readline = False | ||||
Brian Granger
|
r2242 | self.readline = None | ||
Fernando Perez
|
r2377 | # Set a number of methods that depend on readline to be no-op | ||
epatters
|
r4816 | self.readline_no_record = no_op_context | ||
Fernando Perez
|
r2952 | self.set_readline_completer = no_op | ||
Fernando Perez
|
r2377 | self.set_custom_completer = no_op | ||
self.set_completer_frame = no_op | ||||
epatters
|
r4816 | if self.readline_use: | ||
warn('Readline services not available or not loaded.') | ||||
Brian Granger
|
r2242 | else: | ||
Fernando Perez
|
r2377 | self.has_readline = True | ||
self.readline = readline | ||||
Brian Granger
|
r2242 | sys.modules['readline'] = readline | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # Platform-specific configuration | ||
if os.name == 'nt': | ||||
Fernando Perez
|
r2953 | # FIXME - check with Frederick to see if we can harmonize | ||
# naming conventions with pyreadline to avoid this | ||||
# platform-dependent check | ||||
Brian Granger
|
r2242 | self.readline_startup_hook = readline.set_pre_input_hook | ||
else: | ||||
self.readline_startup_hook = readline.set_startup_hook | ||||
# Load user's initrc file (readline config) | ||||
# Or if libedit is used, load editrc. | ||||
inputrc_name = os.environ.get('INPUTRC') | ||||
if inputrc_name is None: | ||||
MinRK
|
r5384 | inputrc_name = '.inputrc' | ||
if readline.uses_libedit: | ||||
inputrc_name = '.editrc' | ||||
inputrc_name = os.path.join(self.home_dir, inputrc_name) | ||||
Brian Granger
|
r2242 | if os.path.isfile(inputrc_name): | ||
try: | ||||
readline.read_init_file(inputrc_name) | ||||
except: | ||||
warn('Problems reading readline initialization file <%s>' | ||||
% inputrc_name) | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # Configure readline according to user's prefs | ||
# This is only done if GNU readline is being used. If libedit | ||||
# is being used (as on Leopard) the readline config is | ||||
# not run as the syntax for libedit is different. | ||||
if not readline.uses_libedit: | ||||
for rlcommand in self.readline_parse_and_bind: | ||||
#print "loading rl:",rlcommand # dbg | ||||
readline.parse_and_bind(rlcommand) | ||||
# Remove some chars from the delimiters list. If we encounter | ||||
# unicode chars, discard them. | ||||
Thomas Kluyver
|
r4742 | delims = readline.get_completer_delims() | ||
if not py3compat.PY3: | ||||
delims = delims.encode("ascii", "ignore") | ||||
Thomas Kluyver
|
r4046 | for d in self.readline_remove_delims: | ||
delims = delims.replace(d, "") | ||||
Fernando Perez
|
r2956 | delims = delims.replace(ESC_MAGIC, '') | ||
Brian Granger
|
r2242 | readline.set_completer_delims(delims) | ||
# otherwise we end up with a monster history after a while: | ||||
Satrajit Ghosh
|
r3240 | readline.set_history_length(self.history_length) | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3474 | self.refill_readline_hist() | ||
self.readline_no_record = ReadlineNoRecord(self) | ||||
Brian Granger
|
r2242 | |||
# Configure auto-indent for all platforms | ||||
self.set_autoindent(self.autoindent) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3474 | def refill_readline_hist(self): | ||
# Load the last 1000 lines from history | ||||
self.readline.clear_history() | ||||
stdin_encoding = sys.stdin.encoding or "utf-8" | ||||
Thomas Kluyver
|
r5307 | last_cell = u"" | ||
Thomas Kluyver
|
r3474 | for _, _, cell in self.history_manager.get_tail(1000, | ||
include_latest=True): | ||||
Thomas Kluyver
|
r5307 | # Ignore blank lines and consecutive duplicates | ||
Thomas Kluyver
|
r5311 | cell = cell.rstrip() | ||
if cell and (cell != last_cell): | ||||
Julian Taylor
|
r5011 | if self.multiline_history: | ||
Thomas Kluyver
|
r5311 | self.readline.add_history(py3compat.unicode_to_str(cell, | ||
stdin_encoding)) | ||||
Julian Taylor
|
r5011 | else: | ||
for line in cell.splitlines(): | ||||
self.readline.add_history(py3compat.unicode_to_str(line, | ||||
Thomas Kluyver
|
r5311 | stdin_encoding)) | ||
last_cell = cell | ||||
Brian Granger
|
r2205 | |||
def set_next_input(self, s): | ||||
""" Sets the 'default' input string for the next command line. | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2205 | Requires readline. | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2205 | Example: | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2205 | [D:\ipython]|1> _ip.set_next_input("Hello Word") | ||
Bernardo B. Marques
|
r4872 | [D:\ipython]|2> Hello Word_ # cursor is here | ||
Brian Granger
|
r2205 | """ | ||
Thomas Kluyver
|
r5308 | self.rl_next_input = py3compat.cast_bytes_py2(s) | ||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2761 | # Maybe move this to the terminal subclass? | ||
Brian Granger
|
r2242 | def pre_readline(self): | ||
"""readline hook to be used at the start of each line. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | Currently it handles auto-indent only.""" | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | if self.rl_do_indent: | ||
self.readline.insert_text(self._indent_current_str()) | ||||
if self.rl_next_input is not None: | ||||
self.readline.insert_text(self.rl_next_input) | ||||
self.rl_next_input = None | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def _indent_current_str(self): | ||
"""return the current level of indentation as a string""" | ||||
MinRK
|
r3122 | return self.input_splitter.indent_spaces * ' ' | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
Fernando Perez
|
r2956 | # Things related to text completion | ||
#------------------------------------------------------------------------- | ||||
def init_completer(self): | ||||
"""Initialize the completion machinery. | ||||
This creates completion machinery that can be used by client code, | ||||
either interactively in-process (typically triggered by the readline | ||||
library), programatically (such as in test suites) or out-of-prcess | ||||
(typically over the network by remote frontends). | ||||
""" | ||||
from IPython.core.completer import IPCompleter | ||||
Fernando Perez
|
r2959 | from IPython.core.completerlib import (module_completer, | ||
Paul Ivanov
|
r5965 | magic_run_completer, cd_completer, reset_completer) | ||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r4825 | self.Completer = IPCompleter(shell=self, | ||
namespace=self.user_ns, | ||||
global_namespace=self.user_global_ns, | ||||
alias_table=self.alias_manager.alias_table, | ||||
use_readline=self.has_readline, | ||||
config=self.config, | ||||
) | ||||
MinRK
|
r5225 | self.configurables.append(self.Completer) | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2959 | # Add custom completers to the basic ones built into IPCompleter | ||
Fernando Perez
|
r2956 | sdisp = self.strdispatchers.get('complete_command', StrDispatch()) | ||
self.strdispatchers['complete_command'] = sdisp | ||||
self.Completer.custom_completers = sdisp | ||||
Fernando Perez
|
r2959 | self.set_hook('complete_command', module_completer, str_key = 'import') | ||
self.set_hook('complete_command', module_completer, str_key = 'from') | ||||
self.set_hook('complete_command', magic_run_completer, str_key = '%run') | ||||
self.set_hook('complete_command', cd_completer, str_key = '%cd') | ||||
Paul Ivanov
|
r5965 | self.set_hook('complete_command', reset_completer, str_key = '%reset') | ||
Fernando Perez
|
r2959 | |||
# Only configure readline if we truly are using readline. IPython can | ||||
# do tab-completion over the network, in GUIs, etc, where readline | ||||
# itself may be absent | ||||
Fernando Perez
|
r2956 | if self.has_readline: | ||
self.set_readline_completer() | ||||
def complete(self, text, line=None, cursor_pos=None): | ||||
"""Return the completed text and a list of completions. | ||||
Parameters | ||||
---------- | ||||
text : string | ||||
A string of text to be completed on. It can be given as empty and | ||||
instead a line/position pair are given. In this case, the | ||||
completer itself will split the line like readline does. | ||||
line : string, optional | ||||
The complete line that text is part of. | ||||
cursor_pos : int, optional | ||||
The position of the cursor on the input line. | ||||
Returns | ||||
------- | ||||
text : string | ||||
The actual text that was completed. | ||||
matches : list | ||||
A sorted list with all possible completions. | ||||
The optional arguments allow the completion to take more context into | ||||
account, and are part of the low-level completion API. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2956 | This is a wrapper around the completion mechanism, similar to what | ||
readline does at the command line when the TAB key is hit. By | ||||
exposing it as a method, it can be used by other non-readline | ||||
environments (such as GUIs) for text completion. | ||||
Simple usage example: | ||||
In [1]: x = 'hello' | ||||
In [2]: _ip.complete('x.l') | ||||
Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip']) | ||||
""" | ||||
# Inject names into __builtin__ so we can complete on the added names. | ||||
with self.builtin_trap: | ||||
return self.Completer.complete(text, line, cursor_pos) | ||||
def set_custom_completer(self, completer, pos=0): | ||||
"""Adds a new custom completer function. | ||||
The position argument (defaults to 0) is the index in the completers | ||||
list where you want the completer to be inserted.""" | ||||
Thomas Kluyver
|
r3158 | newcomp = types.MethodType(completer,self.Completer) | ||
Fernando Perez
|
r2956 | self.Completer.matchers.insert(pos,newcomp) | ||
def set_readline_completer(self): | ||||
"""Reset readline's completer to be our own.""" | ||||
self.readline.set_completer(self.Completer.rlcomplete) | ||||
def set_completer_frame(self, frame=None): | ||||
"""Set the frame of the completer.""" | ||||
if frame: | ||||
self.Completer.namespace = frame.f_locals | ||||
self.Completer.global_namespace = frame.f_globals | ||||
else: | ||||
self.Completer.namespace = self.user_ns | ||||
self.Completer.global_namespace = self.user_global_ns | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2242 | # Things related to magics | ||
#------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def init_magics(self): | ||
Fernando Perez
|
r6956 | from IPython.core import magics as m | ||
Fernando Perez
|
r6923 | self.magics_manager = magic.MagicsManager(shell=self, | ||
confg=self.config, | ||||
Fernando Perez
|
r6957 | user_magics=m.UserMagics(self)) | ||
Fernando Perez
|
r6923 | self.configurables.append(self.magics_manager) | ||
Fernando Perez
|
r6936 | # Expose as public API from the magics manager | ||
Fernando Perez
|
r6933 | self.register_magics = self.magics_manager.register | ||
Fernando Perez
|
r6954 | self.register_magic_function = self.magics_manager.register_function | ||
self.define_magic = self.magics_manager.define_magic | ||||
Fernando Perez
|
r6933 | |||
Fernando Perez
|
r6964 | self.register_magics(m.AutoMagics, m.BasicMagics, m.CodeMagics, | ||
Fernando Perez
|
r6969 | m.ConfigMagics, m.DeprecatedMagics, m.ExecutionMagics, | ||
Fernando Perez
|
r6967 | m.ExtensionMagics, m.HistoryMagics, m.LoggingMagics, | ||
Fernando Perez
|
r6968 | m.NamespaceMagics, m.OSMagics, m.PylabMagics ) | ||
Fernando Perez
|
r6923 | |||
Brian Granger
|
r2781 | # FIXME: Move the color initialization to the DisplayHook, which | ||
# should be split into a prompt manager and displayhook. We probably | ||||
# even need a centralize colors management object. | ||||
Fernando Perez
|
r6925 | self.magic('colors %s' % self.colors) | ||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r7003 | def run_line_magic(self, magic_name, line): | ||
Fernando Perez
|
r6953 | """Execute the given line magic. | ||
Fernando Perez
|
r1859 | |||
Fernando Perez
|
r6953 | Parameters | ||
---------- | ||||
magic_name : str | ||||
Name of the desired magic function, without '%' prefix. | ||||
Fernando Perez
|
r1859 | |||
Fernando Perez
|
r6953 | line : str | ||
The rest of the input line as a single string. | ||||
Brian Granger
|
r2242 | """ | ||
Fernando Perez
|
r6953 | fn = self.find_line_magic(magic_name) | ||
Brian Granger
|
r2242 | if fn is None: | ||
Fernando Perez
|
r6978 | cm = self.find_cell_magic(magic_name) | ||
Fernando Perez
|
r6983 | etpl = "Line magic function `%%%s` not found%s." | ||
extra = '' if cm is None else (' (But cell magic `%%%%%s` exists, ' | ||||
'did you mean that instead?)' % magic_name ) | ||||
error(etpl % (magic_name, extra)) | ||||
Brian Granger
|
r2242 | else: | ||
Fernando Perez
|
r6953 | # Note: this is the distance in the stack to the user's frame. | ||
# This will need to be updated if the internal calling logic gets | ||||
# refactored, or else we'll be expanding the wrong variables. | ||||
stack_depth = 2 | ||||
magic_arg_s = self.var_expand(line, stack_depth) | ||||
Fernando Perez
|
r6907 | # Put magic args in a list so we can call with f(*a) syntax | ||
args = [magic_arg_s] | ||||
Thomas Kluyver
|
r3479 | # Grab local namespace if we need it: | ||
if getattr(fn, "needs_local_scope", False): | ||||
Fernando Perez
|
r6953 | args.append(sys._getframe(stack_depth).f_locals) | ||
Fernando Perez
|
r3732 | with self.builtin_trap: | ||
Fernando Perez
|
r6907 | result = fn(*args) | ||
Thomas Kluyver
|
r3479 | return result | ||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r7003 | def run_cell_magic(self, magic_name, line, cell): | ||
Fernando Perez
|
r6953 | """Execute the given cell magic. | ||
Fernando Perez
|
r7003 | |||
Parameters | ||||
---------- | ||||
magic_name : str | ||||
Name of the desired magic function, without '%' prefix. | ||||
line : str | ||||
The rest of the first input line as a single string. | ||||
cell : str | ||||
The body of the cell as a (possibly multiline) string. | ||||
Fernando Perez
|
r6953 | """ | ||
fn = self.find_cell_magic(magic_name) | ||||
if fn is None: | ||||
Fernando Perez
|
r6983 | lm = self.find_line_magic(magic_name) | ||
etpl = "Cell magic function `%%%%%s` not found%s." | ||||
extra = '' if lm is None else (' (But line magic `%%%s` exists, ' | ||||
'did you mean that instead?)' % magic_name ) | ||||
error(etpl % (magic_name, extra)) | ||||
Fernando Perez
|
r6953 | else: | ||
# Note: this is the distance in the stack to the user's frame. | ||||
# This will need to be updated if the internal calling logic gets | ||||
# refactored, or else we'll be expanding the wrong variables. | ||||
stack_depth = 2 | ||||
magic_arg_s = self.var_expand(line, stack_depth) | ||||
with self.builtin_trap: | ||||
result = fn(line, cell) | ||||
return result | ||||
Fernando Perez
|
r6923 | def find_line_magic(self, magic_name): | ||
Fernando Perez
|
r6953 | """Find and return a line magic by name. | ||
Returns None if the magic isn't found.""" | ||||
Fernando Perez
|
r6923 | return self.magics_manager.magics['line'].get(magic_name) | ||
def find_cell_magic(self, magic_name): | ||||
Fernando Perez
|
r6953 | """Find and return a cell magic by name. | ||
Returns None if the magic isn't found.""" | ||||
Fernando Perez
|
r6923 | return self.magics_manager.magics['cell'].get(magic_name) | ||
Fernando Perez
|
r6974 | def find_magic(self, magic_name, magic_kind='line'): | ||
Fernando Perez
|
r6953 | """Find and return a magic of the given type by name. | ||
Returns None if the magic isn't found.""" | ||||
Fernando Perez
|
r6974 | return self.magics_manager.magics[magic_kind].get(magic_name) | ||
Fernando Perez
|
r6906 | |||
Fernando Perez
|
r6974 | def magic(self, arg_s): | ||
Fernando Perez
|
r7003 | """DEPRECATED. Use run_line_magic() instead. | ||
Fernando Perez
|
r6953 | |||
Call a magic function by name. | ||||
Input: a string containing the name of the magic function to call and | ||||
any additional arguments to be passed to the magic. | ||||
magic('name -opt foo bar') is equivalent to typing at the ipython | ||||
prompt: | ||||
In[1]: %name -opt foo bar | ||||
To call a magic without arguments, simply use magic('name'). | ||||
This provides a proper Python function to call IPython's magics in any | ||||
valid Python code you can type at the interpreter, including loops and | ||||
compound statements. | ||||
""" | ||||
# TODO: should we issue a loud deprecation warning here? | ||||
magic_name, _, magic_arg_s = arg_s.partition(' ') | ||||
magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) | ||||
Fernando Perez
|
r7003 | return self.run_line_magic(magic_name, magic_arg_s) | ||
Fernando Perez
|
r6953 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to macros | ||||
#------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def define_macro(self, name, themacro): | ||
"""Define a new macro | ||||
Fernando Perez
|
r1856 | |||
Brian Granger
|
r2242 | Parameters | ||
---------- | ||||
name : str | ||||
The name of the macro. | ||||
themacro : str or Macro | ||||
Bernardo B. Marques
|
r4872 | The action to do upon invoking the macro. If a string, a new | ||
Brian Granger
|
r2242 | Macro object is created by passing the string to it. | ||
Fernando Perez
|
r1916 | """ | ||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | from IPython.core import macro | ||
Fernando Perez
|
r1916 | |||
Brian Granger
|
r2242 | if isinstance(themacro, basestring): | ||
themacro = macro.Macro(themacro) | ||||
if not isinstance(themacro, macro.Macro): | ||||
raise ValueError('A macro must be a string or a Macro instance.') | ||||
self.user_ns[name] = themacro | ||||
Fernando Perez
|
r1856 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to the running of system commands | ||||
#------------------------------------------------------------------------- | ||||
Fernando Perez
|
r1856 | |||
MinRK
|
r3909 | def system_piped(self, cmd): | ||
"""Call the given cmd in a subprocess, piping stdout/err | ||||
Fernando Perez
|
r3002 | |||
Parameters | ||||
---------- | ||||
cmd : str | ||||
MinRK
|
r3909 | Command to execute (can not end in '&', as background processes are | ||
not supported. Should not be a command that expects input | ||||
other than simple text. | ||||
Fernando Perez
|
r3002 | """ | ||
MinRK
|
r3909 | if cmd.rstrip().endswith('&'): | ||
# this is *far* from a rigorous test | ||||
# We do not support backgrounding processes because we either use | ||||
# pexpect or pipes to read from. Users can always just call | ||||
# os.system() or use ip.system=ip.system_raw | ||||
# if they really want a background process. | ||||
Fernando Perez
|
r2905 | raise OSError("Background processes not supported.") | ||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3910 | # we explicitly do NOT return the subprocess status code, because | ||
# a non-None value would trigger :func:`sys.displayhook` calls. | ||||
# Instead, we store the exit_code in user_ns. | ||||
self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2)) | ||||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3909 | def system_raw(self, cmd): | ||
"""Call the given cmd in a subprocess using os.system | ||||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3909 | Parameters | ||
---------- | ||||
cmd : str | ||||
Command to execute. | ||||
""" | ||||
MinRK
|
r5277 | cmd = self.var_expand(cmd, depth=2) | ||
# protect os.system from UNC paths on Windows, which it can't handle: | ||||
if sys.platform == 'win32': | ||||
from IPython.utils._process_win32 import AvoidUNCPath | ||||
with AvoidUNCPath() as path: | ||||
if path is not None: | ||||
cmd = '"pushd %s &&"%s' % (path, cmd) | ||||
Jörgen Stenarson
|
r5313 | cmd = py3compat.unicode_to_str(cmd) | ||
MinRK
|
r5277 | ec = os.system(cmd) | ||
else: | ||||
Jörgen Stenarson
|
r5314 | cmd = py3compat.unicode_to_str(cmd) | ||
MinRK
|
r5277 | ec = os.system(cmd) | ||
MinRK
|
r3910 | # We explicitly do NOT return the subprocess status code, because | ||
# a non-None value would trigger :func:`sys.displayhook` calls. | ||||
# Instead, we store the exit_code in user_ns. | ||||
MinRK
|
r5277 | self.user_ns['_exit_code'] = ec | ||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3909 | # use piped system by default, because it is better behaved | ||
system = system_piped | ||||
Fernando Perez
|
r2905 | |||
Fernando Perez
|
r3002 | def getoutput(self, cmd, split=True): | ||
"""Get output (possibly including stderr) from a subprocess. | ||||
Parameters | ||||
---------- | ||||
cmd : str | ||||
Fernando Perez
|
r3005 | Command to execute (can not end in '&', as background processes are | ||
Fernando Perez
|
r3002 | not supported. | ||
split : bool, optional | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r3002 | If True, split the output into an IPython SList. Otherwise, an | ||
IPython LSString is returned. These are objects similar to normal | ||||
lists and strings, with a few convenience attributes for easier | ||||
manipulation of line-based output. You can use '?' on them for | ||||
details. | ||||
""" | ||||
MinRK
|
r3909 | if cmd.rstrip().endswith('&'): | ||
# this is *far* from a rigorous test | ||||
Fernando Perez
|
r2905 | raise OSError("Background processes not supported.") | ||
Fernando Perez
|
r3002 | out = getoutput(self.var_expand(cmd, depth=2)) | ||
if split: | ||||
out = SList(out.splitlines()) | ||||
else: | ||||
out = LSString(out) | ||||
return out | ||||
Fernando Perez
|
r2905 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
# Things related to aliases | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2243 | def init_alias(self): | ||
Brian Granger
|
r2740 | self.alias_manager = AliasManager(shell=self, config=self.config) | ||
MinRK
|
r5225 | self.configurables.append(self.alias_manager) | ||
Brian Granger
|
r2245 | self.ns_table['alias'] = self.alias_manager.alias_table, | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
Brian Granger
|
r2738 | # Things related to extensions and plugins | ||
Brian Granger
|
r2731 | #------------------------------------------------------------------------- | ||
def init_extension_manager(self): | ||||
Brian Granger
|
r2740 | self.extension_manager = ExtensionManager(shell=self, config=self.config) | ||
MinRK
|
r5225 | self.configurables.append(self.extension_manager) | ||
Brian Granger
|
r2731 | |||
Brian Granger
|
r2738 | def init_plugin_manager(self): | ||
self.plugin_manager = PluginManager(config=self.config) | ||||
MinRK
|
r5225 | self.configurables.append(self.plugin_manager) | ||
Brian Granger
|
r2738 | |||
Brian Granger
|
r2731 | #------------------------------------------------------------------------- | ||
Brian Granger
|
r2810 | # Things related to payloads | ||
#------------------------------------------------------------------------- | ||||
def init_payload(self): | ||||
self.payload_manager = PayloadManager(config=self.config) | ||||
MinRK
|
r5225 | self.configurables.append(self.payload_manager) | ||
Brian Granger
|
r2810 | |||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2761 | # Things related to the prefilter | ||
#------------------------------------------------------------------------- | ||||
def init_prefilter(self): | ||||
self.prefilter_manager = PrefilterManager(shell=self, config=self.config) | ||||
MinRK
|
r5225 | self.configurables.append(self.prefilter_manager) | ||
Brian Granger
|
r2761 | # Ultimately this will be refactored in the new interpreter code, but | ||
# for now, we should expose the main prefilter method (there's legacy | ||||
# code out there that may rely on this). | ||||
self.prefilter = self.prefilter_manager.prefilter_lines | ||||
Fernando Perez
|
r2951 | def auto_rewrite_input(self, cmd): | ||
"""Print to the screen the rewritten form of the user's command. | ||||
Fernando Perez
|
r2954 | This shows visual feedback by rewriting input lines that cause | ||
automatic calling to kick in, like:: | ||||
/f x | ||||
into:: | ||||
Fernando Perez
|
r2951 | |||
Fernando Perez
|
r2954 | ------> f(x) | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2954 | after the user's input prompt. This helps the user understand that the | ||
input line was transformed automatically by IPython. | ||||
Fernando Perez
|
r2951 | """ | ||
Thomas Kluyver
|
r5555 | if not self.show_rewritten_input: | ||
return | ||||
Thomas Kluyver
|
r5495 | rw = self.prompt_manager.render('rewrite') + cmd | ||
Fernando Perez
|
r2951 | |||
try: | ||||
# plain ascii works better w/ pyreadline, on some machines, so | ||||
# we use it and only print uncolored rewrite if we have unicode | ||||
rw = str(rw) | ||||
MinRK
|
r3800 | print >> io.stdout, rw | ||
Fernando Perez
|
r2951 | except UnicodeEncodeError: | ||
print "------> " + cmd | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2761 | #------------------------------------------------------------------------- | ||
Fernando Perez
|
r2926 | # Things related to extracting values/expressions from kernel and user_ns | ||
#------------------------------------------------------------------------- | ||||
def _simple_error(self): | ||||
etype, value = sys.exc_info()[:2] | ||||
return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value) | ||||
Fernando Perez
|
r3050 | def user_variables(self, names): | ||
Fernando Perez
|
r2926 | """Get a list of variable names from the user's namespace. | ||
Fernando Perez
|
r3050 | Parameters | ||
---------- | ||||
names : list of strings | ||||
A list of names of variables to be read from the user namespace. | ||||
Returns | ||||
------- | ||||
A dict, keyed by the input names and with the repr() of each value. | ||||
Fernando Perez
|
r2926 | """ | ||
out = {} | ||||
user_ns = self.user_ns | ||||
for varname in names: | ||||
try: | ||||
value = repr(user_ns[varname]) | ||||
except: | ||||
value = self._simple_error() | ||||
out[varname] = value | ||||
return out | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r3050 | def user_expressions(self, expressions): | ||
Fernando Perez
|
r2926 | """Evaluate a dict of expressions in the user's namespace. | ||
Fernando Perez
|
r3050 | Parameters | ||
---------- | ||||
expressions : dict | ||||
A dict with string keys and string values. The expression values | ||||
should be valid Python expressions, each of which will be evaluated | ||||
in the user namespace. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r3050 | Returns | ||
------- | ||||
A dict, keyed like the input expressions dict, with the repr() of each | ||||
value. | ||||
Fernando Perez
|
r2926 | """ | ||
out = {} | ||||
user_ns = self.user_ns | ||||
global_ns = self.user_global_ns | ||||
for key, expr in expressions.iteritems(): | ||||
try: | ||||
value = repr(eval(expr, global_ns, user_ns)) | ||||
except: | ||||
value = self._simple_error() | ||||
out[key] = value | ||||
return out | ||||
#------------------------------------------------------------------------- | ||||
Brian Granger
|
r2242 | # Things related to the running of code | ||
#------------------------------------------------------------------------- | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def ex(self, cmd): | ||
"""Execute a normal python statement in user namespace.""" | ||||
Fernando Perez
|
r3732 | with self.builtin_trap: | ||
Brian Granger
|
r2242 | exec cmd in self.user_global_ns, self.user_ns | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def ev(self, expr): | ||
"""Evaluate python expression expr in user namespace. | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | Returns the result of evaluation | ||
""" | ||||
Fernando Perez
|
r3732 | with self.builtin_trap: | ||
Brian Granger
|
r2242 | return eval(expr, self.user_global_ns, self.user_ns) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2252 | def safe_execfile(self, fname, *where, **kw): | ||
Brian Granger
|
r2242 | """A safe version of the builtin execfile(). | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2252 | This version will never throw an exception, but instead print | ||
helpful error messages to the screen. This only works on pure | ||||
Python files with the .py extension. | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2252 | Parameters | ||
---------- | ||||
fname : string | ||||
The name of the file to be executed. | ||||
where : tuple | ||||
Brian Granger
|
r2242 | One or two namespaces, passed to execfile() as (globals,locals). | ||
If only one is given, it is passed as both. | ||||
Brian Granger
|
r2252 | exit_ignore : bool (False) | ||
Fernando Perez
|
r2440 | If True, then silence SystemExit for non-zero status (it is always | ||
silenced for zero status, as it is so common). | ||||
Jörgen Stenarson
|
r5094 | raise_exceptions : bool (False) | ||
If True raise exceptions everywhere. Meant for testing. | ||||
Brian Granger
|
r2252 | """ | ||
kw.setdefault('exit_ignore', False) | ||||
Jörgen Stenarson
|
r5094 | kw.setdefault('raise_exceptions', False) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2252 | fname = os.path.abspath(os.path.expanduser(fname)) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2252 | # Make sure we can open the file | ||
try: | ||||
with open(fname) as thefile: | ||||
pass | ||||
except: | ||||
warn('Could not open file <%s> for safe execution.' % fname) | ||||
return | ||||
Brian Granger
|
r2205 | |||
Brian Granger
|
r2242 | # Find things also in current directory. This is needed to mimic the | ||
# behavior of running a script from the system command line, where | ||||
# Python inserts the script's directory into sys.path | ||||
Brian Granger
|
r2252 | dname = os.path.dirname(fname) | ||
Brian Granger
|
r2242 | |||
Brian Granger
|
r2252 | with prepended_to_syspath(dname): | ||
Brian Granger
|
r2242 | try: | ||
Thomas Kluyver
|
r4731 | py3compat.execfile(fname,*where) | ||
Brian Granger
|
r2252 | except SystemExit, status: | ||
Fernando Perez
|
r2440 | # If the call was made with 0 or None exit status (sys.exit(0) | ||
# or sys.exit() ), don't bother showing a traceback, as both of | ||||
# these are considered normal by the OS: | ||||
# > python -c'import sys;sys.exit(0)'; echo $? | ||||
# 0 | ||||
# > python -c'import sys;sys.exit()'; echo $? | ||||
# 0 | ||||
# For other exit status, we show the exception unless | ||||
# explicitly silenced, but only in short form. | ||||
Jörgen Stenarson
|
r5094 | if kw['raise_exceptions']: | ||
raise | ||||
Fernando Perez
|
r2440 | if status.code not in (0, None) and not kw['exit_ignore']: | ||
self.showtraceback(exception_only=True) | ||||
Brian Granger
|
r2242 | except: | ||
Jörgen Stenarson
|
r5094 | if kw['raise_exceptions']: | ||
raise | ||||
Brian Granger
|
r2242 | self.showtraceback() | ||
Brian Granger
|
r2252 | def safe_execfile_ipy(self, fname): | ||
"""Like safe_execfile, but for .ipy files with IPython syntax. | ||||
Parameters | ||||
---------- | ||||
fname : str | ||||
The name of the file to execute. The filename must have a | ||||
.ipy extension. | ||||
""" | ||||
fname = os.path.abspath(os.path.expanduser(fname)) | ||||
# Make sure we can open the file | ||||
try: | ||||
with open(fname) as thefile: | ||||
pass | ||||
except: | ||||
warn('Could not open file <%s> for safe execution.' % fname) | ||||
return | ||||
# Find things also in current directory. This is needed to mimic the | ||||
# behavior of running a script from the system command line, where | ||||
# Python inserts the script's directory into sys.path | ||||
dname = os.path.dirname(fname) | ||||
with prepended_to_syspath(dname): | ||||
try: | ||||
with open(fname) as thefile: | ||||
MinRK
|
r3122 | # self.run_cell currently captures all exceptions | ||
# raised in user code. It would be nice if there were | ||||
Brian Granger
|
r2252 | # versions of runlines, execfile that did raise, so | ||
# we could catch the errors. | ||||
Thomas Kluyver
|
r3492 | self.run_cell(thefile.read(), store_history=False) | ||
Brian Granger
|
r2252 | except: | ||
self.showtraceback() | ||||
warn('Unknown failure executing file: <%s>' % fname) | ||||
Bernardo B. Marques
|
r4872 | |||
Bradley M. Froehle
|
r6029 | def safe_run_module(self, mod_name, where): | ||
"""A safe version of runpy.run_module(). | ||||
This version will never throw an exception, but instead print | ||||
helpful error messages to the screen. | ||||
Parameters | ||||
---------- | ||||
mod_name : string | ||||
The name of the module to be executed. | ||||
where : dict | ||||
The globals namespace. | ||||
""" | ||||
try: | ||||
where.update( | ||||
runpy.run_module(str(mod_name), run_name="__main__", | ||||
alter_sys=True) | ||||
) | ||||
except: | ||||
self.showtraceback() | ||||
warn('Unknown failure executing module: <%s>' % mod_name) | ||||
Fernando Perez
|
r7003 | def _run_cached_cell_magic(self, magic_name, line): | ||
Fernando Perez
|
r6978 | """Special method to call a cell magic with the data stored in self. | ||
""" | ||||
Fernando Perez
|
r6976 | cell = self._current_cell_magic_body | ||
self._current_cell_magic_body = None | ||||
Fernando Perez
|
r7003 | return self.run_cell_magic(magic_name, line, cell) | ||
Fernando Perez
|
r6976 | |||
MinRK
|
r6802 | def run_cell(self, raw_cell, store_history=False, silent=False): | ||
Thomas Kluyver
|
r3527 | """Run a complete IPython cell. | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3527 | Parameters | ||
---------- | ||||
Thomas Kluyver
|
r3709 | raw_cell : str | ||
Thomas Kluyver
|
r3527 | The code (including IPython code such as %magic functions) to run. | ||
store_history : bool | ||||
If True, the raw and translated cell will be stored in IPython's | ||||
history. For user code calling back into IPython's machinery, this | ||||
should be set to False. | ||||
MinRK
|
r6802 | silent : bool | ||
If True, avoid side-effets, such as implicit displayhooks, history, | ||||
and logging. silent=True forces store_history=False. | ||||
Thomas Kluyver
|
r3527 | """ | ||
Thomas Kluyver
|
r3710 | if (not raw_cell) or raw_cell.isspace(): | ||
Thomas Kluyver
|
r3706 | return | ||
MinRK
|
r6802 | |||
if silent: | ||||
store_history = False | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6976 | self.input_splitter.push(raw_cell) | ||
Fernando Perez
|
r6953 | |||
Fernando Perez
|
r6976 | # Check for cell magics, which leave state behind. This interface is | ||
# ugly, we need to do something cleaner later... Now the logic is | ||||
# simply that the input_splitter remembers if there was a cell magic, | ||||
# and in that case we grab the cell body. | ||||
Fernando Perez
|
r6978 | if self.input_splitter.cell_magic_parts: | ||
self._current_cell_magic_body = \ | ||||
''.join(self.input_splitter.cell_magic_parts) | ||||
Thomas Kluyver
|
r3709 | cell = self.input_splitter.source_reset() | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3527 | with self.builtin_trap: | ||
MinRK
|
r3822 | prefilter_failed = False | ||
Thomas Kluyver
|
r3709 | if len(cell.splitlines()) == 1: | ||
MinRK
|
r3821 | try: | ||
MinRK
|
r3908 | # use prefilter_lines to handle trailing newlines | ||
# restore trailing newline for ast.parse | ||||
cell = self.prefilter_manager.prefilter_lines(cell) + '\n' | ||||
MinRK
|
r3822 | except AliasError as e: | ||
error(e) | ||||
Fernando Perez
|
r4566 | prefilter_failed = True | ||
MinRK
|
r3821 | except Exception: | ||
MinRK
|
r3822 | # don't allow prefilter errors to crash IPython | ||
MinRK
|
r3821 | self.showtraceback() | ||
MinRK
|
r3822 | prefilter_failed = True | ||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3527 | # Store raw and processed history | ||
if store_history: | ||||
Bernardo B. Marques
|
r4872 | self.history_manager.store_inputs(self.execution_count, | ||
Thomas Kluyver
|
r3527 | cell, raw_cell) | ||
MinRK
|
r6802 | if not silent: | ||
self.logger.log(cell, raw_cell) | ||||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3822 | if not prefilter_failed: | ||
# don't run if prefilter failed | ||||
cell_name = self.compile.cache(cell, self.execution_count) | ||||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3822 | with self.display_trap: | ||
Fernando Perez
|
r3732 | try: | ||
Fernando Perez
|
r6953 | code_ast = self.compile.ast_parse(cell, | ||
filename=cell_name) | ||||
Thomas Kluyver
|
r4225 | except IndentationError: | ||
Thomas Kluyver
|
r4226 | self.showindentationerror() | ||
Thomas Kluyver
|
r5571 | if store_history: | ||
self.execution_count += 1 | ||||
Thomas Kluyver
|
r4225 | return None | ||
MinRK
|
r3822 | except (OverflowError, SyntaxError, ValueError, TypeError, | ||
MemoryError): | ||||
self.showsyntaxerror() | ||||
Thomas Kluyver
|
r5571 | if store_history: | ||
self.execution_count += 1 | ||||
MinRK
|
r3822 | return None | ||
MinRK
|
r6802 | |||
Mike Hansen
|
r7033 | interactivity = "none" if silent else self.ast_node_interactivity | ||
MinRK
|
r3822 | self.run_ast_nodes(code_ast.body, cell_name, | ||
MinRK
|
r6802 | interactivity=interactivity) | ||
MinRK
|
r3822 | # Execute any registered post-execution functions. | ||
MinRK
|
r6802 | # unless we are silent | ||
post_exec = [] if silent else self._post_execute.iteritems() | ||||
for func, status in post_exec: | ||||
MinRK
|
r5734 | if self.disable_failing_post_execute and not status: | ||
MinRK
|
r3822 | continue | ||
try: | ||||
func() | ||||
MinRK
|
r5346 | except KeyboardInterrupt: | ||
print >> io.stderr, "\nKeyboardInterrupt" | ||||
except Exception: | ||||
MinRK
|
r5734 | # register as failing: | ||
MinRK
|
r3822 | self._post_execute[func] = False | ||
MinRK
|
r5734 | self.showtraceback() | ||
print >> io.stderr, '\n'.join([ | ||||
"post-execution function %r produced an error." % func, | ||||
"If this problem persists, you can disable failing post-exec functions with:", | ||||
"", | ||||
" get_ipython().disable_failing_post_execute = True" | ||||
]) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3527 | if store_history: | ||
# Write output to the database. Does nothing unless | ||||
# history output logging is enabled. | ||||
self.history_manager.store_output(self.execution_count) | ||||
# Each cell is a *single* input, regardless of how many lines it has | ||||
self.execution_count += 1 | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3740 | def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'): | ||
Thomas Kluyver
|
r3527 | """Run a sequence of AST nodes. The execution mode depends on the | ||
interactivity parameter. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3527 | Parameters | ||
---------- | ||||
nodelist : list | ||||
A sequence of AST nodes to run. | ||||
Thomas Kluyver
|
r3533 | cell_name : str | ||
Will be passed to the compiler as the filename of the cell. Typically | ||||
the value returned by ip.compile.cache(cell). | ||||
interactivity : str | ||||
Thomas Kluyver
|
r3740 | 'all', 'last', 'last_expr' or 'none', specifying which nodes should be | ||
run interactively (displaying output from expressions). 'last_expr' | ||||
will run the last node interactively only if it is an expression (i.e. | ||||
expressions in loops or other blocks are not displayed. Other values | ||||
for this parameter will raise a ValueError. | ||||
Thomas Kluyver
|
r3527 | """ | ||
if not nodelist: | ||||
return | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3740 | if interactivity == 'last_expr': | ||
if isinstance(nodelist[-1], ast.Expr): | ||||
interactivity = "last" | ||||
else: | ||||
interactivity = "none" | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3533 | if interactivity == 'none': | ||
Thomas Kluyver
|
r3527 | to_run_exec, to_run_interactive = nodelist, [] | ||
Thomas Kluyver
|
r3533 | elif interactivity == 'last': | ||
Thomas Kluyver
|
r3527 | to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:] | ||
Thomas Kluyver
|
r3533 | elif interactivity == 'all': | ||
Thomas Kluyver
|
r3527 | to_run_exec, to_run_interactive = [], nodelist | ||
Thomas Kluyver
|
r3533 | else: | ||
raise ValueError("Interactivity was %r" % interactivity) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3529 | exec_count = self.execution_count | ||
Fernando Perez
|
r4566 | |||
try: | ||||
for i, node in enumerate(to_run_exec): | ||||
mod = ast.Module([node]) | ||||
code = self.compile(mod, cell_name, "exec") | ||||
Bradley M. Froehle
|
r6644 | if self.run_code(code): | ||
Fernando Perez
|
r4566 | return True | ||
for i, node in enumerate(to_run_interactive): | ||||
mod = ast.Interactive([node]) | ||||
code = self.compile(mod, cell_name, "single") | ||||
Bradley M. Froehle
|
r6644 | if self.run_code(code): | ||
Fernando Perez
|
r4566 | return True | ||
Bradley M. Froehle
|
r6642 | |||
# Flush softspace | ||||
if softspace(sys.stdout, 0): | ||||
Fernando Perez
|
r4566 | except: | ||
# It's possible to have exceptions raised here, typically by | ||||
# compilation of odd code (such as a naked 'return' outside a | ||||
# function) that did parse but isn't valid. Typically the exception | ||||
# is a SyntaxError, but it's safest just to catch anything and show | ||||
# the user a traceback. | ||||
# We do only one try/except outside the loop to minimize the impact | ||||
# on runtime, and also because if any node in the node list is | ||||
# broken, we should stop execution completely. | ||||
self.showtraceback() | ||||
MinRK
|
r3737 | |||
return False | ||||
Bernardo B. Marques
|
r4872 | |||
Bradley M. Froehle
|
r6644 | def run_code(self, code_obj): | ||
Ville M. Vainio
|
r1032 | """Execute a code object. | ||
When an exception occurs, self.showtraceback() is called to display a | ||||
traceback. | ||||
MinRK
|
r3735 | Parameters | ||
---------- | ||||
code_obj : code object | ||||
A compiled code object, to be executed | ||||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r3735 | Returns | ||
------- | ||||
MinRK
|
r3737 | False : successful execution. | ||
True : an error occurred. | ||||
Ville M. Vainio
|
r1032 | """ | ||
# Set our own excepthook in case the user code tries to call it | ||||
# directly, so that the IPython crash handler doesn't get triggered | ||||
old_excepthook,sys.excepthook = sys.excepthook, self.excepthook | ||||
# we save the original sys.excepthook in the instance, in case config | ||||
# code (such as magics) needs access to it. | ||||
self.sys_excepthook = old_excepthook | ||||
outflag = 1 # happens in more places, so it's easier as default | ||||
try: | ||||
try: | ||||
MinRK
|
r3122 | self.hooks.pre_run_code_hook() | ||
Fernando Perez
|
r3297 | #rprint('Running code', repr(code_obj)) # dbg | ||
Robert Kern
|
r1419 | exec code_obj in self.user_global_ns, self.user_ns | ||
Ville M. Vainio
|
r1032 | finally: | ||
# Reset our crash handler in place | ||||
sys.excepthook = old_excepthook | ||||
except SystemExit: | ||||
Fernando Perez
|
r2440 | self.showtraceback(exception_only=True) | ||
Thomas Kluyver
|
r3758 | warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1) | ||
Ville M. Vainio
|
r1032 | except self.custom_exceptions: | ||
etype,value,tb = sys.exc_info() | ||||
self.CustomTB(etype,value,tb) | ||||
except: | ||||
self.showtraceback() | ||||
else: | ||||
outflag = 0 | ||||
return outflag | ||||
Bernardo B. Marques
|
r4872 | |||
MinRK
|
r3122 | # For backwards compatibility | ||
runcode = run_code | ||||
Fernando Perez
|
r3139 | |||
Brian Granger
|
r2252 | #------------------------------------------------------------------------- | ||
Brian Granger
|
r2761 | # Things related to GUI support and pylab | ||
Brian Granger
|
r2242 | #------------------------------------------------------------------------- | ||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r5469 | def enable_gui(self, gui=None): | ||
raise NotImplementedError('Implement enable_gui in a subclass') | ||||
Fernando Perez
|
r4165 | def enable_pylab(self, gui=None, import_all=True): | ||
Fernando Perez
|
r5469 | """Activate pylab support at runtime. | ||
This turns on support for matplotlib, preloads into the interactive | ||||
namespace all of numpy and pylab, and configures IPython to correctly | ||||
interact with the GUI event loop. The GUI backend to be used can be | ||||
optionally selected with the optional :param:`gui` argument. | ||||
Parameters | ||||
---------- | ||||
gui : optional, string | ||||
If given, dictates the choice of matplotlib GUI backend to use | ||||
(should be one of IPython's supported backends, 'qt', 'osx', 'tk', | ||||
'gtk', 'wx' or 'inline'), otherwise we use the default chosen by | ||||
matplotlib (as dictated by the matplotlib build-time options plus the | ||||
user's matplotlibrc configuration file). Note that not all backends | ||||
make sense in all contexts, for example a terminal ipython can't | ||||
display figures inline. | ||||
""" | ||||
Fernando Perez
|
r6910 | from IPython.core.pylabtools import mpl_runner | ||
Fernando Perez
|
r5469 | # We want to prevent the loading of pylab to pollute the user's | ||
# namespace as shown by the %who* magics, so we execute the activation | ||||
# code in an empty namespace, and we update *both* user_ns and | ||||
# user_ns_hidden with this information. | ||||
ns = {} | ||||
try: | ||||
gui = pylab_activate(ns, gui, import_all, self) | ||||
except KeyError: | ||||
error("Backend %r not supported" % gui) | ||||
return | ||||
self.user_ns.update(ns) | ||||
self.user_ns_hidden.update(ns) | ||||
# Now we must activate the gui pylab wants to use, and fix %run to take | ||||
# plot updates into account | ||||
self.enable_gui(gui) | ||||
Fernando Perez
|
r6949 | self.magics_manager.registry['ExecutionMagics'].default_runner = \ | ||
mpl_runner(self.safe_execfile) | ||||
Brian Granger
|
r2242 | |||
#------------------------------------------------------------------------- | ||||
# Utilities | ||||
#------------------------------------------------------------------------- | ||||
Thomas Kluyver
|
r5355 | def var_expand(self, cmd, depth=0, formatter=DollarFormatter()): | ||
Brian Granger
|
r2202 | """Expand python variables in a string. | ||
The depth argument indicates how many frames above the caller should | ||||
be walked to look for the local namespace where to expand variables. | ||||
The global namespace for expansion is always the user's interactive | ||||
namespace. | ||||
""" | ||||
Thomas Kluyver
|
r5355 | ns = self.user_ns.copy() | ||
ns.update(sys._getframe(depth+1).f_locals) | ||||
ns.pop('self', None) | ||||
MinRK
|
r6124 | try: | ||
cmd = formatter.format(cmd, **ns) | ||||
except Exception: | ||||
# if formatter couldn't format, just let it go untransformed | ||||
pass | ||||
return cmd | ||||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r3175 | def mktempfile(self, data=None, prefix='ipython_edit_'): | ||
Ville M. Vainio
|
r1032 | """Make a new tempfile and return its filename. | ||
This makes a call to tempfile.mktemp, but it registers the created | ||||
filename internally so ipython cleans it up at exit time. | ||||
Optional inputs: | ||||
- data(None): if data is given, it gets written out to the temp file | ||||
immediately, and the file is closed again.""" | ||||
Fernando Perez
|
r3175 | filename = tempfile.mktemp('.py', prefix) | ||
Ville M. Vainio
|
r1032 | self.tempfiles.append(filename) | ||
Bernardo B. Marques
|
r4872 | |||
Ville M. Vainio
|
r1032 | if data: | ||
tmp_file = open(filename,'w') | ||||
tmp_file.write(data) | ||||
tmp_file.close() | ||||
return filename | ||||
Brian Granger
|
r2761 | # TODO: This should be removed when Term is refactored. | ||
Ville M. Vainio
|
r1032 | def write(self,data): | ||
"""Write a string to the default output""" | ||||
MinRK
|
r3800 | io.stdout.write(data) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2761 | # TODO: This should be removed when Term is refactored. | ||
Ville M. Vainio
|
r1032 | def write_err(self,data): | ||
"""Write a string to the default error output""" | ||||
MinRK
|
r3800 | io.stderr.write(data) | ||
Ville M. Vainio
|
r1032 | |||
MinRK
|
r5370 | def ask_yes_no(self, prompt, default=None): | ||
Brian Granger
|
r2242 | if self.quiet: | ||
return True | ||||
return ask_yes_no(prompt,default) | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r2876 | def show_usage(self): | ||
"""Show a usage message""" | ||||
page.page(IPython.core.usage.interactive_usage) | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6914 | def extract_input_lines(self, range_str, raw=False): | ||
"""Return as a string a set of input history slices. | ||||
Parameters | ||||
---------- | ||||
range_str : string | ||||
The set of slices is given as a string, like "~5/6-~4/2 4:8 9", | ||||
since this function is for use by magic functions which get their | ||||
arguments as strings. The number before the / is the session | ||||
number: ~n goes n back from the current session. | ||||
Optional Parameters: | ||||
- raw(False): by default, the processed input is used. If this is | ||||
true, the raw input history is used instead. | ||||
Note that slices can be called with two notations: | ||||
N:M -> standard python form, means including items N...(M-1). | ||||
N-M -> include items N..M (closed endpoint).""" | ||||
lines = self.history_manager.get_range_by_str(range_str, raw=raw) | ||||
return "\n".join(x for _, _, x in lines) | ||||
Matthias BUSSONNIER
|
r6774 | def find_user_code(self, target, raw=True, py_only=False): | ||
"""Get a code string from history, file, url, or a string or macro. | ||||
Bernardo B. Marques
|
r4872 | |||
This is mainly used by magic functions. | ||||
Thomas Kluyver
|
r3509 | Parameters | ||
---------- | ||||
Matthias BUSSONNIER
|
r6761 | |||
Thomas Kluyver
|
r3509 | target : str | ||
Matthias BUSSONNIER
|
r6761 | |||
Thomas Kluyver
|
r3509 | A string specifying code to retrieve. This will be tried respectively | ||
Matthias BUSSONNIER
|
r6761 | as: ranges of input history (see %history for syntax), url, | ||
Matthias BUSSONNIER
|
r6773 | correspnding .py file, filename, or an expression evaluating to a | ||
Matthias BUSSONNIER
|
r6761 | string or Macro in the user namespace. | ||
Thomas Kluyver
|
r3509 | raw : bool | ||
If true (default), retrieve raw history. Has no effect on the other | ||||
retrieval mechanisms. | ||||
Bernardo B. Marques
|
r4872 | |||
Matthias BUSSONNIER
|
r6775 | py_only : bool (default False) | ||
Matthias BUSSONNIER
|
r6774 | Only try to fetch python code, do not try alternative methods to decode file | ||
if unicode fails. | ||||
Thomas Kluyver
|
r3509 | Returns | ||
------- | ||||
A string of code. | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3509 | ValueError is raised if nothing is found, and TypeError if it evaluates | ||
to an object of another type. In each case, .args[0] is a printable | ||||
message. | ||||
""" | ||||
Bernardo B. Marques
|
r4872 | code = self.extract_input_lines(target, raw=raw) # Grab history | ||
Thomas Kluyver
|
r3509 | if code: | ||
return code | ||||
Matthias BUSSONNIER
|
r6774 | utarget = unquote_filename(target) | ||
Matthias BUSSONNIER
|
r6763 | try: | ||
if utarget.startswith(('http://', 'https://')): | ||||
return openpy.read_py_url(utarget, skip_encoding_cookie=True) | ||||
Matthias BUSSONNIER
|
r6773 | except UnicodeDecodeError: | ||
Matthias BUSSONNIER
|
r6774 | if not py_only : | ||
Matthias BUSSONNIER
|
r6775 | response = urllib.urlopen(target) | ||
Matthias BUSSONNIER
|
r6895 | return response.read().decode('latin1') | ||
Matthias BUSSONNIER
|
r6774 | raise ValueError(("'%s' seem to be unreadable.") % utarget) | ||
Matthias BUSSONNIER
|
r6761 | |||
Matthias BUSSONNIER
|
r6778 | potential_target = [target] | ||
Matthias BUSSONNIER
|
r6761 | try : | ||
Matthias BUSSONNIER
|
r6778 | potential_target.insert(0,get_py_filename(target)) | ||
Matthias BUSSONNIER
|
r6761 | except IOError: | ||
pass | ||||
Matthias BUSSONNIER
|
r6778 | |||
for tgt in potential_target : | ||||
if os.path.isfile(tgt): # Read file | ||||
try : | ||||
return openpy.read_py_file(tgt, skip_encoding_cookie=True) | ||||
except UnicodeDecodeError : | ||||
if not py_only : | ||||
with io_open(tgt,'r', encoding='latin1') as f : | ||||
return f.read() | ||||
raise ValueError(("'%s' seem to be unreadable.") % target) | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3509 | try: # User namespace | ||
codeobj = eval(target, self.user_ns) | ||||
except Exception: | ||||
Matthias BUSSONNIER
|
r6778 | raise ValueError(("'%s' was not found in history, as a file, url, " | ||
Matthias BUSSONNIER
|
r6761 | "nor in the user namespace.") % target) | ||
Thomas Kluyver
|
r3509 | if isinstance(codeobj, basestring): | ||
return codeobj | ||||
elif isinstance(codeobj, Macro): | ||||
return codeobj.value | ||||
Bernardo B. Marques
|
r4872 | |||
Thomas Kluyver
|
r3509 | raise TypeError("%s is neither a string nor a macro." % target, | ||
codeobj) | ||||
Brian Granger
|
r2242 | |||
#------------------------------------------------------------------------- | ||||
# Things related to IPython exiting | ||||
#------------------------------------------------------------------------- | ||||
def atexit_operations(self): | ||||
"""This will be executed at the time of exit. | ||||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r2953 | Cleanup operations and saving of persistent data that is done | ||
unconditionally by IPython should be performed here. | ||||
Ville M. Vainio
|
r1032 | |||
Fernando Perez
|
r2953 | For things that may depend on startup flags or platform specifics (such | ||
as having readline or not), register a separate atexit function in the | ||||
code that has the appropriate information, rather than trying to | ||||
Bernardo B. Marques
|
r4872 | clutter | ||
Fernando Perez
|
r2953 | """ | ||
MinRK
|
r4602 | # Close the history session (this stores the end time and line count) | ||
# this must be *before* the tempfile cleanup, in case of temporary | ||||
# history db | ||||
self.history_manager.end_session() | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # Cleanup all tempfiles left around | ||
for tfile in self.tempfiles: | ||||
try: | ||||
os.unlink(tfile) | ||||
except OSError: | ||||
pass | ||||
Bernardo B. Marques
|
r4872 | |||
Brian Granger
|
r2242 | # Clear all user namespaces to release all references cleanly. | ||
Thomas Kluyver
|
r3397 | self.reset(new_session=False) | ||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | # Run user hooks | ||
self.hooks.shutdown_hook() | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2242 | def cleanup(self): | ||
self.restore_sys_module_state() | ||||
Ville M. Vainio
|
r1032 | |||
Brian Granger
|
r2738 | class InteractiveShellABC(object): | ||
"""An abstract base class for InteractiveShell.""" | ||||
__metaclass__ = abc.ABCMeta | ||||
InteractiveShellABC.register(InteractiveShell) | ||||