##// END OF EJS Templates
Eliminate Str and CStr trait types except in IPython.parallel
Thomas Kluyver -
Show More
@@ -1,166 +1,166 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 Tests for IPython.config.configurable
4 Tests for IPython.config.configurable
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * Fernando Perez (design help)
9 * Fernando Perez (design help)
10 """
10 """
11
11
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13 # Copyright (C) 2008-2010 The IPython Development Team
13 # Copyright (C) 2008-2010 The IPython Development Team
14 #
14 #
15 # Distributed under the terms of the BSD License. The full license is in
15 # Distributed under the terms of the BSD License. The full license is in
16 # the file COPYING, distributed as part of this software.
16 # the file COPYING, distributed as part of this software.
17 #-----------------------------------------------------------------------------
17 #-----------------------------------------------------------------------------
18
18
19 #-----------------------------------------------------------------------------
19 #-----------------------------------------------------------------------------
20 # Imports
20 # Imports
21 #-----------------------------------------------------------------------------
21 #-----------------------------------------------------------------------------
22
22
23 from unittest import TestCase
23 from unittest import TestCase
24
24
25 from IPython.config.configurable import (
25 from IPython.config.configurable import (
26 Configurable,
26 Configurable,
27 SingletonConfigurable
27 SingletonConfigurable
28 )
28 )
29
29
30 from IPython.utils.traitlets import (
30 from IPython.utils.traitlets import (
31 Int, Float, Str
31 Int, Float, Unicode
32 )
32 )
33
33
34 from IPython.config.loader import Config
34 from IPython.config.loader import Config
35
35
36
36
37 #-----------------------------------------------------------------------------
37 #-----------------------------------------------------------------------------
38 # Test cases
38 # Test cases
39 #-----------------------------------------------------------------------------
39 #-----------------------------------------------------------------------------
40
40
41
41
42 class MyConfigurable(Configurable):
42 class MyConfigurable(Configurable):
43 a = Int(1, config=True, help="The integer a.")
43 a = Int(1, config=True, help="The integer a.")
44 b = Float(1.0, config=True, help="The integer b.")
44 b = Float(1.0, config=True, help="The integer b.")
45 c = Str('no config')
45 c = Unicode('no config')
46
46
47
47
48 mc_help=u"""MyConfigurable options
48 mc_help=u"""MyConfigurable options
49 ----------------------
49 ----------------------
50 MyConfigurable.a : Int
50 MyConfigurable.a : Int
51 Default: 1
51 Default: 1
52 The integer a.
52 The integer a.
53 MyConfigurable.b : Float
53 MyConfigurable.b : Float
54 Default: 1.0
54 Default: 1.0
55 The integer b."""
55 The integer b."""
56
56
57 class Foo(Configurable):
57 class Foo(Configurable):
58 a = Int(0, config=True, help="The integer a.")
58 a = Int(0, config=True, help="The integer a.")
59 b = Str('nope', config=True)
59 b = Unicode('nope', config=True)
60
60
61
61
62 class Bar(Foo):
62 class Bar(Foo):
63 b = Str('gotit', config=False, help="The string b.")
63 b = Unicode('gotit', config=False, help="The string b.")
64 c = Float(config=True, help="The string c.")
64 c = Float(config=True, help="The string c.")
65
65
66
66
67 class TestConfigurable(TestCase):
67 class TestConfigurable(TestCase):
68
68
69 def test_default(self):
69 def test_default(self):
70 c1 = Configurable()
70 c1 = Configurable()
71 c2 = Configurable(config=c1.config)
71 c2 = Configurable(config=c1.config)
72 c3 = Configurable(config=c2.config)
72 c3 = Configurable(config=c2.config)
73 self.assertEquals(c1.config, c2.config)
73 self.assertEquals(c1.config, c2.config)
74 self.assertEquals(c2.config, c3.config)
74 self.assertEquals(c2.config, c3.config)
75
75
76 def test_custom(self):
76 def test_custom(self):
77 config = Config()
77 config = Config()
78 config.foo = 'foo'
78 config.foo = 'foo'
79 config.bar = 'bar'
79 config.bar = 'bar'
80 c1 = Configurable(config=config)
80 c1 = Configurable(config=config)
81 c2 = Configurable(config=c1.config)
81 c2 = Configurable(config=c1.config)
82 c3 = Configurable(config=c2.config)
82 c3 = Configurable(config=c2.config)
83 self.assertEquals(c1.config, config)
83 self.assertEquals(c1.config, config)
84 self.assertEquals(c2.config, config)
84 self.assertEquals(c2.config, config)
85 self.assertEquals(c3.config, config)
85 self.assertEquals(c3.config, config)
86 # Test that copies are not made
86 # Test that copies are not made
87 self.assert_(c1.config is config)
87 self.assert_(c1.config is config)
88 self.assert_(c2.config is config)
88 self.assert_(c2.config is config)
89 self.assert_(c3.config is config)
89 self.assert_(c3.config is config)
90 self.assert_(c1.config is c2.config)
90 self.assert_(c1.config is c2.config)
91 self.assert_(c2.config is c3.config)
91 self.assert_(c2.config is c3.config)
92
92
93 def test_inheritance(self):
93 def test_inheritance(self):
94 config = Config()
94 config = Config()
95 config.MyConfigurable.a = 2
95 config.MyConfigurable.a = 2
96 config.MyConfigurable.b = 2.0
96 config.MyConfigurable.b = 2.0
97 c1 = MyConfigurable(config=config)
97 c1 = MyConfigurable(config=config)
98 c2 = MyConfigurable(config=c1.config)
98 c2 = MyConfigurable(config=c1.config)
99 self.assertEquals(c1.a, config.MyConfigurable.a)
99 self.assertEquals(c1.a, config.MyConfigurable.a)
100 self.assertEquals(c1.b, config.MyConfigurable.b)
100 self.assertEquals(c1.b, config.MyConfigurable.b)
101 self.assertEquals(c2.a, config.MyConfigurable.a)
101 self.assertEquals(c2.a, config.MyConfigurable.a)
102 self.assertEquals(c2.b, config.MyConfigurable.b)
102 self.assertEquals(c2.b, config.MyConfigurable.b)
103
103
104 def test_parent(self):
104 def test_parent(self):
105 config = Config()
105 config = Config()
106 config.Foo.a = 10
106 config.Foo.a = 10
107 config.Foo.b = "wow"
107 config.Foo.b = "wow"
108 config.Bar.b = 'later'
108 config.Bar.b = 'later'
109 config.Bar.c = 100.0
109 config.Bar.c = 100.0
110 f = Foo(config=config)
110 f = Foo(config=config)
111 b = Bar(config=f.config)
111 b = Bar(config=f.config)
112 self.assertEquals(f.a, 10)
112 self.assertEquals(f.a, 10)
113 self.assertEquals(f.b, 'wow')
113 self.assertEquals(f.b, 'wow')
114 self.assertEquals(b.b, 'gotit')
114 self.assertEquals(b.b, 'gotit')
115 self.assertEquals(b.c, 100.0)
115 self.assertEquals(b.c, 100.0)
116
116
117 def test_override1(self):
117 def test_override1(self):
118 config = Config()
118 config = Config()
119 config.MyConfigurable.a = 2
119 config.MyConfigurable.a = 2
120 config.MyConfigurable.b = 2.0
120 config.MyConfigurable.b = 2.0
121 c = MyConfigurable(a=3, config=config)
121 c = MyConfigurable(a=3, config=config)
122 self.assertEquals(c.a, 3)
122 self.assertEquals(c.a, 3)
123 self.assertEquals(c.b, config.MyConfigurable.b)
123 self.assertEquals(c.b, config.MyConfigurable.b)
124 self.assertEquals(c.c, 'no config')
124 self.assertEquals(c.c, 'no config')
125
125
126 def test_override2(self):
126 def test_override2(self):
127 config = Config()
127 config = Config()
128 config.Foo.a = 1
128 config.Foo.a = 1
129 config.Bar.b = 'or' # Up above b is config=False, so this won't do it.
129 config.Bar.b = 'or' # Up above b is config=False, so this won't do it.
130 config.Bar.c = 10.0
130 config.Bar.c = 10.0
131 c = Bar(config=config)
131 c = Bar(config=config)
132 self.assertEquals(c.a, config.Foo.a)
132 self.assertEquals(c.a, config.Foo.a)
133 self.assertEquals(c.b, 'gotit')
133 self.assertEquals(c.b, 'gotit')
134 self.assertEquals(c.c, config.Bar.c)
134 self.assertEquals(c.c, config.Bar.c)
135 c = Bar(a=2, b='and', c=20.0, config=config)
135 c = Bar(a=2, b='and', c=20.0, config=config)
136 self.assertEquals(c.a, 2)
136 self.assertEquals(c.a, 2)
137 self.assertEquals(c.b, 'and')
137 self.assertEquals(c.b, 'and')
138 self.assertEquals(c.c, 20.0)
138 self.assertEquals(c.c, 20.0)
139
139
140 def test_help(self):
140 def test_help(self):
141 self.assertEquals(MyConfigurable.class_get_help(), mc_help)
141 self.assertEquals(MyConfigurable.class_get_help(), mc_help)
142
142
143
143
144 class TestSingletonConfigurable(TestCase):
144 class TestSingletonConfigurable(TestCase):
145
145
146 def test_instance(self):
146 def test_instance(self):
147 from IPython.config.configurable import SingletonConfigurable
147 from IPython.config.configurable import SingletonConfigurable
148 class Foo(SingletonConfigurable): pass
148 class Foo(SingletonConfigurable): pass
149 self.assertEquals(Foo.initialized(), False)
149 self.assertEquals(Foo.initialized(), False)
150 foo = Foo.instance()
150 foo = Foo.instance()
151 self.assertEquals(Foo.initialized(), True)
151 self.assertEquals(Foo.initialized(), True)
152 self.assertEquals(foo, Foo.instance())
152 self.assertEquals(foo, Foo.instance())
153 self.assertEquals(SingletonConfigurable._instance, None)
153 self.assertEquals(SingletonConfigurable._instance, None)
154
154
155 def test_inheritance(self):
155 def test_inheritance(self):
156 class Bar(SingletonConfigurable): pass
156 class Bar(SingletonConfigurable): pass
157 class Bam(Bar): pass
157 class Bam(Bar): pass
158 self.assertEquals(Bar.initialized(), False)
158 self.assertEquals(Bar.initialized(), False)
159 self.assertEquals(Bam.initialized(), False)
159 self.assertEquals(Bam.initialized(), False)
160 bam = Bam.instance()
160 bam = Bam.instance()
161 bam == Bar.instance()
161 bam == Bar.instance()
162 self.assertEquals(Bar.initialized(), True)
162 self.assertEquals(Bar.initialized(), True)
163 self.assertEquals(Bam.initialized(), True)
163 self.assertEquals(Bam.initialized(), True)
164 self.assertEquals(bam, Bam._instance)
164 self.assertEquals(bam, Bam._instance)
165 self.assertEquals(bam, Bar._instance)
165 self.assertEquals(bam, Bar._instance)
166 self.assertEquals(SingletonConfigurable._instance, None)
166 self.assertEquals(SingletonConfigurable._instance, None)
@@ -1,593 +1,593 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Display formatters.
2 """Display formatters.
3
3
4
4
5 Authors:
5 Authors:
6
6
7 * Robert Kern
7 * Robert Kern
8 * Brian Granger
8 * Brian Granger
9 """
9 """
10 #-----------------------------------------------------------------------------
10 #-----------------------------------------------------------------------------
11 # Copyright (c) 2010, IPython Development Team.
11 # Copyright (c) 2010, IPython Development Team.
12 #
12 #
13 # Distributed under the terms of the Modified BSD License.
13 # Distributed under the terms of the Modified BSD License.
14 #
14 #
15 # The full license is in the file COPYING.txt, distributed with this software.
15 # The full license is in the file COPYING.txt, distributed with this software.
16 #-----------------------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17
17
18 #-----------------------------------------------------------------------------
18 #-----------------------------------------------------------------------------
19 # Imports
19 # Imports
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21
21
22 # Stdlib imports
22 # Stdlib imports
23 import abc
23 import abc
24 import sys
24 import sys
25 # We must use StringIO, as cStringIO doesn't handle unicode properly.
25 # We must use StringIO, as cStringIO doesn't handle unicode properly.
26 from StringIO import StringIO
26 from StringIO import StringIO
27
27
28 # Our own imports
28 # Our own imports
29 from IPython.config.configurable import Configurable
29 from IPython.config.configurable import Configurable
30 from IPython.lib import pretty
30 from IPython.lib import pretty
31 from IPython.utils.traitlets import Bool, Dict, Int, Str, CStr
31 from IPython.utils.traitlets import Bool, Dict, Int, Unicode, CUnicode
32
32
33
33
34 #-----------------------------------------------------------------------------
34 #-----------------------------------------------------------------------------
35 # The main DisplayFormatter class
35 # The main DisplayFormatter class
36 #-----------------------------------------------------------------------------
36 #-----------------------------------------------------------------------------
37
37
38
38
39 class DisplayFormatter(Configurable):
39 class DisplayFormatter(Configurable):
40
40
41 # When set to true only the default plain text formatter will be used.
41 # When set to true only the default plain text formatter will be used.
42 plain_text_only = Bool(False, config=True)
42 plain_text_only = Bool(False, config=True)
43
43
44 # A dict of formatter whose keys are format types (MIME types) and whose
44 # A dict of formatter whose keys are format types (MIME types) and whose
45 # values are subclasses of BaseFormatter.
45 # values are subclasses of BaseFormatter.
46 formatters = Dict(config=True)
46 formatters = Dict(config=True)
47 def _formatters_default(self):
47 def _formatters_default(self):
48 """Activate the default formatters."""
48 """Activate the default formatters."""
49 formatter_classes = [
49 formatter_classes = [
50 PlainTextFormatter,
50 PlainTextFormatter,
51 HTMLFormatter,
51 HTMLFormatter,
52 SVGFormatter,
52 SVGFormatter,
53 PNGFormatter,
53 PNGFormatter,
54 LatexFormatter,
54 LatexFormatter,
55 JSONFormatter,
55 JSONFormatter,
56 JavascriptFormatter
56 JavascriptFormatter
57 ]
57 ]
58 d = {}
58 d = {}
59 for cls in formatter_classes:
59 for cls in formatter_classes:
60 f = cls(config=self.config)
60 f = cls(config=self.config)
61 d[f.format_type] = f
61 d[f.format_type] = f
62 return d
62 return d
63
63
64 def format(self, obj, include=None, exclude=None):
64 def format(self, obj, include=None, exclude=None):
65 """Return a format data dict for an object.
65 """Return a format data dict for an object.
66
66
67 By default all format types will be computed.
67 By default all format types will be computed.
68
68
69 The following MIME types are currently implemented:
69 The following MIME types are currently implemented:
70
70
71 * text/plain
71 * text/plain
72 * text/html
72 * text/html
73 * text/latex
73 * text/latex
74 * application/json
74 * application/json
75 * image/png
75 * image/png
76 * immage/svg+xml
76 * immage/svg+xml
77
77
78 Parameters
78 Parameters
79 ----------
79 ----------
80 obj : object
80 obj : object
81 The Python object whose format data will be computed.
81 The Python object whose format data will be computed.
82 include : list or tuple, optional
82 include : list or tuple, optional
83 A list of format type strings (MIME types) to include in the
83 A list of format type strings (MIME types) to include in the
84 format data dict. If this is set *only* the format types included
84 format data dict. If this is set *only* the format types included
85 in this list will be computed.
85 in this list will be computed.
86 exclude : list or tuple, optional
86 exclude : list or tuple, optional
87 A list of format type string (MIME types) to exclue in the format
87 A list of format type string (MIME types) to exclue in the format
88 data dict. If this is set all format types will be computed,
88 data dict. If this is set all format types will be computed,
89 except for those included in this argument.
89 except for those included in this argument.
90
90
91 Returns
91 Returns
92 -------
92 -------
93 format_dict : dict
93 format_dict : dict
94 A dictionary of key/value pairs, one or each format that was
94 A dictionary of key/value pairs, one or each format that was
95 generated for the object. The keys are the format types, which
95 generated for the object. The keys are the format types, which
96 will usually be MIME type strings and the values and JSON'able
96 will usually be MIME type strings and the values and JSON'able
97 data structure containing the raw data for the representation in
97 data structure containing the raw data for the representation in
98 that format.
98 that format.
99 """
99 """
100 format_dict = {}
100 format_dict = {}
101
101
102 # If plain text only is active
102 # If plain text only is active
103 if self.plain_text_only:
103 if self.plain_text_only:
104 formatter = self.formatters['text/plain']
104 formatter = self.formatters['text/plain']
105 try:
105 try:
106 data = formatter(obj)
106 data = formatter(obj)
107 except:
107 except:
108 # FIXME: log the exception
108 # FIXME: log the exception
109 raise
109 raise
110 if data is not None:
110 if data is not None:
111 format_dict['text/plain'] = data
111 format_dict['text/plain'] = data
112 return format_dict
112 return format_dict
113
113
114 for format_type, formatter in self.formatters.items():
114 for format_type, formatter in self.formatters.items():
115 if include is not None:
115 if include is not None:
116 if format_type not in include:
116 if format_type not in include:
117 continue
117 continue
118 if exclude is not None:
118 if exclude is not None:
119 if format_type in exclude:
119 if format_type in exclude:
120 continue
120 continue
121 try:
121 try:
122 data = formatter(obj)
122 data = formatter(obj)
123 except:
123 except:
124 # FIXME: log the exception
124 # FIXME: log the exception
125 raise
125 raise
126 if data is not None:
126 if data is not None:
127 format_dict[format_type] = data
127 format_dict[format_type] = data
128 return format_dict
128 return format_dict
129
129
130 @property
130 @property
131 def format_types(self):
131 def format_types(self):
132 """Return the format types (MIME types) of the active formatters."""
132 """Return the format types (MIME types) of the active formatters."""
133 return self.formatters.keys()
133 return self.formatters.keys()
134
134
135
135
136 #-----------------------------------------------------------------------------
136 #-----------------------------------------------------------------------------
137 # Formatters for specific format types (text, html, svg, etc.)
137 # Formatters for specific format types (text, html, svg, etc.)
138 #-----------------------------------------------------------------------------
138 #-----------------------------------------------------------------------------
139
139
140
140
141 class FormatterABC(object):
141 class FormatterABC(object):
142 """ Abstract base class for Formatters.
142 """ Abstract base class for Formatters.
143
143
144 A formatter is a callable class that is responsible for computing the
144 A formatter is a callable class that is responsible for computing the
145 raw format data for a particular format type (MIME type). For example,
145 raw format data for a particular format type (MIME type). For example,
146 an HTML formatter would have a format type of `text/html` and would return
146 an HTML formatter would have a format type of `text/html` and would return
147 the HTML representation of the object when called.
147 the HTML representation of the object when called.
148 """
148 """
149 __metaclass__ = abc.ABCMeta
149 __metaclass__ = abc.ABCMeta
150
150
151 # The format type of the data returned, usually a MIME type.
151 # The format type of the data returned, usually a MIME type.
152 format_type = 'text/plain'
152 format_type = 'text/plain'
153
153
154 # Is the formatter enabled...
154 # Is the formatter enabled...
155 enabled = True
155 enabled = True
156
156
157 @abc.abstractmethod
157 @abc.abstractmethod
158 def __call__(self, obj):
158 def __call__(self, obj):
159 """Return a JSON'able representation of the object.
159 """Return a JSON'able representation of the object.
160
160
161 If the object cannot be formatted by this formatter, then return None
161 If the object cannot be formatted by this formatter, then return None
162 """
162 """
163 try:
163 try:
164 return repr(obj)
164 return repr(obj)
165 except TypeError:
165 except TypeError:
166 return None
166 return None
167
167
168
168
169 class BaseFormatter(Configurable):
169 class BaseFormatter(Configurable):
170 """A base formatter class that is configurable.
170 """A base formatter class that is configurable.
171
171
172 This formatter should usually be used as the base class of all formatters.
172 This formatter should usually be used as the base class of all formatters.
173 It is a traited :class:`Configurable` class and includes an extensible
173 It is a traited :class:`Configurable` class and includes an extensible
174 API for users to determine how their objects are formatted. The following
174 API for users to determine how their objects are formatted. The following
175 logic is used to find a function to format an given object.
175 logic is used to find a function to format an given object.
176
176
177 1. The object is introspected to see if it has a method with the name
177 1. The object is introspected to see if it has a method with the name
178 :attr:`print_method`. If is does, that object is passed to that method
178 :attr:`print_method`. If is does, that object is passed to that method
179 for formatting.
179 for formatting.
180 2. If no print method is found, three internal dictionaries are consulted
180 2. If no print method is found, three internal dictionaries are consulted
181 to find print method: :attr:`singleton_printers`, :attr:`type_printers`
181 to find print method: :attr:`singleton_printers`, :attr:`type_printers`
182 and :attr:`deferred_printers`.
182 and :attr:`deferred_printers`.
183
183
184 Users should use these dictionaries to register functions that will be
184 Users should use these dictionaries to register functions that will be
185 used to compute the format data for their objects (if those objects don't
185 used to compute the format data for their objects (if those objects don't
186 have the special print methods). The easiest way of using these
186 have the special print methods). The easiest way of using these
187 dictionaries is through the :meth:`for_type` and :meth:`for_type_by_name`
187 dictionaries is through the :meth:`for_type` and :meth:`for_type_by_name`
188 methods.
188 methods.
189
189
190 If no function/callable is found to compute the format data, ``None`` is
190 If no function/callable is found to compute the format data, ``None`` is
191 returned and this format type is not used.
191 returned and this format type is not used.
192 """
192 """
193
193
194 format_type = Str('text/plain')
194 format_type = Unicode('text/plain')
195
195
196 enabled = Bool(True, config=True)
196 enabled = Bool(True, config=True)
197
197
198 print_method = Str('__repr__')
198 print_method = Unicode('__repr__')
199
199
200 # The singleton printers.
200 # The singleton printers.
201 # Maps the IDs of the builtin singleton objects to the format functions.
201 # Maps the IDs of the builtin singleton objects to the format functions.
202 singleton_printers = Dict(config=True)
202 singleton_printers = Dict(config=True)
203 def _singleton_printers_default(self):
203 def _singleton_printers_default(self):
204 return {}
204 return {}
205
205
206 # The type-specific printers.
206 # The type-specific printers.
207 # Map type objects to the format functions.
207 # Map type objects to the format functions.
208 type_printers = Dict(config=True)
208 type_printers = Dict(config=True)
209 def _type_printers_default(self):
209 def _type_printers_default(self):
210 return {}
210 return {}
211
211
212 # The deferred-import type-specific printers.
212 # The deferred-import type-specific printers.
213 # Map (modulename, classname) pairs to the format functions.
213 # Map (modulename, classname) pairs to the format functions.
214 deferred_printers = Dict(config=True)
214 deferred_printers = Dict(config=True)
215 def _deferred_printers_default(self):
215 def _deferred_printers_default(self):
216 return {}
216 return {}
217
217
218 def __call__(self, obj):
218 def __call__(self, obj):
219 """Compute the format for an object."""
219 """Compute the format for an object."""
220 if self.enabled:
220 if self.enabled:
221 obj_id = id(obj)
221 obj_id = id(obj)
222 try:
222 try:
223 obj_class = getattr(obj, '__class__', None) or type(obj)
223 obj_class = getattr(obj, '__class__', None) or type(obj)
224 # First try to find registered singleton printers for the type.
224 # First try to find registered singleton printers for the type.
225 try:
225 try:
226 printer = self.singleton_printers[obj_id]
226 printer = self.singleton_printers[obj_id]
227 except (TypeError, KeyError):
227 except (TypeError, KeyError):
228 pass
228 pass
229 else:
229 else:
230 return printer(obj)
230 return printer(obj)
231 # Next look for type_printers.
231 # Next look for type_printers.
232 for cls in pretty._get_mro(obj_class):
232 for cls in pretty._get_mro(obj_class):
233 if cls in self.type_printers:
233 if cls in self.type_printers:
234 return self.type_printers[cls](obj)
234 return self.type_printers[cls](obj)
235 else:
235 else:
236 printer = self._in_deferred_types(cls)
236 printer = self._in_deferred_types(cls)
237 if printer is not None:
237 if printer is not None:
238 return printer(obj)
238 return printer(obj)
239 # Finally look for special method names.
239 # Finally look for special method names.
240 if hasattr(obj_class, self.print_method):
240 if hasattr(obj_class, self.print_method):
241 printer = getattr(obj_class, self.print_method)
241 printer = getattr(obj_class, self.print_method)
242 return printer(obj)
242 return printer(obj)
243 return None
243 return None
244 except Exception:
244 except Exception:
245 pass
245 pass
246 else:
246 else:
247 return None
247 return None
248
248
249 def for_type(self, typ, func):
249 def for_type(self, typ, func):
250 """Add a format function for a given type.
250 """Add a format function for a given type.
251
251
252 Parameters
252 Parameters
253 -----------
253 -----------
254 typ : class
254 typ : class
255 The class of the object that will be formatted using `func`.
255 The class of the object that will be formatted using `func`.
256 func : callable
256 func : callable
257 The callable that will be called to compute the format data. The
257 The callable that will be called to compute the format data. The
258 call signature of this function is simple, it must take the
258 call signature of this function is simple, it must take the
259 object to be formatted and return the raw data for the given
259 object to be formatted and return the raw data for the given
260 format. Subclasses may use a different call signature for the
260 format. Subclasses may use a different call signature for the
261 `func` argument.
261 `func` argument.
262 """
262 """
263 oldfunc = self.type_printers.get(typ, None)
263 oldfunc = self.type_printers.get(typ, None)
264 if func is not None:
264 if func is not None:
265 # To support easy restoration of old printers, we need to ignore
265 # To support easy restoration of old printers, we need to ignore
266 # Nones.
266 # Nones.
267 self.type_printers[typ] = func
267 self.type_printers[typ] = func
268 return oldfunc
268 return oldfunc
269
269
270 def for_type_by_name(self, type_module, type_name, func):
270 def for_type_by_name(self, type_module, type_name, func):
271 """Add a format function for a type specified by the full dotted
271 """Add a format function for a type specified by the full dotted
272 module and name of the type, rather than the type of the object.
272 module and name of the type, rather than the type of the object.
273
273
274 Parameters
274 Parameters
275 ----------
275 ----------
276 type_module : str
276 type_module : str
277 The full dotted name of the module the type is defined in, like
277 The full dotted name of the module the type is defined in, like
278 ``numpy``.
278 ``numpy``.
279 type_name : str
279 type_name : str
280 The name of the type (the class name), like ``dtype``
280 The name of the type (the class name), like ``dtype``
281 func : callable
281 func : callable
282 The callable that will be called to compute the format data. The
282 The callable that will be called to compute the format data. The
283 call signature of this function is simple, it must take the
283 call signature of this function is simple, it must take the
284 object to be formatted and return the raw data for the given
284 object to be formatted and return the raw data for the given
285 format. Subclasses may use a different call signature for the
285 format. Subclasses may use a different call signature for the
286 `func` argument.
286 `func` argument.
287 """
287 """
288 key = (type_module, type_name)
288 key = (type_module, type_name)
289 oldfunc = self.deferred_printers.get(key, None)
289 oldfunc = self.deferred_printers.get(key, None)
290 if func is not None:
290 if func is not None:
291 # To support easy restoration of old printers, we need to ignore
291 # To support easy restoration of old printers, we need to ignore
292 # Nones.
292 # Nones.
293 self.deferred_printers[key] = func
293 self.deferred_printers[key] = func
294 return oldfunc
294 return oldfunc
295
295
296 def _in_deferred_types(self, cls):
296 def _in_deferred_types(self, cls):
297 """
297 """
298 Check if the given class is specified in the deferred type registry.
298 Check if the given class is specified in the deferred type registry.
299
299
300 Returns the printer from the registry if it exists, and None if the
300 Returns the printer from the registry if it exists, and None if the
301 class is not in the registry. Successful matches will be moved to the
301 class is not in the registry. Successful matches will be moved to the
302 regular type registry for future use.
302 regular type registry for future use.
303 """
303 """
304 mod = getattr(cls, '__module__', None)
304 mod = getattr(cls, '__module__', None)
305 name = getattr(cls, '__name__', None)
305 name = getattr(cls, '__name__', None)
306 key = (mod, name)
306 key = (mod, name)
307 printer = None
307 printer = None
308 if key in self.deferred_printers:
308 if key in self.deferred_printers:
309 # Move the printer over to the regular registry.
309 # Move the printer over to the regular registry.
310 printer = self.deferred_printers.pop(key)
310 printer = self.deferred_printers.pop(key)
311 self.type_printers[cls] = printer
311 self.type_printers[cls] = printer
312 return printer
312 return printer
313
313
314
314
315 class PlainTextFormatter(BaseFormatter):
315 class PlainTextFormatter(BaseFormatter):
316 """The default pretty-printer.
316 """The default pretty-printer.
317
317
318 This uses :mod:`IPython.external.pretty` to compute the format data of
318 This uses :mod:`IPython.external.pretty` to compute the format data of
319 the object. If the object cannot be pretty printed, :func:`repr` is used.
319 the object. If the object cannot be pretty printed, :func:`repr` is used.
320 See the documentation of :mod:`IPython.external.pretty` for details on
320 See the documentation of :mod:`IPython.external.pretty` for details on
321 how to write pretty printers. Here is a simple example::
321 how to write pretty printers. Here is a simple example::
322
322
323 def dtype_pprinter(obj, p, cycle):
323 def dtype_pprinter(obj, p, cycle):
324 if cycle:
324 if cycle:
325 return p.text('dtype(...)')
325 return p.text('dtype(...)')
326 if hasattr(obj, 'fields'):
326 if hasattr(obj, 'fields'):
327 if obj.fields is None:
327 if obj.fields is None:
328 p.text(repr(obj))
328 p.text(repr(obj))
329 else:
329 else:
330 p.begin_group(7, 'dtype([')
330 p.begin_group(7, 'dtype([')
331 for i, field in enumerate(obj.descr):
331 for i, field in enumerate(obj.descr):
332 if i > 0:
332 if i > 0:
333 p.text(',')
333 p.text(',')
334 p.breakable()
334 p.breakable()
335 p.pretty(field)
335 p.pretty(field)
336 p.end_group(7, '])')
336 p.end_group(7, '])')
337 """
337 """
338
338
339 # The format type of data returned.
339 # The format type of data returned.
340 format_type = Str('text/plain')
340 format_type = Unicode('text/plain')
341
341
342 # This subclass ignores this attribute as it always need to return
342 # This subclass ignores this attribute as it always need to return
343 # something.
343 # something.
344 enabled = Bool(True, config=False)
344 enabled = Bool(True, config=False)
345
345
346 # Look for a _repr_pretty_ methods to use for pretty printing.
346 # Look for a _repr_pretty_ methods to use for pretty printing.
347 print_method = Str('_repr_pretty_')
347 print_method = Unicode('_repr_pretty_')
348
348
349 # Whether to pretty-print or not.
349 # Whether to pretty-print or not.
350 pprint = Bool(True, config=True)
350 pprint = Bool(True, config=True)
351
351
352 # Whether to be verbose or not.
352 # Whether to be verbose or not.
353 verbose = Bool(False, config=True)
353 verbose = Bool(False, config=True)
354
354
355 # The maximum width.
355 # The maximum width.
356 max_width = Int(79, config=True)
356 max_width = Int(79, config=True)
357
357
358 # The newline character.
358 # The newline character.
359 newline = Str('\n', config=True)
359 newline = Unicode('\n', config=True)
360
360
361 # format-string for pprinting floats
361 # format-string for pprinting floats
362 float_format = Str('%r')
362 float_format = Unicode('%r')
363 # setter for float precision, either int or direct format-string
363 # setter for float precision, either int or direct format-string
364 float_precision = CStr('', config=True)
364 float_precision = CUnicode('', config=True)
365
365
366 def _float_precision_changed(self, name, old, new):
366 def _float_precision_changed(self, name, old, new):
367 """float_precision changed, set float_format accordingly.
367 """float_precision changed, set float_format accordingly.
368
368
369 float_precision can be set by int or str.
369 float_precision can be set by int or str.
370 This will set float_format, after interpreting input.
370 This will set float_format, after interpreting input.
371 If numpy has been imported, numpy print precision will also be set.
371 If numpy has been imported, numpy print precision will also be set.
372
372
373 integer `n` sets format to '%.nf', otherwise, format set directly.
373 integer `n` sets format to '%.nf', otherwise, format set directly.
374
374
375 An empty string returns to defaults (repr for float, 8 for numpy).
375 An empty string returns to defaults (repr for float, 8 for numpy).
376
376
377 This parameter can be set via the '%precision' magic.
377 This parameter can be set via the '%precision' magic.
378 """
378 """
379
379
380 if '%' in new:
380 if '%' in new:
381 # got explicit format string
381 # got explicit format string
382 fmt = new
382 fmt = new
383 try:
383 try:
384 fmt%3.14159
384 fmt%3.14159
385 except Exception:
385 except Exception:
386 raise ValueError("Precision must be int or format string, not %r"%new)
386 raise ValueError("Precision must be int or format string, not %r"%new)
387 elif new:
387 elif new:
388 # otherwise, should be an int
388 # otherwise, should be an int
389 try:
389 try:
390 i = int(new)
390 i = int(new)
391 assert i >= 0
391 assert i >= 0
392 except ValueError:
392 except ValueError:
393 raise ValueError("Precision must be int or format string, not %r"%new)
393 raise ValueError("Precision must be int or format string, not %r"%new)
394 except AssertionError:
394 except AssertionError:
395 raise ValueError("int precision must be non-negative, not %r"%i)
395 raise ValueError("int precision must be non-negative, not %r"%i)
396
396
397 fmt = '%%.%if'%i
397 fmt = '%%.%if'%i
398 if 'numpy' in sys.modules:
398 if 'numpy' in sys.modules:
399 # set numpy precision if it has been imported
399 # set numpy precision if it has been imported
400 import numpy
400 import numpy
401 numpy.set_printoptions(precision=i)
401 numpy.set_printoptions(precision=i)
402 else:
402 else:
403 # default back to repr
403 # default back to repr
404 fmt = '%r'
404 fmt = '%r'
405 if 'numpy' in sys.modules:
405 if 'numpy' in sys.modules:
406 import numpy
406 import numpy
407 # numpy default is 8
407 # numpy default is 8
408 numpy.set_printoptions(precision=8)
408 numpy.set_printoptions(precision=8)
409 self.float_format = fmt
409 self.float_format = fmt
410
410
411 # Use the default pretty printers from IPython.external.pretty.
411 # Use the default pretty printers from IPython.external.pretty.
412 def _singleton_printers_default(self):
412 def _singleton_printers_default(self):
413 return pretty._singleton_pprinters.copy()
413 return pretty._singleton_pprinters.copy()
414
414
415 def _type_printers_default(self):
415 def _type_printers_default(self):
416 d = pretty._type_pprinters.copy()
416 d = pretty._type_pprinters.copy()
417 d[float] = lambda obj,p,cycle: p.text(self.float_format%obj)
417 d[float] = lambda obj,p,cycle: p.text(self.float_format%obj)
418 return d
418 return d
419
419
420 def _deferred_printers_default(self):
420 def _deferred_printers_default(self):
421 return pretty._deferred_type_pprinters.copy()
421 return pretty._deferred_type_pprinters.copy()
422
422
423 #### FormatterABC interface ####
423 #### FormatterABC interface ####
424
424
425 def __call__(self, obj):
425 def __call__(self, obj):
426 """Compute the pretty representation of the object."""
426 """Compute the pretty representation of the object."""
427 if not self.pprint:
427 if not self.pprint:
428 try:
428 try:
429 return repr(obj)
429 return repr(obj)
430 except TypeError:
430 except TypeError:
431 return ''
431 return ''
432 else:
432 else:
433 # This uses use StringIO, as cStringIO doesn't handle unicode.
433 # This uses use StringIO, as cStringIO doesn't handle unicode.
434 stream = StringIO()
434 stream = StringIO()
435 printer = pretty.RepresentationPrinter(stream, self.verbose,
435 printer = pretty.RepresentationPrinter(stream, self.verbose,
436 self.max_width, self.newline,
436 self.max_width, self.newline,
437 singleton_pprinters=self.singleton_printers,
437 singleton_pprinters=self.singleton_printers,
438 type_pprinters=self.type_printers,
438 type_pprinters=self.type_printers,
439 deferred_pprinters=self.deferred_printers)
439 deferred_pprinters=self.deferred_printers)
440 printer.pretty(obj)
440 printer.pretty(obj)
441 printer.flush()
441 printer.flush()
442 return stream.getvalue()
442 return stream.getvalue()
443
443
444
444
445 class HTMLFormatter(BaseFormatter):
445 class HTMLFormatter(BaseFormatter):
446 """An HTML formatter.
446 """An HTML formatter.
447
447
448 To define the callables that compute the HTML representation of your
448 To define the callables that compute the HTML representation of your
449 objects, define a :meth:`_repr_html_` method or use the :meth:`for_type`
449 objects, define a :meth:`_repr_html_` method or use the :meth:`for_type`
450 or :meth:`for_type_by_name` methods to register functions that handle
450 or :meth:`for_type_by_name` methods to register functions that handle
451 this.
451 this.
452
452
453 The return value of this formatter should be a valid HTML snippet that
453 The return value of this formatter should be a valid HTML snippet that
454 could be injected into an existing DOM. It should *not* include the
454 could be injected into an existing DOM. It should *not* include the
455 ```<html>`` or ```<body>`` tags.
455 ```<html>`` or ```<body>`` tags.
456 """
456 """
457 format_type = Str('text/html')
457 format_type = Unicode('text/html')
458
458
459 print_method = Str('_repr_html_')
459 print_method = Unicode('_repr_html_')
460
460
461
461
462 class SVGFormatter(BaseFormatter):
462 class SVGFormatter(BaseFormatter):
463 """An SVG formatter.
463 """An SVG formatter.
464
464
465 To define the callables that compute the SVG representation of your
465 To define the callables that compute the SVG representation of your
466 objects, define a :meth:`_repr_svg_` method or use the :meth:`for_type`
466 objects, define a :meth:`_repr_svg_` method or use the :meth:`for_type`
467 or :meth:`for_type_by_name` methods to register functions that handle
467 or :meth:`for_type_by_name` methods to register functions that handle
468 this.
468 this.
469
469
470 The return value of this formatter should be valid SVG enclosed in
470 The return value of this formatter should be valid SVG enclosed in
471 ```<svg>``` tags, that could be injected into an existing DOM. It should
471 ```<svg>``` tags, that could be injected into an existing DOM. It should
472 *not* include the ```<html>`` or ```<body>`` tags.
472 *not* include the ```<html>`` or ```<body>`` tags.
473 """
473 """
474 format_type = Str('image/svg+xml')
474 format_type = Unicode('image/svg+xml')
475
475
476 print_method = Str('_repr_svg_')
476 print_method = Unicode('_repr_svg_')
477
477
478
478
479 class PNGFormatter(BaseFormatter):
479 class PNGFormatter(BaseFormatter):
480 """A PNG formatter.
480 """A PNG formatter.
481
481
482 To define the callables that compute the PNG representation of your
482 To define the callables that compute the PNG representation of your
483 objects, define a :meth:`_repr_png_` method or use the :meth:`for_type`
483 objects, define a :meth:`_repr_png_` method or use the :meth:`for_type`
484 or :meth:`for_type_by_name` methods to register functions that handle
484 or :meth:`for_type_by_name` methods to register functions that handle
485 this.
485 this.
486
486
487 The return value of this formatter should be raw PNG data, *not*
487 The return value of this formatter should be raw PNG data, *not*
488 base64 encoded.
488 base64 encoded.
489 """
489 """
490 format_type = Str('image/png')
490 format_type = Unicode('image/png')
491
491
492 print_method = Str('_repr_png_')
492 print_method = Unicode('_repr_png_')
493
493
494
494
495 class LatexFormatter(BaseFormatter):
495 class LatexFormatter(BaseFormatter):
496 """A LaTeX formatter.
496 """A LaTeX formatter.
497
497
498 To define the callables that compute the LaTeX representation of your
498 To define the callables that compute the LaTeX representation of your
499 objects, define a :meth:`_repr_latex_` method or use the :meth:`for_type`
499 objects, define a :meth:`_repr_latex_` method or use the :meth:`for_type`
500 or :meth:`for_type_by_name` methods to register functions that handle
500 or :meth:`for_type_by_name` methods to register functions that handle
501 this.
501 this.
502
502
503 The return value of this formatter should be a valid LaTeX equation,
503 The return value of this formatter should be a valid LaTeX equation,
504 enclosed in either ```$``` or ```$$```.
504 enclosed in either ```$``` or ```$$```.
505 """
505 """
506 format_type = Str('text/latex')
506 format_type = Unicode('text/latex')
507
507
508 print_method = Str('_repr_latex_')
508 print_method = Unicode('_repr_latex_')
509
509
510
510
511 class JSONFormatter(BaseFormatter):
511 class JSONFormatter(BaseFormatter):
512 """A JSON string formatter.
512 """A JSON string formatter.
513
513
514 To define the callables that compute the JSON string representation of
514 To define the callables that compute the JSON string representation of
515 your objects, define a :meth:`_repr_json_` method or use the :meth:`for_type`
515 your objects, define a :meth:`_repr_json_` method or use the :meth:`for_type`
516 or :meth:`for_type_by_name` methods to register functions that handle
516 or :meth:`for_type_by_name` methods to register functions that handle
517 this.
517 this.
518
518
519 The return value of this formatter should be a valid JSON string.
519 The return value of this formatter should be a valid JSON string.
520 """
520 """
521 format_type = Str('application/json')
521 format_type = Unicode('application/json')
522
522
523 print_method = Str('_repr_json_')
523 print_method = Unicode('_repr_json_')
524
524
525
525
526 class JavascriptFormatter(BaseFormatter):
526 class JavascriptFormatter(BaseFormatter):
527 """A Javascript formatter.
527 """A Javascript formatter.
528
528
529 To define the callables that compute the Javascript representation of
529 To define the callables that compute the Javascript representation of
530 your objects, define a :meth:`_repr_javascript_` method or use the
530 your objects, define a :meth:`_repr_javascript_` method or use the
531 :meth:`for_type` or :meth:`for_type_by_name` methods to register functions
531 :meth:`for_type` or :meth:`for_type_by_name` methods to register functions
532 that handle this.
532 that handle this.
533
533
534 The return value of this formatter should be valid Javascript code and
534 The return value of this formatter should be valid Javascript code and
535 should *not* be enclosed in ```<script>``` tags.
535 should *not* be enclosed in ```<script>``` tags.
536 """
536 """
537 format_type = Str('application/javascript')
537 format_type = Unicode('application/javascript')
538
538
539 print_method = Str('_repr_javascript_')
539 print_method = Unicode('_repr_javascript_')
540
540
541 FormatterABC.register(BaseFormatter)
541 FormatterABC.register(BaseFormatter)
542 FormatterABC.register(PlainTextFormatter)
542 FormatterABC.register(PlainTextFormatter)
543 FormatterABC.register(HTMLFormatter)
543 FormatterABC.register(HTMLFormatter)
544 FormatterABC.register(SVGFormatter)
544 FormatterABC.register(SVGFormatter)
545 FormatterABC.register(PNGFormatter)
545 FormatterABC.register(PNGFormatter)
546 FormatterABC.register(LatexFormatter)
546 FormatterABC.register(LatexFormatter)
547 FormatterABC.register(JSONFormatter)
547 FormatterABC.register(JSONFormatter)
548 FormatterABC.register(JavascriptFormatter)
548 FormatterABC.register(JavascriptFormatter)
549
549
550
550
551 def format_display_data(obj, include=None, exclude=None):
551 def format_display_data(obj, include=None, exclude=None):
552 """Return a format data dict for an object.
552 """Return a format data dict for an object.
553
553
554 By default all format types will be computed.
554 By default all format types will be computed.
555
555
556 The following MIME types are currently implemented:
556 The following MIME types are currently implemented:
557
557
558 * text/plain
558 * text/plain
559 * text/html
559 * text/html
560 * text/latex
560 * text/latex
561 * application/json
561 * application/json
562 * image/png
562 * image/png
563 * immage/svg+xml
563 * immage/svg+xml
564
564
565 Parameters
565 Parameters
566 ----------
566 ----------
567 obj : object
567 obj : object
568 The Python object whose format data will be computed.
568 The Python object whose format data will be computed.
569
569
570 Returns
570 Returns
571 -------
571 -------
572 format_dict : dict
572 format_dict : dict
573 A dictionary of key/value pairs, one or each format that was
573 A dictionary of key/value pairs, one or each format that was
574 generated for the object. The keys are the format types, which
574 generated for the object. The keys are the format types, which
575 will usually be MIME type strings and the values and JSON'able
575 will usually be MIME type strings and the values and JSON'able
576 data structure containing the raw data for the representation in
576 data structure containing the raw data for the representation in
577 that format.
577 that format.
578 include : list or tuple, optional
578 include : list or tuple, optional
579 A list of format type strings (MIME types) to include in the
579 A list of format type strings (MIME types) to include in the
580 format data dict. If this is set *only* the format types included
580 format data dict. If this is set *only* the format types included
581 in this list will be computed.
581 in this list will be computed.
582 exclude : list or tuple, optional
582 exclude : list or tuple, optional
583 A list of format type string (MIME types) to exclue in the format
583 A list of format type string (MIME types) to exclue in the format
584 data dict. If this is set all format types will be computed,
584 data dict. If this is set all format types will be computed,
585 except for those included in this argument.
585 except for those included in this argument.
586 """
586 """
587 from IPython.core.interactiveshell import InteractiveShell
587 from IPython.core.interactiveshell import InteractiveShell
588
588
589 InteractiveShell.instance().display_formatter.format(
589 InteractiveShell.instance().display_formatter.format(
590 obj,
590 obj,
591 include,
591 include,
592 exclude
592 exclude
593 )
593 )
@@ -1,2553 +1,2554 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Main IPython class."""
2 """Main IPython class."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 # Copyright (C) 2008-2011 The IPython Development Team
7 # Copyright (C) 2008-2011 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 from __future__ import with_statement
17 from __future__ import with_statement
18 from __future__ import absolute_import
18 from __future__ import absolute_import
19
19
20 import __builtin__
20 import __builtin__
21 import __future__
21 import __future__
22 import abc
22 import abc
23 import ast
23 import ast
24 import atexit
24 import atexit
25 import codeop
25 import codeop
26 import inspect
26 import inspect
27 import os
27 import os
28 import re
28 import re
29 import sys
29 import sys
30 import tempfile
30 import tempfile
31 import types
31 import types
32 from contextlib import nested
32 from contextlib import nested
33
33
34 from IPython.config.configurable import SingletonConfigurable
34 from IPython.config.configurable import SingletonConfigurable
35 from IPython.core import debugger, oinspect
35 from IPython.core import debugger, oinspect
36 from IPython.core import history as ipcorehist
36 from IPython.core import history as ipcorehist
37 from IPython.core import page
37 from IPython.core import page
38 from IPython.core import prefilter
38 from IPython.core import prefilter
39 from IPython.core import shadowns
39 from IPython.core import shadowns
40 from IPython.core import ultratb
40 from IPython.core import ultratb
41 from IPython.core.alias import AliasManager, AliasError
41 from IPython.core.alias import AliasManager, AliasError
42 from IPython.core.autocall import ExitAutocall
42 from IPython.core.autocall import ExitAutocall
43 from IPython.core.builtin_trap import BuiltinTrap
43 from IPython.core.builtin_trap import BuiltinTrap
44 from IPython.core.compilerop import CachingCompiler
44 from IPython.core.compilerop import CachingCompiler
45 from IPython.core.display_trap import DisplayTrap
45 from IPython.core.display_trap import DisplayTrap
46 from IPython.core.displayhook import DisplayHook
46 from IPython.core.displayhook import DisplayHook
47 from IPython.core.displaypub import DisplayPublisher
47 from IPython.core.displaypub import DisplayPublisher
48 from IPython.core.error import TryNext, UsageError
48 from IPython.core.error import TryNext, UsageError
49 from IPython.core.extensions import ExtensionManager
49 from IPython.core.extensions import ExtensionManager
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
51 from IPython.core.formatters import DisplayFormatter
51 from IPython.core.formatters import DisplayFormatter
52 from IPython.core.history import HistoryManager
52 from IPython.core.history import HistoryManager
53 from IPython.core.inputsplitter import IPythonInputSplitter
53 from IPython.core.inputsplitter import IPythonInputSplitter
54 from IPython.core.logger import Logger
54 from IPython.core.logger import Logger
55 from IPython.core.macro import Macro
55 from IPython.core.macro import Macro
56 from IPython.core.magic import Magic
56 from IPython.core.magic import Magic
57 from IPython.core.payload import PayloadManager
57 from IPython.core.payload import PayloadManager
58 from IPython.core.plugin import PluginManager
58 from IPython.core.plugin import PluginManager
59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
60 from IPython.core.profiledir import ProfileDir
60 from IPython.core.profiledir import ProfileDir
61 from IPython.external.Itpl import ItplNS
61 from IPython.external.Itpl import ItplNS
62 from IPython.utils import PyColorize
62 from IPython.utils import PyColorize
63 from IPython.utils import io
63 from IPython.utils import io
64 from IPython.utils.doctestreload import doctest_reload
64 from IPython.utils.doctestreload import doctest_reload
65 from IPython.utils.io import ask_yes_no, rprint
65 from IPython.utils.io import ask_yes_no, rprint
66 from IPython.utils.ipstruct import Struct
66 from IPython.utils.ipstruct import Struct
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
68 from IPython.utils.pickleshare import PickleShareDB
68 from IPython.utils.pickleshare import PickleShareDB
69 from IPython.utils.process import system, getoutput
69 from IPython.utils.process import system, getoutput
70 from IPython.utils.strdispatch import StrDispatch
70 from IPython.utils.strdispatch import StrDispatch
71 from IPython.utils.syspathcontext import prepended_to_syspath
71 from IPython.utils.syspathcontext import prepended_to_syspath
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
73 from IPython.utils.traitlets import (Int, Str, CBool, CaselessStrEnum, Enum,
73 from IPython.utils.traitlets import (Int, CBool, CaselessStrEnum, Enum,
74 List, Unicode, Instance, Type)
74 List, Unicode, Instance, Type)
75 from IPython.utils.warn import warn, error, fatal
75 from IPython.utils.warn import warn, error, fatal
76 import IPython.core.hooks
76 import IPython.core.hooks
77
77
78 #-----------------------------------------------------------------------------
78 #-----------------------------------------------------------------------------
79 # Globals
79 # Globals
80 #-----------------------------------------------------------------------------
80 #-----------------------------------------------------------------------------
81
81
82 # compiled regexps for autoindent management
82 # compiled regexps for autoindent management
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
84
84
85 #-----------------------------------------------------------------------------
85 #-----------------------------------------------------------------------------
86 # Utilities
86 # Utilities
87 #-----------------------------------------------------------------------------
87 #-----------------------------------------------------------------------------
88
88
89 # store the builtin raw_input globally, and use this always, in case user code
89 # store the builtin raw_input globally, and use this always, in case user code
90 # overwrites it (like wx.py.PyShell does)
90 # overwrites it (like wx.py.PyShell does)
91 raw_input_original = raw_input
91 raw_input_original = raw_input
92
92
93 def softspace(file, newvalue):
93 def softspace(file, newvalue):
94 """Copied from code.py, to remove the dependency"""
94 """Copied from code.py, to remove the dependency"""
95
95
96 oldvalue = 0
96 oldvalue = 0
97 try:
97 try:
98 oldvalue = file.softspace
98 oldvalue = file.softspace
99 except AttributeError:
99 except AttributeError:
100 pass
100 pass
101 try:
101 try:
102 file.softspace = newvalue
102 file.softspace = newvalue
103 except (AttributeError, TypeError):
103 except (AttributeError, TypeError):
104 # "attribute-less object" or "read-only attributes"
104 # "attribute-less object" or "read-only attributes"
105 pass
105 pass
106 return oldvalue
106 return oldvalue
107
107
108
108
109 def no_op(*a, **kw): pass
109 def no_op(*a, **kw): pass
110
110
111 class SpaceInInput(Exception): pass
111 class SpaceInInput(Exception): pass
112
112
113 class Bunch: pass
113 class Bunch: pass
114
114
115
115
116 def get_default_colors():
116 def get_default_colors():
117 if sys.platform=='darwin':
117 if sys.platform=='darwin':
118 return "LightBG"
118 return "LightBG"
119 elif os.name=='nt':
119 elif os.name=='nt':
120 return 'Linux'
120 return 'Linux'
121 else:
121 else:
122 return 'Linux'
122 return 'Linux'
123
123
124
124
125 class SeparateStr(Str):
125 class SeparateUnicode(Unicode):
126 """A Str subclass to validate separate_in, separate_out, etc.
126 """A Unicode subclass to validate separate_in, separate_out, etc.
127
127
128 This is a Str based trait that converts '0'->'' and '\\n'->'\n'.
128 This is a Unicode based trait that converts '0'->'' and '\\n'->'\n'.
129 """
129 """
130
130
131 def validate(self, obj, value):
131 def validate(self, obj, value):
132 if value == '0': value = ''
132 if value == '0': value = ''
133 value = value.replace('\\n','\n')
133 value = value.replace('\\n','\n')
134 return super(SeparateStr, self).validate(obj, value)
134 return super(SeparateUnicode, self).validate(obj, value)
135
135
136
136
137 class ReadlineNoRecord(object):
137 class ReadlineNoRecord(object):
138 """Context manager to execute some code, then reload readline history
138 """Context manager to execute some code, then reload readline history
139 so that interactive input to the code doesn't appear when pressing up."""
139 so that interactive input to the code doesn't appear when pressing up."""
140 def __init__(self, shell):
140 def __init__(self, shell):
141 self.shell = shell
141 self.shell = shell
142 self._nested_level = 0
142 self._nested_level = 0
143
143
144 def __enter__(self):
144 def __enter__(self):
145 if self._nested_level == 0:
145 if self._nested_level == 0:
146 try:
146 try:
147 self.orig_length = self.current_length()
147 self.orig_length = self.current_length()
148 self.readline_tail = self.get_readline_tail()
148 self.readline_tail = self.get_readline_tail()
149 except (AttributeError, IndexError): # Can fail with pyreadline
149 except (AttributeError, IndexError): # Can fail with pyreadline
150 self.orig_length, self.readline_tail = 999999, []
150 self.orig_length, self.readline_tail = 999999, []
151 self._nested_level += 1
151 self._nested_level += 1
152
152
153 def __exit__(self, type, value, traceback):
153 def __exit__(self, type, value, traceback):
154 self._nested_level -= 1
154 self._nested_level -= 1
155 if self._nested_level == 0:
155 if self._nested_level == 0:
156 # Try clipping the end if it's got longer
156 # Try clipping the end if it's got longer
157 try:
157 try:
158 e = self.current_length() - self.orig_length
158 e = self.current_length() - self.orig_length
159 if e > 0:
159 if e > 0:
160 for _ in range(e):
160 for _ in range(e):
161 self.shell.readline.remove_history_item(self.orig_length)
161 self.shell.readline.remove_history_item(self.orig_length)
162
162
163 # If it still doesn't match, just reload readline history.
163 # If it still doesn't match, just reload readline history.
164 if self.current_length() != self.orig_length \
164 if self.current_length() != self.orig_length \
165 or self.get_readline_tail() != self.readline_tail:
165 or self.get_readline_tail() != self.readline_tail:
166 self.shell.refill_readline_hist()
166 self.shell.refill_readline_hist()
167 except (AttributeError, IndexError):
167 except (AttributeError, IndexError):
168 pass
168 pass
169 # Returning False will cause exceptions to propagate
169 # Returning False will cause exceptions to propagate
170 return False
170 return False
171
171
172 def current_length(self):
172 def current_length(self):
173 return self.shell.readline.get_current_history_length()
173 return self.shell.readline.get_current_history_length()
174
174
175 def get_readline_tail(self, n=10):
175 def get_readline_tail(self, n=10):
176 """Get the last n items in readline history."""
176 """Get the last n items in readline history."""
177 end = self.shell.readline.get_current_history_length() + 1
177 end = self.shell.readline.get_current_history_length() + 1
178 start = max(end-n, 1)
178 start = max(end-n, 1)
179 ghi = self.shell.readline.get_history_item
179 ghi = self.shell.readline.get_history_item
180 return [ghi(x) for x in range(start, end)]
180 return [ghi(x) for x in range(start, end)]
181
181
182
182
183 _autocall_help = """
183 _autocall_help = """
184 Make IPython automatically call any callable object even if
184 Make IPython automatically call any callable object even if
185 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
185 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
186 automatically. The value can be '0' to disable the feature, '1' for 'smart'
186 automatically. The value can be '0' to disable the feature, '1' for 'smart'
187 autocall, where it is not applied if there are no more arguments on the line,
187 autocall, where it is not applied if there are no more arguments on the line,
188 and '2' for 'full' autocall, where all callable objects are automatically
188 and '2' for 'full' autocall, where all callable objects are automatically
189 called (even if no arguments are present). The default is '1'.
189 called (even if no arguments are present). The default is '1'.
190 """
190 """
191
191
192 #-----------------------------------------------------------------------------
192 #-----------------------------------------------------------------------------
193 # Main IPython class
193 # Main IPython class
194 #-----------------------------------------------------------------------------
194 #-----------------------------------------------------------------------------
195
195
196 class InteractiveShell(SingletonConfigurable, Magic):
196 class InteractiveShell(SingletonConfigurable, Magic):
197 """An enhanced, interactive shell for Python."""
197 """An enhanced, interactive shell for Python."""
198
198
199 _instance = None
199 _instance = None
200
200
201 autocall = Enum((0,1,2), default_value=1, config=True, help=
201 autocall = Enum((0,1,2), default_value=1, config=True, help=
202 """
202 """
203 Make IPython automatically call any callable object even if you didn't
203 Make IPython automatically call any callable object even if you didn't
204 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
204 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
205 automatically. The value can be '0' to disable the feature, '1' for
205 automatically. The value can be '0' to disable the feature, '1' for
206 'smart' autocall, where it is not applied if there are no more
206 'smart' autocall, where it is not applied if there are no more
207 arguments on the line, and '2' for 'full' autocall, where all callable
207 arguments on the line, and '2' for 'full' autocall, where all callable
208 objects are automatically called (even if no arguments are present).
208 objects are automatically called (even if no arguments are present).
209 The default is '1'.
209 The default is '1'.
210 """
210 """
211 )
211 )
212 # TODO: remove all autoindent logic and put into frontends.
212 # TODO: remove all autoindent logic and put into frontends.
213 # We can't do this yet because even runlines uses the autoindent.
213 # We can't do this yet because even runlines uses the autoindent.
214 autoindent = CBool(True, config=True, help=
214 autoindent = CBool(True, config=True, help=
215 """
215 """
216 Autoindent IPython code entered interactively.
216 Autoindent IPython code entered interactively.
217 """
217 """
218 )
218 )
219 automagic = CBool(True, config=True, help=
219 automagic = CBool(True, config=True, help=
220 """
220 """
221 Enable magic commands to be called without the leading %.
221 Enable magic commands to be called without the leading %.
222 """
222 """
223 )
223 )
224 cache_size = Int(1000, config=True, help=
224 cache_size = Int(1000, config=True, help=
225 """
225 """
226 Set the size of the output cache. The default is 1000, you can
226 Set the size of the output cache. The default is 1000, you can
227 change it permanently in your config file. Setting it to 0 completely
227 change it permanently in your config file. Setting it to 0 completely
228 disables the caching system, and the minimum value accepted is 20 (if
228 disables the caching system, and the minimum value accepted is 20 (if
229 you provide a value less than 20, it is reset to 0 and a warning is
229 you provide a value less than 20, it is reset to 0 and a warning is
230 issued). This limit is defined because otherwise you'll spend more
230 issued). This limit is defined because otherwise you'll spend more
231 time re-flushing a too small cache than working
231 time re-flushing a too small cache than working
232 """
232 """
233 )
233 )
234 color_info = CBool(True, config=True, help=
234 color_info = CBool(True, config=True, help=
235 """
235 """
236 Use colors for displaying information about objects. Because this
236 Use colors for displaying information about objects. Because this
237 information is passed through a pager (like 'less'), and some pagers
237 information is passed through a pager (like 'less'), and some pagers
238 get confused with color codes, this capability can be turned off.
238 get confused with color codes, this capability can be turned off.
239 """
239 """
240 )
240 )
241 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
241 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
242 default_value=get_default_colors(), config=True,
242 default_value=get_default_colors(), config=True,
243 help="Set the color scheme (NoColor, Linux, or LightBG)."
243 help="Set the color scheme (NoColor, Linux, or LightBG)."
244 )
244 )
245 debug = CBool(False, config=True)
245 debug = CBool(False, config=True)
246 deep_reload = CBool(False, config=True, help=
246 deep_reload = CBool(False, config=True, help=
247 """
247 """
248 Enable deep (recursive) reloading by default. IPython can use the
248 Enable deep (recursive) reloading by default. IPython can use the
249 deep_reload module which reloads changes in modules recursively (it
249 deep_reload module which reloads changes in modules recursively (it
250 replaces the reload() function, so you don't need to change anything to
250 replaces the reload() function, so you don't need to change anything to
251 use it). deep_reload() forces a full reload of modules whose code may
251 use it). deep_reload() forces a full reload of modules whose code may
252 have changed, which the default reload() function does not. When
252 have changed, which the default reload() function does not. When
253 deep_reload is off, IPython will use the normal reload(), but
253 deep_reload is off, IPython will use the normal reload(), but
254 deep_reload will still be available as dreload().
254 deep_reload will still be available as dreload().
255 """
255 """
256 )
256 )
257 display_formatter = Instance(DisplayFormatter)
257 display_formatter = Instance(DisplayFormatter)
258 displayhook_class = Type(DisplayHook)
258 displayhook_class = Type(DisplayHook)
259 display_pub_class = Type(DisplayPublisher)
259 display_pub_class = Type(DisplayPublisher)
260
260
261 exit_now = CBool(False)
261 exit_now = CBool(False)
262 exiter = Instance(ExitAutocall)
262 exiter = Instance(ExitAutocall)
263 def _exiter_default(self):
263 def _exiter_default(self):
264 return ExitAutocall(self)
264 return ExitAutocall(self)
265 # Monotonically increasing execution counter
265 # Monotonically increasing execution counter
266 execution_count = Int(1)
266 execution_count = Int(1)
267 filename = Unicode("<ipython console>")
267 filename = Unicode("<ipython console>")
268 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
268 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
269
269
270 # Input splitter, to split entire cells of input into either individual
270 # Input splitter, to split entire cells of input into either individual
271 # interactive statements or whole blocks.
271 # interactive statements or whole blocks.
272 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
272 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
273 (), {})
273 (), {})
274 logstart = CBool(False, config=True, help=
274 logstart = CBool(False, config=True, help=
275 """
275 """
276 Start logging to the default log file.
276 Start logging to the default log file.
277 """
277 """
278 )
278 )
279 logfile = Unicode('', config=True, help=
279 logfile = Unicode('', config=True, help=
280 """
280 """
281 The name of the logfile to use.
281 The name of the logfile to use.
282 """
282 """
283 )
283 )
284 logappend = Unicode('', config=True, help=
284 logappend = Unicode('', config=True, help=
285 """
285 """
286 Start logging to the given file in append mode.
286 Start logging to the given file in append mode.
287 """
287 """
288 )
288 )
289 object_info_string_level = Enum((0,1,2), default_value=0,
289 object_info_string_level = Enum((0,1,2), default_value=0,
290 config=True)
290 config=True)
291 pdb = CBool(False, config=True, help=
291 pdb = CBool(False, config=True, help=
292 """
292 """
293 Automatically call the pdb debugger after every exception.
293 Automatically call the pdb debugger after every exception.
294 """
294 """
295 )
295 )
296
296
297 prompt_in1 = Str('In [\\#]: ', config=True)
297 prompt_in1 = Unicode('In [\\#]: ', config=True)
298 prompt_in2 = Str(' .\\D.: ', config=True)
298 prompt_in2 = Unicode(' .\\D.: ', config=True)
299 prompt_out = Str('Out[\\#]: ', config=True)
299 prompt_out = Unicode('Out[\\#]: ', config=True)
300 prompts_pad_left = CBool(True, config=True)
300 prompts_pad_left = CBool(True, config=True)
301 quiet = CBool(False, config=True)
301 quiet = CBool(False, config=True)
302
302
303 history_length = Int(10000, config=True)
303 history_length = Int(10000, config=True)
304
304
305 # The readline stuff will eventually be moved to the terminal subclass
305 # The readline stuff will eventually be moved to the terminal subclass
306 # but for now, we can't do that as readline is welded in everywhere.
306 # but for now, we can't do that as readline is welded in everywhere.
307 readline_use = CBool(True, config=True)
307 readline_use = CBool(True, config=True)
308 readline_merge_completions = CBool(True, config=True)
308 readline_merge_completions = CBool(True, config=True)
309 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
309 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
310 readline_remove_delims = Str('-/~', config=True)
310 readline_remove_delims = Unicode('-/~', config=True)
311 # don't use \M- bindings by default, because they
311 # don't use \M- bindings by default, because they
312 # conflict with 8-bit encodings. See gh-58,gh-88
312 # conflict with 8-bit encodings. See gh-58,gh-88
313 readline_parse_and_bind = List([
313 readline_parse_and_bind = List([
314 'tab: complete',
314 'tab: complete',
315 '"\C-l": clear-screen',
315 '"\C-l": clear-screen',
316 'set show-all-if-ambiguous on',
316 'set show-all-if-ambiguous on',
317 '"\C-o": tab-insert',
317 '"\C-o": tab-insert',
318 '"\C-r": reverse-search-history',
318 '"\C-r": reverse-search-history',
319 '"\C-s": forward-search-history',
319 '"\C-s": forward-search-history',
320 '"\C-p": history-search-backward',
320 '"\C-p": history-search-backward',
321 '"\C-n": history-search-forward',
321 '"\C-n": history-search-forward',
322 '"\e[A": history-search-backward',
322 '"\e[A": history-search-backward',
323 '"\e[B": history-search-forward',
323 '"\e[B": history-search-forward',
324 '"\C-k": kill-line',
324 '"\C-k": kill-line',
325 '"\C-u": unix-line-discard',
325 '"\C-u": unix-line-discard',
326 ], allow_none=False, config=True)
326 ], allow_none=False, config=True)
327
327
328 # TODO: this part of prompt management should be moved to the frontends.
328 # TODO: this part of prompt management should be moved to the frontends.
329 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
329 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
330 separate_in = SeparateStr('\n', config=True)
330 separate_in = SeparateUnicode('\n', config=True)
331 separate_out = SeparateStr('', config=True)
331 separate_out = SeparateUnicode('', config=True)
332 separate_out2 = SeparateStr('', config=True)
332 separate_out2 = SeparateUnicode('', config=True)
333 wildcards_case_sensitive = CBool(True, config=True)
333 wildcards_case_sensitive = CBool(True, config=True)
334 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
334 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
335 default_value='Context', config=True)
335 default_value='Context', config=True)
336
336
337 # Subcomponents of InteractiveShell
337 # Subcomponents of InteractiveShell
338 alias_manager = Instance('IPython.core.alias.AliasManager')
338 alias_manager = Instance('IPython.core.alias.AliasManager')
339 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
339 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
340 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
340 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
341 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
341 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
342 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
342 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
343 plugin_manager = Instance('IPython.core.plugin.PluginManager')
343 plugin_manager = Instance('IPython.core.plugin.PluginManager')
344 payload_manager = Instance('IPython.core.payload.PayloadManager')
344 payload_manager = Instance('IPython.core.payload.PayloadManager')
345 history_manager = Instance('IPython.core.history.HistoryManager')
345 history_manager = Instance('IPython.core.history.HistoryManager')
346
346
347 profile_dir = Instance('IPython.core.application.ProfileDir')
347 profile_dir = Instance('IPython.core.application.ProfileDir')
348 @property
348 @property
349 def profile(self):
349 def profile(self):
350 if self.profile_dir is not None:
350 if self.profile_dir is not None:
351 name = os.path.basename(self.profile_dir.location)
351 name = os.path.basename(self.profile_dir.location)
352 return name.replace('profile_','')
352 return name.replace('profile_','')
353
353
354
354
355 # Private interface
355 # Private interface
356 _post_execute = Instance(dict)
356 _post_execute = Instance(dict)
357
357
358 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
358 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
359 user_ns=None, user_global_ns=None,
359 user_ns=None, user_global_ns=None,
360 custom_exceptions=((), None)):
360 custom_exceptions=((), None)):
361
361
362 # This is where traits with a config_key argument are updated
362 # This is where traits with a config_key argument are updated
363 # from the values on config.
363 # from the values on config.
364 super(InteractiveShell, self).__init__(config=config)
364 super(InteractiveShell, self).__init__(config=config)
365
365
366 # These are relatively independent and stateless
366 # These are relatively independent and stateless
367 self.init_ipython_dir(ipython_dir)
367 self.init_ipython_dir(ipython_dir)
368 self.init_profile_dir(profile_dir)
368 self.init_profile_dir(profile_dir)
369 self.init_instance_attrs()
369 self.init_instance_attrs()
370 self.init_environment()
370 self.init_environment()
371
371
372 # Create namespaces (user_ns, user_global_ns, etc.)
372 # Create namespaces (user_ns, user_global_ns, etc.)
373 self.init_create_namespaces(user_ns, user_global_ns)
373 self.init_create_namespaces(user_ns, user_global_ns)
374 # This has to be done after init_create_namespaces because it uses
374 # This has to be done after init_create_namespaces because it uses
375 # something in self.user_ns, but before init_sys_modules, which
375 # something in self.user_ns, but before init_sys_modules, which
376 # is the first thing to modify sys.
376 # is the first thing to modify sys.
377 # TODO: When we override sys.stdout and sys.stderr before this class
377 # TODO: When we override sys.stdout and sys.stderr before this class
378 # is created, we are saving the overridden ones here. Not sure if this
378 # is created, we are saving the overridden ones here. Not sure if this
379 # is what we want to do.
379 # is what we want to do.
380 self.save_sys_module_state()
380 self.save_sys_module_state()
381 self.init_sys_modules()
381 self.init_sys_modules()
382
382
383 # While we're trying to have each part of the code directly access what
383 # While we're trying to have each part of the code directly access what
384 # it needs without keeping redundant references to objects, we have too
384 # it needs without keeping redundant references to objects, we have too
385 # much legacy code that expects ip.db to exist.
385 # much legacy code that expects ip.db to exist.
386 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
386 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
387
387
388 self.init_history()
388 self.init_history()
389 self.init_encoding()
389 self.init_encoding()
390 self.init_prefilter()
390 self.init_prefilter()
391
391
392 Magic.__init__(self, self)
392 Magic.__init__(self, self)
393
393
394 self.init_syntax_highlighting()
394 self.init_syntax_highlighting()
395 self.init_hooks()
395 self.init_hooks()
396 self.init_pushd_popd_magic()
396 self.init_pushd_popd_magic()
397 # self.init_traceback_handlers use to be here, but we moved it below
397 # self.init_traceback_handlers use to be here, but we moved it below
398 # because it and init_io have to come after init_readline.
398 # because it and init_io have to come after init_readline.
399 self.init_user_ns()
399 self.init_user_ns()
400 self.init_logger()
400 self.init_logger()
401 self.init_alias()
401 self.init_alias()
402 self.init_builtins()
402 self.init_builtins()
403
403
404 # pre_config_initialization
404 # pre_config_initialization
405
405
406 # The next section should contain everything that was in ipmaker.
406 # The next section should contain everything that was in ipmaker.
407 self.init_logstart()
407 self.init_logstart()
408
408
409 # The following was in post_config_initialization
409 # The following was in post_config_initialization
410 self.init_inspector()
410 self.init_inspector()
411 # init_readline() must come before init_io(), because init_io uses
411 # init_readline() must come before init_io(), because init_io uses
412 # readline related things.
412 # readline related things.
413 self.init_readline()
413 self.init_readline()
414 # init_completer must come after init_readline, because it needs to
414 # init_completer must come after init_readline, because it needs to
415 # know whether readline is present or not system-wide to configure the
415 # know whether readline is present or not system-wide to configure the
416 # completers, since the completion machinery can now operate
416 # completers, since the completion machinery can now operate
417 # independently of readline (e.g. over the network)
417 # independently of readline (e.g. over the network)
418 self.init_completer()
418 self.init_completer()
419 # TODO: init_io() needs to happen before init_traceback handlers
419 # TODO: init_io() needs to happen before init_traceback handlers
420 # because the traceback handlers hardcode the stdout/stderr streams.
420 # because the traceback handlers hardcode the stdout/stderr streams.
421 # This logic in in debugger.Pdb and should eventually be changed.
421 # This logic in in debugger.Pdb and should eventually be changed.
422 self.init_io()
422 self.init_io()
423 self.init_traceback_handlers(custom_exceptions)
423 self.init_traceback_handlers(custom_exceptions)
424 self.init_prompts()
424 self.init_prompts()
425 self.init_display_formatter()
425 self.init_display_formatter()
426 self.init_display_pub()
426 self.init_display_pub()
427 self.init_displayhook()
427 self.init_displayhook()
428 self.init_reload_doctest()
428 self.init_reload_doctest()
429 self.init_magics()
429 self.init_magics()
430 self.init_pdb()
430 self.init_pdb()
431 self.init_extension_manager()
431 self.init_extension_manager()
432 self.init_plugin_manager()
432 self.init_plugin_manager()
433 self.init_payload()
433 self.init_payload()
434 self.hooks.late_startup_hook()
434 self.hooks.late_startup_hook()
435 atexit.register(self.atexit_operations)
435 atexit.register(self.atexit_operations)
436
436
437 def get_ipython(self):
437 def get_ipython(self):
438 """Return the currently running IPython instance."""
438 """Return the currently running IPython instance."""
439 return self
439 return self
440
440
441 #-------------------------------------------------------------------------
441 #-------------------------------------------------------------------------
442 # Trait changed handlers
442 # Trait changed handlers
443 #-------------------------------------------------------------------------
443 #-------------------------------------------------------------------------
444
444
445 def _ipython_dir_changed(self, name, new):
445 def _ipython_dir_changed(self, name, new):
446 if not os.path.isdir(new):
446 if not os.path.isdir(new):
447 os.makedirs(new, mode = 0777)
447 os.makedirs(new, mode = 0777)
448
448
449 def set_autoindent(self,value=None):
449 def set_autoindent(self,value=None):
450 """Set the autoindent flag, checking for readline support.
450 """Set the autoindent flag, checking for readline support.
451
451
452 If called with no arguments, it acts as a toggle."""
452 If called with no arguments, it acts as a toggle."""
453
453
454 if not self.has_readline:
454 if not self.has_readline:
455 if os.name == 'posix':
455 if os.name == 'posix':
456 warn("The auto-indent feature requires the readline library")
456 warn("The auto-indent feature requires the readline library")
457 self.autoindent = 0
457 self.autoindent = 0
458 return
458 return
459 if value is None:
459 if value is None:
460 self.autoindent = not self.autoindent
460 self.autoindent = not self.autoindent
461 else:
461 else:
462 self.autoindent = value
462 self.autoindent = value
463
463
464 #-------------------------------------------------------------------------
464 #-------------------------------------------------------------------------
465 # init_* methods called by __init__
465 # init_* methods called by __init__
466 #-------------------------------------------------------------------------
466 #-------------------------------------------------------------------------
467
467
468 def init_ipython_dir(self, ipython_dir):
468 def init_ipython_dir(self, ipython_dir):
469 if ipython_dir is not None:
469 if ipython_dir is not None:
470 self.ipython_dir = ipython_dir
470 self.ipython_dir = ipython_dir
471 return
471 return
472
472
473 self.ipython_dir = get_ipython_dir()
473 self.ipython_dir = get_ipython_dir()
474
474
475 def init_profile_dir(self, profile_dir):
475 def init_profile_dir(self, profile_dir):
476 if profile_dir is not None:
476 if profile_dir is not None:
477 self.profile_dir = profile_dir
477 self.profile_dir = profile_dir
478 return
478 return
479 self.profile_dir =\
479 self.profile_dir =\
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
481
481
482 def init_instance_attrs(self):
482 def init_instance_attrs(self):
483 self.more = False
483 self.more = False
484
484
485 # command compiler
485 # command compiler
486 self.compile = CachingCompiler()
486 self.compile = CachingCompiler()
487
487
488 # Make an empty namespace, which extension writers can rely on both
488 # Make an empty namespace, which extension writers can rely on both
489 # existing and NEVER being used by ipython itself. This gives them a
489 # existing and NEVER being used by ipython itself. This gives them a
490 # convenient location for storing additional information and state
490 # convenient location for storing additional information and state
491 # their extensions may require, without fear of collisions with other
491 # their extensions may require, without fear of collisions with other
492 # ipython names that may develop later.
492 # ipython names that may develop later.
493 self.meta = Struct()
493 self.meta = Struct()
494
494
495 # Temporary files used for various purposes. Deleted at exit.
495 # Temporary files used for various purposes. Deleted at exit.
496 self.tempfiles = []
496 self.tempfiles = []
497
497
498 # Keep track of readline usage (later set by init_readline)
498 # Keep track of readline usage (later set by init_readline)
499 self.has_readline = False
499 self.has_readline = False
500
500
501 # keep track of where we started running (mainly for crash post-mortem)
501 # keep track of where we started running (mainly for crash post-mortem)
502 # This is not being used anywhere currently.
502 # This is not being used anywhere currently.
503 self.starting_dir = os.getcwd()
503 self.starting_dir = os.getcwd()
504
504
505 # Indentation management
505 # Indentation management
506 self.indent_current_nsp = 0
506 self.indent_current_nsp = 0
507
507
508 # Dict to track post-execution functions that have been registered
508 # Dict to track post-execution functions that have been registered
509 self._post_execute = {}
509 self._post_execute = {}
510
510
511 def init_environment(self):
511 def init_environment(self):
512 """Any changes we need to make to the user's environment."""
512 """Any changes we need to make to the user's environment."""
513 pass
513 pass
514
514
515 def init_encoding(self):
515 def init_encoding(self):
516 # Get system encoding at startup time. Certain terminals (like Emacs
516 # Get system encoding at startup time. Certain terminals (like Emacs
517 # under Win32 have it set to None, and we need to have a known valid
517 # under Win32 have it set to None, and we need to have a known valid
518 # encoding to use in the raw_input() method
518 # encoding to use in the raw_input() method
519 try:
519 try:
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
521 except AttributeError:
521 except AttributeError:
522 self.stdin_encoding = 'ascii'
522 self.stdin_encoding = 'ascii'
523
523
524 def init_syntax_highlighting(self):
524 def init_syntax_highlighting(self):
525 # Python source parser/formatter for syntax highlighting
525 # Python source parser/formatter for syntax highlighting
526 pyformat = PyColorize.Parser().format
526 pyformat = PyColorize.Parser().format
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
528
528
529 def init_pushd_popd_magic(self):
529 def init_pushd_popd_magic(self):
530 # for pushd/popd management
530 # for pushd/popd management
531 try:
531 try:
532 self.home_dir = get_home_dir()
532 self.home_dir = get_home_dir()
533 except HomeDirError, msg:
533 except HomeDirError, msg:
534 fatal(msg)
534 fatal(msg)
535
535
536 self.dir_stack = []
536 self.dir_stack = []
537
537
538 def init_logger(self):
538 def init_logger(self):
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
540 logmode='rotate')
540 logmode='rotate')
541
541
542 def init_logstart(self):
542 def init_logstart(self):
543 """Initialize logging in case it was requested at the command line.
543 """Initialize logging in case it was requested at the command line.
544 """
544 """
545 if self.logappend:
545 if self.logappend:
546 self.magic_logstart(self.logappend + ' append')
546 self.magic_logstart(self.logappend + ' append')
547 elif self.logfile:
547 elif self.logfile:
548 self.magic_logstart(self.logfile)
548 self.magic_logstart(self.logfile)
549 elif self.logstart:
549 elif self.logstart:
550 self.magic_logstart()
550 self.magic_logstart()
551
551
552 def init_builtins(self):
552 def init_builtins(self):
553 self.builtin_trap = BuiltinTrap(shell=self)
553 self.builtin_trap = BuiltinTrap(shell=self)
554
554
555 def init_inspector(self):
555 def init_inspector(self):
556 # Object inspector
556 # Object inspector
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
558 PyColorize.ANSICodeColors,
558 PyColorize.ANSICodeColors,
559 'NoColor',
559 'NoColor',
560 self.object_info_string_level)
560 self.object_info_string_level)
561
561
562 def init_io(self):
562 def init_io(self):
563 # This will just use sys.stdout and sys.stderr. If you want to
563 # This will just use sys.stdout and sys.stderr. If you want to
564 # override sys.stdout and sys.stderr themselves, you need to do that
564 # override sys.stdout and sys.stderr themselves, you need to do that
565 # *before* instantiating this class, because io holds onto
565 # *before* instantiating this class, because io holds onto
566 # references to the underlying streams.
566 # references to the underlying streams.
567 if sys.platform == 'win32' and self.has_readline:
567 if sys.platform == 'win32' and self.has_readline:
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
569 else:
569 else:
570 io.stdout = io.IOStream(sys.stdout)
570 io.stdout = io.IOStream(sys.stdout)
571 io.stderr = io.IOStream(sys.stderr)
571 io.stderr = io.IOStream(sys.stderr)
572
572
573 def init_prompts(self):
573 def init_prompts(self):
574 # TODO: This is a pass for now because the prompts are managed inside
574 # TODO: This is a pass for now because the prompts are managed inside
575 # the DisplayHook. Once there is a separate prompt manager, this
575 # the DisplayHook. Once there is a separate prompt manager, this
576 # will initialize that object and all prompt related information.
576 # will initialize that object and all prompt related information.
577 pass
577 pass
578
578
579 def init_display_formatter(self):
579 def init_display_formatter(self):
580 self.display_formatter = DisplayFormatter(config=self.config)
580 self.display_formatter = DisplayFormatter(config=self.config)
581
581
582 def init_display_pub(self):
582 def init_display_pub(self):
583 self.display_pub = self.display_pub_class(config=self.config)
583 self.display_pub = self.display_pub_class(config=self.config)
584
584
585 def init_displayhook(self):
585 def init_displayhook(self):
586 # Initialize displayhook, set in/out prompts and printing system
586 # Initialize displayhook, set in/out prompts and printing system
587 self.displayhook = self.displayhook_class(
587 self.displayhook = self.displayhook_class(
588 config=self.config,
588 config=self.config,
589 shell=self,
589 shell=self,
590 cache_size=self.cache_size,
590 cache_size=self.cache_size,
591 input_sep = self.separate_in,
591 input_sep = self.separate_in,
592 output_sep = self.separate_out,
592 output_sep = self.separate_out,
593 output_sep2 = self.separate_out2,
593 output_sep2 = self.separate_out2,
594 ps1 = self.prompt_in1,
594 ps1 = self.prompt_in1,
595 ps2 = self.prompt_in2,
595 ps2 = self.prompt_in2,
596 ps_out = self.prompt_out,
596 ps_out = self.prompt_out,
597 pad_left = self.prompts_pad_left
597 pad_left = self.prompts_pad_left
598 )
598 )
599 # This is a context manager that installs/revmoes the displayhook at
599 # This is a context manager that installs/revmoes the displayhook at
600 # the appropriate time.
600 # the appropriate time.
601 self.display_trap = DisplayTrap(hook=self.displayhook)
601 self.display_trap = DisplayTrap(hook=self.displayhook)
602
602
603 def init_reload_doctest(self):
603 def init_reload_doctest(self):
604 # Do a proper resetting of doctest, including the necessary displayhook
604 # Do a proper resetting of doctest, including the necessary displayhook
605 # monkeypatching
605 # monkeypatching
606 try:
606 try:
607 doctest_reload()
607 doctest_reload()
608 except ImportError:
608 except ImportError:
609 warn("doctest module does not exist.")
609 warn("doctest module does not exist.")
610
610
611 #-------------------------------------------------------------------------
611 #-------------------------------------------------------------------------
612 # Things related to injections into the sys module
612 # Things related to injections into the sys module
613 #-------------------------------------------------------------------------
613 #-------------------------------------------------------------------------
614
614
615 def save_sys_module_state(self):
615 def save_sys_module_state(self):
616 """Save the state of hooks in the sys module.
616 """Save the state of hooks in the sys module.
617
617
618 This has to be called after self.user_ns is created.
618 This has to be called after self.user_ns is created.
619 """
619 """
620 self._orig_sys_module_state = {}
620 self._orig_sys_module_state = {}
621 self._orig_sys_module_state['stdin'] = sys.stdin
621 self._orig_sys_module_state['stdin'] = sys.stdin
622 self._orig_sys_module_state['stdout'] = sys.stdout
622 self._orig_sys_module_state['stdout'] = sys.stdout
623 self._orig_sys_module_state['stderr'] = sys.stderr
623 self._orig_sys_module_state['stderr'] = sys.stderr
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
625 try:
625 try:
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
627 except KeyError:
627 except KeyError:
628 pass
628 pass
629
629
630 def restore_sys_module_state(self):
630 def restore_sys_module_state(self):
631 """Restore the state of the sys module."""
631 """Restore the state of the sys module."""
632 try:
632 try:
633 for k, v in self._orig_sys_module_state.iteritems():
633 for k, v in self._orig_sys_module_state.iteritems():
634 setattr(sys, k, v)
634 setattr(sys, k, v)
635 except AttributeError:
635 except AttributeError:
636 pass
636 pass
637 # Reset what what done in self.init_sys_modules
637 # Reset what what done in self.init_sys_modules
638 try:
638 try:
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
640 except (AttributeError, KeyError):
640 except (AttributeError, KeyError):
641 pass
641 pass
642
642
643 #-------------------------------------------------------------------------
643 #-------------------------------------------------------------------------
644 # Things related to hooks
644 # Things related to hooks
645 #-------------------------------------------------------------------------
645 #-------------------------------------------------------------------------
646
646
647 def init_hooks(self):
647 def init_hooks(self):
648 # hooks holds pointers used for user-side customizations
648 # hooks holds pointers used for user-side customizations
649 self.hooks = Struct()
649 self.hooks = Struct()
650
650
651 self.strdispatchers = {}
651 self.strdispatchers = {}
652
652
653 # Set all default hooks, defined in the IPython.hooks module.
653 # Set all default hooks, defined in the IPython.hooks module.
654 hooks = IPython.core.hooks
654 hooks = IPython.core.hooks
655 for hook_name in hooks.__all__:
655 for hook_name in hooks.__all__:
656 # default hooks have priority 100, i.e. low; user hooks should have
656 # default hooks have priority 100, i.e. low; user hooks should have
657 # 0-100 priority
657 # 0-100 priority
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
659
659
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
661 """set_hook(name,hook) -> sets an internal IPython hook.
661 """set_hook(name,hook) -> sets an internal IPython hook.
662
662
663 IPython exposes some of its internal API as user-modifiable hooks. By
663 IPython exposes some of its internal API as user-modifiable hooks. By
664 adding your function to one of these hooks, you can modify IPython's
664 adding your function to one of these hooks, you can modify IPython's
665 behavior to call at runtime your own routines."""
665 behavior to call at runtime your own routines."""
666
666
667 # At some point in the future, this should validate the hook before it
667 # At some point in the future, this should validate the hook before it
668 # accepts it. Probably at least check that the hook takes the number
668 # accepts it. Probably at least check that the hook takes the number
669 # of args it's supposed to.
669 # of args it's supposed to.
670
670
671 f = types.MethodType(hook,self)
671 f = types.MethodType(hook,self)
672
672
673 # check if the hook is for strdispatcher first
673 # check if the hook is for strdispatcher first
674 if str_key is not None:
674 if str_key is not None:
675 sdp = self.strdispatchers.get(name, StrDispatch())
675 sdp = self.strdispatchers.get(name, StrDispatch())
676 sdp.add_s(str_key, f, priority )
676 sdp.add_s(str_key, f, priority )
677 self.strdispatchers[name] = sdp
677 self.strdispatchers[name] = sdp
678 return
678 return
679 if re_key is not None:
679 if re_key is not None:
680 sdp = self.strdispatchers.get(name, StrDispatch())
680 sdp = self.strdispatchers.get(name, StrDispatch())
681 sdp.add_re(re.compile(re_key), f, priority )
681 sdp.add_re(re.compile(re_key), f, priority )
682 self.strdispatchers[name] = sdp
682 self.strdispatchers[name] = sdp
683 return
683 return
684
684
685 dp = getattr(self.hooks, name, None)
685 dp = getattr(self.hooks, name, None)
686 if name not in IPython.core.hooks.__all__:
686 if name not in IPython.core.hooks.__all__:
687 print "Warning! Hook '%s' is not one of %s" % \
687 print "Warning! Hook '%s' is not one of %s" % \
688 (name, IPython.core.hooks.__all__ )
688 (name, IPython.core.hooks.__all__ )
689 if not dp:
689 if not dp:
690 dp = IPython.core.hooks.CommandChainDispatcher()
690 dp = IPython.core.hooks.CommandChainDispatcher()
691
691
692 try:
692 try:
693 dp.add(f,priority)
693 dp.add(f,priority)
694 except AttributeError:
694 except AttributeError:
695 # it was not commandchain, plain old func - replace
695 # it was not commandchain, plain old func - replace
696 dp = f
696 dp = f
697
697
698 setattr(self.hooks,name, dp)
698 setattr(self.hooks,name, dp)
699
699
700 def register_post_execute(self, func):
700 def register_post_execute(self, func):
701 """Register a function for calling after code execution.
701 """Register a function for calling after code execution.
702 """
702 """
703 if not callable(func):
703 if not callable(func):
704 raise ValueError('argument %s must be callable' % func)
704 raise ValueError('argument %s must be callable' % func)
705 self._post_execute[func] = True
705 self._post_execute[func] = True
706
706
707 #-------------------------------------------------------------------------
707 #-------------------------------------------------------------------------
708 # Things related to the "main" module
708 # Things related to the "main" module
709 #-------------------------------------------------------------------------
709 #-------------------------------------------------------------------------
710
710
711 def new_main_mod(self,ns=None):
711 def new_main_mod(self,ns=None):
712 """Return a new 'main' module object for user code execution.
712 """Return a new 'main' module object for user code execution.
713 """
713 """
714 main_mod = self._user_main_module
714 main_mod = self._user_main_module
715 init_fakemod_dict(main_mod,ns)
715 init_fakemod_dict(main_mod,ns)
716 return main_mod
716 return main_mod
717
717
718 def cache_main_mod(self,ns,fname):
718 def cache_main_mod(self,ns,fname):
719 """Cache a main module's namespace.
719 """Cache a main module's namespace.
720
720
721 When scripts are executed via %run, we must keep a reference to the
721 When scripts are executed via %run, we must keep a reference to the
722 namespace of their __main__ module (a FakeModule instance) around so
722 namespace of their __main__ module (a FakeModule instance) around so
723 that Python doesn't clear it, rendering objects defined therein
723 that Python doesn't clear it, rendering objects defined therein
724 useless.
724 useless.
725
725
726 This method keeps said reference in a private dict, keyed by the
726 This method keeps said reference in a private dict, keyed by the
727 absolute path of the module object (which corresponds to the script
727 absolute path of the module object (which corresponds to the script
728 path). This way, for multiple executions of the same script we only
728 path). This way, for multiple executions of the same script we only
729 keep one copy of the namespace (the last one), thus preventing memory
729 keep one copy of the namespace (the last one), thus preventing memory
730 leaks from old references while allowing the objects from the last
730 leaks from old references while allowing the objects from the last
731 execution to be accessible.
731 execution to be accessible.
732
732
733 Note: we can not allow the actual FakeModule instances to be deleted,
733 Note: we can not allow the actual FakeModule instances to be deleted,
734 because of how Python tears down modules (it hard-sets all their
734 because of how Python tears down modules (it hard-sets all their
735 references to None without regard for reference counts). This method
735 references to None without regard for reference counts). This method
736 must therefore make a *copy* of the given namespace, to allow the
736 must therefore make a *copy* of the given namespace, to allow the
737 original module's __dict__ to be cleared and reused.
737 original module's __dict__ to be cleared and reused.
738
738
739
739
740 Parameters
740 Parameters
741 ----------
741 ----------
742 ns : a namespace (a dict, typically)
742 ns : a namespace (a dict, typically)
743
743
744 fname : str
744 fname : str
745 Filename associated with the namespace.
745 Filename associated with the namespace.
746
746
747 Examples
747 Examples
748 --------
748 --------
749
749
750 In [10]: import IPython
750 In [10]: import IPython
751
751
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
753
753
754 In [12]: IPython.__file__ in _ip._main_ns_cache
754 In [12]: IPython.__file__ in _ip._main_ns_cache
755 Out[12]: True
755 Out[12]: True
756 """
756 """
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
758
758
759 def clear_main_mod_cache(self):
759 def clear_main_mod_cache(self):
760 """Clear the cache of main modules.
760 """Clear the cache of main modules.
761
761
762 Mainly for use by utilities like %reset.
762 Mainly for use by utilities like %reset.
763
763
764 Examples
764 Examples
765 --------
765 --------
766
766
767 In [15]: import IPython
767 In [15]: import IPython
768
768
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
770
770
771 In [17]: len(_ip._main_ns_cache) > 0
771 In [17]: len(_ip._main_ns_cache) > 0
772 Out[17]: True
772 Out[17]: True
773
773
774 In [18]: _ip.clear_main_mod_cache()
774 In [18]: _ip.clear_main_mod_cache()
775
775
776 In [19]: len(_ip._main_ns_cache) == 0
776 In [19]: len(_ip._main_ns_cache) == 0
777 Out[19]: True
777 Out[19]: True
778 """
778 """
779 self._main_ns_cache.clear()
779 self._main_ns_cache.clear()
780
780
781 #-------------------------------------------------------------------------
781 #-------------------------------------------------------------------------
782 # Things related to debugging
782 # Things related to debugging
783 #-------------------------------------------------------------------------
783 #-------------------------------------------------------------------------
784
784
785 def init_pdb(self):
785 def init_pdb(self):
786 # Set calling of pdb on exceptions
786 # Set calling of pdb on exceptions
787 # self.call_pdb is a property
787 # self.call_pdb is a property
788 self.call_pdb = self.pdb
788 self.call_pdb = self.pdb
789
789
790 def _get_call_pdb(self):
790 def _get_call_pdb(self):
791 return self._call_pdb
791 return self._call_pdb
792
792
793 def _set_call_pdb(self,val):
793 def _set_call_pdb(self,val):
794
794
795 if val not in (0,1,False,True):
795 if val not in (0,1,False,True):
796 raise ValueError,'new call_pdb value must be boolean'
796 raise ValueError,'new call_pdb value must be boolean'
797
797
798 # store value in instance
798 # store value in instance
799 self._call_pdb = val
799 self._call_pdb = val
800
800
801 # notify the actual exception handlers
801 # notify the actual exception handlers
802 self.InteractiveTB.call_pdb = val
802 self.InteractiveTB.call_pdb = val
803
803
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
805 'Control auto-activation of pdb at exceptions')
805 'Control auto-activation of pdb at exceptions')
806
806
807 def debugger(self,force=False):
807 def debugger(self,force=False):
808 """Call the pydb/pdb debugger.
808 """Call the pydb/pdb debugger.
809
809
810 Keywords:
810 Keywords:
811
811
812 - force(False): by default, this routine checks the instance call_pdb
812 - force(False): by default, this routine checks the instance call_pdb
813 flag and does not actually invoke the debugger if the flag is false.
813 flag and does not actually invoke the debugger if the flag is false.
814 The 'force' option forces the debugger to activate even if the flag
814 The 'force' option forces the debugger to activate even if the flag
815 is false.
815 is false.
816 """
816 """
817
817
818 if not (force or self.call_pdb):
818 if not (force or self.call_pdb):
819 return
819 return
820
820
821 if not hasattr(sys,'last_traceback'):
821 if not hasattr(sys,'last_traceback'):
822 error('No traceback has been produced, nothing to debug.')
822 error('No traceback has been produced, nothing to debug.')
823 return
823 return
824
824
825 # use pydb if available
825 # use pydb if available
826 if debugger.has_pydb:
826 if debugger.has_pydb:
827 from pydb import pm
827 from pydb import pm
828 else:
828 else:
829 # fallback to our internal debugger
829 # fallback to our internal debugger
830 pm = lambda : self.InteractiveTB.debugger(force=True)
830 pm = lambda : self.InteractiveTB.debugger(force=True)
831
831
832 with self.readline_no_record:
832 with self.readline_no_record:
833 pm()
833 pm()
834
834
835 #-------------------------------------------------------------------------
835 #-------------------------------------------------------------------------
836 # Things related to IPython's various namespaces
836 # Things related to IPython's various namespaces
837 #-------------------------------------------------------------------------
837 #-------------------------------------------------------------------------
838
838
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
840 # Create the namespace where the user will operate. user_ns is
840 # Create the namespace where the user will operate. user_ns is
841 # normally the only one used, and it is passed to the exec calls as
841 # normally the only one used, and it is passed to the exec calls as
842 # the locals argument. But we do carry a user_global_ns namespace
842 # the locals argument. But we do carry a user_global_ns namespace
843 # given as the exec 'globals' argument, This is useful in embedding
843 # given as the exec 'globals' argument, This is useful in embedding
844 # situations where the ipython shell opens in a context where the
844 # situations where the ipython shell opens in a context where the
845 # distinction between locals and globals is meaningful. For
845 # distinction between locals and globals is meaningful. For
846 # non-embedded contexts, it is just the same object as the user_ns dict.
846 # non-embedded contexts, it is just the same object as the user_ns dict.
847
847
848 # FIXME. For some strange reason, __builtins__ is showing up at user
848 # FIXME. For some strange reason, __builtins__ is showing up at user
849 # level as a dict instead of a module. This is a manual fix, but I
849 # level as a dict instead of a module. This is a manual fix, but I
850 # should really track down where the problem is coming from. Alex
850 # should really track down where the problem is coming from. Alex
851 # Schmolck reported this problem first.
851 # Schmolck reported this problem first.
852
852
853 # A useful post by Alex Martelli on this topic:
853 # A useful post by Alex Martelli on this topic:
854 # Re: inconsistent value from __builtins__
854 # Re: inconsistent value from __builtins__
855 # Von: Alex Martelli <aleaxit@yahoo.com>
855 # Von: Alex Martelli <aleaxit@yahoo.com>
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
857 # Gruppen: comp.lang.python
857 # Gruppen: comp.lang.python
858
858
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
861 # > <type 'dict'>
861 # > <type 'dict'>
862 # > >>> print type(__builtins__)
862 # > >>> print type(__builtins__)
863 # > <type 'module'>
863 # > <type 'module'>
864 # > Is this difference in return value intentional?
864 # > Is this difference in return value intentional?
865
865
866 # Well, it's documented that '__builtins__' can be either a dictionary
866 # Well, it's documented that '__builtins__' can be either a dictionary
867 # or a module, and it's been that way for a long time. Whether it's
867 # or a module, and it's been that way for a long time. Whether it's
868 # intentional (or sensible), I don't know. In any case, the idea is
868 # intentional (or sensible), I don't know. In any case, the idea is
869 # that if you need to access the built-in namespace directly, you
869 # that if you need to access the built-in namespace directly, you
870 # should start with "import __builtin__" (note, no 's') which will
870 # should start with "import __builtin__" (note, no 's') which will
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
872
872
873 # These routines return properly built dicts as needed by the rest of
873 # These routines return properly built dicts as needed by the rest of
874 # the code, and can also be used by extension writers to generate
874 # the code, and can also be used by extension writers to generate
875 # properly initialized namespaces.
875 # properly initialized namespaces.
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
877 user_global_ns)
877 user_global_ns)
878
878
879 # Assign namespaces
879 # Assign namespaces
880 # This is the namespace where all normal user variables live
880 # This is the namespace where all normal user variables live
881 self.user_ns = user_ns
881 self.user_ns = user_ns
882 self.user_global_ns = user_global_ns
882 self.user_global_ns = user_global_ns
883
883
884 # An auxiliary namespace that checks what parts of the user_ns were
884 # An auxiliary namespace that checks what parts of the user_ns were
885 # loaded at startup, so we can list later only variables defined in
885 # loaded at startup, so we can list later only variables defined in
886 # actual interactive use. Since it is always a subset of user_ns, it
886 # actual interactive use. Since it is always a subset of user_ns, it
887 # doesn't need to be separately tracked in the ns_table.
887 # doesn't need to be separately tracked in the ns_table.
888 self.user_ns_hidden = {}
888 self.user_ns_hidden = {}
889
889
890 # A namespace to keep track of internal data structures to prevent
890 # A namespace to keep track of internal data structures to prevent
891 # them from cluttering user-visible stuff. Will be updated later
891 # them from cluttering user-visible stuff. Will be updated later
892 self.internal_ns = {}
892 self.internal_ns = {}
893
893
894 # Now that FakeModule produces a real module, we've run into a nasty
894 # Now that FakeModule produces a real module, we've run into a nasty
895 # problem: after script execution (via %run), the module where the user
895 # problem: after script execution (via %run), the module where the user
896 # code ran is deleted. Now that this object is a true module (needed
896 # code ran is deleted. Now that this object is a true module (needed
897 # so docetst and other tools work correctly), the Python module
897 # so docetst and other tools work correctly), the Python module
898 # teardown mechanism runs over it, and sets to None every variable
898 # teardown mechanism runs over it, and sets to None every variable
899 # present in that module. Top-level references to objects from the
899 # present in that module. Top-level references to objects from the
900 # script survive, because the user_ns is updated with them. However,
900 # script survive, because the user_ns is updated with them. However,
901 # calling functions defined in the script that use other things from
901 # calling functions defined in the script that use other things from
902 # the script will fail, because the function's closure had references
902 # the script will fail, because the function's closure had references
903 # to the original objects, which are now all None. So we must protect
903 # to the original objects, which are now all None. So we must protect
904 # these modules from deletion by keeping a cache.
904 # these modules from deletion by keeping a cache.
905 #
905 #
906 # To avoid keeping stale modules around (we only need the one from the
906 # To avoid keeping stale modules around (we only need the one from the
907 # last run), we use a dict keyed with the full path to the script, so
907 # last run), we use a dict keyed with the full path to the script, so
908 # only the last version of the module is held in the cache. Note,
908 # only the last version of the module is held in the cache. Note,
909 # however, that we must cache the module *namespace contents* (their
909 # however, that we must cache the module *namespace contents* (their
910 # __dict__). Because if we try to cache the actual modules, old ones
910 # __dict__). Because if we try to cache the actual modules, old ones
911 # (uncached) could be destroyed while still holding references (such as
911 # (uncached) could be destroyed while still holding references (such as
912 # those held by GUI objects that tend to be long-lived)>
912 # those held by GUI objects that tend to be long-lived)>
913 #
913 #
914 # The %reset command will flush this cache. See the cache_main_mod()
914 # The %reset command will flush this cache. See the cache_main_mod()
915 # and clear_main_mod_cache() methods for details on use.
915 # and clear_main_mod_cache() methods for details on use.
916
916
917 # This is the cache used for 'main' namespaces
917 # This is the cache used for 'main' namespaces
918 self._main_ns_cache = {}
918 self._main_ns_cache = {}
919 # And this is the single instance of FakeModule whose __dict__ we keep
919 # And this is the single instance of FakeModule whose __dict__ we keep
920 # copying and clearing for reuse on each %run
920 # copying and clearing for reuse on each %run
921 self._user_main_module = FakeModule()
921 self._user_main_module = FakeModule()
922
922
923 # A table holding all the namespaces IPython deals with, so that
923 # A table holding all the namespaces IPython deals with, so that
924 # introspection facilities can search easily.
924 # introspection facilities can search easily.
925 self.ns_table = {'user':user_ns,
925 self.ns_table = {'user':user_ns,
926 'user_global':user_global_ns,
926 'user_global':user_global_ns,
927 'internal':self.internal_ns,
927 'internal':self.internal_ns,
928 'builtin':__builtin__.__dict__
928 'builtin':__builtin__.__dict__
929 }
929 }
930
930
931 # Similarly, track all namespaces where references can be held and that
931 # Similarly, track all namespaces where references can be held and that
932 # we can safely clear (so it can NOT include builtin). This one can be
932 # we can safely clear (so it can NOT include builtin). This one can be
933 # a simple list. Note that the main execution namespaces, user_ns and
933 # a simple list. Note that the main execution namespaces, user_ns and
934 # user_global_ns, can NOT be listed here, as clearing them blindly
934 # user_global_ns, can NOT be listed here, as clearing them blindly
935 # causes errors in object __del__ methods. Instead, the reset() method
935 # causes errors in object __del__ methods. Instead, the reset() method
936 # clears them manually and carefully.
936 # clears them manually and carefully.
937 self.ns_refs_table = [ self.user_ns_hidden,
937 self.ns_refs_table = [ self.user_ns_hidden,
938 self.internal_ns, self._main_ns_cache ]
938 self.internal_ns, self._main_ns_cache ]
939
939
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
941 """Return a valid local and global user interactive namespaces.
941 """Return a valid local and global user interactive namespaces.
942
942
943 This builds a dict with the minimal information needed to operate as a
943 This builds a dict with the minimal information needed to operate as a
944 valid IPython user namespace, which you can pass to the various
944 valid IPython user namespace, which you can pass to the various
945 embedding classes in ipython. The default implementation returns the
945 embedding classes in ipython. The default implementation returns the
946 same dict for both the locals and the globals to allow functions to
946 same dict for both the locals and the globals to allow functions to
947 refer to variables in the namespace. Customized implementations can
947 refer to variables in the namespace. Customized implementations can
948 return different dicts. The locals dictionary can actually be anything
948 return different dicts. The locals dictionary can actually be anything
949 following the basic mapping protocol of a dict, but the globals dict
949 following the basic mapping protocol of a dict, but the globals dict
950 must be a true dict, not even a subclass. It is recommended that any
950 must be a true dict, not even a subclass. It is recommended that any
951 custom object for the locals namespace synchronize with the globals
951 custom object for the locals namespace synchronize with the globals
952 dict somehow.
952 dict somehow.
953
953
954 Raises TypeError if the provided globals namespace is not a true dict.
954 Raises TypeError if the provided globals namespace is not a true dict.
955
955
956 Parameters
956 Parameters
957 ----------
957 ----------
958 user_ns : dict-like, optional
958 user_ns : dict-like, optional
959 The current user namespace. The items in this namespace should
959 The current user namespace. The items in this namespace should
960 be included in the output. If None, an appropriate blank
960 be included in the output. If None, an appropriate blank
961 namespace should be created.
961 namespace should be created.
962 user_global_ns : dict, optional
962 user_global_ns : dict, optional
963 The current user global namespace. The items in this namespace
963 The current user global namespace. The items in this namespace
964 should be included in the output. If None, an appropriate
964 should be included in the output. If None, an appropriate
965 blank namespace should be created.
965 blank namespace should be created.
966
966
967 Returns
967 Returns
968 -------
968 -------
969 A pair of dictionary-like object to be used as the local namespace
969 A pair of dictionary-like object to be used as the local namespace
970 of the interpreter and a dict to be used as the global namespace.
970 of the interpreter and a dict to be used as the global namespace.
971 """
971 """
972
972
973
973
974 # We must ensure that __builtin__ (without the final 's') is always
974 # We must ensure that __builtin__ (without the final 's') is always
975 # available and pointing to the __builtin__ *module*. For more details:
975 # available and pointing to the __builtin__ *module*. For more details:
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
977
977
978 if user_ns is None:
978 if user_ns is None:
979 # Set __name__ to __main__ to better match the behavior of the
979 # Set __name__ to __main__ to better match the behavior of the
980 # normal interpreter.
980 # normal interpreter.
981 user_ns = {'__name__' :'__main__',
981 user_ns = {'__name__' :'__main__',
982 '__builtin__' : __builtin__,
982 '__builtin__' : __builtin__,
983 '__builtins__' : __builtin__,
983 '__builtins__' : __builtin__,
984 }
984 }
985 else:
985 else:
986 user_ns.setdefault('__name__','__main__')
986 user_ns.setdefault('__name__','__main__')
987 user_ns.setdefault('__builtin__',__builtin__)
987 user_ns.setdefault('__builtin__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
989
989
990 if user_global_ns is None:
990 if user_global_ns is None:
991 user_global_ns = user_ns
991 user_global_ns = user_ns
992 if type(user_global_ns) is not dict:
992 if type(user_global_ns) is not dict:
993 raise TypeError("user_global_ns must be a true dict; got %r"
993 raise TypeError("user_global_ns must be a true dict; got %r"
994 % type(user_global_ns))
994 % type(user_global_ns))
995
995
996 return user_ns, user_global_ns
996 return user_ns, user_global_ns
997
997
998 def init_sys_modules(self):
998 def init_sys_modules(self):
999 # We need to insert into sys.modules something that looks like a
999 # We need to insert into sys.modules something that looks like a
1000 # module but which accesses the IPython namespace, for shelve and
1000 # module but which accesses the IPython namespace, for shelve and
1001 # pickle to work interactively. Normally they rely on getting
1001 # pickle to work interactively. Normally they rely on getting
1002 # everything out of __main__, but for embedding purposes each IPython
1002 # everything out of __main__, but for embedding purposes each IPython
1003 # instance has its own private namespace, so we can't go shoving
1003 # instance has its own private namespace, so we can't go shoving
1004 # everything into __main__.
1004 # everything into __main__.
1005
1005
1006 # note, however, that we should only do this for non-embedded
1006 # note, however, that we should only do this for non-embedded
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1008 # namespace. Embedded instances, on the other hand, should not do
1008 # namespace. Embedded instances, on the other hand, should not do
1009 # this because they need to manage the user local/global namespaces
1009 # this because they need to manage the user local/global namespaces
1010 # only, but they live within a 'normal' __main__ (meaning, they
1010 # only, but they live within a 'normal' __main__ (meaning, they
1011 # shouldn't overtake the execution environment of the script they're
1011 # shouldn't overtake the execution environment of the script they're
1012 # embedded in).
1012 # embedded in).
1013
1013
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1015
1015
1016 try:
1016 try:
1017 main_name = self.user_ns['__name__']
1017 main_name = self.user_ns['__name__']
1018 except KeyError:
1018 except KeyError:
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1020 else:
1020 else:
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1022
1022
1023 def init_user_ns(self):
1023 def init_user_ns(self):
1024 """Initialize all user-visible namespaces to their minimum defaults.
1024 """Initialize all user-visible namespaces to their minimum defaults.
1025
1025
1026 Certain history lists are also initialized here, as they effectively
1026 Certain history lists are also initialized here, as they effectively
1027 act as user namespaces.
1027 act as user namespaces.
1028
1028
1029 Notes
1029 Notes
1030 -----
1030 -----
1031 All data structures here are only filled in, they are NOT reset by this
1031 All data structures here are only filled in, they are NOT reset by this
1032 method. If they were not empty before, data will simply be added to
1032 method. If they were not empty before, data will simply be added to
1033 therm.
1033 therm.
1034 """
1034 """
1035 # This function works in two parts: first we put a few things in
1035 # This function works in two parts: first we put a few things in
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1037 # initial variables aren't shown by %who. After the sync, we add the
1037 # initial variables aren't shown by %who. After the sync, we add the
1038 # rest of what we *do* want the user to see with %who even on a new
1038 # rest of what we *do* want the user to see with %who even on a new
1039 # session (probably nothing, so theye really only see their own stuff)
1039 # session (probably nothing, so theye really only see their own stuff)
1040
1040
1041 # The user dict must *always* have a __builtin__ reference to the
1041 # The user dict must *always* have a __builtin__ reference to the
1042 # Python standard __builtin__ namespace, which must be imported.
1042 # Python standard __builtin__ namespace, which must be imported.
1043 # This is so that certain operations in prompt evaluation can be
1043 # This is so that certain operations in prompt evaluation can be
1044 # reliably executed with builtins. Note that we can NOT use
1044 # reliably executed with builtins. Note that we can NOT use
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1046 # module, and can even mutate at runtime, depending on the context
1046 # module, and can even mutate at runtime, depending on the context
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1048 # always a module object, though it must be explicitly imported.
1048 # always a module object, though it must be explicitly imported.
1049
1049
1050 # For more details:
1050 # For more details:
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1052 ns = dict(__builtin__ = __builtin__)
1052 ns = dict(__builtin__ = __builtin__)
1053
1053
1054 # Put 'help' in the user namespace
1054 # Put 'help' in the user namespace
1055 try:
1055 try:
1056 from site import _Helper
1056 from site import _Helper
1057 ns['help'] = _Helper()
1057 ns['help'] = _Helper()
1058 except ImportError:
1058 except ImportError:
1059 warn('help() not available - check site.py')
1059 warn('help() not available - check site.py')
1060
1060
1061 # make global variables for user access to the histories
1061 # make global variables for user access to the histories
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1063 ns['_oh'] = self.history_manager.output_hist
1063 ns['_oh'] = self.history_manager.output_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1065
1065
1066 ns['_sh'] = shadowns
1066 ns['_sh'] = shadowns
1067
1067
1068 # user aliases to input and output histories. These shouldn't show up
1068 # user aliases to input and output histories. These shouldn't show up
1069 # in %who, as they can have very large reprs.
1069 # in %who, as they can have very large reprs.
1070 ns['In'] = self.history_manager.input_hist_parsed
1070 ns['In'] = self.history_manager.input_hist_parsed
1071 ns['Out'] = self.history_manager.output_hist
1071 ns['Out'] = self.history_manager.output_hist
1072
1072
1073 # Store myself as the public api!!!
1073 # Store myself as the public api!!!
1074 ns['get_ipython'] = self.get_ipython
1074 ns['get_ipython'] = self.get_ipython
1075
1075
1076 ns['exit'] = self.exiter
1076 ns['exit'] = self.exiter
1077 ns['quit'] = self.exiter
1077 ns['quit'] = self.exiter
1078
1078
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1080 # by %who
1080 # by %who
1081 self.user_ns_hidden.update(ns)
1081 self.user_ns_hidden.update(ns)
1082
1082
1083 # Anything put into ns now would show up in %who. Think twice before
1083 # Anything put into ns now would show up in %who. Think twice before
1084 # putting anything here, as we really want %who to show the user their
1084 # putting anything here, as we really want %who to show the user their
1085 # stuff, not our variables.
1085 # stuff, not our variables.
1086
1086
1087 # Finally, update the real user's namespace
1087 # Finally, update the real user's namespace
1088 self.user_ns.update(ns)
1088 self.user_ns.update(ns)
1089
1089
1090 def reset(self, new_session=True):
1090 def reset(self, new_session=True):
1091 """Clear all internal namespaces, and attempt to release references to
1091 """Clear all internal namespaces, and attempt to release references to
1092 user objects.
1092 user objects.
1093
1093
1094 If new_session is True, a new history session will be opened.
1094 If new_session is True, a new history session will be opened.
1095 """
1095 """
1096 # Clear histories
1096 # Clear histories
1097 self.history_manager.reset(new_session)
1097 self.history_manager.reset(new_session)
1098 # Reset counter used to index all histories
1098 # Reset counter used to index all histories
1099 if new_session:
1099 if new_session:
1100 self.execution_count = 1
1100 self.execution_count = 1
1101
1101
1102 # Flush cached output items
1102 # Flush cached output items
1103 if self.displayhook.do_full_cache:
1103 if self.displayhook.do_full_cache:
1104 self.displayhook.flush()
1104 self.displayhook.flush()
1105
1105
1106 # Restore the user namespaces to minimal usability
1106 # Restore the user namespaces to minimal usability
1107 for ns in self.ns_refs_table:
1107 for ns in self.ns_refs_table:
1108 ns.clear()
1108 ns.clear()
1109
1109
1110 # The main execution namespaces must be cleared very carefully,
1110 # The main execution namespaces must be cleared very carefully,
1111 # skipping the deletion of the builtin-related keys, because doing so
1111 # skipping the deletion of the builtin-related keys, because doing so
1112 # would cause errors in many object's __del__ methods.
1112 # would cause errors in many object's __del__ methods.
1113 for ns in [self.user_ns, self.user_global_ns]:
1113 for ns in [self.user_ns, self.user_global_ns]:
1114 drop_keys = set(ns.keys())
1114 drop_keys = set(ns.keys())
1115 drop_keys.discard('__builtin__')
1115 drop_keys.discard('__builtin__')
1116 drop_keys.discard('__builtins__')
1116 drop_keys.discard('__builtins__')
1117 for k in drop_keys:
1117 for k in drop_keys:
1118 del ns[k]
1118 del ns[k]
1119
1119
1120 # Restore the user namespaces to minimal usability
1120 # Restore the user namespaces to minimal usability
1121 self.init_user_ns()
1121 self.init_user_ns()
1122
1122
1123 # Restore the default and user aliases
1123 # Restore the default and user aliases
1124 self.alias_manager.clear_aliases()
1124 self.alias_manager.clear_aliases()
1125 self.alias_manager.init_aliases()
1125 self.alias_manager.init_aliases()
1126
1126
1127 # Flush the private list of module references kept for script
1127 # Flush the private list of module references kept for script
1128 # execution protection
1128 # execution protection
1129 self.clear_main_mod_cache()
1129 self.clear_main_mod_cache()
1130
1130
1131 # Clear out the namespace from the last %run
1131 # Clear out the namespace from the last %run
1132 self.new_main_mod()
1132 self.new_main_mod()
1133
1133
1134 def del_var(self, varname, by_name=False):
1134 def del_var(self, varname, by_name=False):
1135 """Delete a variable from the various namespaces, so that, as
1135 """Delete a variable from the various namespaces, so that, as
1136 far as possible, we're not keeping any hidden references to it.
1136 far as possible, we're not keeping any hidden references to it.
1137
1137
1138 Parameters
1138 Parameters
1139 ----------
1139 ----------
1140 varname : str
1140 varname : str
1141 The name of the variable to delete.
1141 The name of the variable to delete.
1142 by_name : bool
1142 by_name : bool
1143 If True, delete variables with the given name in each
1143 If True, delete variables with the given name in each
1144 namespace. If False (default), find the variable in the user
1144 namespace. If False (default), find the variable in the user
1145 namespace, and delete references to it.
1145 namespace, and delete references to it.
1146 """
1146 """
1147 if varname in ('__builtin__', '__builtins__'):
1147 if varname in ('__builtin__', '__builtins__'):
1148 raise ValueError("Refusing to delete %s" % varname)
1148 raise ValueError("Refusing to delete %s" % varname)
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1151 self._main_ns_cache.values()
1151 self._main_ns_cache.values()
1152
1152
1153 if by_name: # Delete by name
1153 if by_name: # Delete by name
1154 for ns in ns_refs:
1154 for ns in ns_refs:
1155 try:
1155 try:
1156 del ns[varname]
1156 del ns[varname]
1157 except KeyError:
1157 except KeyError:
1158 pass
1158 pass
1159 else: # Delete by object
1159 else: # Delete by object
1160 try:
1160 try:
1161 obj = self.user_ns[varname]
1161 obj = self.user_ns[varname]
1162 except KeyError:
1162 except KeyError:
1163 raise NameError("name '%s' is not defined" % varname)
1163 raise NameError("name '%s' is not defined" % varname)
1164 # Also check in output history
1164 # Also check in output history
1165 ns_refs.append(self.history_manager.output_hist)
1165 ns_refs.append(self.history_manager.output_hist)
1166 for ns in ns_refs:
1166 for ns in ns_refs:
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1168 for name in to_delete:
1168 for name in to_delete:
1169 del ns[name]
1169 del ns[name]
1170
1170
1171 # displayhook keeps extra references, but not in a dictionary
1171 # displayhook keeps extra references, but not in a dictionary
1172 for name in ('_', '__', '___'):
1172 for name in ('_', '__', '___'):
1173 if getattr(self.displayhook, name) is obj:
1173 if getattr(self.displayhook, name) is obj:
1174 setattr(self.displayhook, name, None)
1174 setattr(self.displayhook, name, None)
1175
1175
1176 def reset_selective(self, regex=None):
1176 def reset_selective(self, regex=None):
1177 """Clear selective variables from internal namespaces based on a
1177 """Clear selective variables from internal namespaces based on a
1178 specified regular expression.
1178 specified regular expression.
1179
1179
1180 Parameters
1180 Parameters
1181 ----------
1181 ----------
1182 regex : string or compiled pattern, optional
1182 regex : string or compiled pattern, optional
1183 A regular expression pattern that will be used in searching
1183 A regular expression pattern that will be used in searching
1184 variable names in the users namespaces.
1184 variable names in the users namespaces.
1185 """
1185 """
1186 if regex is not None:
1186 if regex is not None:
1187 try:
1187 try:
1188 m = re.compile(regex)
1188 m = re.compile(regex)
1189 except TypeError:
1189 except TypeError:
1190 raise TypeError('regex must be a string or compiled pattern')
1190 raise TypeError('regex must be a string or compiled pattern')
1191 # Search for keys in each namespace that match the given regex
1191 # Search for keys in each namespace that match the given regex
1192 # If a match is found, delete the key/value pair.
1192 # If a match is found, delete the key/value pair.
1193 for ns in self.ns_refs_table:
1193 for ns in self.ns_refs_table:
1194 for var in ns:
1194 for var in ns:
1195 if m.search(var):
1195 if m.search(var):
1196 del ns[var]
1196 del ns[var]
1197
1197
1198 def push(self, variables, interactive=True):
1198 def push(self, variables, interactive=True):
1199 """Inject a group of variables into the IPython user namespace.
1199 """Inject a group of variables into the IPython user namespace.
1200
1200
1201 Parameters
1201 Parameters
1202 ----------
1202 ----------
1203 variables : dict, str or list/tuple of str
1203 variables : dict, str or list/tuple of str
1204 The variables to inject into the user's namespace. If a dict, a
1204 The variables to inject into the user's namespace. If a dict, a
1205 simple update is done. If a str, the string is assumed to have
1205 simple update is done. If a str, the string is assumed to have
1206 variable names separated by spaces. A list/tuple of str can also
1206 variable names separated by spaces. A list/tuple of str can also
1207 be used to give the variable names. If just the variable names are
1207 be used to give the variable names. If just the variable names are
1208 give (list/tuple/str) then the variable values looked up in the
1208 give (list/tuple/str) then the variable values looked up in the
1209 callers frame.
1209 callers frame.
1210 interactive : bool
1210 interactive : bool
1211 If True (default), the variables will be listed with the ``who``
1211 If True (default), the variables will be listed with the ``who``
1212 magic.
1212 magic.
1213 """
1213 """
1214 vdict = None
1214 vdict = None
1215
1215
1216 # We need a dict of name/value pairs to do namespace updates.
1216 # We need a dict of name/value pairs to do namespace updates.
1217 if isinstance(variables, dict):
1217 if isinstance(variables, dict):
1218 vdict = variables
1218 vdict = variables
1219 elif isinstance(variables, (basestring, list, tuple)):
1219 elif isinstance(variables, (basestring, list, tuple)):
1220 if isinstance(variables, basestring):
1220 if isinstance(variables, basestring):
1221 vlist = variables.split()
1221 vlist = variables.split()
1222 else:
1222 else:
1223 vlist = variables
1223 vlist = variables
1224 vdict = {}
1224 vdict = {}
1225 cf = sys._getframe(1)
1225 cf = sys._getframe(1)
1226 for name in vlist:
1226 for name in vlist:
1227 try:
1227 try:
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1229 except:
1229 except:
1230 print ('Could not get variable %s from %s' %
1230 print ('Could not get variable %s from %s' %
1231 (name,cf.f_code.co_name))
1231 (name,cf.f_code.co_name))
1232 else:
1232 else:
1233 raise ValueError('variables must be a dict/str/list/tuple')
1233 raise ValueError('variables must be a dict/str/list/tuple')
1234
1234
1235 # Propagate variables to user namespace
1235 # Propagate variables to user namespace
1236 self.user_ns.update(vdict)
1236 self.user_ns.update(vdict)
1237
1237
1238 # And configure interactive visibility
1238 # And configure interactive visibility
1239 config_ns = self.user_ns_hidden
1239 config_ns = self.user_ns_hidden
1240 if interactive:
1240 if interactive:
1241 for name, val in vdict.iteritems():
1241 for name, val in vdict.iteritems():
1242 config_ns.pop(name, None)
1242 config_ns.pop(name, None)
1243 else:
1243 else:
1244 for name,val in vdict.iteritems():
1244 for name,val in vdict.iteritems():
1245 config_ns[name] = val
1245 config_ns[name] = val
1246
1246
1247 #-------------------------------------------------------------------------
1247 #-------------------------------------------------------------------------
1248 # Things related to object introspection
1248 # Things related to object introspection
1249 #-------------------------------------------------------------------------
1249 #-------------------------------------------------------------------------
1250
1250
1251 def _ofind(self, oname, namespaces=None):
1251 def _ofind(self, oname, namespaces=None):
1252 """Find an object in the available namespaces.
1252 """Find an object in the available namespaces.
1253
1253
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1255
1255
1256 Has special code to detect magic functions.
1256 Has special code to detect magic functions.
1257 """
1257 """
1258 #oname = oname.strip()
1258 #oname = oname.strip()
1259 #print '1- oname: <%r>' % oname # dbg
1259 #print '1- oname: <%r>' % oname # dbg
1260 try:
1260 try:
1261 oname = oname.strip().encode('ascii')
1261 oname = oname.strip().encode('ascii')
1262 #print '2- oname: <%r>' % oname # dbg
1262 #print '2- oname: <%r>' % oname # dbg
1263 except UnicodeEncodeError:
1263 except UnicodeEncodeError:
1264 print 'Python identifiers can only contain ascii characters.'
1264 print 'Python identifiers can only contain ascii characters.'
1265 return dict(found=False)
1265 return dict(found=False)
1266
1266
1267 alias_ns = None
1267 alias_ns = None
1268 if namespaces is None:
1268 if namespaces is None:
1269 # Namespaces to search in:
1269 # Namespaces to search in:
1270 # Put them in a list. The order is important so that we
1270 # Put them in a list. The order is important so that we
1271 # find things in the same order that Python finds them.
1271 # find things in the same order that Python finds them.
1272 namespaces = [ ('Interactive', self.user_ns),
1272 namespaces = [ ('Interactive', self.user_ns),
1273 ('IPython internal', self.internal_ns),
1273 ('IPython internal', self.internal_ns),
1274 ('Python builtin', __builtin__.__dict__),
1274 ('Python builtin', __builtin__.__dict__),
1275 ('Alias', self.alias_manager.alias_table),
1275 ('Alias', self.alias_manager.alias_table),
1276 ]
1276 ]
1277 alias_ns = self.alias_manager.alias_table
1277 alias_ns = self.alias_manager.alias_table
1278
1278
1279 # initialize results to 'null'
1279 # initialize results to 'null'
1280 found = False; obj = None; ospace = None; ds = None;
1280 found = False; obj = None; ospace = None; ds = None;
1281 ismagic = False; isalias = False; parent = None
1281 ismagic = False; isalias = False; parent = None
1282
1282
1283 # We need to special-case 'print', which as of python2.6 registers as a
1283 # We need to special-case 'print', which as of python2.6 registers as a
1284 # function but should only be treated as one if print_function was
1284 # function but should only be treated as one if print_function was
1285 # loaded with a future import. In this case, just bail.
1285 # loaded with a future import. In this case, just bail.
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1290
1290
1291 # Look for the given name by splitting it in parts. If the head is
1291 # Look for the given name by splitting it in parts. If the head is
1292 # found, then we look for all the remaining parts as members, and only
1292 # found, then we look for all the remaining parts as members, and only
1293 # declare success if we can find them all.
1293 # declare success if we can find them all.
1294 oname_parts = oname.split('.')
1294 oname_parts = oname.split('.')
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1296 for nsname,ns in namespaces:
1296 for nsname,ns in namespaces:
1297 try:
1297 try:
1298 obj = ns[oname_head]
1298 obj = ns[oname_head]
1299 except KeyError:
1299 except KeyError:
1300 continue
1300 continue
1301 else:
1301 else:
1302 #print 'oname_rest:', oname_rest # dbg
1302 #print 'oname_rest:', oname_rest # dbg
1303 for part in oname_rest:
1303 for part in oname_rest:
1304 try:
1304 try:
1305 parent = obj
1305 parent = obj
1306 obj = getattr(obj,part)
1306 obj = getattr(obj,part)
1307 except:
1307 except:
1308 # Blanket except b/c some badly implemented objects
1308 # Blanket except b/c some badly implemented objects
1309 # allow __getattr__ to raise exceptions other than
1309 # allow __getattr__ to raise exceptions other than
1310 # AttributeError, which then crashes IPython.
1310 # AttributeError, which then crashes IPython.
1311 break
1311 break
1312 else:
1312 else:
1313 # If we finish the for loop (no break), we got all members
1313 # If we finish the for loop (no break), we got all members
1314 found = True
1314 found = True
1315 ospace = nsname
1315 ospace = nsname
1316 if ns == alias_ns:
1316 if ns == alias_ns:
1317 isalias = True
1317 isalias = True
1318 break # namespace loop
1318 break # namespace loop
1319
1319
1320 # Try to see if it's magic
1320 # Try to see if it's magic
1321 if not found:
1321 if not found:
1322 if oname.startswith(ESC_MAGIC):
1322 if oname.startswith(ESC_MAGIC):
1323 oname = oname[1:]
1323 oname = oname[1:]
1324 obj = getattr(self,'magic_'+oname,None)
1324 obj = getattr(self,'magic_'+oname,None)
1325 if obj is not None:
1325 if obj is not None:
1326 found = True
1326 found = True
1327 ospace = 'IPython internal'
1327 ospace = 'IPython internal'
1328 ismagic = True
1328 ismagic = True
1329
1329
1330 # Last try: special-case some literals like '', [], {}, etc:
1330 # Last try: special-case some literals like '', [], {}, etc:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1332 obj = eval(oname_head)
1332 obj = eval(oname_head)
1333 found = True
1333 found = True
1334 ospace = 'Interactive'
1334 ospace = 'Interactive'
1335
1335
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1338
1338
1339 def _ofind_property(self, oname, info):
1339 def _ofind_property(self, oname, info):
1340 """Second part of object finding, to look for property details."""
1340 """Second part of object finding, to look for property details."""
1341 if info.found:
1341 if info.found:
1342 # Get the docstring of the class property if it exists.
1342 # Get the docstring of the class property if it exists.
1343 path = oname.split('.')
1343 path = oname.split('.')
1344 root = '.'.join(path[:-1])
1344 root = '.'.join(path[:-1])
1345 if info.parent is not None:
1345 if info.parent is not None:
1346 try:
1346 try:
1347 target = getattr(info.parent, '__class__')
1347 target = getattr(info.parent, '__class__')
1348 # The object belongs to a class instance.
1348 # The object belongs to a class instance.
1349 try:
1349 try:
1350 target = getattr(target, path[-1])
1350 target = getattr(target, path[-1])
1351 # The class defines the object.
1351 # The class defines the object.
1352 if isinstance(target, property):
1352 if isinstance(target, property):
1353 oname = root + '.__class__.' + path[-1]
1353 oname = root + '.__class__.' + path[-1]
1354 info = Struct(self._ofind(oname))
1354 info = Struct(self._ofind(oname))
1355 except AttributeError: pass
1355 except AttributeError: pass
1356 except AttributeError: pass
1356 except AttributeError: pass
1357
1357
1358 # We return either the new info or the unmodified input if the object
1358 # We return either the new info or the unmodified input if the object
1359 # hadn't been found
1359 # hadn't been found
1360 return info
1360 return info
1361
1361
1362 def _object_find(self, oname, namespaces=None):
1362 def _object_find(self, oname, namespaces=None):
1363 """Find an object and return a struct with info about it."""
1363 """Find an object and return a struct with info about it."""
1364 inf = Struct(self._ofind(oname, namespaces))
1364 inf = Struct(self._ofind(oname, namespaces))
1365 return Struct(self._ofind_property(oname, inf))
1365 return Struct(self._ofind_property(oname, inf))
1366
1366
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1368 """Generic interface to the inspector system.
1368 """Generic interface to the inspector system.
1369
1369
1370 This function is meant to be called by pdef, pdoc & friends."""
1370 This function is meant to be called by pdef, pdoc & friends."""
1371 info = self._object_find(oname)
1371 info = self._object_find(oname)
1372 if info.found:
1372 if info.found:
1373 pmethod = getattr(self.inspector, meth)
1373 pmethod = getattr(self.inspector, meth)
1374 formatter = format_screen if info.ismagic else None
1374 formatter = format_screen if info.ismagic else None
1375 if meth == 'pdoc':
1375 if meth == 'pdoc':
1376 pmethod(info.obj, oname, formatter)
1376 pmethod(info.obj, oname, formatter)
1377 elif meth == 'pinfo':
1377 elif meth == 'pinfo':
1378 pmethod(info.obj, oname, formatter, info, **kw)
1378 pmethod(info.obj, oname, formatter, info, **kw)
1379 else:
1379 else:
1380 pmethod(info.obj, oname)
1380 pmethod(info.obj, oname)
1381 else:
1381 else:
1382 print 'Object `%s` not found.' % oname
1382 print 'Object `%s` not found.' % oname
1383 return 'not found' # so callers can take other action
1383 return 'not found' # so callers can take other action
1384
1384
1385 def object_inspect(self, oname):
1385 def object_inspect(self, oname):
1386 with self.builtin_trap:
1386 with self.builtin_trap:
1387 info = self._object_find(oname)
1387 info = self._object_find(oname)
1388 if info.found:
1388 if info.found:
1389 return self.inspector.info(info.obj, oname, info=info)
1389 return self.inspector.info(info.obj, oname, info=info)
1390 else:
1390 else:
1391 return oinspect.object_info(name=oname, found=False)
1391 return oinspect.object_info(name=oname, found=False)
1392
1392
1393 #-------------------------------------------------------------------------
1393 #-------------------------------------------------------------------------
1394 # Things related to history management
1394 # Things related to history management
1395 #-------------------------------------------------------------------------
1395 #-------------------------------------------------------------------------
1396
1396
1397 def init_history(self):
1397 def init_history(self):
1398 """Sets up the command history, and starts regular autosaves."""
1398 """Sets up the command history, and starts regular autosaves."""
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1400
1400
1401 #-------------------------------------------------------------------------
1401 #-------------------------------------------------------------------------
1402 # Things related to exception handling and tracebacks (not debugging)
1402 # Things related to exception handling and tracebacks (not debugging)
1403 #-------------------------------------------------------------------------
1403 #-------------------------------------------------------------------------
1404
1404
1405 def init_traceback_handlers(self, custom_exceptions):
1405 def init_traceback_handlers(self, custom_exceptions):
1406 # Syntax error handler.
1406 # Syntax error handler.
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1408
1408
1409 # The interactive one is initialized with an offset, meaning we always
1409 # The interactive one is initialized with an offset, meaning we always
1410 # want to remove the topmost item in the traceback, which is our own
1410 # want to remove the topmost item in the traceback, which is our own
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1413 color_scheme='NoColor',
1413 color_scheme='NoColor',
1414 tb_offset = 1,
1414 tb_offset = 1,
1415 check_cache=self.compile.check_cache)
1415 check_cache=self.compile.check_cache)
1416
1416
1417 # The instance will store a pointer to the system-wide exception hook,
1417 # The instance will store a pointer to the system-wide exception hook,
1418 # so that runtime code (such as magics) can access it. This is because
1418 # so that runtime code (such as magics) can access it. This is because
1419 # during the read-eval loop, it may get temporarily overwritten.
1419 # during the read-eval loop, it may get temporarily overwritten.
1420 self.sys_excepthook = sys.excepthook
1420 self.sys_excepthook = sys.excepthook
1421
1421
1422 # and add any custom exception handlers the user may have specified
1422 # and add any custom exception handlers the user may have specified
1423 self.set_custom_exc(*custom_exceptions)
1423 self.set_custom_exc(*custom_exceptions)
1424
1424
1425 # Set the exception mode
1425 # Set the exception mode
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1427
1427
1428 def set_custom_exc(self, exc_tuple, handler):
1428 def set_custom_exc(self, exc_tuple, handler):
1429 """set_custom_exc(exc_tuple,handler)
1429 """set_custom_exc(exc_tuple,handler)
1430
1430
1431 Set a custom exception handler, which will be called if any of the
1431 Set a custom exception handler, which will be called if any of the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1433 run_code() method.
1433 run_code() method.
1434
1434
1435 Inputs:
1435 Inputs:
1436
1436
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1438 handler for. It is very important that you use a tuple, and NOT A
1438 handler for. It is very important that you use a tuple, and NOT A
1439 LIST here, because of the way Python's except statement works. If
1439 LIST here, because of the way Python's except statement works. If
1440 you only want to trap a single exception, use a singleton tuple:
1440 you only want to trap a single exception, use a singleton tuple:
1441
1441
1442 exc_tuple == (MyCustomException,)
1442 exc_tuple == (MyCustomException,)
1443
1443
1444 - handler: this must be defined as a function with the following
1444 - handler: this must be defined as a function with the following
1445 basic interface::
1445 basic interface::
1446
1446
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1448 ...
1448 ...
1449 # The return value must be
1449 # The return value must be
1450 return structured_traceback
1450 return structured_traceback
1451
1451
1452 This will be made into an instance method (via types.MethodType)
1452 This will be made into an instance method (via types.MethodType)
1453 of IPython itself, and it will be called if any of the exceptions
1453 of IPython itself, and it will be called if any of the exceptions
1454 listed in the exc_tuple are caught. If the handler is None, an
1454 listed in the exc_tuple are caught. If the handler is None, an
1455 internal basic one is used, which just prints basic info.
1455 internal basic one is used, which just prints basic info.
1456
1456
1457 WARNING: by putting in your own exception handler into IPython's main
1457 WARNING: by putting in your own exception handler into IPython's main
1458 execution loop, you run a very good chance of nasty crashes. This
1458 execution loop, you run a very good chance of nasty crashes. This
1459 facility should only be used if you really know what you are doing."""
1459 facility should only be used if you really know what you are doing."""
1460
1460
1461 assert type(exc_tuple)==type(()) , \
1461 assert type(exc_tuple)==type(()) , \
1462 "The custom exceptions must be given AS A TUPLE."
1462 "The custom exceptions must be given AS A TUPLE."
1463
1463
1464 def dummy_handler(self,etype,value,tb):
1464 def dummy_handler(self,etype,value,tb):
1465 print '*** Simple custom exception handler ***'
1465 print '*** Simple custom exception handler ***'
1466 print 'Exception type :',etype
1466 print 'Exception type :',etype
1467 print 'Exception value:',value
1467 print 'Exception value:',value
1468 print 'Traceback :',tb
1468 print 'Traceback :',tb
1469 #print 'Source code :','\n'.join(self.buffer)
1469 #print 'Source code :','\n'.join(self.buffer)
1470
1470
1471 if handler is None: handler = dummy_handler
1471 if handler is None: handler = dummy_handler
1472
1472
1473 self.CustomTB = types.MethodType(handler,self)
1473 self.CustomTB = types.MethodType(handler,self)
1474 self.custom_exceptions = exc_tuple
1474 self.custom_exceptions = exc_tuple
1475
1475
1476 def excepthook(self, etype, value, tb):
1476 def excepthook(self, etype, value, tb):
1477 """One more defense for GUI apps that call sys.excepthook.
1477 """One more defense for GUI apps that call sys.excepthook.
1478
1478
1479 GUI frameworks like wxPython trap exceptions and call
1479 GUI frameworks like wxPython trap exceptions and call
1480 sys.excepthook themselves. I guess this is a feature that
1480 sys.excepthook themselves. I guess this is a feature that
1481 enables them to keep running after exceptions that would
1481 enables them to keep running after exceptions that would
1482 otherwise kill their mainloop. This is a bother for IPython
1482 otherwise kill their mainloop. This is a bother for IPython
1483 which excepts to catch all of the program exceptions with a try:
1483 which excepts to catch all of the program exceptions with a try:
1484 except: statement.
1484 except: statement.
1485
1485
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1487 any app directly invokes sys.excepthook, it will look to the user like
1487 any app directly invokes sys.excepthook, it will look to the user like
1488 IPython crashed. In order to work around this, we can disable the
1488 IPython crashed. In order to work around this, we can disable the
1489 CrashHandler and replace it with this excepthook instead, which prints a
1489 CrashHandler and replace it with this excepthook instead, which prints a
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1491 call sys.excepthook will generate a regular-looking exception from
1491 call sys.excepthook will generate a regular-looking exception from
1492 IPython, and the CrashHandler will only be triggered by real IPython
1492 IPython, and the CrashHandler will only be triggered by real IPython
1493 crashes.
1493 crashes.
1494
1494
1495 This hook should be used sparingly, only in places which are not likely
1495 This hook should be used sparingly, only in places which are not likely
1496 to be true IPython errors.
1496 to be true IPython errors.
1497 """
1497 """
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1499
1499
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1501 exception_only=False):
1501 exception_only=False):
1502 """Display the exception that just occurred.
1502 """Display the exception that just occurred.
1503
1503
1504 If nothing is known about the exception, this is the method which
1504 If nothing is known about the exception, this is the method which
1505 should be used throughout the code for presenting user tracebacks,
1505 should be used throughout the code for presenting user tracebacks,
1506 rather than directly invoking the InteractiveTB object.
1506 rather than directly invoking the InteractiveTB object.
1507
1507
1508 A specific showsyntaxerror() also exists, but this method can take
1508 A specific showsyntaxerror() also exists, but this method can take
1509 care of calling it if needed, so unless you are explicitly catching a
1509 care of calling it if needed, so unless you are explicitly catching a
1510 SyntaxError exception, don't try to analyze the stack manually and
1510 SyntaxError exception, don't try to analyze the stack manually and
1511 simply call this method."""
1511 simply call this method."""
1512
1512
1513 try:
1513 try:
1514 if exc_tuple is None:
1514 if exc_tuple is None:
1515 etype, value, tb = sys.exc_info()
1515 etype, value, tb = sys.exc_info()
1516 else:
1516 else:
1517 etype, value, tb = exc_tuple
1517 etype, value, tb = exc_tuple
1518
1518
1519 if etype is None:
1519 if etype is None:
1520 if hasattr(sys, 'last_type'):
1520 if hasattr(sys, 'last_type'):
1521 etype, value, tb = sys.last_type, sys.last_value, \
1521 etype, value, tb = sys.last_type, sys.last_value, \
1522 sys.last_traceback
1522 sys.last_traceback
1523 else:
1523 else:
1524 self.write_err('No traceback available to show.\n')
1524 self.write_err('No traceback available to show.\n')
1525 return
1525 return
1526
1526
1527 if etype is SyntaxError:
1527 if etype is SyntaxError:
1528 # Though this won't be called by syntax errors in the input
1528 # Though this won't be called by syntax errors in the input
1529 # line, there may be SyntaxError cases whith imported code.
1529 # line, there may be SyntaxError cases whith imported code.
1530 self.showsyntaxerror(filename)
1530 self.showsyntaxerror(filename)
1531 elif etype is UsageError:
1531 elif etype is UsageError:
1532 print "UsageError:", value
1532 print "UsageError:", value
1533 else:
1533 else:
1534 # WARNING: these variables are somewhat deprecated and not
1534 # WARNING: these variables are somewhat deprecated and not
1535 # necessarily safe to use in a threaded environment, but tools
1535 # necessarily safe to use in a threaded environment, but tools
1536 # like pdb depend on their existence, so let's set them. If we
1536 # like pdb depend on their existence, so let's set them. If we
1537 # find problems in the field, we'll need to revisit their use.
1537 # find problems in the field, we'll need to revisit their use.
1538 sys.last_type = etype
1538 sys.last_type = etype
1539 sys.last_value = value
1539 sys.last_value = value
1540 sys.last_traceback = tb
1540 sys.last_traceback = tb
1541 if etype in self.custom_exceptions:
1541 if etype in self.custom_exceptions:
1542 # FIXME: Old custom traceback objects may just return a
1542 # FIXME: Old custom traceback objects may just return a
1543 # string, in that case we just put it into a list
1543 # string, in that case we just put it into a list
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1545 if isinstance(ctb, basestring):
1545 if isinstance(ctb, basestring):
1546 stb = [stb]
1546 stb = [stb]
1547 else:
1547 else:
1548 if exception_only:
1548 if exception_only:
1549 stb = ['An exception has occurred, use %tb to see '
1549 stb = ['An exception has occurred, use %tb to see '
1550 'the full traceback.\n']
1550 'the full traceback.\n']
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1552 value))
1552 value))
1553 else:
1553 else:
1554 stb = self.InteractiveTB.structured_traceback(etype,
1554 stb = self.InteractiveTB.structured_traceback(etype,
1555 value, tb, tb_offset=tb_offset)
1555 value, tb, tb_offset=tb_offset)
1556
1556
1557 if self.call_pdb:
1557 if self.call_pdb:
1558 # drop into debugger
1558 # drop into debugger
1559 self.debugger(force=True)
1559 self.debugger(force=True)
1560
1560
1561 # Actually show the traceback
1561 # Actually show the traceback
1562 self._showtraceback(etype, value, stb)
1562 self._showtraceback(etype, value, stb)
1563
1563
1564 except KeyboardInterrupt:
1564 except KeyboardInterrupt:
1565 self.write_err("\nKeyboardInterrupt\n")
1565 self.write_err("\nKeyboardInterrupt\n")
1566
1566
1567 def _showtraceback(self, etype, evalue, stb):
1567 def _showtraceback(self, etype, evalue, stb):
1568 """Actually show a traceback.
1568 """Actually show a traceback.
1569
1569
1570 Subclasses may override this method to put the traceback on a different
1570 Subclasses may override this method to put the traceback on a different
1571 place, like a side channel.
1571 place, like a side channel.
1572 """
1572 """
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1574
1574
1575 def showsyntaxerror(self, filename=None):
1575 def showsyntaxerror(self, filename=None):
1576 """Display the syntax error that just occurred.
1576 """Display the syntax error that just occurred.
1577
1577
1578 This doesn't display a stack trace because there isn't one.
1578 This doesn't display a stack trace because there isn't one.
1579
1579
1580 If a filename is given, it is stuffed in the exception instead
1580 If a filename is given, it is stuffed in the exception instead
1581 of what was there before (because Python's parser always uses
1581 of what was there before (because Python's parser always uses
1582 "<string>" when reading from a string).
1582 "<string>" when reading from a string).
1583 """
1583 """
1584 etype, value, last_traceback = sys.exc_info()
1584 etype, value, last_traceback = sys.exc_info()
1585
1585
1586 # See note about these variables in showtraceback() above
1586 # See note about these variables in showtraceback() above
1587 sys.last_type = etype
1587 sys.last_type = etype
1588 sys.last_value = value
1588 sys.last_value = value
1589 sys.last_traceback = last_traceback
1589 sys.last_traceback = last_traceback
1590
1590
1591 if filename and etype is SyntaxError:
1591 if filename and etype is SyntaxError:
1592 # Work hard to stuff the correct filename in the exception
1592 # Work hard to stuff the correct filename in the exception
1593 try:
1593 try:
1594 msg, (dummy_filename, lineno, offset, line) = value
1594 msg, (dummy_filename, lineno, offset, line) = value
1595 except:
1595 except:
1596 # Not the format we expect; leave it alone
1596 # Not the format we expect; leave it alone
1597 pass
1597 pass
1598 else:
1598 else:
1599 # Stuff in the right filename
1599 # Stuff in the right filename
1600 try:
1600 try:
1601 # Assume SyntaxError is a class exception
1601 # Assume SyntaxError is a class exception
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1603 except:
1603 except:
1604 # If that failed, assume SyntaxError is a string
1604 # If that failed, assume SyntaxError is a string
1605 value = msg, (filename, lineno, offset, line)
1605 value = msg, (filename, lineno, offset, line)
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1607 self._showtraceback(etype, value, stb)
1607 self._showtraceback(etype, value, stb)
1608
1608
1609 #-------------------------------------------------------------------------
1609 #-------------------------------------------------------------------------
1610 # Things related to readline
1610 # Things related to readline
1611 #-------------------------------------------------------------------------
1611 #-------------------------------------------------------------------------
1612
1612
1613 def init_readline(self):
1613 def init_readline(self):
1614 """Command history completion/saving/reloading."""
1614 """Command history completion/saving/reloading."""
1615
1615
1616 if self.readline_use:
1616 if self.readline_use:
1617 import IPython.utils.rlineimpl as readline
1617 import IPython.utils.rlineimpl as readline
1618
1618
1619 self.rl_next_input = None
1619 self.rl_next_input = None
1620 self.rl_do_indent = False
1620 self.rl_do_indent = False
1621
1621
1622 if not self.readline_use or not readline.have_readline:
1622 if not self.readline_use or not readline.have_readline:
1623 self.has_readline = False
1623 self.has_readline = False
1624 self.readline = None
1624 self.readline = None
1625 # Set a number of methods that depend on readline to be no-op
1625 # Set a number of methods that depend on readline to be no-op
1626 self.set_readline_completer = no_op
1626 self.set_readline_completer = no_op
1627 self.set_custom_completer = no_op
1627 self.set_custom_completer = no_op
1628 self.set_completer_frame = no_op
1628 self.set_completer_frame = no_op
1629 warn('Readline services not available or not loaded.')
1629 warn('Readline services not available or not loaded.')
1630 else:
1630 else:
1631 self.has_readline = True
1631 self.has_readline = True
1632 self.readline = readline
1632 self.readline = readline
1633 sys.modules['readline'] = readline
1633 sys.modules['readline'] = readline
1634
1634
1635 # Platform-specific configuration
1635 # Platform-specific configuration
1636 if os.name == 'nt':
1636 if os.name == 'nt':
1637 # FIXME - check with Frederick to see if we can harmonize
1637 # FIXME - check with Frederick to see if we can harmonize
1638 # naming conventions with pyreadline to avoid this
1638 # naming conventions with pyreadline to avoid this
1639 # platform-dependent check
1639 # platform-dependent check
1640 self.readline_startup_hook = readline.set_pre_input_hook
1640 self.readline_startup_hook = readline.set_pre_input_hook
1641 else:
1641 else:
1642 self.readline_startup_hook = readline.set_startup_hook
1642 self.readline_startup_hook = readline.set_startup_hook
1643
1643
1644 # Load user's initrc file (readline config)
1644 # Load user's initrc file (readline config)
1645 # Or if libedit is used, load editrc.
1645 # Or if libedit is used, load editrc.
1646 inputrc_name = os.environ.get('INPUTRC')
1646 inputrc_name = os.environ.get('INPUTRC')
1647 if inputrc_name is None:
1647 if inputrc_name is None:
1648 home_dir = get_home_dir()
1648 home_dir = get_home_dir()
1649 if home_dir is not None:
1649 if home_dir is not None:
1650 inputrc_name = '.inputrc'
1650 inputrc_name = '.inputrc'
1651 if readline.uses_libedit:
1651 if readline.uses_libedit:
1652 inputrc_name = '.editrc'
1652 inputrc_name = '.editrc'
1653 inputrc_name = os.path.join(home_dir, inputrc_name)
1653 inputrc_name = os.path.join(home_dir, inputrc_name)
1654 if os.path.isfile(inputrc_name):
1654 if os.path.isfile(inputrc_name):
1655 try:
1655 try:
1656 readline.read_init_file(inputrc_name)
1656 readline.read_init_file(inputrc_name)
1657 except:
1657 except:
1658 warn('Problems reading readline initialization file <%s>'
1658 warn('Problems reading readline initialization file <%s>'
1659 % inputrc_name)
1659 % inputrc_name)
1660
1660
1661 # Configure readline according to user's prefs
1661 # Configure readline according to user's prefs
1662 # This is only done if GNU readline is being used. If libedit
1662 # This is only done if GNU readline is being used. If libedit
1663 # is being used (as on Leopard) the readline config is
1663 # is being used (as on Leopard) the readline config is
1664 # not run as the syntax for libedit is different.
1664 # not run as the syntax for libedit is different.
1665 if not readline.uses_libedit:
1665 if not readline.uses_libedit:
1666 for rlcommand in self.readline_parse_and_bind:
1666 for rlcommand in self.readline_parse_and_bind:
1667 #print "loading rl:",rlcommand # dbg
1667 #print "loading rl:",rlcommand # dbg
1668 readline.parse_and_bind(rlcommand)
1668 readline.parse_and_bind(rlcommand)
1669
1669
1670 # Remove some chars from the delimiters list. If we encounter
1670 # Remove some chars from the delimiters list. If we encounter
1671 # unicode chars, discard them.
1671 # unicode chars, discard them.
1672 delims = readline.get_completer_delims().encode("ascii", "ignore")
1672 delims = readline.get_completer_delims().encode("ascii", "ignore")
1673 delims = delims.translate(None, self.readline_remove_delims)
1673 for d in self.readline_remove_delims:
1674 delims = delims.replace(d, "")
1674 delims = delims.replace(ESC_MAGIC, '')
1675 delims = delims.replace(ESC_MAGIC, '')
1675 readline.set_completer_delims(delims)
1676 readline.set_completer_delims(delims)
1676 # otherwise we end up with a monster history after a while:
1677 # otherwise we end up with a monster history after a while:
1677 readline.set_history_length(self.history_length)
1678 readline.set_history_length(self.history_length)
1678
1679
1679 self.refill_readline_hist()
1680 self.refill_readline_hist()
1680 self.readline_no_record = ReadlineNoRecord(self)
1681 self.readline_no_record = ReadlineNoRecord(self)
1681
1682
1682 # Configure auto-indent for all platforms
1683 # Configure auto-indent for all platforms
1683 self.set_autoindent(self.autoindent)
1684 self.set_autoindent(self.autoindent)
1684
1685
1685 def refill_readline_hist(self):
1686 def refill_readline_hist(self):
1686 # Load the last 1000 lines from history
1687 # Load the last 1000 lines from history
1687 self.readline.clear_history()
1688 self.readline.clear_history()
1688 stdin_encoding = sys.stdin.encoding or "utf-8"
1689 stdin_encoding = sys.stdin.encoding or "utf-8"
1689 for _, _, cell in self.history_manager.get_tail(1000,
1690 for _, _, cell in self.history_manager.get_tail(1000,
1690 include_latest=True):
1691 include_latest=True):
1691 if cell.strip(): # Ignore blank lines
1692 if cell.strip(): # Ignore blank lines
1692 for line in cell.splitlines():
1693 for line in cell.splitlines():
1693 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1694 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1694
1695
1695 def set_next_input(self, s):
1696 def set_next_input(self, s):
1696 """ Sets the 'default' input string for the next command line.
1697 """ Sets the 'default' input string for the next command line.
1697
1698
1698 Requires readline.
1699 Requires readline.
1699
1700
1700 Example:
1701 Example:
1701
1702
1702 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1703 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1703 [D:\ipython]|2> Hello Word_ # cursor is here
1704 [D:\ipython]|2> Hello Word_ # cursor is here
1704 """
1705 """
1705
1706
1706 self.rl_next_input = s
1707 self.rl_next_input = s
1707
1708
1708 # Maybe move this to the terminal subclass?
1709 # Maybe move this to the terminal subclass?
1709 def pre_readline(self):
1710 def pre_readline(self):
1710 """readline hook to be used at the start of each line.
1711 """readline hook to be used at the start of each line.
1711
1712
1712 Currently it handles auto-indent only."""
1713 Currently it handles auto-indent only."""
1713
1714
1714 if self.rl_do_indent:
1715 if self.rl_do_indent:
1715 self.readline.insert_text(self._indent_current_str())
1716 self.readline.insert_text(self._indent_current_str())
1716 if self.rl_next_input is not None:
1717 if self.rl_next_input is not None:
1717 self.readline.insert_text(self.rl_next_input)
1718 self.readline.insert_text(self.rl_next_input)
1718 self.rl_next_input = None
1719 self.rl_next_input = None
1719
1720
1720 def _indent_current_str(self):
1721 def _indent_current_str(self):
1721 """return the current level of indentation as a string"""
1722 """return the current level of indentation as a string"""
1722 return self.input_splitter.indent_spaces * ' '
1723 return self.input_splitter.indent_spaces * ' '
1723
1724
1724 #-------------------------------------------------------------------------
1725 #-------------------------------------------------------------------------
1725 # Things related to text completion
1726 # Things related to text completion
1726 #-------------------------------------------------------------------------
1727 #-------------------------------------------------------------------------
1727
1728
1728 def init_completer(self):
1729 def init_completer(self):
1729 """Initialize the completion machinery.
1730 """Initialize the completion machinery.
1730
1731
1731 This creates completion machinery that can be used by client code,
1732 This creates completion machinery that can be used by client code,
1732 either interactively in-process (typically triggered by the readline
1733 either interactively in-process (typically triggered by the readline
1733 library), programatically (such as in test suites) or out-of-prcess
1734 library), programatically (such as in test suites) or out-of-prcess
1734 (typically over the network by remote frontends).
1735 (typically over the network by remote frontends).
1735 """
1736 """
1736 from IPython.core.completer import IPCompleter
1737 from IPython.core.completer import IPCompleter
1737 from IPython.core.completerlib import (module_completer,
1738 from IPython.core.completerlib import (module_completer,
1738 magic_run_completer, cd_completer)
1739 magic_run_completer, cd_completer)
1739
1740
1740 self.Completer = IPCompleter(self,
1741 self.Completer = IPCompleter(self,
1741 self.user_ns,
1742 self.user_ns,
1742 self.user_global_ns,
1743 self.user_global_ns,
1743 self.readline_omit__names,
1744 self.readline_omit__names,
1744 self.alias_manager.alias_table,
1745 self.alias_manager.alias_table,
1745 self.has_readline)
1746 self.has_readline)
1746
1747
1747 # Add custom completers to the basic ones built into IPCompleter
1748 # Add custom completers to the basic ones built into IPCompleter
1748 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1749 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1749 self.strdispatchers['complete_command'] = sdisp
1750 self.strdispatchers['complete_command'] = sdisp
1750 self.Completer.custom_completers = sdisp
1751 self.Completer.custom_completers = sdisp
1751
1752
1752 self.set_hook('complete_command', module_completer, str_key = 'import')
1753 self.set_hook('complete_command', module_completer, str_key = 'import')
1753 self.set_hook('complete_command', module_completer, str_key = 'from')
1754 self.set_hook('complete_command', module_completer, str_key = 'from')
1754 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1755 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1755 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1756 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1756
1757
1757 # Only configure readline if we truly are using readline. IPython can
1758 # Only configure readline if we truly are using readline. IPython can
1758 # do tab-completion over the network, in GUIs, etc, where readline
1759 # do tab-completion over the network, in GUIs, etc, where readline
1759 # itself may be absent
1760 # itself may be absent
1760 if self.has_readline:
1761 if self.has_readline:
1761 self.set_readline_completer()
1762 self.set_readline_completer()
1762
1763
1763 def complete(self, text, line=None, cursor_pos=None):
1764 def complete(self, text, line=None, cursor_pos=None):
1764 """Return the completed text and a list of completions.
1765 """Return the completed text and a list of completions.
1765
1766
1766 Parameters
1767 Parameters
1767 ----------
1768 ----------
1768
1769
1769 text : string
1770 text : string
1770 A string of text to be completed on. It can be given as empty and
1771 A string of text to be completed on. It can be given as empty and
1771 instead a line/position pair are given. In this case, the
1772 instead a line/position pair are given. In this case, the
1772 completer itself will split the line like readline does.
1773 completer itself will split the line like readline does.
1773
1774
1774 line : string, optional
1775 line : string, optional
1775 The complete line that text is part of.
1776 The complete line that text is part of.
1776
1777
1777 cursor_pos : int, optional
1778 cursor_pos : int, optional
1778 The position of the cursor on the input line.
1779 The position of the cursor on the input line.
1779
1780
1780 Returns
1781 Returns
1781 -------
1782 -------
1782 text : string
1783 text : string
1783 The actual text that was completed.
1784 The actual text that was completed.
1784
1785
1785 matches : list
1786 matches : list
1786 A sorted list with all possible completions.
1787 A sorted list with all possible completions.
1787
1788
1788 The optional arguments allow the completion to take more context into
1789 The optional arguments allow the completion to take more context into
1789 account, and are part of the low-level completion API.
1790 account, and are part of the low-level completion API.
1790
1791
1791 This is a wrapper around the completion mechanism, similar to what
1792 This is a wrapper around the completion mechanism, similar to what
1792 readline does at the command line when the TAB key is hit. By
1793 readline does at the command line when the TAB key is hit. By
1793 exposing it as a method, it can be used by other non-readline
1794 exposing it as a method, it can be used by other non-readline
1794 environments (such as GUIs) for text completion.
1795 environments (such as GUIs) for text completion.
1795
1796
1796 Simple usage example:
1797 Simple usage example:
1797
1798
1798 In [1]: x = 'hello'
1799 In [1]: x = 'hello'
1799
1800
1800 In [2]: _ip.complete('x.l')
1801 In [2]: _ip.complete('x.l')
1801 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1802 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1802 """
1803 """
1803
1804
1804 # Inject names into __builtin__ so we can complete on the added names.
1805 # Inject names into __builtin__ so we can complete on the added names.
1805 with self.builtin_trap:
1806 with self.builtin_trap:
1806 return self.Completer.complete(text, line, cursor_pos)
1807 return self.Completer.complete(text, line, cursor_pos)
1807
1808
1808 def set_custom_completer(self, completer, pos=0):
1809 def set_custom_completer(self, completer, pos=0):
1809 """Adds a new custom completer function.
1810 """Adds a new custom completer function.
1810
1811
1811 The position argument (defaults to 0) is the index in the completers
1812 The position argument (defaults to 0) is the index in the completers
1812 list where you want the completer to be inserted."""
1813 list where you want the completer to be inserted."""
1813
1814
1814 newcomp = types.MethodType(completer,self.Completer)
1815 newcomp = types.MethodType(completer,self.Completer)
1815 self.Completer.matchers.insert(pos,newcomp)
1816 self.Completer.matchers.insert(pos,newcomp)
1816
1817
1817 def set_readline_completer(self):
1818 def set_readline_completer(self):
1818 """Reset readline's completer to be our own."""
1819 """Reset readline's completer to be our own."""
1819 self.readline.set_completer(self.Completer.rlcomplete)
1820 self.readline.set_completer(self.Completer.rlcomplete)
1820
1821
1821 def set_completer_frame(self, frame=None):
1822 def set_completer_frame(self, frame=None):
1822 """Set the frame of the completer."""
1823 """Set the frame of the completer."""
1823 if frame:
1824 if frame:
1824 self.Completer.namespace = frame.f_locals
1825 self.Completer.namespace = frame.f_locals
1825 self.Completer.global_namespace = frame.f_globals
1826 self.Completer.global_namespace = frame.f_globals
1826 else:
1827 else:
1827 self.Completer.namespace = self.user_ns
1828 self.Completer.namespace = self.user_ns
1828 self.Completer.global_namespace = self.user_global_ns
1829 self.Completer.global_namespace = self.user_global_ns
1829
1830
1830 #-------------------------------------------------------------------------
1831 #-------------------------------------------------------------------------
1831 # Things related to magics
1832 # Things related to magics
1832 #-------------------------------------------------------------------------
1833 #-------------------------------------------------------------------------
1833
1834
1834 def init_magics(self):
1835 def init_magics(self):
1835 # FIXME: Move the color initialization to the DisplayHook, which
1836 # FIXME: Move the color initialization to the DisplayHook, which
1836 # should be split into a prompt manager and displayhook. We probably
1837 # should be split into a prompt manager and displayhook. We probably
1837 # even need a centralize colors management object.
1838 # even need a centralize colors management object.
1838 self.magic_colors(self.colors)
1839 self.magic_colors(self.colors)
1839 # History was moved to a separate module
1840 # History was moved to a separate module
1840 from . import history
1841 from . import history
1841 history.init_ipython(self)
1842 history.init_ipython(self)
1842
1843
1843 def magic(self,arg_s):
1844 def magic(self,arg_s):
1844 """Call a magic function by name.
1845 """Call a magic function by name.
1845
1846
1846 Input: a string containing the name of the magic function to call and
1847 Input: a string containing the name of the magic function to call and
1847 any additional arguments to be passed to the magic.
1848 any additional arguments to be passed to the magic.
1848
1849
1849 magic('name -opt foo bar') is equivalent to typing at the ipython
1850 magic('name -opt foo bar') is equivalent to typing at the ipython
1850 prompt:
1851 prompt:
1851
1852
1852 In[1]: %name -opt foo bar
1853 In[1]: %name -opt foo bar
1853
1854
1854 To call a magic without arguments, simply use magic('name').
1855 To call a magic without arguments, simply use magic('name').
1855
1856
1856 This provides a proper Python function to call IPython's magics in any
1857 This provides a proper Python function to call IPython's magics in any
1857 valid Python code you can type at the interpreter, including loops and
1858 valid Python code you can type at the interpreter, including loops and
1858 compound statements.
1859 compound statements.
1859 """
1860 """
1860 args = arg_s.split(' ',1)
1861 args = arg_s.split(' ',1)
1861 magic_name = args[0]
1862 magic_name = args[0]
1862 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1863 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1863
1864
1864 try:
1865 try:
1865 magic_args = args[1]
1866 magic_args = args[1]
1866 except IndexError:
1867 except IndexError:
1867 magic_args = ''
1868 magic_args = ''
1868 fn = getattr(self,'magic_'+magic_name,None)
1869 fn = getattr(self,'magic_'+magic_name,None)
1869 if fn is None:
1870 if fn is None:
1870 error("Magic function `%s` not found." % magic_name)
1871 error("Magic function `%s` not found." % magic_name)
1871 else:
1872 else:
1872 magic_args = self.var_expand(magic_args,1)
1873 magic_args = self.var_expand(magic_args,1)
1873 # Grab local namespace if we need it:
1874 # Grab local namespace if we need it:
1874 if getattr(fn, "needs_local_scope", False):
1875 if getattr(fn, "needs_local_scope", False):
1875 self._magic_locals = sys._getframe(1).f_locals
1876 self._magic_locals = sys._getframe(1).f_locals
1876 with self.builtin_trap:
1877 with self.builtin_trap:
1877 result = fn(magic_args)
1878 result = fn(magic_args)
1878 # Ensure we're not keeping object references around:
1879 # Ensure we're not keeping object references around:
1879 self._magic_locals = {}
1880 self._magic_locals = {}
1880 return result
1881 return result
1881
1882
1882 def define_magic(self, magicname, func):
1883 def define_magic(self, magicname, func):
1883 """Expose own function as magic function for ipython
1884 """Expose own function as magic function for ipython
1884
1885
1885 def foo_impl(self,parameter_s=''):
1886 def foo_impl(self,parameter_s=''):
1886 'My very own magic!. (Use docstrings, IPython reads them).'
1887 'My very own magic!. (Use docstrings, IPython reads them).'
1887 print 'Magic function. Passed parameter is between < >:'
1888 print 'Magic function. Passed parameter is between < >:'
1888 print '<%s>' % parameter_s
1889 print '<%s>' % parameter_s
1889 print 'The self object is:',self
1890 print 'The self object is:',self
1890
1891
1891 self.define_magic('foo',foo_impl)
1892 self.define_magic('foo',foo_impl)
1892 """
1893 """
1893
1894
1894 import new
1895 import new
1895 im = types.MethodType(func,self)
1896 im = types.MethodType(func,self)
1896 old = getattr(self, "magic_" + magicname, None)
1897 old = getattr(self, "magic_" + magicname, None)
1897 setattr(self, "magic_" + magicname, im)
1898 setattr(self, "magic_" + magicname, im)
1898 return old
1899 return old
1899
1900
1900 #-------------------------------------------------------------------------
1901 #-------------------------------------------------------------------------
1901 # Things related to macros
1902 # Things related to macros
1902 #-------------------------------------------------------------------------
1903 #-------------------------------------------------------------------------
1903
1904
1904 def define_macro(self, name, themacro):
1905 def define_macro(self, name, themacro):
1905 """Define a new macro
1906 """Define a new macro
1906
1907
1907 Parameters
1908 Parameters
1908 ----------
1909 ----------
1909 name : str
1910 name : str
1910 The name of the macro.
1911 The name of the macro.
1911 themacro : str or Macro
1912 themacro : str or Macro
1912 The action to do upon invoking the macro. If a string, a new
1913 The action to do upon invoking the macro. If a string, a new
1913 Macro object is created by passing the string to it.
1914 Macro object is created by passing the string to it.
1914 """
1915 """
1915
1916
1916 from IPython.core import macro
1917 from IPython.core import macro
1917
1918
1918 if isinstance(themacro, basestring):
1919 if isinstance(themacro, basestring):
1919 themacro = macro.Macro(themacro)
1920 themacro = macro.Macro(themacro)
1920 if not isinstance(themacro, macro.Macro):
1921 if not isinstance(themacro, macro.Macro):
1921 raise ValueError('A macro must be a string or a Macro instance.')
1922 raise ValueError('A macro must be a string or a Macro instance.')
1922 self.user_ns[name] = themacro
1923 self.user_ns[name] = themacro
1923
1924
1924 #-------------------------------------------------------------------------
1925 #-------------------------------------------------------------------------
1925 # Things related to the running of system commands
1926 # Things related to the running of system commands
1926 #-------------------------------------------------------------------------
1927 #-------------------------------------------------------------------------
1927
1928
1928 def system_piped(self, cmd):
1929 def system_piped(self, cmd):
1929 """Call the given cmd in a subprocess, piping stdout/err
1930 """Call the given cmd in a subprocess, piping stdout/err
1930
1931
1931 Parameters
1932 Parameters
1932 ----------
1933 ----------
1933 cmd : str
1934 cmd : str
1934 Command to execute (can not end in '&', as background processes are
1935 Command to execute (can not end in '&', as background processes are
1935 not supported. Should not be a command that expects input
1936 not supported. Should not be a command that expects input
1936 other than simple text.
1937 other than simple text.
1937 """
1938 """
1938 if cmd.rstrip().endswith('&'):
1939 if cmd.rstrip().endswith('&'):
1939 # this is *far* from a rigorous test
1940 # this is *far* from a rigorous test
1940 # We do not support backgrounding processes because we either use
1941 # We do not support backgrounding processes because we either use
1941 # pexpect or pipes to read from. Users can always just call
1942 # pexpect or pipes to read from. Users can always just call
1942 # os.system() or use ip.system=ip.system_raw
1943 # os.system() or use ip.system=ip.system_raw
1943 # if they really want a background process.
1944 # if they really want a background process.
1944 raise OSError("Background processes not supported.")
1945 raise OSError("Background processes not supported.")
1945
1946
1946 # we explicitly do NOT return the subprocess status code, because
1947 # we explicitly do NOT return the subprocess status code, because
1947 # a non-None value would trigger :func:`sys.displayhook` calls.
1948 # a non-None value would trigger :func:`sys.displayhook` calls.
1948 # Instead, we store the exit_code in user_ns.
1949 # Instead, we store the exit_code in user_ns.
1949 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1950 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1950
1951
1951 def system_raw(self, cmd):
1952 def system_raw(self, cmd):
1952 """Call the given cmd in a subprocess using os.system
1953 """Call the given cmd in a subprocess using os.system
1953
1954
1954 Parameters
1955 Parameters
1955 ----------
1956 ----------
1956 cmd : str
1957 cmd : str
1957 Command to execute.
1958 Command to execute.
1958 """
1959 """
1959 # We explicitly do NOT return the subprocess status code, because
1960 # We explicitly do NOT return the subprocess status code, because
1960 # a non-None value would trigger :func:`sys.displayhook` calls.
1961 # a non-None value would trigger :func:`sys.displayhook` calls.
1961 # Instead, we store the exit_code in user_ns.
1962 # Instead, we store the exit_code in user_ns.
1962 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1963 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1963
1964
1964 # use piped system by default, because it is better behaved
1965 # use piped system by default, because it is better behaved
1965 system = system_piped
1966 system = system_piped
1966
1967
1967 def getoutput(self, cmd, split=True):
1968 def getoutput(self, cmd, split=True):
1968 """Get output (possibly including stderr) from a subprocess.
1969 """Get output (possibly including stderr) from a subprocess.
1969
1970
1970 Parameters
1971 Parameters
1971 ----------
1972 ----------
1972 cmd : str
1973 cmd : str
1973 Command to execute (can not end in '&', as background processes are
1974 Command to execute (can not end in '&', as background processes are
1974 not supported.
1975 not supported.
1975 split : bool, optional
1976 split : bool, optional
1976
1977
1977 If True, split the output into an IPython SList. Otherwise, an
1978 If True, split the output into an IPython SList. Otherwise, an
1978 IPython LSString is returned. These are objects similar to normal
1979 IPython LSString is returned. These are objects similar to normal
1979 lists and strings, with a few convenience attributes for easier
1980 lists and strings, with a few convenience attributes for easier
1980 manipulation of line-based output. You can use '?' on them for
1981 manipulation of line-based output. You can use '?' on them for
1981 details.
1982 details.
1982 """
1983 """
1983 if cmd.rstrip().endswith('&'):
1984 if cmd.rstrip().endswith('&'):
1984 # this is *far* from a rigorous test
1985 # this is *far* from a rigorous test
1985 raise OSError("Background processes not supported.")
1986 raise OSError("Background processes not supported.")
1986 out = getoutput(self.var_expand(cmd, depth=2))
1987 out = getoutput(self.var_expand(cmd, depth=2))
1987 if split:
1988 if split:
1988 out = SList(out.splitlines())
1989 out = SList(out.splitlines())
1989 else:
1990 else:
1990 out = LSString(out)
1991 out = LSString(out)
1991 return out
1992 return out
1992
1993
1993 #-------------------------------------------------------------------------
1994 #-------------------------------------------------------------------------
1994 # Things related to aliases
1995 # Things related to aliases
1995 #-------------------------------------------------------------------------
1996 #-------------------------------------------------------------------------
1996
1997
1997 def init_alias(self):
1998 def init_alias(self):
1998 self.alias_manager = AliasManager(shell=self, config=self.config)
1999 self.alias_manager = AliasManager(shell=self, config=self.config)
1999 self.ns_table['alias'] = self.alias_manager.alias_table,
2000 self.ns_table['alias'] = self.alias_manager.alias_table,
2000
2001
2001 #-------------------------------------------------------------------------
2002 #-------------------------------------------------------------------------
2002 # Things related to extensions and plugins
2003 # Things related to extensions and plugins
2003 #-------------------------------------------------------------------------
2004 #-------------------------------------------------------------------------
2004
2005
2005 def init_extension_manager(self):
2006 def init_extension_manager(self):
2006 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2007 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2007
2008
2008 def init_plugin_manager(self):
2009 def init_plugin_manager(self):
2009 self.plugin_manager = PluginManager(config=self.config)
2010 self.plugin_manager = PluginManager(config=self.config)
2010
2011
2011 #-------------------------------------------------------------------------
2012 #-------------------------------------------------------------------------
2012 # Things related to payloads
2013 # Things related to payloads
2013 #-------------------------------------------------------------------------
2014 #-------------------------------------------------------------------------
2014
2015
2015 def init_payload(self):
2016 def init_payload(self):
2016 self.payload_manager = PayloadManager(config=self.config)
2017 self.payload_manager = PayloadManager(config=self.config)
2017
2018
2018 #-------------------------------------------------------------------------
2019 #-------------------------------------------------------------------------
2019 # Things related to the prefilter
2020 # Things related to the prefilter
2020 #-------------------------------------------------------------------------
2021 #-------------------------------------------------------------------------
2021
2022
2022 def init_prefilter(self):
2023 def init_prefilter(self):
2023 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2024 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2024 # Ultimately this will be refactored in the new interpreter code, but
2025 # Ultimately this will be refactored in the new interpreter code, but
2025 # for now, we should expose the main prefilter method (there's legacy
2026 # for now, we should expose the main prefilter method (there's legacy
2026 # code out there that may rely on this).
2027 # code out there that may rely on this).
2027 self.prefilter = self.prefilter_manager.prefilter_lines
2028 self.prefilter = self.prefilter_manager.prefilter_lines
2028
2029
2029 def auto_rewrite_input(self, cmd):
2030 def auto_rewrite_input(self, cmd):
2030 """Print to the screen the rewritten form of the user's command.
2031 """Print to the screen the rewritten form of the user's command.
2031
2032
2032 This shows visual feedback by rewriting input lines that cause
2033 This shows visual feedback by rewriting input lines that cause
2033 automatic calling to kick in, like::
2034 automatic calling to kick in, like::
2034
2035
2035 /f x
2036 /f x
2036
2037
2037 into::
2038 into::
2038
2039
2039 ------> f(x)
2040 ------> f(x)
2040
2041
2041 after the user's input prompt. This helps the user understand that the
2042 after the user's input prompt. This helps the user understand that the
2042 input line was transformed automatically by IPython.
2043 input line was transformed automatically by IPython.
2043 """
2044 """
2044 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2045 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2045
2046
2046 try:
2047 try:
2047 # plain ascii works better w/ pyreadline, on some machines, so
2048 # plain ascii works better w/ pyreadline, on some machines, so
2048 # we use it and only print uncolored rewrite if we have unicode
2049 # we use it and only print uncolored rewrite if we have unicode
2049 rw = str(rw)
2050 rw = str(rw)
2050 print >> io.stdout, rw
2051 print >> io.stdout, rw
2051 except UnicodeEncodeError:
2052 except UnicodeEncodeError:
2052 print "------> " + cmd
2053 print "------> " + cmd
2053
2054
2054 #-------------------------------------------------------------------------
2055 #-------------------------------------------------------------------------
2055 # Things related to extracting values/expressions from kernel and user_ns
2056 # Things related to extracting values/expressions from kernel and user_ns
2056 #-------------------------------------------------------------------------
2057 #-------------------------------------------------------------------------
2057
2058
2058 def _simple_error(self):
2059 def _simple_error(self):
2059 etype, value = sys.exc_info()[:2]
2060 etype, value = sys.exc_info()[:2]
2060 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2061 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2061
2062
2062 def user_variables(self, names):
2063 def user_variables(self, names):
2063 """Get a list of variable names from the user's namespace.
2064 """Get a list of variable names from the user's namespace.
2064
2065
2065 Parameters
2066 Parameters
2066 ----------
2067 ----------
2067 names : list of strings
2068 names : list of strings
2068 A list of names of variables to be read from the user namespace.
2069 A list of names of variables to be read from the user namespace.
2069
2070
2070 Returns
2071 Returns
2071 -------
2072 -------
2072 A dict, keyed by the input names and with the repr() of each value.
2073 A dict, keyed by the input names and with the repr() of each value.
2073 """
2074 """
2074 out = {}
2075 out = {}
2075 user_ns = self.user_ns
2076 user_ns = self.user_ns
2076 for varname in names:
2077 for varname in names:
2077 try:
2078 try:
2078 value = repr(user_ns[varname])
2079 value = repr(user_ns[varname])
2079 except:
2080 except:
2080 value = self._simple_error()
2081 value = self._simple_error()
2081 out[varname] = value
2082 out[varname] = value
2082 return out
2083 return out
2083
2084
2084 def user_expressions(self, expressions):
2085 def user_expressions(self, expressions):
2085 """Evaluate a dict of expressions in the user's namespace.
2086 """Evaluate a dict of expressions in the user's namespace.
2086
2087
2087 Parameters
2088 Parameters
2088 ----------
2089 ----------
2089 expressions : dict
2090 expressions : dict
2090 A dict with string keys and string values. The expression values
2091 A dict with string keys and string values. The expression values
2091 should be valid Python expressions, each of which will be evaluated
2092 should be valid Python expressions, each of which will be evaluated
2092 in the user namespace.
2093 in the user namespace.
2093
2094
2094 Returns
2095 Returns
2095 -------
2096 -------
2096 A dict, keyed like the input expressions dict, with the repr() of each
2097 A dict, keyed like the input expressions dict, with the repr() of each
2097 value.
2098 value.
2098 """
2099 """
2099 out = {}
2100 out = {}
2100 user_ns = self.user_ns
2101 user_ns = self.user_ns
2101 global_ns = self.user_global_ns
2102 global_ns = self.user_global_ns
2102 for key, expr in expressions.iteritems():
2103 for key, expr in expressions.iteritems():
2103 try:
2104 try:
2104 value = repr(eval(expr, global_ns, user_ns))
2105 value = repr(eval(expr, global_ns, user_ns))
2105 except:
2106 except:
2106 value = self._simple_error()
2107 value = self._simple_error()
2107 out[key] = value
2108 out[key] = value
2108 return out
2109 return out
2109
2110
2110 #-------------------------------------------------------------------------
2111 #-------------------------------------------------------------------------
2111 # Things related to the running of code
2112 # Things related to the running of code
2112 #-------------------------------------------------------------------------
2113 #-------------------------------------------------------------------------
2113
2114
2114 def ex(self, cmd):
2115 def ex(self, cmd):
2115 """Execute a normal python statement in user namespace."""
2116 """Execute a normal python statement in user namespace."""
2116 with self.builtin_trap:
2117 with self.builtin_trap:
2117 exec cmd in self.user_global_ns, self.user_ns
2118 exec cmd in self.user_global_ns, self.user_ns
2118
2119
2119 def ev(self, expr):
2120 def ev(self, expr):
2120 """Evaluate python expression expr in user namespace.
2121 """Evaluate python expression expr in user namespace.
2121
2122
2122 Returns the result of evaluation
2123 Returns the result of evaluation
2123 """
2124 """
2124 with self.builtin_trap:
2125 with self.builtin_trap:
2125 return eval(expr, self.user_global_ns, self.user_ns)
2126 return eval(expr, self.user_global_ns, self.user_ns)
2126
2127
2127 def safe_execfile(self, fname, *where, **kw):
2128 def safe_execfile(self, fname, *where, **kw):
2128 """A safe version of the builtin execfile().
2129 """A safe version of the builtin execfile().
2129
2130
2130 This version will never throw an exception, but instead print
2131 This version will never throw an exception, but instead print
2131 helpful error messages to the screen. This only works on pure
2132 helpful error messages to the screen. This only works on pure
2132 Python files with the .py extension.
2133 Python files with the .py extension.
2133
2134
2134 Parameters
2135 Parameters
2135 ----------
2136 ----------
2136 fname : string
2137 fname : string
2137 The name of the file to be executed.
2138 The name of the file to be executed.
2138 where : tuple
2139 where : tuple
2139 One or two namespaces, passed to execfile() as (globals,locals).
2140 One or two namespaces, passed to execfile() as (globals,locals).
2140 If only one is given, it is passed as both.
2141 If only one is given, it is passed as both.
2141 exit_ignore : bool (False)
2142 exit_ignore : bool (False)
2142 If True, then silence SystemExit for non-zero status (it is always
2143 If True, then silence SystemExit for non-zero status (it is always
2143 silenced for zero status, as it is so common).
2144 silenced for zero status, as it is so common).
2144 """
2145 """
2145 kw.setdefault('exit_ignore', False)
2146 kw.setdefault('exit_ignore', False)
2146
2147
2147 fname = os.path.abspath(os.path.expanduser(fname))
2148 fname = os.path.abspath(os.path.expanduser(fname))
2148 # Make sure we have a .py file
2149 # Make sure we have a .py file
2149 if not fname.endswith('.py'):
2150 if not fname.endswith('.py'):
2150 warn('File must end with .py to be run using execfile: <%s>' % fname)
2151 warn('File must end with .py to be run using execfile: <%s>' % fname)
2151
2152
2152 # Make sure we can open the file
2153 # Make sure we can open the file
2153 try:
2154 try:
2154 with open(fname) as thefile:
2155 with open(fname) as thefile:
2155 pass
2156 pass
2156 except:
2157 except:
2157 warn('Could not open file <%s> for safe execution.' % fname)
2158 warn('Could not open file <%s> for safe execution.' % fname)
2158 return
2159 return
2159
2160
2160 # Find things also in current directory. This is needed to mimic the
2161 # Find things also in current directory. This is needed to mimic the
2161 # behavior of running a script from the system command line, where
2162 # behavior of running a script from the system command line, where
2162 # Python inserts the script's directory into sys.path
2163 # Python inserts the script's directory into sys.path
2163 dname = os.path.dirname(fname)
2164 dname = os.path.dirname(fname)
2164
2165
2165 if isinstance(fname, unicode):
2166 if isinstance(fname, unicode):
2166 # execfile uses default encoding instead of filesystem encoding
2167 # execfile uses default encoding instead of filesystem encoding
2167 # so unicode filenames will fail
2168 # so unicode filenames will fail
2168 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2169 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2169
2170
2170 with prepended_to_syspath(dname):
2171 with prepended_to_syspath(dname):
2171 try:
2172 try:
2172 execfile(fname,*where)
2173 execfile(fname,*where)
2173 except SystemExit, status:
2174 except SystemExit, status:
2174 # If the call was made with 0 or None exit status (sys.exit(0)
2175 # If the call was made with 0 or None exit status (sys.exit(0)
2175 # or sys.exit() ), don't bother showing a traceback, as both of
2176 # or sys.exit() ), don't bother showing a traceback, as both of
2176 # these are considered normal by the OS:
2177 # these are considered normal by the OS:
2177 # > python -c'import sys;sys.exit(0)'; echo $?
2178 # > python -c'import sys;sys.exit(0)'; echo $?
2178 # 0
2179 # 0
2179 # > python -c'import sys;sys.exit()'; echo $?
2180 # > python -c'import sys;sys.exit()'; echo $?
2180 # 0
2181 # 0
2181 # For other exit status, we show the exception unless
2182 # For other exit status, we show the exception unless
2182 # explicitly silenced, but only in short form.
2183 # explicitly silenced, but only in short form.
2183 if status.code not in (0, None) and not kw['exit_ignore']:
2184 if status.code not in (0, None) and not kw['exit_ignore']:
2184 self.showtraceback(exception_only=True)
2185 self.showtraceback(exception_only=True)
2185 except:
2186 except:
2186 self.showtraceback()
2187 self.showtraceback()
2187
2188
2188 def safe_execfile_ipy(self, fname):
2189 def safe_execfile_ipy(self, fname):
2189 """Like safe_execfile, but for .ipy files with IPython syntax.
2190 """Like safe_execfile, but for .ipy files with IPython syntax.
2190
2191
2191 Parameters
2192 Parameters
2192 ----------
2193 ----------
2193 fname : str
2194 fname : str
2194 The name of the file to execute. The filename must have a
2195 The name of the file to execute. The filename must have a
2195 .ipy extension.
2196 .ipy extension.
2196 """
2197 """
2197 fname = os.path.abspath(os.path.expanduser(fname))
2198 fname = os.path.abspath(os.path.expanduser(fname))
2198
2199
2199 # Make sure we have a .py file
2200 # Make sure we have a .py file
2200 if not fname.endswith('.ipy'):
2201 if not fname.endswith('.ipy'):
2201 warn('File must end with .py to be run using execfile: <%s>' % fname)
2202 warn('File must end with .py to be run using execfile: <%s>' % fname)
2202
2203
2203 # Make sure we can open the file
2204 # Make sure we can open the file
2204 try:
2205 try:
2205 with open(fname) as thefile:
2206 with open(fname) as thefile:
2206 pass
2207 pass
2207 except:
2208 except:
2208 warn('Could not open file <%s> for safe execution.' % fname)
2209 warn('Could not open file <%s> for safe execution.' % fname)
2209 return
2210 return
2210
2211
2211 # Find things also in current directory. This is needed to mimic the
2212 # Find things also in current directory. This is needed to mimic the
2212 # behavior of running a script from the system command line, where
2213 # behavior of running a script from the system command line, where
2213 # Python inserts the script's directory into sys.path
2214 # Python inserts the script's directory into sys.path
2214 dname = os.path.dirname(fname)
2215 dname = os.path.dirname(fname)
2215
2216
2216 with prepended_to_syspath(dname):
2217 with prepended_to_syspath(dname):
2217 try:
2218 try:
2218 with open(fname) as thefile:
2219 with open(fname) as thefile:
2219 # self.run_cell currently captures all exceptions
2220 # self.run_cell currently captures all exceptions
2220 # raised in user code. It would be nice if there were
2221 # raised in user code. It would be nice if there were
2221 # versions of runlines, execfile that did raise, so
2222 # versions of runlines, execfile that did raise, so
2222 # we could catch the errors.
2223 # we could catch the errors.
2223 self.run_cell(thefile.read(), store_history=False)
2224 self.run_cell(thefile.read(), store_history=False)
2224 except:
2225 except:
2225 self.showtraceback()
2226 self.showtraceback()
2226 warn('Unknown failure executing file: <%s>' % fname)
2227 warn('Unknown failure executing file: <%s>' % fname)
2227
2228
2228 def run_cell(self, raw_cell, store_history=True):
2229 def run_cell(self, raw_cell, store_history=True):
2229 """Run a complete IPython cell.
2230 """Run a complete IPython cell.
2230
2231
2231 Parameters
2232 Parameters
2232 ----------
2233 ----------
2233 raw_cell : str
2234 raw_cell : str
2234 The code (including IPython code such as %magic functions) to run.
2235 The code (including IPython code such as %magic functions) to run.
2235 store_history : bool
2236 store_history : bool
2236 If True, the raw and translated cell will be stored in IPython's
2237 If True, the raw and translated cell will be stored in IPython's
2237 history. For user code calling back into IPython's machinery, this
2238 history. For user code calling back into IPython's machinery, this
2238 should be set to False.
2239 should be set to False.
2239 """
2240 """
2240 if (not raw_cell) or raw_cell.isspace():
2241 if (not raw_cell) or raw_cell.isspace():
2241 return
2242 return
2242
2243
2243 for line in raw_cell.splitlines():
2244 for line in raw_cell.splitlines():
2244 self.input_splitter.push(line)
2245 self.input_splitter.push(line)
2245 cell = self.input_splitter.source_reset()
2246 cell = self.input_splitter.source_reset()
2246
2247
2247 with self.builtin_trap:
2248 with self.builtin_trap:
2248 prefilter_failed = False
2249 prefilter_failed = False
2249 if len(cell.splitlines()) == 1:
2250 if len(cell.splitlines()) == 1:
2250 try:
2251 try:
2251 # use prefilter_lines to handle trailing newlines
2252 # use prefilter_lines to handle trailing newlines
2252 # restore trailing newline for ast.parse
2253 # restore trailing newline for ast.parse
2253 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2254 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2254 except AliasError as e:
2255 except AliasError as e:
2255 error(e)
2256 error(e)
2256 prefilter_failed=True
2257 prefilter_failed=True
2257 except Exception:
2258 except Exception:
2258 # don't allow prefilter errors to crash IPython
2259 # don't allow prefilter errors to crash IPython
2259 self.showtraceback()
2260 self.showtraceback()
2260 prefilter_failed = True
2261 prefilter_failed = True
2261
2262
2262 # Store raw and processed history
2263 # Store raw and processed history
2263 if store_history:
2264 if store_history:
2264 self.history_manager.store_inputs(self.execution_count,
2265 self.history_manager.store_inputs(self.execution_count,
2265 cell, raw_cell)
2266 cell, raw_cell)
2266
2267
2267 self.logger.log(cell, raw_cell)
2268 self.logger.log(cell, raw_cell)
2268
2269
2269 if not prefilter_failed:
2270 if not prefilter_failed:
2270 # don't run if prefilter failed
2271 # don't run if prefilter failed
2271 cell_name = self.compile.cache(cell, self.execution_count)
2272 cell_name = self.compile.cache(cell, self.execution_count)
2272
2273
2273 with self.display_trap:
2274 with self.display_trap:
2274 try:
2275 try:
2275 code_ast = ast.parse(cell, filename=cell_name)
2276 code_ast = ast.parse(cell, filename=cell_name)
2276 except (OverflowError, SyntaxError, ValueError, TypeError,
2277 except (OverflowError, SyntaxError, ValueError, TypeError,
2277 MemoryError):
2278 MemoryError):
2278 self.showsyntaxerror()
2279 self.showsyntaxerror()
2279 self.execution_count += 1
2280 self.execution_count += 1
2280 return None
2281 return None
2281
2282
2282 self.run_ast_nodes(code_ast.body, cell_name,
2283 self.run_ast_nodes(code_ast.body, cell_name,
2283 interactivity="last_expr")
2284 interactivity="last_expr")
2284
2285
2285 # Execute any registered post-execution functions.
2286 # Execute any registered post-execution functions.
2286 for func, status in self._post_execute.iteritems():
2287 for func, status in self._post_execute.iteritems():
2287 if not status:
2288 if not status:
2288 continue
2289 continue
2289 try:
2290 try:
2290 func()
2291 func()
2291 except:
2292 except:
2292 self.showtraceback()
2293 self.showtraceback()
2293 # Deactivate failing function
2294 # Deactivate failing function
2294 self._post_execute[func] = False
2295 self._post_execute[func] = False
2295
2296
2296 if store_history:
2297 if store_history:
2297 # Write output to the database. Does nothing unless
2298 # Write output to the database. Does nothing unless
2298 # history output logging is enabled.
2299 # history output logging is enabled.
2299 self.history_manager.store_output(self.execution_count)
2300 self.history_manager.store_output(self.execution_count)
2300 # Each cell is a *single* input, regardless of how many lines it has
2301 # Each cell is a *single* input, regardless of how many lines it has
2301 self.execution_count += 1
2302 self.execution_count += 1
2302
2303
2303 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2304 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2304 """Run a sequence of AST nodes. The execution mode depends on the
2305 """Run a sequence of AST nodes. The execution mode depends on the
2305 interactivity parameter.
2306 interactivity parameter.
2306
2307
2307 Parameters
2308 Parameters
2308 ----------
2309 ----------
2309 nodelist : list
2310 nodelist : list
2310 A sequence of AST nodes to run.
2311 A sequence of AST nodes to run.
2311 cell_name : str
2312 cell_name : str
2312 Will be passed to the compiler as the filename of the cell. Typically
2313 Will be passed to the compiler as the filename of the cell. Typically
2313 the value returned by ip.compile.cache(cell).
2314 the value returned by ip.compile.cache(cell).
2314 interactivity : str
2315 interactivity : str
2315 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2316 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2316 run interactively (displaying output from expressions). 'last_expr'
2317 run interactively (displaying output from expressions). 'last_expr'
2317 will run the last node interactively only if it is an expression (i.e.
2318 will run the last node interactively only if it is an expression (i.e.
2318 expressions in loops or other blocks are not displayed. Other values
2319 expressions in loops or other blocks are not displayed. Other values
2319 for this parameter will raise a ValueError.
2320 for this parameter will raise a ValueError.
2320 """
2321 """
2321 if not nodelist:
2322 if not nodelist:
2322 return
2323 return
2323
2324
2324 if interactivity == 'last_expr':
2325 if interactivity == 'last_expr':
2325 if isinstance(nodelist[-1], ast.Expr):
2326 if isinstance(nodelist[-1], ast.Expr):
2326 interactivity = "last"
2327 interactivity = "last"
2327 else:
2328 else:
2328 interactivity = "none"
2329 interactivity = "none"
2329
2330
2330 if interactivity == 'none':
2331 if interactivity == 'none':
2331 to_run_exec, to_run_interactive = nodelist, []
2332 to_run_exec, to_run_interactive = nodelist, []
2332 elif interactivity == 'last':
2333 elif interactivity == 'last':
2333 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2334 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2334 elif interactivity == 'all':
2335 elif interactivity == 'all':
2335 to_run_exec, to_run_interactive = [], nodelist
2336 to_run_exec, to_run_interactive = [], nodelist
2336 else:
2337 else:
2337 raise ValueError("Interactivity was %r" % interactivity)
2338 raise ValueError("Interactivity was %r" % interactivity)
2338
2339
2339 exec_count = self.execution_count
2340 exec_count = self.execution_count
2340
2341
2341 for i, node in enumerate(to_run_exec):
2342 for i, node in enumerate(to_run_exec):
2342 mod = ast.Module([node])
2343 mod = ast.Module([node])
2343 code = self.compile(mod, cell_name, "exec")
2344 code = self.compile(mod, cell_name, "exec")
2344 if self.run_code(code):
2345 if self.run_code(code):
2345 return True
2346 return True
2346
2347
2347 for i, node in enumerate(to_run_interactive):
2348 for i, node in enumerate(to_run_interactive):
2348 mod = ast.Interactive([node])
2349 mod = ast.Interactive([node])
2349 code = self.compile(mod, cell_name, "single")
2350 code = self.compile(mod, cell_name, "single")
2350 if self.run_code(code):
2351 if self.run_code(code):
2351 return True
2352 return True
2352
2353
2353 return False
2354 return False
2354
2355
2355 def run_code(self, code_obj):
2356 def run_code(self, code_obj):
2356 """Execute a code object.
2357 """Execute a code object.
2357
2358
2358 When an exception occurs, self.showtraceback() is called to display a
2359 When an exception occurs, self.showtraceback() is called to display a
2359 traceback.
2360 traceback.
2360
2361
2361 Parameters
2362 Parameters
2362 ----------
2363 ----------
2363 code_obj : code object
2364 code_obj : code object
2364 A compiled code object, to be executed
2365 A compiled code object, to be executed
2365 post_execute : bool [default: True]
2366 post_execute : bool [default: True]
2366 whether to call post_execute hooks after this particular execution.
2367 whether to call post_execute hooks after this particular execution.
2367
2368
2368 Returns
2369 Returns
2369 -------
2370 -------
2370 False : successful execution.
2371 False : successful execution.
2371 True : an error occurred.
2372 True : an error occurred.
2372 """
2373 """
2373
2374
2374 # Set our own excepthook in case the user code tries to call it
2375 # Set our own excepthook in case the user code tries to call it
2375 # directly, so that the IPython crash handler doesn't get triggered
2376 # directly, so that the IPython crash handler doesn't get triggered
2376 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2377 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2377
2378
2378 # we save the original sys.excepthook in the instance, in case config
2379 # we save the original sys.excepthook in the instance, in case config
2379 # code (such as magics) needs access to it.
2380 # code (such as magics) needs access to it.
2380 self.sys_excepthook = old_excepthook
2381 self.sys_excepthook = old_excepthook
2381 outflag = 1 # happens in more places, so it's easier as default
2382 outflag = 1 # happens in more places, so it's easier as default
2382 try:
2383 try:
2383 try:
2384 try:
2384 self.hooks.pre_run_code_hook()
2385 self.hooks.pre_run_code_hook()
2385 #rprint('Running code', repr(code_obj)) # dbg
2386 #rprint('Running code', repr(code_obj)) # dbg
2386 exec code_obj in self.user_global_ns, self.user_ns
2387 exec code_obj in self.user_global_ns, self.user_ns
2387 finally:
2388 finally:
2388 # Reset our crash handler in place
2389 # Reset our crash handler in place
2389 sys.excepthook = old_excepthook
2390 sys.excepthook = old_excepthook
2390 except SystemExit:
2391 except SystemExit:
2391 self.showtraceback(exception_only=True)
2392 self.showtraceback(exception_only=True)
2392 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2393 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2393 except self.custom_exceptions:
2394 except self.custom_exceptions:
2394 etype,value,tb = sys.exc_info()
2395 etype,value,tb = sys.exc_info()
2395 self.CustomTB(etype,value,tb)
2396 self.CustomTB(etype,value,tb)
2396 except:
2397 except:
2397 self.showtraceback()
2398 self.showtraceback()
2398 else:
2399 else:
2399 outflag = 0
2400 outflag = 0
2400 if softspace(sys.stdout, 0):
2401 if softspace(sys.stdout, 0):
2401 print
2402 print
2402
2403
2403 return outflag
2404 return outflag
2404
2405
2405 # For backwards compatibility
2406 # For backwards compatibility
2406 runcode = run_code
2407 runcode = run_code
2407
2408
2408 #-------------------------------------------------------------------------
2409 #-------------------------------------------------------------------------
2409 # Things related to GUI support and pylab
2410 # Things related to GUI support and pylab
2410 #-------------------------------------------------------------------------
2411 #-------------------------------------------------------------------------
2411
2412
2412 def enable_pylab(self, gui=None):
2413 def enable_pylab(self, gui=None):
2413 raise NotImplementedError('Implement enable_pylab in a subclass')
2414 raise NotImplementedError('Implement enable_pylab in a subclass')
2414
2415
2415 #-------------------------------------------------------------------------
2416 #-------------------------------------------------------------------------
2416 # Utilities
2417 # Utilities
2417 #-------------------------------------------------------------------------
2418 #-------------------------------------------------------------------------
2418
2419
2419 def var_expand(self,cmd,depth=0):
2420 def var_expand(self,cmd,depth=0):
2420 """Expand python variables in a string.
2421 """Expand python variables in a string.
2421
2422
2422 The depth argument indicates how many frames above the caller should
2423 The depth argument indicates how many frames above the caller should
2423 be walked to look for the local namespace where to expand variables.
2424 be walked to look for the local namespace where to expand variables.
2424
2425
2425 The global namespace for expansion is always the user's interactive
2426 The global namespace for expansion is always the user's interactive
2426 namespace.
2427 namespace.
2427 """
2428 """
2428 res = ItplNS(cmd, self.user_ns, # globals
2429 res = ItplNS(cmd, self.user_ns, # globals
2429 # Skip our own frame in searching for locals:
2430 # Skip our own frame in searching for locals:
2430 sys._getframe(depth+1).f_locals # locals
2431 sys._getframe(depth+1).f_locals # locals
2431 )
2432 )
2432 return str(res).decode(res.codec)
2433 return str(res).decode(res.codec)
2433
2434
2434 def mktempfile(self, data=None, prefix='ipython_edit_'):
2435 def mktempfile(self, data=None, prefix='ipython_edit_'):
2435 """Make a new tempfile and return its filename.
2436 """Make a new tempfile and return its filename.
2436
2437
2437 This makes a call to tempfile.mktemp, but it registers the created
2438 This makes a call to tempfile.mktemp, but it registers the created
2438 filename internally so ipython cleans it up at exit time.
2439 filename internally so ipython cleans it up at exit time.
2439
2440
2440 Optional inputs:
2441 Optional inputs:
2441
2442
2442 - data(None): if data is given, it gets written out to the temp file
2443 - data(None): if data is given, it gets written out to the temp file
2443 immediately, and the file is closed again."""
2444 immediately, and the file is closed again."""
2444
2445
2445 filename = tempfile.mktemp('.py', prefix)
2446 filename = tempfile.mktemp('.py', prefix)
2446 self.tempfiles.append(filename)
2447 self.tempfiles.append(filename)
2447
2448
2448 if data:
2449 if data:
2449 tmp_file = open(filename,'w')
2450 tmp_file = open(filename,'w')
2450 tmp_file.write(data)
2451 tmp_file.write(data)
2451 tmp_file.close()
2452 tmp_file.close()
2452 return filename
2453 return filename
2453
2454
2454 # TODO: This should be removed when Term is refactored.
2455 # TODO: This should be removed when Term is refactored.
2455 def write(self,data):
2456 def write(self,data):
2456 """Write a string to the default output"""
2457 """Write a string to the default output"""
2457 io.stdout.write(data)
2458 io.stdout.write(data)
2458
2459
2459 # TODO: This should be removed when Term is refactored.
2460 # TODO: This should be removed when Term is refactored.
2460 def write_err(self,data):
2461 def write_err(self,data):
2461 """Write a string to the default error output"""
2462 """Write a string to the default error output"""
2462 io.stderr.write(data)
2463 io.stderr.write(data)
2463
2464
2464 def ask_yes_no(self,prompt,default=True):
2465 def ask_yes_no(self,prompt,default=True):
2465 if self.quiet:
2466 if self.quiet:
2466 return True
2467 return True
2467 return ask_yes_no(prompt,default)
2468 return ask_yes_no(prompt,default)
2468
2469
2469 def show_usage(self):
2470 def show_usage(self):
2470 """Show a usage message"""
2471 """Show a usage message"""
2471 page.page(IPython.core.usage.interactive_usage)
2472 page.page(IPython.core.usage.interactive_usage)
2472
2473
2473 def find_user_code(self, target, raw=True):
2474 def find_user_code(self, target, raw=True):
2474 """Get a code string from history, file, or a string or macro.
2475 """Get a code string from history, file, or a string or macro.
2475
2476
2476 This is mainly used by magic functions.
2477 This is mainly used by magic functions.
2477
2478
2478 Parameters
2479 Parameters
2479 ----------
2480 ----------
2480 target : str
2481 target : str
2481 A string specifying code to retrieve. This will be tried respectively
2482 A string specifying code to retrieve. This will be tried respectively
2482 as: ranges of input history (see %history for syntax), a filename, or
2483 as: ranges of input history (see %history for syntax), a filename, or
2483 an expression evaluating to a string or Macro in the user namespace.
2484 an expression evaluating to a string or Macro in the user namespace.
2484 raw : bool
2485 raw : bool
2485 If true (default), retrieve raw history. Has no effect on the other
2486 If true (default), retrieve raw history. Has no effect on the other
2486 retrieval mechanisms.
2487 retrieval mechanisms.
2487
2488
2488 Returns
2489 Returns
2489 -------
2490 -------
2490 A string of code.
2491 A string of code.
2491
2492
2492 ValueError is raised if nothing is found, and TypeError if it evaluates
2493 ValueError is raised if nothing is found, and TypeError if it evaluates
2493 to an object of another type. In each case, .args[0] is a printable
2494 to an object of another type. In each case, .args[0] is a printable
2494 message.
2495 message.
2495 """
2496 """
2496 code = self.extract_input_lines(target, raw=raw) # Grab history
2497 code = self.extract_input_lines(target, raw=raw) # Grab history
2497 if code:
2498 if code:
2498 return code
2499 return code
2499 if os.path.isfile(target): # Read file
2500 if os.path.isfile(target): # Read file
2500 return open(target, "r").read()
2501 return open(target, "r").read()
2501
2502
2502 try: # User namespace
2503 try: # User namespace
2503 codeobj = eval(target, self.user_ns)
2504 codeobj = eval(target, self.user_ns)
2504 except Exception:
2505 except Exception:
2505 raise ValueError(("'%s' was not found in history, as a file, nor in"
2506 raise ValueError(("'%s' was not found in history, as a file, nor in"
2506 " the user namespace.") % target)
2507 " the user namespace.") % target)
2507 if isinstance(codeobj, basestring):
2508 if isinstance(codeobj, basestring):
2508 return codeobj
2509 return codeobj
2509 elif isinstance(codeobj, Macro):
2510 elif isinstance(codeobj, Macro):
2510 return codeobj.value
2511 return codeobj.value
2511
2512
2512 raise TypeError("%s is neither a string nor a macro." % target,
2513 raise TypeError("%s is neither a string nor a macro." % target,
2513 codeobj)
2514 codeobj)
2514
2515
2515 #-------------------------------------------------------------------------
2516 #-------------------------------------------------------------------------
2516 # Things related to IPython exiting
2517 # Things related to IPython exiting
2517 #-------------------------------------------------------------------------
2518 #-------------------------------------------------------------------------
2518 def atexit_operations(self):
2519 def atexit_operations(self):
2519 """This will be executed at the time of exit.
2520 """This will be executed at the time of exit.
2520
2521
2521 Cleanup operations and saving of persistent data that is done
2522 Cleanup operations and saving of persistent data that is done
2522 unconditionally by IPython should be performed here.
2523 unconditionally by IPython should be performed here.
2523
2524
2524 For things that may depend on startup flags or platform specifics (such
2525 For things that may depend on startup flags or platform specifics (such
2525 as having readline or not), register a separate atexit function in the
2526 as having readline or not), register a separate atexit function in the
2526 code that has the appropriate information, rather than trying to
2527 code that has the appropriate information, rather than trying to
2527 clutter
2528 clutter
2528 """
2529 """
2529 # Cleanup all tempfiles left around
2530 # Cleanup all tempfiles left around
2530 for tfile in self.tempfiles:
2531 for tfile in self.tempfiles:
2531 try:
2532 try:
2532 os.unlink(tfile)
2533 os.unlink(tfile)
2533 except OSError:
2534 except OSError:
2534 pass
2535 pass
2535
2536
2536 # Close the history session (this stores the end time and line count)
2537 # Close the history session (this stores the end time and line count)
2537 self.history_manager.end_session()
2538 self.history_manager.end_session()
2538
2539
2539 # Clear all user namespaces to release all references cleanly.
2540 # Clear all user namespaces to release all references cleanly.
2540 self.reset(new_session=False)
2541 self.reset(new_session=False)
2541
2542
2542 # Run user hooks
2543 # Run user hooks
2543 self.hooks.shutdown_hook()
2544 self.hooks.shutdown_hook()
2544
2545
2545 def cleanup(self):
2546 def cleanup(self):
2546 self.restore_sys_module_state()
2547 self.restore_sys_module_state()
2547
2548
2548
2549
2549 class InteractiveShellABC(object):
2550 class InteractiveShellABC(object):
2550 """An abstract base class for InteractiveShell."""
2551 """An abstract base class for InteractiveShell."""
2551 __metaclass__ = abc.ABCMeta
2552 __metaclass__ = abc.ABCMeta
2552
2553
2553 InteractiveShellABC.register(InteractiveShell)
2554 InteractiveShellABC.register(InteractiveShell)
@@ -1,3504 +1,3504 b''
1 # encoding: utf-8
1 # encoding: utf-8
2 """Magic functions for InteractiveShell.
2 """Magic functions for InteractiveShell.
3 """
3 """
4
4
5 #-----------------------------------------------------------------------------
5 #-----------------------------------------------------------------------------
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
8 # Copyright (C) 2008-2009 The IPython Development Team
8 # Copyright (C) 2008-2009 The IPython Development Team
9
9
10 # Distributed under the terms of the BSD License. The full license is in
10 # Distributed under the terms of the BSD License. The full license is in
11 # the file COPYING, distributed as part of this software.
11 # the file COPYING, distributed as part of this software.
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13
13
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 # Imports
15 # Imports
16 #-----------------------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17
17
18 import __builtin__
18 import __builtin__
19 import __future__
19 import __future__
20 import bdb
20 import bdb
21 import inspect
21 import inspect
22 import os
22 import os
23 import sys
23 import sys
24 import shutil
24 import shutil
25 import re
25 import re
26 import time
26 import time
27 import textwrap
27 import textwrap
28 from cStringIO import StringIO
28 from cStringIO import StringIO
29 from getopt import getopt,GetoptError
29 from getopt import getopt,GetoptError
30 from pprint import pformat
30 from pprint import pformat
31 from xmlrpclib import ServerProxy
31 from xmlrpclib import ServerProxy
32
32
33 # cProfile was added in Python2.5
33 # cProfile was added in Python2.5
34 try:
34 try:
35 import cProfile as profile
35 import cProfile as profile
36 import pstats
36 import pstats
37 except ImportError:
37 except ImportError:
38 # profile isn't bundled by default in Debian for license reasons
38 # profile isn't bundled by default in Debian for license reasons
39 try:
39 try:
40 import profile,pstats
40 import profile,pstats
41 except ImportError:
41 except ImportError:
42 profile = pstats = None
42 profile = pstats = None
43
43
44 import IPython
44 import IPython
45 from IPython.core import debugger, oinspect
45 from IPython.core import debugger, oinspect
46 from IPython.core.error import TryNext
46 from IPython.core.error import TryNext
47 from IPython.core.error import UsageError
47 from IPython.core.error import UsageError
48 from IPython.core.fakemodule import FakeModule
48 from IPython.core.fakemodule import FakeModule
49 from IPython.core.profiledir import ProfileDir
49 from IPython.core.profiledir import ProfileDir
50 from IPython.core.macro import Macro
50 from IPython.core.macro import Macro
51 from IPython.core import page
51 from IPython.core import page
52 from IPython.core.prefilter import ESC_MAGIC
52 from IPython.core.prefilter import ESC_MAGIC
53 from IPython.lib.pylabtools import mpl_runner
53 from IPython.lib.pylabtools import mpl_runner
54 from IPython.external.Itpl import itpl, printpl
54 from IPython.external.Itpl import itpl, printpl
55 from IPython.testing.skipdoctest import skip_doctest
55 from IPython.testing.skipdoctest import skip_doctest
56 from IPython.utils.io import file_read, nlprint
56 from IPython.utils.io import file_read, nlprint
57 from IPython.utils.path import get_py_filename
57 from IPython.utils.path import get_py_filename
58 from IPython.utils.process import arg_split, abbrev_cwd
58 from IPython.utils.process import arg_split, abbrev_cwd
59 from IPython.utils.terminal import set_term_title
59 from IPython.utils.terminal import set_term_title
60 from IPython.utils.text import LSString, SList, format_screen
60 from IPython.utils.text import LSString, SList, format_screen
61 from IPython.utils.timing import clock, clock2
61 from IPython.utils.timing import clock, clock2
62 from IPython.utils.warn import warn, error
62 from IPython.utils.warn import warn, error
63 from IPython.utils.ipstruct import Struct
63 from IPython.utils.ipstruct import Struct
64 import IPython.utils.generics
64 import IPython.utils.generics
65
65
66 #-----------------------------------------------------------------------------
66 #-----------------------------------------------------------------------------
67 # Utility functions
67 # Utility functions
68 #-----------------------------------------------------------------------------
68 #-----------------------------------------------------------------------------
69
69
70 def on_off(tag):
70 def on_off(tag):
71 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
71 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
72 return ['OFF','ON'][tag]
72 return ['OFF','ON'][tag]
73
73
74 class Bunch: pass
74 class Bunch: pass
75
75
76 def compress_dhist(dh):
76 def compress_dhist(dh):
77 head, tail = dh[:-10], dh[-10:]
77 head, tail = dh[:-10], dh[-10:]
78
78
79 newhead = []
79 newhead = []
80 done = set()
80 done = set()
81 for h in head:
81 for h in head:
82 if h in done:
82 if h in done:
83 continue
83 continue
84 newhead.append(h)
84 newhead.append(h)
85 done.add(h)
85 done.add(h)
86
86
87 return newhead + tail
87 return newhead + tail
88
88
89 def needs_local_scope(func):
89 def needs_local_scope(func):
90 """Decorator to mark magic functions which need to local scope to run."""
90 """Decorator to mark magic functions which need to local scope to run."""
91 func.needs_local_scope = True
91 func.needs_local_scope = True
92 return func
92 return func
93
93
94 # Used for exception handling in magic_edit
94 # Used for exception handling in magic_edit
95 class MacroToEdit(ValueError): pass
95 class MacroToEdit(ValueError): pass
96
96
97 #***************************************************************************
97 #***************************************************************************
98 # Main class implementing Magic functionality
98 # Main class implementing Magic functionality
99
99
100 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
100 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
101 # on construction of the main InteractiveShell object. Something odd is going
101 # on construction of the main InteractiveShell object. Something odd is going
102 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
102 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
103 # eventually this needs to be clarified.
103 # eventually this needs to be clarified.
104 # BG: This is because InteractiveShell inherits from this, but is itself a
104 # BG: This is because InteractiveShell inherits from this, but is itself a
105 # Configurable. This messes up the MRO in some way. The fix is that we need to
105 # Configurable. This messes up the MRO in some way. The fix is that we need to
106 # make Magic a configurable that InteractiveShell does not subclass.
106 # make Magic a configurable that InteractiveShell does not subclass.
107
107
108 class Magic:
108 class Magic:
109 """Magic functions for InteractiveShell.
109 """Magic functions for InteractiveShell.
110
110
111 Shell functions which can be reached as %function_name. All magic
111 Shell functions which can be reached as %function_name. All magic
112 functions should accept a string, which they can parse for their own
112 functions should accept a string, which they can parse for their own
113 needs. This can make some functions easier to type, eg `%cd ../`
113 needs. This can make some functions easier to type, eg `%cd ../`
114 vs. `%cd("../")`
114 vs. `%cd("../")`
115
115
116 ALL definitions MUST begin with the prefix magic_. The user won't need it
116 ALL definitions MUST begin with the prefix magic_. The user won't need it
117 at the command line, but it is is needed in the definition. """
117 at the command line, but it is is needed in the definition. """
118
118
119 # class globals
119 # class globals
120 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
120 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
121 'Automagic is ON, % prefix NOT needed for magic functions.']
121 'Automagic is ON, % prefix NOT needed for magic functions.']
122
122
123 #......................................................................
123 #......................................................................
124 # some utility functions
124 # some utility functions
125
125
126 def __init__(self,shell):
126 def __init__(self,shell):
127
127
128 self.options_table = {}
128 self.options_table = {}
129 if profile is None:
129 if profile is None:
130 self.magic_prun = self.profile_missing_notice
130 self.magic_prun = self.profile_missing_notice
131 self.shell = shell
131 self.shell = shell
132
132
133 # namespace for holding state we may need
133 # namespace for holding state we may need
134 self._magic_state = Bunch()
134 self._magic_state = Bunch()
135
135
136 def profile_missing_notice(self, *args, **kwargs):
136 def profile_missing_notice(self, *args, **kwargs):
137 error("""\
137 error("""\
138 The profile module could not be found. It has been removed from the standard
138 The profile module could not be found. It has been removed from the standard
139 python packages because of its non-free license. To use profiling, install the
139 python packages because of its non-free license. To use profiling, install the
140 python-profiler package from non-free.""")
140 python-profiler package from non-free.""")
141
141
142 def default_option(self,fn,optstr):
142 def default_option(self,fn,optstr):
143 """Make an entry in the options_table for fn, with value optstr"""
143 """Make an entry in the options_table for fn, with value optstr"""
144
144
145 if fn not in self.lsmagic():
145 if fn not in self.lsmagic():
146 error("%s is not a magic function" % fn)
146 error("%s is not a magic function" % fn)
147 self.options_table[fn] = optstr
147 self.options_table[fn] = optstr
148
148
149 def lsmagic(self):
149 def lsmagic(self):
150 """Return a list of currently available magic functions.
150 """Return a list of currently available magic functions.
151
151
152 Gives a list of the bare names after mangling (['ls','cd', ...], not
152 Gives a list of the bare names after mangling (['ls','cd', ...], not
153 ['magic_ls','magic_cd',...]"""
153 ['magic_ls','magic_cd',...]"""
154
154
155 # FIXME. This needs a cleanup, in the way the magics list is built.
155 # FIXME. This needs a cleanup, in the way the magics list is built.
156
156
157 # magics in class definition
157 # magics in class definition
158 class_magic = lambda fn: fn.startswith('magic_') and \
158 class_magic = lambda fn: fn.startswith('magic_') and \
159 callable(Magic.__dict__[fn])
159 callable(Magic.__dict__[fn])
160 # in instance namespace (run-time user additions)
160 # in instance namespace (run-time user additions)
161 inst_magic = lambda fn: fn.startswith('magic_') and \
161 inst_magic = lambda fn: fn.startswith('magic_') and \
162 callable(self.__dict__[fn])
162 callable(self.__dict__[fn])
163 # and bound magics by user (so they can access self):
163 # and bound magics by user (so they can access self):
164 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
164 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
165 callable(self.__class__.__dict__[fn])
165 callable(self.__class__.__dict__[fn])
166 magics = filter(class_magic,Magic.__dict__.keys()) + \
166 magics = filter(class_magic,Magic.__dict__.keys()) + \
167 filter(inst_magic,self.__dict__.keys()) + \
167 filter(inst_magic,self.__dict__.keys()) + \
168 filter(inst_bound_magic,self.__class__.__dict__.keys())
168 filter(inst_bound_magic,self.__class__.__dict__.keys())
169 out = []
169 out = []
170 for fn in set(magics):
170 for fn in set(magics):
171 out.append(fn.replace('magic_','',1))
171 out.append(fn.replace('magic_','',1))
172 out.sort()
172 out.sort()
173 return out
173 return out
174
174
175 def extract_input_lines(self, range_str, raw=False):
175 def extract_input_lines(self, range_str, raw=False):
176 """Return as a string a set of input history slices.
176 """Return as a string a set of input history slices.
177
177
178 Inputs:
178 Inputs:
179
179
180 - range_str: the set of slices is given as a string, like
180 - range_str: the set of slices is given as a string, like
181 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
181 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
182 which get their arguments as strings. The number before the / is the
182 which get their arguments as strings. The number before the / is the
183 session number: ~n goes n back from the current session.
183 session number: ~n goes n back from the current session.
184
184
185 Optional inputs:
185 Optional inputs:
186
186
187 - raw(False): by default, the processed input is used. If this is
187 - raw(False): by default, the processed input is used. If this is
188 true, the raw input history is used instead.
188 true, the raw input history is used instead.
189
189
190 Note that slices can be called with two notations:
190 Note that slices can be called with two notations:
191
191
192 N:M -> standard python form, means including items N...(M-1).
192 N:M -> standard python form, means including items N...(M-1).
193
193
194 N-M -> include items N..M (closed endpoint)."""
194 N-M -> include items N..M (closed endpoint)."""
195 lines = self.shell.history_manager.\
195 lines = self.shell.history_manager.\
196 get_range_by_str(range_str, raw=raw)
196 get_range_by_str(range_str, raw=raw)
197 return "\n".join(x for _, _, x in lines)
197 return "\n".join(x for _, _, x in lines)
198
198
199 def arg_err(self,func):
199 def arg_err(self,func):
200 """Print docstring if incorrect arguments were passed"""
200 """Print docstring if incorrect arguments were passed"""
201 print 'Error in arguments:'
201 print 'Error in arguments:'
202 print oinspect.getdoc(func)
202 print oinspect.getdoc(func)
203
203
204 def format_latex(self,strng):
204 def format_latex(self,strng):
205 """Format a string for latex inclusion."""
205 """Format a string for latex inclusion."""
206
206
207 # Characters that need to be escaped for latex:
207 # Characters that need to be escaped for latex:
208 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
208 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
209 # Magic command names as headers:
209 # Magic command names as headers:
210 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
210 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
211 re.MULTILINE)
211 re.MULTILINE)
212 # Magic commands
212 # Magic commands
213 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
213 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
214 re.MULTILINE)
214 re.MULTILINE)
215 # Paragraph continue
215 # Paragraph continue
216 par_re = re.compile(r'\\$',re.MULTILINE)
216 par_re = re.compile(r'\\$',re.MULTILINE)
217
217
218 # The "\n" symbol
218 # The "\n" symbol
219 newline_re = re.compile(r'\\n')
219 newline_re = re.compile(r'\\n')
220
220
221 # Now build the string for output:
221 # Now build the string for output:
222 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
222 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
223 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
223 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
224 strng)
224 strng)
225 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
225 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
226 strng = par_re.sub(r'\\\\',strng)
226 strng = par_re.sub(r'\\\\',strng)
227 strng = escape_re.sub(r'\\\1',strng)
227 strng = escape_re.sub(r'\\\1',strng)
228 strng = newline_re.sub(r'\\textbackslash{}n',strng)
228 strng = newline_re.sub(r'\\textbackslash{}n',strng)
229 return strng
229 return strng
230
230
231 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
231 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
232 """Parse options passed to an argument string.
232 """Parse options passed to an argument string.
233
233
234 The interface is similar to that of getopt(), but it returns back a
234 The interface is similar to that of getopt(), but it returns back a
235 Struct with the options as keys and the stripped argument string still
235 Struct with the options as keys and the stripped argument string still
236 as a string.
236 as a string.
237
237
238 arg_str is quoted as a true sys.argv vector by using shlex.split.
238 arg_str is quoted as a true sys.argv vector by using shlex.split.
239 This allows us to easily expand variables, glob files, quote
239 This allows us to easily expand variables, glob files, quote
240 arguments, etc.
240 arguments, etc.
241
241
242 Options:
242 Options:
243 -mode: default 'string'. If given as 'list', the argument string is
243 -mode: default 'string'. If given as 'list', the argument string is
244 returned as a list (split on whitespace) instead of a string.
244 returned as a list (split on whitespace) instead of a string.
245
245
246 -list_all: put all option values in lists. Normally only options
246 -list_all: put all option values in lists. Normally only options
247 appearing more than once are put in a list.
247 appearing more than once are put in a list.
248
248
249 -posix (True): whether to split the input line in POSIX mode or not,
249 -posix (True): whether to split the input line in POSIX mode or not,
250 as per the conventions outlined in the shlex module from the
250 as per the conventions outlined in the shlex module from the
251 standard library."""
251 standard library."""
252
252
253 # inject default options at the beginning of the input line
253 # inject default options at the beginning of the input line
254 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
254 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
255 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
255 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
256
256
257 mode = kw.get('mode','string')
257 mode = kw.get('mode','string')
258 if mode not in ['string','list']:
258 if mode not in ['string','list']:
259 raise ValueError,'incorrect mode given: %s' % mode
259 raise ValueError,'incorrect mode given: %s' % mode
260 # Get options
260 # Get options
261 list_all = kw.get('list_all',0)
261 list_all = kw.get('list_all',0)
262 posix = kw.get('posix', os.name == 'posix')
262 posix = kw.get('posix', os.name == 'posix')
263
263
264 # Check if we have more than one argument to warrant extra processing:
264 # Check if we have more than one argument to warrant extra processing:
265 odict = {} # Dictionary with options
265 odict = {} # Dictionary with options
266 args = arg_str.split()
266 args = arg_str.split()
267 if len(args) >= 1:
267 if len(args) >= 1:
268 # If the list of inputs only has 0 or 1 thing in it, there's no
268 # If the list of inputs only has 0 or 1 thing in it, there's no
269 # need to look for options
269 # need to look for options
270 argv = arg_split(arg_str,posix)
270 argv = arg_split(arg_str,posix)
271 # Do regular option processing
271 # Do regular option processing
272 try:
272 try:
273 opts,args = getopt(argv,opt_str,*long_opts)
273 opts,args = getopt(argv,opt_str,*long_opts)
274 except GetoptError,e:
274 except GetoptError,e:
275 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
275 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
276 " ".join(long_opts)))
276 " ".join(long_opts)))
277 for o,a in opts:
277 for o,a in opts:
278 if o.startswith('--'):
278 if o.startswith('--'):
279 o = o[2:]
279 o = o[2:]
280 else:
280 else:
281 o = o[1:]
281 o = o[1:]
282 try:
282 try:
283 odict[o].append(a)
283 odict[o].append(a)
284 except AttributeError:
284 except AttributeError:
285 odict[o] = [odict[o],a]
285 odict[o] = [odict[o],a]
286 except KeyError:
286 except KeyError:
287 if list_all:
287 if list_all:
288 odict[o] = [a]
288 odict[o] = [a]
289 else:
289 else:
290 odict[o] = a
290 odict[o] = a
291
291
292 # Prepare opts,args for return
292 # Prepare opts,args for return
293 opts = Struct(odict)
293 opts = Struct(odict)
294 if mode == 'string':
294 if mode == 'string':
295 args = ' '.join(args)
295 args = ' '.join(args)
296
296
297 return opts,args
297 return opts,args
298
298
299 #......................................................................
299 #......................................................................
300 # And now the actual magic functions
300 # And now the actual magic functions
301
301
302 # Functions for IPython shell work (vars,funcs, config, etc)
302 # Functions for IPython shell work (vars,funcs, config, etc)
303 def magic_lsmagic(self, parameter_s = ''):
303 def magic_lsmagic(self, parameter_s = ''):
304 """List currently available magic functions."""
304 """List currently available magic functions."""
305 mesc = ESC_MAGIC
305 mesc = ESC_MAGIC
306 print 'Available magic functions:\n'+mesc+\
306 print 'Available magic functions:\n'+mesc+\
307 (' '+mesc).join(self.lsmagic())
307 (' '+mesc).join(self.lsmagic())
308 print '\n' + Magic.auto_status[self.shell.automagic]
308 print '\n' + Magic.auto_status[self.shell.automagic]
309 return None
309 return None
310
310
311 def magic_magic(self, parameter_s = ''):
311 def magic_magic(self, parameter_s = ''):
312 """Print information about the magic function system.
312 """Print information about the magic function system.
313
313
314 Supported formats: -latex, -brief, -rest
314 Supported formats: -latex, -brief, -rest
315 """
315 """
316
316
317 mode = ''
317 mode = ''
318 try:
318 try:
319 if parameter_s.split()[0] == '-latex':
319 if parameter_s.split()[0] == '-latex':
320 mode = 'latex'
320 mode = 'latex'
321 if parameter_s.split()[0] == '-brief':
321 if parameter_s.split()[0] == '-brief':
322 mode = 'brief'
322 mode = 'brief'
323 if parameter_s.split()[0] == '-rest':
323 if parameter_s.split()[0] == '-rest':
324 mode = 'rest'
324 mode = 'rest'
325 rest_docs = []
325 rest_docs = []
326 except:
326 except:
327 pass
327 pass
328
328
329 magic_docs = []
329 magic_docs = []
330 for fname in self.lsmagic():
330 for fname in self.lsmagic():
331 mname = 'magic_' + fname
331 mname = 'magic_' + fname
332 for space in (Magic,self,self.__class__):
332 for space in (Magic,self,self.__class__):
333 try:
333 try:
334 fn = space.__dict__[mname]
334 fn = space.__dict__[mname]
335 except KeyError:
335 except KeyError:
336 pass
336 pass
337 else:
337 else:
338 break
338 break
339 if mode == 'brief':
339 if mode == 'brief':
340 # only first line
340 # only first line
341 if fn.__doc__:
341 if fn.__doc__:
342 fndoc = fn.__doc__.split('\n',1)[0]
342 fndoc = fn.__doc__.split('\n',1)[0]
343 else:
343 else:
344 fndoc = 'No documentation'
344 fndoc = 'No documentation'
345 else:
345 else:
346 if fn.__doc__:
346 if fn.__doc__:
347 fndoc = fn.__doc__.rstrip()
347 fndoc = fn.__doc__.rstrip()
348 else:
348 else:
349 fndoc = 'No documentation'
349 fndoc = 'No documentation'
350
350
351
351
352 if mode == 'rest':
352 if mode == 'rest':
353 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
353 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
354 fname,fndoc))
354 fname,fndoc))
355
355
356 else:
356 else:
357 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
357 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
358 fname,fndoc))
358 fname,fndoc))
359
359
360 magic_docs = ''.join(magic_docs)
360 magic_docs = ''.join(magic_docs)
361
361
362 if mode == 'rest':
362 if mode == 'rest':
363 return "".join(rest_docs)
363 return "".join(rest_docs)
364
364
365 if mode == 'latex':
365 if mode == 'latex':
366 print self.format_latex(magic_docs)
366 print self.format_latex(magic_docs)
367 return
367 return
368 else:
368 else:
369 magic_docs = format_screen(magic_docs)
369 magic_docs = format_screen(magic_docs)
370 if mode == 'brief':
370 if mode == 'brief':
371 return magic_docs
371 return magic_docs
372
372
373 outmsg = """
373 outmsg = """
374 IPython's 'magic' functions
374 IPython's 'magic' functions
375 ===========================
375 ===========================
376
376
377 The magic function system provides a series of functions which allow you to
377 The magic function system provides a series of functions which allow you to
378 control the behavior of IPython itself, plus a lot of system-type
378 control the behavior of IPython itself, plus a lot of system-type
379 features. All these functions are prefixed with a % character, but parameters
379 features. All these functions are prefixed with a % character, but parameters
380 are given without parentheses or quotes.
380 are given without parentheses or quotes.
381
381
382 NOTE: If you have 'automagic' enabled (via the command line option or with the
382 NOTE: If you have 'automagic' enabled (via the command line option or with the
383 %automagic function), you don't need to type in the % explicitly. By default,
383 %automagic function), you don't need to type in the % explicitly. By default,
384 IPython ships with automagic on, so you should only rarely need the % escape.
384 IPython ships with automagic on, so you should only rarely need the % escape.
385
385
386 Example: typing '%cd mydir' (without the quotes) changes you working directory
386 Example: typing '%cd mydir' (without the quotes) changes you working directory
387 to 'mydir', if it exists.
387 to 'mydir', if it exists.
388
388
389 You can define your own magic functions to extend the system. See the supplied
389 You can define your own magic functions to extend the system. See the supplied
390 ipythonrc and example-magic.py files for details (in your ipython
390 ipythonrc and example-magic.py files for details (in your ipython
391 configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere).
391 configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere).
392
392
393 You can also define your own aliased names for magic functions. In your
393 You can also define your own aliased names for magic functions. In your
394 ipythonrc file, placing a line like:
394 ipythonrc file, placing a line like:
395
395
396 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
396 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
397
397
398 will define %pf as a new name for %profile.
398 will define %pf as a new name for %profile.
399
399
400 You can also call magics in code using the magic() function, which IPython
400 You can also call magics in code using the magic() function, which IPython
401 automatically adds to the builtin namespace. Type 'magic?' for details.
401 automatically adds to the builtin namespace. Type 'magic?' for details.
402
402
403 For a list of the available magic functions, use %lsmagic. For a description
403 For a list of the available magic functions, use %lsmagic. For a description
404 of any of them, type %magic_name?, e.g. '%cd?'.
404 of any of them, type %magic_name?, e.g. '%cd?'.
405
405
406 Currently the magic system has the following functions:\n"""
406 Currently the magic system has the following functions:\n"""
407
407
408 mesc = ESC_MAGIC
408 mesc = ESC_MAGIC
409 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
409 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
410 "\n\n%s%s\n\n%s" % (outmsg,
410 "\n\n%s%s\n\n%s" % (outmsg,
411 magic_docs,mesc,mesc,
411 magic_docs,mesc,mesc,
412 (' '+mesc).join(self.lsmagic()),
412 (' '+mesc).join(self.lsmagic()),
413 Magic.auto_status[self.shell.automagic] ) )
413 Magic.auto_status[self.shell.automagic] ) )
414 page.page(outmsg)
414 page.page(outmsg)
415
415
416 def magic_automagic(self, parameter_s = ''):
416 def magic_automagic(self, parameter_s = ''):
417 """Make magic functions callable without having to type the initial %.
417 """Make magic functions callable without having to type the initial %.
418
418
419 Without argumentsl toggles on/off (when off, you must call it as
419 Without argumentsl toggles on/off (when off, you must call it as
420 %automagic, of course). With arguments it sets the value, and you can
420 %automagic, of course). With arguments it sets the value, and you can
421 use any of (case insensitive):
421 use any of (case insensitive):
422
422
423 - on,1,True: to activate
423 - on,1,True: to activate
424
424
425 - off,0,False: to deactivate.
425 - off,0,False: to deactivate.
426
426
427 Note that magic functions have lowest priority, so if there's a
427 Note that magic functions have lowest priority, so if there's a
428 variable whose name collides with that of a magic fn, automagic won't
428 variable whose name collides with that of a magic fn, automagic won't
429 work for that function (you get the variable instead). However, if you
429 work for that function (you get the variable instead). However, if you
430 delete the variable (del var), the previously shadowed magic function
430 delete the variable (del var), the previously shadowed magic function
431 becomes visible to automagic again."""
431 becomes visible to automagic again."""
432
432
433 arg = parameter_s.lower()
433 arg = parameter_s.lower()
434 if parameter_s in ('on','1','true'):
434 if parameter_s in ('on','1','true'):
435 self.shell.automagic = True
435 self.shell.automagic = True
436 elif parameter_s in ('off','0','false'):
436 elif parameter_s in ('off','0','false'):
437 self.shell.automagic = False
437 self.shell.automagic = False
438 else:
438 else:
439 self.shell.automagic = not self.shell.automagic
439 self.shell.automagic = not self.shell.automagic
440 print '\n' + Magic.auto_status[self.shell.automagic]
440 print '\n' + Magic.auto_status[self.shell.automagic]
441
441
442 @skip_doctest
442 @skip_doctest
443 def magic_autocall(self, parameter_s = ''):
443 def magic_autocall(self, parameter_s = ''):
444 """Make functions callable without having to type parentheses.
444 """Make functions callable without having to type parentheses.
445
445
446 Usage:
446 Usage:
447
447
448 %autocall [mode]
448 %autocall [mode]
449
449
450 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
450 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
451 value is toggled on and off (remembering the previous state).
451 value is toggled on and off (remembering the previous state).
452
452
453 In more detail, these values mean:
453 In more detail, these values mean:
454
454
455 0 -> fully disabled
455 0 -> fully disabled
456
456
457 1 -> active, but do not apply if there are no arguments on the line.
457 1 -> active, but do not apply if there are no arguments on the line.
458
458
459 In this mode, you get:
459 In this mode, you get:
460
460
461 In [1]: callable
461 In [1]: callable
462 Out[1]: <built-in function callable>
462 Out[1]: <built-in function callable>
463
463
464 In [2]: callable 'hello'
464 In [2]: callable 'hello'
465 ------> callable('hello')
465 ------> callable('hello')
466 Out[2]: False
466 Out[2]: False
467
467
468 2 -> Active always. Even if no arguments are present, the callable
468 2 -> Active always. Even if no arguments are present, the callable
469 object is called:
469 object is called:
470
470
471 In [2]: float
471 In [2]: float
472 ------> float()
472 ------> float()
473 Out[2]: 0.0
473 Out[2]: 0.0
474
474
475 Note that even with autocall off, you can still use '/' at the start of
475 Note that even with autocall off, you can still use '/' at the start of
476 a line to treat the first argument on the command line as a function
476 a line to treat the first argument on the command line as a function
477 and add parentheses to it:
477 and add parentheses to it:
478
478
479 In [8]: /str 43
479 In [8]: /str 43
480 ------> str(43)
480 ------> str(43)
481 Out[8]: '43'
481 Out[8]: '43'
482
482
483 # all-random (note for auto-testing)
483 # all-random (note for auto-testing)
484 """
484 """
485
485
486 if parameter_s:
486 if parameter_s:
487 arg = int(parameter_s)
487 arg = int(parameter_s)
488 else:
488 else:
489 arg = 'toggle'
489 arg = 'toggle'
490
490
491 if not arg in (0,1,2,'toggle'):
491 if not arg in (0,1,2,'toggle'):
492 error('Valid modes: (0->Off, 1->Smart, 2->Full')
492 error('Valid modes: (0->Off, 1->Smart, 2->Full')
493 return
493 return
494
494
495 if arg in (0,1,2):
495 if arg in (0,1,2):
496 self.shell.autocall = arg
496 self.shell.autocall = arg
497 else: # toggle
497 else: # toggle
498 if self.shell.autocall:
498 if self.shell.autocall:
499 self._magic_state.autocall_save = self.shell.autocall
499 self._magic_state.autocall_save = self.shell.autocall
500 self.shell.autocall = 0
500 self.shell.autocall = 0
501 else:
501 else:
502 try:
502 try:
503 self.shell.autocall = self._magic_state.autocall_save
503 self.shell.autocall = self._magic_state.autocall_save
504 except AttributeError:
504 except AttributeError:
505 self.shell.autocall = self._magic_state.autocall_save = 1
505 self.shell.autocall = self._magic_state.autocall_save = 1
506
506
507 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
507 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
508
508
509
509
510 def magic_page(self, parameter_s=''):
510 def magic_page(self, parameter_s=''):
511 """Pretty print the object and display it through a pager.
511 """Pretty print the object and display it through a pager.
512
512
513 %page [options] OBJECT
513 %page [options] OBJECT
514
514
515 If no object is given, use _ (last output).
515 If no object is given, use _ (last output).
516
516
517 Options:
517 Options:
518
518
519 -r: page str(object), don't pretty-print it."""
519 -r: page str(object), don't pretty-print it."""
520
520
521 # After a function contributed by Olivier Aubert, slightly modified.
521 # After a function contributed by Olivier Aubert, slightly modified.
522
522
523 # Process options/args
523 # Process options/args
524 opts,args = self.parse_options(parameter_s,'r')
524 opts,args = self.parse_options(parameter_s,'r')
525 raw = 'r' in opts
525 raw = 'r' in opts
526
526
527 oname = args and args or '_'
527 oname = args and args or '_'
528 info = self._ofind(oname)
528 info = self._ofind(oname)
529 if info['found']:
529 if info['found']:
530 txt = (raw and str or pformat)( info['obj'] )
530 txt = (raw and str or pformat)( info['obj'] )
531 page.page(txt)
531 page.page(txt)
532 else:
532 else:
533 print 'Object `%s` not found' % oname
533 print 'Object `%s` not found' % oname
534
534
535 def magic_profile(self, parameter_s=''):
535 def magic_profile(self, parameter_s=''):
536 """Print your currently active IPython profile."""
536 """Print your currently active IPython profile."""
537 print self.shell.profile
537 print self.shell.profile
538
538
539 def magic_pinfo(self, parameter_s='', namespaces=None):
539 def magic_pinfo(self, parameter_s='', namespaces=None):
540 """Provide detailed information about an object.
540 """Provide detailed information about an object.
541
541
542 '%pinfo object' is just a synonym for object? or ?object."""
542 '%pinfo object' is just a synonym for object? or ?object."""
543
543
544 #print 'pinfo par: <%s>' % parameter_s # dbg
544 #print 'pinfo par: <%s>' % parameter_s # dbg
545
545
546
546
547 # detail_level: 0 -> obj? , 1 -> obj??
547 # detail_level: 0 -> obj? , 1 -> obj??
548 detail_level = 0
548 detail_level = 0
549 # We need to detect if we got called as 'pinfo pinfo foo', which can
549 # We need to detect if we got called as 'pinfo pinfo foo', which can
550 # happen if the user types 'pinfo foo?' at the cmd line.
550 # happen if the user types 'pinfo foo?' at the cmd line.
551 pinfo,qmark1,oname,qmark2 = \
551 pinfo,qmark1,oname,qmark2 = \
552 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
552 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
553 if pinfo or qmark1 or qmark2:
553 if pinfo or qmark1 or qmark2:
554 detail_level = 1
554 detail_level = 1
555 if "*" in oname:
555 if "*" in oname:
556 self.magic_psearch(oname)
556 self.magic_psearch(oname)
557 else:
557 else:
558 self.shell._inspect('pinfo', oname, detail_level=detail_level,
558 self.shell._inspect('pinfo', oname, detail_level=detail_level,
559 namespaces=namespaces)
559 namespaces=namespaces)
560
560
561 def magic_pinfo2(self, parameter_s='', namespaces=None):
561 def magic_pinfo2(self, parameter_s='', namespaces=None):
562 """Provide extra detailed information about an object.
562 """Provide extra detailed information about an object.
563
563
564 '%pinfo2 object' is just a synonym for object?? or ??object."""
564 '%pinfo2 object' is just a synonym for object?? or ??object."""
565 self.shell._inspect('pinfo', parameter_s, detail_level=1,
565 self.shell._inspect('pinfo', parameter_s, detail_level=1,
566 namespaces=namespaces)
566 namespaces=namespaces)
567
567
568 @skip_doctest
568 @skip_doctest
569 def magic_pdef(self, parameter_s='', namespaces=None):
569 def magic_pdef(self, parameter_s='', namespaces=None):
570 """Print the definition header for any callable object.
570 """Print the definition header for any callable object.
571
571
572 If the object is a class, print the constructor information.
572 If the object is a class, print the constructor information.
573
573
574 Examples
574 Examples
575 --------
575 --------
576 ::
576 ::
577
577
578 In [3]: %pdef urllib.urlopen
578 In [3]: %pdef urllib.urlopen
579 urllib.urlopen(url, data=None, proxies=None)
579 urllib.urlopen(url, data=None, proxies=None)
580 """
580 """
581 self._inspect('pdef',parameter_s, namespaces)
581 self._inspect('pdef',parameter_s, namespaces)
582
582
583 def magic_pdoc(self, parameter_s='', namespaces=None):
583 def magic_pdoc(self, parameter_s='', namespaces=None):
584 """Print the docstring for an object.
584 """Print the docstring for an object.
585
585
586 If the given object is a class, it will print both the class and the
586 If the given object is a class, it will print both the class and the
587 constructor docstrings."""
587 constructor docstrings."""
588 self._inspect('pdoc',parameter_s, namespaces)
588 self._inspect('pdoc',parameter_s, namespaces)
589
589
590 def magic_psource(self, parameter_s='', namespaces=None):
590 def magic_psource(self, parameter_s='', namespaces=None):
591 """Print (or run through pager) the source code for an object."""
591 """Print (or run through pager) the source code for an object."""
592 self._inspect('psource',parameter_s, namespaces)
592 self._inspect('psource',parameter_s, namespaces)
593
593
594 def magic_pfile(self, parameter_s=''):
594 def magic_pfile(self, parameter_s=''):
595 """Print (or run through pager) the file where an object is defined.
595 """Print (or run through pager) the file where an object is defined.
596
596
597 The file opens at the line where the object definition begins. IPython
597 The file opens at the line where the object definition begins. IPython
598 will honor the environment variable PAGER if set, and otherwise will
598 will honor the environment variable PAGER if set, and otherwise will
599 do its best to print the file in a convenient form.
599 do its best to print the file in a convenient form.
600
600
601 If the given argument is not an object currently defined, IPython will
601 If the given argument is not an object currently defined, IPython will
602 try to interpret it as a filename (automatically adding a .py extension
602 try to interpret it as a filename (automatically adding a .py extension
603 if needed). You can thus use %pfile as a syntax highlighting code
603 if needed). You can thus use %pfile as a syntax highlighting code
604 viewer."""
604 viewer."""
605
605
606 # first interpret argument as an object name
606 # first interpret argument as an object name
607 out = self._inspect('pfile',parameter_s)
607 out = self._inspect('pfile',parameter_s)
608 # if not, try the input as a filename
608 # if not, try the input as a filename
609 if out == 'not found':
609 if out == 'not found':
610 try:
610 try:
611 filename = get_py_filename(parameter_s)
611 filename = get_py_filename(parameter_s)
612 except IOError,msg:
612 except IOError,msg:
613 print msg
613 print msg
614 return
614 return
615 page.page(self.shell.inspector.format(file(filename).read()))
615 page.page(self.shell.inspector.format(file(filename).read()))
616
616
617 def magic_psearch(self, parameter_s=''):
617 def magic_psearch(self, parameter_s=''):
618 """Search for object in namespaces by wildcard.
618 """Search for object in namespaces by wildcard.
619
619
620 %psearch [options] PATTERN [OBJECT TYPE]
620 %psearch [options] PATTERN [OBJECT TYPE]
621
621
622 Note: ? can be used as a synonym for %psearch, at the beginning or at
622 Note: ? can be used as a synonym for %psearch, at the beginning or at
623 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
623 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
624 rest of the command line must be unchanged (options come first), so
624 rest of the command line must be unchanged (options come first), so
625 for example the following forms are equivalent
625 for example the following forms are equivalent
626
626
627 %psearch -i a* function
627 %psearch -i a* function
628 -i a* function?
628 -i a* function?
629 ?-i a* function
629 ?-i a* function
630
630
631 Arguments:
631 Arguments:
632
632
633 PATTERN
633 PATTERN
634
634
635 where PATTERN is a string containing * as a wildcard similar to its
635 where PATTERN is a string containing * as a wildcard similar to its
636 use in a shell. The pattern is matched in all namespaces on the
636 use in a shell. The pattern is matched in all namespaces on the
637 search path. By default objects starting with a single _ are not
637 search path. By default objects starting with a single _ are not
638 matched, many IPython generated objects have a single
638 matched, many IPython generated objects have a single
639 underscore. The default is case insensitive matching. Matching is
639 underscore. The default is case insensitive matching. Matching is
640 also done on the attributes of objects and not only on the objects
640 also done on the attributes of objects and not only on the objects
641 in a module.
641 in a module.
642
642
643 [OBJECT TYPE]
643 [OBJECT TYPE]
644
644
645 Is the name of a python type from the types module. The name is
645 Is the name of a python type from the types module. The name is
646 given in lowercase without the ending type, ex. StringType is
646 given in lowercase without the ending type, ex. StringType is
647 written string. By adding a type here only objects matching the
647 written string. By adding a type here only objects matching the
648 given type are matched. Using all here makes the pattern match all
648 given type are matched. Using all here makes the pattern match all
649 types (this is the default).
649 types (this is the default).
650
650
651 Options:
651 Options:
652
652
653 -a: makes the pattern match even objects whose names start with a
653 -a: makes the pattern match even objects whose names start with a
654 single underscore. These names are normally ommitted from the
654 single underscore. These names are normally ommitted from the
655 search.
655 search.
656
656
657 -i/-c: make the pattern case insensitive/sensitive. If neither of
657 -i/-c: make the pattern case insensitive/sensitive. If neither of
658 these options is given, the default is read from your ipythonrc
658 these options is given, the default is read from your ipythonrc
659 file. The option name which sets this value is
659 file. The option name which sets this value is
660 'wildcards_case_sensitive'. If this option is not specified in your
660 'wildcards_case_sensitive'. If this option is not specified in your
661 ipythonrc file, IPython's internal default is to do a case sensitive
661 ipythonrc file, IPython's internal default is to do a case sensitive
662 search.
662 search.
663
663
664 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
664 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
665 specifiy can be searched in any of the following namespaces:
665 specifiy can be searched in any of the following namespaces:
666 'builtin', 'user', 'user_global','internal', 'alias', where
666 'builtin', 'user', 'user_global','internal', 'alias', where
667 'builtin' and 'user' are the search defaults. Note that you should
667 'builtin' and 'user' are the search defaults. Note that you should
668 not use quotes when specifying namespaces.
668 not use quotes when specifying namespaces.
669
669
670 'Builtin' contains the python module builtin, 'user' contains all
670 'Builtin' contains the python module builtin, 'user' contains all
671 user data, 'alias' only contain the shell aliases and no python
671 user data, 'alias' only contain the shell aliases and no python
672 objects, 'internal' contains objects used by IPython. The
672 objects, 'internal' contains objects used by IPython. The
673 'user_global' namespace is only used by embedded IPython instances,
673 'user_global' namespace is only used by embedded IPython instances,
674 and it contains module-level globals. You can add namespaces to the
674 and it contains module-level globals. You can add namespaces to the
675 search with -s or exclude them with -e (these options can be given
675 search with -s or exclude them with -e (these options can be given
676 more than once).
676 more than once).
677
677
678 Examples:
678 Examples:
679
679
680 %psearch a* -> objects beginning with an a
680 %psearch a* -> objects beginning with an a
681 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
681 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
682 %psearch a* function -> all functions beginning with an a
682 %psearch a* function -> all functions beginning with an a
683 %psearch re.e* -> objects beginning with an e in module re
683 %psearch re.e* -> objects beginning with an e in module re
684 %psearch r*.e* -> objects that start with e in modules starting in r
684 %psearch r*.e* -> objects that start with e in modules starting in r
685 %psearch r*.* string -> all strings in modules beginning with r
685 %psearch r*.* string -> all strings in modules beginning with r
686
686
687 Case sensitve search:
687 Case sensitve search:
688
688
689 %psearch -c a* list all object beginning with lower case a
689 %psearch -c a* list all object beginning with lower case a
690
690
691 Show objects beginning with a single _:
691 Show objects beginning with a single _:
692
692
693 %psearch -a _* list objects beginning with a single underscore"""
693 %psearch -a _* list objects beginning with a single underscore"""
694 try:
694 try:
695 parameter_s = parameter_s.encode('ascii')
695 parameter_s = parameter_s.encode('ascii')
696 except UnicodeEncodeError:
696 except UnicodeEncodeError:
697 print 'Python identifiers can only contain ascii characters.'
697 print 'Python identifiers can only contain ascii characters.'
698 return
698 return
699
699
700 # default namespaces to be searched
700 # default namespaces to be searched
701 def_search = ['user','builtin']
701 def_search = ['user','builtin']
702
702
703 # Process options/args
703 # Process options/args
704 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
704 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
705 opt = opts.get
705 opt = opts.get
706 shell = self.shell
706 shell = self.shell
707 psearch = shell.inspector.psearch
707 psearch = shell.inspector.psearch
708
708
709 # select case options
709 # select case options
710 if opts.has_key('i'):
710 if opts.has_key('i'):
711 ignore_case = True
711 ignore_case = True
712 elif opts.has_key('c'):
712 elif opts.has_key('c'):
713 ignore_case = False
713 ignore_case = False
714 else:
714 else:
715 ignore_case = not shell.wildcards_case_sensitive
715 ignore_case = not shell.wildcards_case_sensitive
716
716
717 # Build list of namespaces to search from user options
717 # Build list of namespaces to search from user options
718 def_search.extend(opt('s',[]))
718 def_search.extend(opt('s',[]))
719 ns_exclude = ns_exclude=opt('e',[])
719 ns_exclude = ns_exclude=opt('e',[])
720 ns_search = [nm for nm in def_search if nm not in ns_exclude]
720 ns_search = [nm for nm in def_search if nm not in ns_exclude]
721
721
722 # Call the actual search
722 # Call the actual search
723 try:
723 try:
724 psearch(args,shell.ns_table,ns_search,
724 psearch(args,shell.ns_table,ns_search,
725 show_all=opt('a'),ignore_case=ignore_case)
725 show_all=opt('a'),ignore_case=ignore_case)
726 except:
726 except:
727 shell.showtraceback()
727 shell.showtraceback()
728
728
729 @skip_doctest
729 @skip_doctest
730 def magic_who_ls(self, parameter_s=''):
730 def magic_who_ls(self, parameter_s=''):
731 """Return a sorted list of all interactive variables.
731 """Return a sorted list of all interactive variables.
732
732
733 If arguments are given, only variables of types matching these
733 If arguments are given, only variables of types matching these
734 arguments are returned.
734 arguments are returned.
735
735
736 Examples
736 Examples
737 --------
737 --------
738
738
739 Define two variables and list them with who_ls::
739 Define two variables and list them with who_ls::
740
740
741 In [1]: alpha = 123
741 In [1]: alpha = 123
742
742
743 In [2]: beta = 'test'
743 In [2]: beta = 'test'
744
744
745 In [3]: %who_ls
745 In [3]: %who_ls
746 Out[3]: ['alpha', 'beta']
746 Out[3]: ['alpha', 'beta']
747
747
748 In [4]: %who_ls int
748 In [4]: %who_ls int
749 Out[4]: ['alpha']
749 Out[4]: ['alpha']
750
750
751 In [5]: %who_ls str
751 In [5]: %who_ls str
752 Out[5]: ['beta']
752 Out[5]: ['beta']
753 """
753 """
754
754
755 user_ns = self.shell.user_ns
755 user_ns = self.shell.user_ns
756 internal_ns = self.shell.internal_ns
756 internal_ns = self.shell.internal_ns
757 user_ns_hidden = self.shell.user_ns_hidden
757 user_ns_hidden = self.shell.user_ns_hidden
758 out = [ i for i in user_ns
758 out = [ i for i in user_ns
759 if not i.startswith('_') \
759 if not i.startswith('_') \
760 and not (i in internal_ns or i in user_ns_hidden) ]
760 and not (i in internal_ns or i in user_ns_hidden) ]
761
761
762 typelist = parameter_s.split()
762 typelist = parameter_s.split()
763 if typelist:
763 if typelist:
764 typeset = set(typelist)
764 typeset = set(typelist)
765 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
765 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
766
766
767 out.sort()
767 out.sort()
768 return out
768 return out
769
769
770 @skip_doctest
770 @skip_doctest
771 def magic_who(self, parameter_s=''):
771 def magic_who(self, parameter_s=''):
772 """Print all interactive variables, with some minimal formatting.
772 """Print all interactive variables, with some minimal formatting.
773
773
774 If any arguments are given, only variables whose type matches one of
774 If any arguments are given, only variables whose type matches one of
775 these are printed. For example:
775 these are printed. For example:
776
776
777 %who function str
777 %who function str
778
778
779 will only list functions and strings, excluding all other types of
779 will only list functions and strings, excluding all other types of
780 variables. To find the proper type names, simply use type(var) at a
780 variables. To find the proper type names, simply use type(var) at a
781 command line to see how python prints type names. For example:
781 command line to see how python prints type names. For example:
782
782
783 In [1]: type('hello')\\
783 In [1]: type('hello')\\
784 Out[1]: <type 'str'>
784 Out[1]: <type 'str'>
785
785
786 indicates that the type name for strings is 'str'.
786 indicates that the type name for strings is 'str'.
787
787
788 %who always excludes executed names loaded through your configuration
788 %who always excludes executed names loaded through your configuration
789 file and things which are internal to IPython.
789 file and things which are internal to IPython.
790
790
791 This is deliberate, as typically you may load many modules and the
791 This is deliberate, as typically you may load many modules and the
792 purpose of %who is to show you only what you've manually defined.
792 purpose of %who is to show you only what you've manually defined.
793
793
794 Examples
794 Examples
795 --------
795 --------
796
796
797 Define two variables and list them with who::
797 Define two variables and list them with who::
798
798
799 In [1]: alpha = 123
799 In [1]: alpha = 123
800
800
801 In [2]: beta = 'test'
801 In [2]: beta = 'test'
802
802
803 In [3]: %who
803 In [3]: %who
804 alpha beta
804 alpha beta
805
805
806 In [4]: %who int
806 In [4]: %who int
807 alpha
807 alpha
808
808
809 In [5]: %who str
809 In [5]: %who str
810 beta
810 beta
811 """
811 """
812
812
813 varlist = self.magic_who_ls(parameter_s)
813 varlist = self.magic_who_ls(parameter_s)
814 if not varlist:
814 if not varlist:
815 if parameter_s:
815 if parameter_s:
816 print 'No variables match your requested type.'
816 print 'No variables match your requested type.'
817 else:
817 else:
818 print 'Interactive namespace is empty.'
818 print 'Interactive namespace is empty.'
819 return
819 return
820
820
821 # if we have variables, move on...
821 # if we have variables, move on...
822 count = 0
822 count = 0
823 for i in varlist:
823 for i in varlist:
824 print i+'\t',
824 print i+'\t',
825 count += 1
825 count += 1
826 if count > 8:
826 if count > 8:
827 count = 0
827 count = 0
828 print
828 print
829 print
829 print
830
830
831 @skip_doctest
831 @skip_doctest
832 def magic_whos(self, parameter_s=''):
832 def magic_whos(self, parameter_s=''):
833 """Like %who, but gives some extra information about each variable.
833 """Like %who, but gives some extra information about each variable.
834
834
835 The same type filtering of %who can be applied here.
835 The same type filtering of %who can be applied here.
836
836
837 For all variables, the type is printed. Additionally it prints:
837 For all variables, the type is printed. Additionally it prints:
838
838
839 - For {},[],(): their length.
839 - For {},[],(): their length.
840
840
841 - For numpy arrays, a summary with shape, number of
841 - For numpy arrays, a summary with shape, number of
842 elements, typecode and size in memory.
842 elements, typecode and size in memory.
843
843
844 - Everything else: a string representation, snipping their middle if
844 - Everything else: a string representation, snipping their middle if
845 too long.
845 too long.
846
846
847 Examples
847 Examples
848 --------
848 --------
849
849
850 Define two variables and list them with whos::
850 Define two variables and list them with whos::
851
851
852 In [1]: alpha = 123
852 In [1]: alpha = 123
853
853
854 In [2]: beta = 'test'
854 In [2]: beta = 'test'
855
855
856 In [3]: %whos
856 In [3]: %whos
857 Variable Type Data/Info
857 Variable Type Data/Info
858 --------------------------------
858 --------------------------------
859 alpha int 123
859 alpha int 123
860 beta str test
860 beta str test
861 """
861 """
862
862
863 varnames = self.magic_who_ls(parameter_s)
863 varnames = self.magic_who_ls(parameter_s)
864 if not varnames:
864 if not varnames:
865 if parameter_s:
865 if parameter_s:
866 print 'No variables match your requested type.'
866 print 'No variables match your requested type.'
867 else:
867 else:
868 print 'Interactive namespace is empty.'
868 print 'Interactive namespace is empty.'
869 return
869 return
870
870
871 # if we have variables, move on...
871 # if we have variables, move on...
872
872
873 # for these types, show len() instead of data:
873 # for these types, show len() instead of data:
874 seq_types = ['dict', 'list', 'tuple']
874 seq_types = ['dict', 'list', 'tuple']
875
875
876 # for numpy/Numeric arrays, display summary info
876 # for numpy/Numeric arrays, display summary info
877 try:
877 try:
878 import numpy
878 import numpy
879 except ImportError:
879 except ImportError:
880 ndarray_type = None
880 ndarray_type = None
881 else:
881 else:
882 ndarray_type = numpy.ndarray.__name__
882 ndarray_type = numpy.ndarray.__name__
883 try:
883 try:
884 import Numeric
884 import Numeric
885 except ImportError:
885 except ImportError:
886 array_type = None
886 array_type = None
887 else:
887 else:
888 array_type = Numeric.ArrayType.__name__
888 array_type = Numeric.ArrayType.__name__
889
889
890 # Find all variable names and types so we can figure out column sizes
890 # Find all variable names and types so we can figure out column sizes
891 def get_vars(i):
891 def get_vars(i):
892 return self.shell.user_ns[i]
892 return self.shell.user_ns[i]
893
893
894 # some types are well known and can be shorter
894 # some types are well known and can be shorter
895 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
895 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
896 def type_name(v):
896 def type_name(v):
897 tn = type(v).__name__
897 tn = type(v).__name__
898 return abbrevs.get(tn,tn)
898 return abbrevs.get(tn,tn)
899
899
900 varlist = map(get_vars,varnames)
900 varlist = map(get_vars,varnames)
901
901
902 typelist = []
902 typelist = []
903 for vv in varlist:
903 for vv in varlist:
904 tt = type_name(vv)
904 tt = type_name(vv)
905
905
906 if tt=='instance':
906 if tt=='instance':
907 typelist.append( abbrevs.get(str(vv.__class__),
907 typelist.append( abbrevs.get(str(vv.__class__),
908 str(vv.__class__)))
908 str(vv.__class__)))
909 else:
909 else:
910 typelist.append(tt)
910 typelist.append(tt)
911
911
912 # column labels and # of spaces as separator
912 # column labels and # of spaces as separator
913 varlabel = 'Variable'
913 varlabel = 'Variable'
914 typelabel = 'Type'
914 typelabel = 'Type'
915 datalabel = 'Data/Info'
915 datalabel = 'Data/Info'
916 colsep = 3
916 colsep = 3
917 # variable format strings
917 # variable format strings
918 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
918 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
919 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
919 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
920 aformat = "%s: %s elems, type `%s`, %s bytes"
920 aformat = "%s: %s elems, type `%s`, %s bytes"
921 # find the size of the columns to format the output nicely
921 # find the size of the columns to format the output nicely
922 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
922 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
923 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
923 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
924 # table header
924 # table header
925 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
925 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
926 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
926 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
927 # and the table itself
927 # and the table itself
928 kb = 1024
928 kb = 1024
929 Mb = 1048576 # kb**2
929 Mb = 1048576 # kb**2
930 for vname,var,vtype in zip(varnames,varlist,typelist):
930 for vname,var,vtype in zip(varnames,varlist,typelist):
931 print itpl(vformat),
931 print itpl(vformat),
932 if vtype in seq_types:
932 if vtype in seq_types:
933 print "n="+str(len(var))
933 print "n="+str(len(var))
934 elif vtype in [array_type,ndarray_type]:
934 elif vtype in [array_type,ndarray_type]:
935 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
935 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
936 if vtype==ndarray_type:
936 if vtype==ndarray_type:
937 # numpy
937 # numpy
938 vsize = var.size
938 vsize = var.size
939 vbytes = vsize*var.itemsize
939 vbytes = vsize*var.itemsize
940 vdtype = var.dtype
940 vdtype = var.dtype
941 else:
941 else:
942 # Numeric
942 # Numeric
943 vsize = Numeric.size(var)
943 vsize = Numeric.size(var)
944 vbytes = vsize*var.itemsize()
944 vbytes = vsize*var.itemsize()
945 vdtype = var.typecode()
945 vdtype = var.typecode()
946
946
947 if vbytes < 100000:
947 if vbytes < 100000:
948 print aformat % (vshape,vsize,vdtype,vbytes)
948 print aformat % (vshape,vsize,vdtype,vbytes)
949 else:
949 else:
950 print aformat % (vshape,vsize,vdtype,vbytes),
950 print aformat % (vshape,vsize,vdtype,vbytes),
951 if vbytes < Mb:
951 if vbytes < Mb:
952 print '(%s kb)' % (vbytes/kb,)
952 print '(%s kb)' % (vbytes/kb,)
953 else:
953 else:
954 print '(%s Mb)' % (vbytes/Mb,)
954 print '(%s Mb)' % (vbytes/Mb,)
955 else:
955 else:
956 try:
956 try:
957 vstr = str(var)
957 vstr = str(var)
958 except UnicodeEncodeError:
958 except UnicodeEncodeError:
959 vstr = unicode(var).encode(sys.getdefaultencoding(),
959 vstr = unicode(var).encode(sys.getdefaultencoding(),
960 'backslashreplace')
960 'backslashreplace')
961 vstr = vstr.replace('\n','\\n')
961 vstr = vstr.replace('\n','\\n')
962 if len(vstr) < 50:
962 if len(vstr) < 50:
963 print vstr
963 print vstr
964 else:
964 else:
965 printpl(vfmt_short)
965 printpl(vfmt_short)
966
966
967 def magic_reset(self, parameter_s=''):
967 def magic_reset(self, parameter_s=''):
968 """Resets the namespace by removing all names defined by the user.
968 """Resets the namespace by removing all names defined by the user.
969
969
970 Parameters
970 Parameters
971 ----------
971 ----------
972 -f : force reset without asking for confirmation.
972 -f : force reset without asking for confirmation.
973
973
974 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
974 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
975 References to objects may be kept. By default (without this option),
975 References to objects may be kept. By default (without this option),
976 we do a 'hard' reset, giving you a new session and removing all
976 we do a 'hard' reset, giving you a new session and removing all
977 references to objects from the current session.
977 references to objects from the current session.
978
978
979 Examples
979 Examples
980 --------
980 --------
981 In [6]: a = 1
981 In [6]: a = 1
982
982
983 In [7]: a
983 In [7]: a
984 Out[7]: 1
984 Out[7]: 1
985
985
986 In [8]: 'a' in _ip.user_ns
986 In [8]: 'a' in _ip.user_ns
987 Out[8]: True
987 Out[8]: True
988
988
989 In [9]: %reset -f
989 In [9]: %reset -f
990
990
991 In [1]: 'a' in _ip.user_ns
991 In [1]: 'a' in _ip.user_ns
992 Out[1]: False
992 Out[1]: False
993 """
993 """
994 opts, args = self.parse_options(parameter_s,'sf')
994 opts, args = self.parse_options(parameter_s,'sf')
995 if 'f' in opts:
995 if 'f' in opts:
996 ans = True
996 ans = True
997 else:
997 else:
998 ans = self.shell.ask_yes_no(
998 ans = self.shell.ask_yes_no(
999 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
999 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1000 if not ans:
1000 if not ans:
1001 print 'Nothing done.'
1001 print 'Nothing done.'
1002 return
1002 return
1003
1003
1004 if 's' in opts: # Soft reset
1004 if 's' in opts: # Soft reset
1005 user_ns = self.shell.user_ns
1005 user_ns = self.shell.user_ns
1006 for i in self.magic_who_ls():
1006 for i in self.magic_who_ls():
1007 del(user_ns[i])
1007 del(user_ns[i])
1008
1008
1009 else: # Hard reset
1009 else: # Hard reset
1010 self.shell.reset(new_session = False)
1010 self.shell.reset(new_session = False)
1011
1011
1012
1012
1013
1013
1014 def magic_reset_selective(self, parameter_s=''):
1014 def magic_reset_selective(self, parameter_s=''):
1015 """Resets the namespace by removing names defined by the user.
1015 """Resets the namespace by removing names defined by the user.
1016
1016
1017 Input/Output history are left around in case you need them.
1017 Input/Output history are left around in case you need them.
1018
1018
1019 %reset_selective [-f] regex
1019 %reset_selective [-f] regex
1020
1020
1021 No action is taken if regex is not included
1021 No action is taken if regex is not included
1022
1022
1023 Options
1023 Options
1024 -f : force reset without asking for confirmation.
1024 -f : force reset without asking for confirmation.
1025
1025
1026 Examples
1026 Examples
1027 --------
1027 --------
1028
1028
1029 We first fully reset the namespace so your output looks identical to
1029 We first fully reset the namespace so your output looks identical to
1030 this example for pedagogical reasons; in practice you do not need a
1030 this example for pedagogical reasons; in practice you do not need a
1031 full reset.
1031 full reset.
1032
1032
1033 In [1]: %reset -f
1033 In [1]: %reset -f
1034
1034
1035 Now, with a clean namespace we can make a few variables and use
1035 Now, with a clean namespace we can make a few variables and use
1036 %reset_selective to only delete names that match our regexp:
1036 %reset_selective to only delete names that match our regexp:
1037
1037
1038 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1038 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1039
1039
1040 In [3]: who_ls
1040 In [3]: who_ls
1041 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1041 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1042
1042
1043 In [4]: %reset_selective -f b[2-3]m
1043 In [4]: %reset_selective -f b[2-3]m
1044
1044
1045 In [5]: who_ls
1045 In [5]: who_ls
1046 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1046 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1047
1047
1048 In [6]: %reset_selective -f d
1048 In [6]: %reset_selective -f d
1049
1049
1050 In [7]: who_ls
1050 In [7]: who_ls
1051 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1051 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1052
1052
1053 In [8]: %reset_selective -f c
1053 In [8]: %reset_selective -f c
1054
1054
1055 In [9]: who_ls
1055 In [9]: who_ls
1056 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1056 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1057
1057
1058 In [10]: %reset_selective -f b
1058 In [10]: %reset_selective -f b
1059
1059
1060 In [11]: who_ls
1060 In [11]: who_ls
1061 Out[11]: ['a']
1061 Out[11]: ['a']
1062 """
1062 """
1063
1063
1064 opts, regex = self.parse_options(parameter_s,'f')
1064 opts, regex = self.parse_options(parameter_s,'f')
1065
1065
1066 if opts.has_key('f'):
1066 if opts.has_key('f'):
1067 ans = True
1067 ans = True
1068 else:
1068 else:
1069 ans = self.shell.ask_yes_no(
1069 ans = self.shell.ask_yes_no(
1070 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1070 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1071 if not ans:
1071 if not ans:
1072 print 'Nothing done.'
1072 print 'Nothing done.'
1073 return
1073 return
1074 user_ns = self.shell.user_ns
1074 user_ns = self.shell.user_ns
1075 if not regex:
1075 if not regex:
1076 print 'No regex pattern specified. Nothing done.'
1076 print 'No regex pattern specified. Nothing done.'
1077 return
1077 return
1078 else:
1078 else:
1079 try:
1079 try:
1080 m = re.compile(regex)
1080 m = re.compile(regex)
1081 except TypeError:
1081 except TypeError:
1082 raise TypeError('regex must be a string or compiled pattern')
1082 raise TypeError('regex must be a string or compiled pattern')
1083 for i in self.magic_who_ls():
1083 for i in self.magic_who_ls():
1084 if m.search(i):
1084 if m.search(i):
1085 del(user_ns[i])
1085 del(user_ns[i])
1086
1086
1087 def magic_xdel(self, parameter_s=''):
1087 def magic_xdel(self, parameter_s=''):
1088 """Delete a variable, trying to clear it from anywhere that
1088 """Delete a variable, trying to clear it from anywhere that
1089 IPython's machinery has references to it. By default, this uses
1089 IPython's machinery has references to it. By default, this uses
1090 the identity of the named object in the user namespace to remove
1090 the identity of the named object in the user namespace to remove
1091 references held under other names. The object is also removed
1091 references held under other names. The object is also removed
1092 from the output history.
1092 from the output history.
1093
1093
1094 Options
1094 Options
1095 -n : Delete the specified name from all namespaces, without
1095 -n : Delete the specified name from all namespaces, without
1096 checking their identity.
1096 checking their identity.
1097 """
1097 """
1098 opts, varname = self.parse_options(parameter_s,'n')
1098 opts, varname = self.parse_options(parameter_s,'n')
1099 try:
1099 try:
1100 self.shell.del_var(varname, ('n' in opts))
1100 self.shell.del_var(varname, ('n' in opts))
1101 except (NameError, ValueError) as e:
1101 except (NameError, ValueError) as e:
1102 print type(e).__name__ +": "+ str(e)
1102 print type(e).__name__ +": "+ str(e)
1103
1103
1104 def magic_logstart(self,parameter_s=''):
1104 def magic_logstart(self,parameter_s=''):
1105 """Start logging anywhere in a session.
1105 """Start logging anywhere in a session.
1106
1106
1107 %logstart [-o|-r|-t] [log_name [log_mode]]
1107 %logstart [-o|-r|-t] [log_name [log_mode]]
1108
1108
1109 If no name is given, it defaults to a file named 'ipython_log.py' in your
1109 If no name is given, it defaults to a file named 'ipython_log.py' in your
1110 current directory, in 'rotate' mode (see below).
1110 current directory, in 'rotate' mode (see below).
1111
1111
1112 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1112 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1113 history up to that point and then continues logging.
1113 history up to that point and then continues logging.
1114
1114
1115 %logstart takes a second optional parameter: logging mode. This can be one
1115 %logstart takes a second optional parameter: logging mode. This can be one
1116 of (note that the modes are given unquoted):\\
1116 of (note that the modes are given unquoted):\\
1117 append: well, that says it.\\
1117 append: well, that says it.\\
1118 backup: rename (if exists) to name~ and start name.\\
1118 backup: rename (if exists) to name~ and start name.\\
1119 global: single logfile in your home dir, appended to.\\
1119 global: single logfile in your home dir, appended to.\\
1120 over : overwrite existing log.\\
1120 over : overwrite existing log.\\
1121 rotate: create rotating logs name.1~, name.2~, etc.
1121 rotate: create rotating logs name.1~, name.2~, etc.
1122
1122
1123 Options:
1123 Options:
1124
1124
1125 -o: log also IPython's output. In this mode, all commands which
1125 -o: log also IPython's output. In this mode, all commands which
1126 generate an Out[NN] prompt are recorded to the logfile, right after
1126 generate an Out[NN] prompt are recorded to the logfile, right after
1127 their corresponding input line. The output lines are always
1127 their corresponding input line. The output lines are always
1128 prepended with a '#[Out]# ' marker, so that the log remains valid
1128 prepended with a '#[Out]# ' marker, so that the log remains valid
1129 Python code.
1129 Python code.
1130
1130
1131 Since this marker is always the same, filtering only the output from
1131 Since this marker is always the same, filtering only the output from
1132 a log is very easy, using for example a simple awk call:
1132 a log is very easy, using for example a simple awk call:
1133
1133
1134 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1134 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1135
1135
1136 -r: log 'raw' input. Normally, IPython's logs contain the processed
1136 -r: log 'raw' input. Normally, IPython's logs contain the processed
1137 input, so that user lines are logged in their final form, converted
1137 input, so that user lines are logged in their final form, converted
1138 into valid Python. For example, %Exit is logged as
1138 into valid Python. For example, %Exit is logged as
1139 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1139 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1140 exactly as typed, with no transformations applied.
1140 exactly as typed, with no transformations applied.
1141
1141
1142 -t: put timestamps before each input line logged (these are put in
1142 -t: put timestamps before each input line logged (these are put in
1143 comments)."""
1143 comments)."""
1144
1144
1145 opts,par = self.parse_options(parameter_s,'ort')
1145 opts,par = self.parse_options(parameter_s,'ort')
1146 log_output = 'o' in opts
1146 log_output = 'o' in opts
1147 log_raw_input = 'r' in opts
1147 log_raw_input = 'r' in opts
1148 timestamp = 't' in opts
1148 timestamp = 't' in opts
1149
1149
1150 logger = self.shell.logger
1150 logger = self.shell.logger
1151
1151
1152 # if no args are given, the defaults set in the logger constructor by
1152 # if no args are given, the defaults set in the logger constructor by
1153 # ipytohn remain valid
1153 # ipytohn remain valid
1154 if par:
1154 if par:
1155 try:
1155 try:
1156 logfname,logmode = par.split()
1156 logfname,logmode = par.split()
1157 except:
1157 except:
1158 logfname = par
1158 logfname = par
1159 logmode = 'backup'
1159 logmode = 'backup'
1160 else:
1160 else:
1161 logfname = logger.logfname
1161 logfname = logger.logfname
1162 logmode = logger.logmode
1162 logmode = logger.logmode
1163 # put logfname into rc struct as if it had been called on the command
1163 # put logfname into rc struct as if it had been called on the command
1164 # line, so it ends up saved in the log header Save it in case we need
1164 # line, so it ends up saved in the log header Save it in case we need
1165 # to restore it...
1165 # to restore it...
1166 old_logfile = self.shell.logfile
1166 old_logfile = self.shell.logfile
1167 if logfname:
1167 if logfname:
1168 logfname = os.path.expanduser(logfname)
1168 logfname = os.path.expanduser(logfname)
1169 self.shell.logfile = logfname
1169 self.shell.logfile = logfname
1170
1170
1171 loghead = '# IPython log file\n\n'
1171 loghead = '# IPython log file\n\n'
1172 try:
1172 try:
1173 started = logger.logstart(logfname,loghead,logmode,
1173 started = logger.logstart(logfname,loghead,logmode,
1174 log_output,timestamp,log_raw_input)
1174 log_output,timestamp,log_raw_input)
1175 except:
1175 except:
1176 self.shell.logfile = old_logfile
1176 self.shell.logfile = old_logfile
1177 warn("Couldn't start log: %s" % sys.exc_info()[1])
1177 warn("Couldn't start log: %s" % sys.exc_info()[1])
1178 else:
1178 else:
1179 # log input history up to this point, optionally interleaving
1179 # log input history up to this point, optionally interleaving
1180 # output if requested
1180 # output if requested
1181
1181
1182 if timestamp:
1182 if timestamp:
1183 # disable timestamping for the previous history, since we've
1183 # disable timestamping for the previous history, since we've
1184 # lost those already (no time machine here).
1184 # lost those already (no time machine here).
1185 logger.timestamp = False
1185 logger.timestamp = False
1186
1186
1187 if log_raw_input:
1187 if log_raw_input:
1188 input_hist = self.shell.history_manager.input_hist_raw
1188 input_hist = self.shell.history_manager.input_hist_raw
1189 else:
1189 else:
1190 input_hist = self.shell.history_manager.input_hist_parsed
1190 input_hist = self.shell.history_manager.input_hist_parsed
1191
1191
1192 if log_output:
1192 if log_output:
1193 log_write = logger.log_write
1193 log_write = logger.log_write
1194 output_hist = self.shell.history_manager.output_hist
1194 output_hist = self.shell.history_manager.output_hist
1195 for n in range(1,len(input_hist)-1):
1195 for n in range(1,len(input_hist)-1):
1196 log_write(input_hist[n].rstrip() + '\n')
1196 log_write(input_hist[n].rstrip() + '\n')
1197 if n in output_hist:
1197 if n in output_hist:
1198 log_write(repr(output_hist[n]),'output')
1198 log_write(repr(output_hist[n]),'output')
1199 else:
1199 else:
1200 logger.log_write('\n'.join(input_hist[1:]))
1200 logger.log_write('\n'.join(input_hist[1:]))
1201 logger.log_write('\n')
1201 logger.log_write('\n')
1202 if timestamp:
1202 if timestamp:
1203 # re-enable timestamping
1203 # re-enable timestamping
1204 logger.timestamp = True
1204 logger.timestamp = True
1205
1205
1206 print ('Activating auto-logging. '
1206 print ('Activating auto-logging. '
1207 'Current session state plus future input saved.')
1207 'Current session state plus future input saved.')
1208 logger.logstate()
1208 logger.logstate()
1209
1209
1210 def magic_logstop(self,parameter_s=''):
1210 def magic_logstop(self,parameter_s=''):
1211 """Fully stop logging and close log file.
1211 """Fully stop logging and close log file.
1212
1212
1213 In order to start logging again, a new %logstart call needs to be made,
1213 In order to start logging again, a new %logstart call needs to be made,
1214 possibly (though not necessarily) with a new filename, mode and other
1214 possibly (though not necessarily) with a new filename, mode and other
1215 options."""
1215 options."""
1216 self.logger.logstop()
1216 self.logger.logstop()
1217
1217
1218 def magic_logoff(self,parameter_s=''):
1218 def magic_logoff(self,parameter_s=''):
1219 """Temporarily stop logging.
1219 """Temporarily stop logging.
1220
1220
1221 You must have previously started logging."""
1221 You must have previously started logging."""
1222 self.shell.logger.switch_log(0)
1222 self.shell.logger.switch_log(0)
1223
1223
1224 def magic_logon(self,parameter_s=''):
1224 def magic_logon(self,parameter_s=''):
1225 """Restart logging.
1225 """Restart logging.
1226
1226
1227 This function is for restarting logging which you've temporarily
1227 This function is for restarting logging which you've temporarily
1228 stopped with %logoff. For starting logging for the first time, you
1228 stopped with %logoff. For starting logging for the first time, you
1229 must use the %logstart function, which allows you to specify an
1229 must use the %logstart function, which allows you to specify an
1230 optional log filename."""
1230 optional log filename."""
1231
1231
1232 self.shell.logger.switch_log(1)
1232 self.shell.logger.switch_log(1)
1233
1233
1234 def magic_logstate(self,parameter_s=''):
1234 def magic_logstate(self,parameter_s=''):
1235 """Print the status of the logging system."""
1235 """Print the status of the logging system."""
1236
1236
1237 self.shell.logger.logstate()
1237 self.shell.logger.logstate()
1238
1238
1239 def magic_pdb(self, parameter_s=''):
1239 def magic_pdb(self, parameter_s=''):
1240 """Control the automatic calling of the pdb interactive debugger.
1240 """Control the automatic calling of the pdb interactive debugger.
1241
1241
1242 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1242 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1243 argument it works as a toggle.
1243 argument it works as a toggle.
1244
1244
1245 When an exception is triggered, IPython can optionally call the
1245 When an exception is triggered, IPython can optionally call the
1246 interactive pdb debugger after the traceback printout. %pdb toggles
1246 interactive pdb debugger after the traceback printout. %pdb toggles
1247 this feature on and off.
1247 this feature on and off.
1248
1248
1249 The initial state of this feature is set in your ipythonrc
1249 The initial state of this feature is set in your ipythonrc
1250 configuration file (the variable is called 'pdb').
1250 configuration file (the variable is called 'pdb').
1251
1251
1252 If you want to just activate the debugger AFTER an exception has fired,
1252 If you want to just activate the debugger AFTER an exception has fired,
1253 without having to type '%pdb on' and rerunning your code, you can use
1253 without having to type '%pdb on' and rerunning your code, you can use
1254 the %debug magic."""
1254 the %debug magic."""
1255
1255
1256 par = parameter_s.strip().lower()
1256 par = parameter_s.strip().lower()
1257
1257
1258 if par:
1258 if par:
1259 try:
1259 try:
1260 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1260 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1261 except KeyError:
1261 except KeyError:
1262 print ('Incorrect argument. Use on/1, off/0, '
1262 print ('Incorrect argument. Use on/1, off/0, '
1263 'or nothing for a toggle.')
1263 'or nothing for a toggle.')
1264 return
1264 return
1265 else:
1265 else:
1266 # toggle
1266 # toggle
1267 new_pdb = not self.shell.call_pdb
1267 new_pdb = not self.shell.call_pdb
1268
1268
1269 # set on the shell
1269 # set on the shell
1270 self.shell.call_pdb = new_pdb
1270 self.shell.call_pdb = new_pdb
1271 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1271 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1272
1272
1273 def magic_debug(self, parameter_s=''):
1273 def magic_debug(self, parameter_s=''):
1274 """Activate the interactive debugger in post-mortem mode.
1274 """Activate the interactive debugger in post-mortem mode.
1275
1275
1276 If an exception has just occurred, this lets you inspect its stack
1276 If an exception has just occurred, this lets you inspect its stack
1277 frames interactively. Note that this will always work only on the last
1277 frames interactively. Note that this will always work only on the last
1278 traceback that occurred, so you must call this quickly after an
1278 traceback that occurred, so you must call this quickly after an
1279 exception that you wish to inspect has fired, because if another one
1279 exception that you wish to inspect has fired, because if another one
1280 occurs, it clobbers the previous one.
1280 occurs, it clobbers the previous one.
1281
1281
1282 If you want IPython to automatically do this on every exception, see
1282 If you want IPython to automatically do this on every exception, see
1283 the %pdb magic for more details.
1283 the %pdb magic for more details.
1284 """
1284 """
1285 self.shell.debugger(force=True)
1285 self.shell.debugger(force=True)
1286
1286
1287 @skip_doctest
1287 @skip_doctest
1288 def magic_prun(self, parameter_s ='',user_mode=1,
1288 def magic_prun(self, parameter_s ='',user_mode=1,
1289 opts=None,arg_lst=None,prog_ns=None):
1289 opts=None,arg_lst=None,prog_ns=None):
1290
1290
1291 """Run a statement through the python code profiler.
1291 """Run a statement through the python code profiler.
1292
1292
1293 Usage:
1293 Usage:
1294 %prun [options] statement
1294 %prun [options] statement
1295
1295
1296 The given statement (which doesn't require quote marks) is run via the
1296 The given statement (which doesn't require quote marks) is run via the
1297 python profiler in a manner similar to the profile.run() function.
1297 python profiler in a manner similar to the profile.run() function.
1298 Namespaces are internally managed to work correctly; profile.run
1298 Namespaces are internally managed to work correctly; profile.run
1299 cannot be used in IPython because it makes certain assumptions about
1299 cannot be used in IPython because it makes certain assumptions about
1300 namespaces which do not hold under IPython.
1300 namespaces which do not hold under IPython.
1301
1301
1302 Options:
1302 Options:
1303
1303
1304 -l <limit>: you can place restrictions on what or how much of the
1304 -l <limit>: you can place restrictions on what or how much of the
1305 profile gets printed. The limit value can be:
1305 profile gets printed. The limit value can be:
1306
1306
1307 * A string: only information for function names containing this string
1307 * A string: only information for function names containing this string
1308 is printed.
1308 is printed.
1309
1309
1310 * An integer: only these many lines are printed.
1310 * An integer: only these many lines are printed.
1311
1311
1312 * A float (between 0 and 1): this fraction of the report is printed
1312 * A float (between 0 and 1): this fraction of the report is printed
1313 (for example, use a limit of 0.4 to see the topmost 40% only).
1313 (for example, use a limit of 0.4 to see the topmost 40% only).
1314
1314
1315 You can combine several limits with repeated use of the option. For
1315 You can combine several limits with repeated use of the option. For
1316 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1316 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1317 information about class constructors.
1317 information about class constructors.
1318
1318
1319 -r: return the pstats.Stats object generated by the profiling. This
1319 -r: return the pstats.Stats object generated by the profiling. This
1320 object has all the information about the profile in it, and you can
1320 object has all the information about the profile in it, and you can
1321 later use it for further analysis or in other functions.
1321 later use it for further analysis or in other functions.
1322
1322
1323 -s <key>: sort profile by given key. You can provide more than one key
1323 -s <key>: sort profile by given key. You can provide more than one key
1324 by using the option several times: '-s key1 -s key2 -s key3...'. The
1324 by using the option several times: '-s key1 -s key2 -s key3...'. The
1325 default sorting key is 'time'.
1325 default sorting key is 'time'.
1326
1326
1327 The following is copied verbatim from the profile documentation
1327 The following is copied verbatim from the profile documentation
1328 referenced below:
1328 referenced below:
1329
1329
1330 When more than one key is provided, additional keys are used as
1330 When more than one key is provided, additional keys are used as
1331 secondary criteria when the there is equality in all keys selected
1331 secondary criteria when the there is equality in all keys selected
1332 before them.
1332 before them.
1333
1333
1334 Abbreviations can be used for any key names, as long as the
1334 Abbreviations can be used for any key names, as long as the
1335 abbreviation is unambiguous. The following are the keys currently
1335 abbreviation is unambiguous. The following are the keys currently
1336 defined:
1336 defined:
1337
1337
1338 Valid Arg Meaning
1338 Valid Arg Meaning
1339 "calls" call count
1339 "calls" call count
1340 "cumulative" cumulative time
1340 "cumulative" cumulative time
1341 "file" file name
1341 "file" file name
1342 "module" file name
1342 "module" file name
1343 "pcalls" primitive call count
1343 "pcalls" primitive call count
1344 "line" line number
1344 "line" line number
1345 "name" function name
1345 "name" function name
1346 "nfl" name/file/line
1346 "nfl" name/file/line
1347 "stdname" standard name
1347 "stdname" standard name
1348 "time" internal time
1348 "time" internal time
1349
1349
1350 Note that all sorts on statistics are in descending order (placing
1350 Note that all sorts on statistics are in descending order (placing
1351 most time consuming items first), where as name, file, and line number
1351 most time consuming items first), where as name, file, and line number
1352 searches are in ascending order (i.e., alphabetical). The subtle
1352 searches are in ascending order (i.e., alphabetical). The subtle
1353 distinction between "nfl" and "stdname" is that the standard name is a
1353 distinction between "nfl" and "stdname" is that the standard name is a
1354 sort of the name as printed, which means that the embedded line
1354 sort of the name as printed, which means that the embedded line
1355 numbers get compared in an odd way. For example, lines 3, 20, and 40
1355 numbers get compared in an odd way. For example, lines 3, 20, and 40
1356 would (if the file names were the same) appear in the string order
1356 would (if the file names were the same) appear in the string order
1357 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1357 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1358 line numbers. In fact, sort_stats("nfl") is the same as
1358 line numbers. In fact, sort_stats("nfl") is the same as
1359 sort_stats("name", "file", "line").
1359 sort_stats("name", "file", "line").
1360
1360
1361 -T <filename>: save profile results as shown on screen to a text
1361 -T <filename>: save profile results as shown on screen to a text
1362 file. The profile is still shown on screen.
1362 file. The profile is still shown on screen.
1363
1363
1364 -D <filename>: save (via dump_stats) profile statistics to given
1364 -D <filename>: save (via dump_stats) profile statistics to given
1365 filename. This data is in a format understod by the pstats module, and
1365 filename. This data is in a format understod by the pstats module, and
1366 is generated by a call to the dump_stats() method of profile
1366 is generated by a call to the dump_stats() method of profile
1367 objects. The profile is still shown on screen.
1367 objects. The profile is still shown on screen.
1368
1368
1369 If you want to run complete programs under the profiler's control, use
1369 If you want to run complete programs under the profiler's control, use
1370 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1370 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1371 contains profiler specific options as described here.
1371 contains profiler specific options as described here.
1372
1372
1373 You can read the complete documentation for the profile module with::
1373 You can read the complete documentation for the profile module with::
1374
1374
1375 In [1]: import profile; profile.help()
1375 In [1]: import profile; profile.help()
1376 """
1376 """
1377
1377
1378 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1378 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1379 # protect user quote marks
1379 # protect user quote marks
1380 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1380 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1381
1381
1382 if user_mode: # regular user call
1382 if user_mode: # regular user call
1383 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1383 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1384 list_all=1)
1384 list_all=1)
1385 namespace = self.shell.user_ns
1385 namespace = self.shell.user_ns
1386 else: # called to run a program by %run -p
1386 else: # called to run a program by %run -p
1387 try:
1387 try:
1388 filename = get_py_filename(arg_lst[0])
1388 filename = get_py_filename(arg_lst[0])
1389 except IOError,msg:
1389 except IOError,msg:
1390 error(msg)
1390 error(msg)
1391 return
1391 return
1392
1392
1393 arg_str = 'execfile(filename,prog_ns)'
1393 arg_str = 'execfile(filename,prog_ns)'
1394 namespace = locals()
1394 namespace = locals()
1395
1395
1396 opts.merge(opts_def)
1396 opts.merge(opts_def)
1397
1397
1398 prof = profile.Profile()
1398 prof = profile.Profile()
1399 try:
1399 try:
1400 prof = prof.runctx(arg_str,namespace,namespace)
1400 prof = prof.runctx(arg_str,namespace,namespace)
1401 sys_exit = ''
1401 sys_exit = ''
1402 except SystemExit:
1402 except SystemExit:
1403 sys_exit = """*** SystemExit exception caught in code being profiled."""
1403 sys_exit = """*** SystemExit exception caught in code being profiled."""
1404
1404
1405 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1405 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1406
1406
1407 lims = opts.l
1407 lims = opts.l
1408 if lims:
1408 if lims:
1409 lims = [] # rebuild lims with ints/floats/strings
1409 lims = [] # rebuild lims with ints/floats/strings
1410 for lim in opts.l:
1410 for lim in opts.l:
1411 try:
1411 try:
1412 lims.append(int(lim))
1412 lims.append(int(lim))
1413 except ValueError:
1413 except ValueError:
1414 try:
1414 try:
1415 lims.append(float(lim))
1415 lims.append(float(lim))
1416 except ValueError:
1416 except ValueError:
1417 lims.append(lim)
1417 lims.append(lim)
1418
1418
1419 # Trap output.
1419 # Trap output.
1420 stdout_trap = StringIO()
1420 stdout_trap = StringIO()
1421
1421
1422 if hasattr(stats,'stream'):
1422 if hasattr(stats,'stream'):
1423 # In newer versions of python, the stats object has a 'stream'
1423 # In newer versions of python, the stats object has a 'stream'
1424 # attribute to write into.
1424 # attribute to write into.
1425 stats.stream = stdout_trap
1425 stats.stream = stdout_trap
1426 stats.print_stats(*lims)
1426 stats.print_stats(*lims)
1427 else:
1427 else:
1428 # For older versions, we manually redirect stdout during printing
1428 # For older versions, we manually redirect stdout during printing
1429 sys_stdout = sys.stdout
1429 sys_stdout = sys.stdout
1430 try:
1430 try:
1431 sys.stdout = stdout_trap
1431 sys.stdout = stdout_trap
1432 stats.print_stats(*lims)
1432 stats.print_stats(*lims)
1433 finally:
1433 finally:
1434 sys.stdout = sys_stdout
1434 sys.stdout = sys_stdout
1435
1435
1436 output = stdout_trap.getvalue()
1436 output = stdout_trap.getvalue()
1437 output = output.rstrip()
1437 output = output.rstrip()
1438
1438
1439 page.page(output)
1439 page.page(output)
1440 print sys_exit,
1440 print sys_exit,
1441
1441
1442 dump_file = opts.D[0]
1442 dump_file = opts.D[0]
1443 text_file = opts.T[0]
1443 text_file = opts.T[0]
1444 if dump_file:
1444 if dump_file:
1445 prof.dump_stats(dump_file)
1445 prof.dump_stats(dump_file)
1446 print '\n*** Profile stats marshalled to file',\
1446 print '\n*** Profile stats marshalled to file',\
1447 `dump_file`+'.',sys_exit
1447 `dump_file`+'.',sys_exit
1448 if text_file:
1448 if text_file:
1449 pfile = file(text_file,'w')
1449 pfile = file(text_file,'w')
1450 pfile.write(output)
1450 pfile.write(output)
1451 pfile.close()
1451 pfile.close()
1452 print '\n*** Profile printout saved to text file',\
1452 print '\n*** Profile printout saved to text file',\
1453 `text_file`+'.',sys_exit
1453 `text_file`+'.',sys_exit
1454
1454
1455 if opts.has_key('r'):
1455 if opts.has_key('r'):
1456 return stats
1456 return stats
1457 else:
1457 else:
1458 return None
1458 return None
1459
1459
1460 @skip_doctest
1460 @skip_doctest
1461 def magic_run(self, parameter_s ='',runner=None,
1461 def magic_run(self, parameter_s ='',runner=None,
1462 file_finder=get_py_filename):
1462 file_finder=get_py_filename):
1463 """Run the named file inside IPython as a program.
1463 """Run the named file inside IPython as a program.
1464
1464
1465 Usage:\\
1465 Usage:\\
1466 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1466 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1467
1467
1468 Parameters after the filename are passed as command-line arguments to
1468 Parameters after the filename are passed as command-line arguments to
1469 the program (put in sys.argv). Then, control returns to IPython's
1469 the program (put in sys.argv). Then, control returns to IPython's
1470 prompt.
1470 prompt.
1471
1471
1472 This is similar to running at a system prompt:\\
1472 This is similar to running at a system prompt:\\
1473 $ python file args\\
1473 $ python file args\\
1474 but with the advantage of giving you IPython's tracebacks, and of
1474 but with the advantage of giving you IPython's tracebacks, and of
1475 loading all variables into your interactive namespace for further use
1475 loading all variables into your interactive namespace for further use
1476 (unless -p is used, see below).
1476 (unless -p is used, see below).
1477
1477
1478 The file is executed in a namespace initially consisting only of
1478 The file is executed in a namespace initially consisting only of
1479 __name__=='__main__' and sys.argv constructed as indicated. It thus
1479 __name__=='__main__' and sys.argv constructed as indicated. It thus
1480 sees its environment as if it were being run as a stand-alone program
1480 sees its environment as if it were being run as a stand-alone program
1481 (except for sharing global objects such as previously imported
1481 (except for sharing global objects such as previously imported
1482 modules). But after execution, the IPython interactive namespace gets
1482 modules). But after execution, the IPython interactive namespace gets
1483 updated with all variables defined in the program (except for __name__
1483 updated with all variables defined in the program (except for __name__
1484 and sys.argv). This allows for very convenient loading of code for
1484 and sys.argv). This allows for very convenient loading of code for
1485 interactive work, while giving each program a 'clean sheet' to run in.
1485 interactive work, while giving each program a 'clean sheet' to run in.
1486
1486
1487 Options:
1487 Options:
1488
1488
1489 -n: __name__ is NOT set to '__main__', but to the running file's name
1489 -n: __name__ is NOT set to '__main__', but to the running file's name
1490 without extension (as python does under import). This allows running
1490 without extension (as python does under import). This allows running
1491 scripts and reloading the definitions in them without calling code
1491 scripts and reloading the definitions in them without calling code
1492 protected by an ' if __name__ == "__main__" ' clause.
1492 protected by an ' if __name__ == "__main__" ' clause.
1493
1493
1494 -i: run the file in IPython's namespace instead of an empty one. This
1494 -i: run the file in IPython's namespace instead of an empty one. This
1495 is useful if you are experimenting with code written in a text editor
1495 is useful if you are experimenting with code written in a text editor
1496 which depends on variables defined interactively.
1496 which depends on variables defined interactively.
1497
1497
1498 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1498 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1499 being run. This is particularly useful if IPython is being used to
1499 being run. This is particularly useful if IPython is being used to
1500 run unittests, which always exit with a sys.exit() call. In such
1500 run unittests, which always exit with a sys.exit() call. In such
1501 cases you are interested in the output of the test results, not in
1501 cases you are interested in the output of the test results, not in
1502 seeing a traceback of the unittest module.
1502 seeing a traceback of the unittest module.
1503
1503
1504 -t: print timing information at the end of the run. IPython will give
1504 -t: print timing information at the end of the run. IPython will give
1505 you an estimated CPU time consumption for your script, which under
1505 you an estimated CPU time consumption for your script, which under
1506 Unix uses the resource module to avoid the wraparound problems of
1506 Unix uses the resource module to avoid the wraparound problems of
1507 time.clock(). Under Unix, an estimate of time spent on system tasks
1507 time.clock(). Under Unix, an estimate of time spent on system tasks
1508 is also given (for Windows platforms this is reported as 0.0).
1508 is also given (for Windows platforms this is reported as 0.0).
1509
1509
1510 If -t is given, an additional -N<N> option can be given, where <N>
1510 If -t is given, an additional -N<N> option can be given, where <N>
1511 must be an integer indicating how many times you want the script to
1511 must be an integer indicating how many times you want the script to
1512 run. The final timing report will include total and per run results.
1512 run. The final timing report will include total and per run results.
1513
1513
1514 For example (testing the script uniq_stable.py):
1514 For example (testing the script uniq_stable.py):
1515
1515
1516 In [1]: run -t uniq_stable
1516 In [1]: run -t uniq_stable
1517
1517
1518 IPython CPU timings (estimated):\\
1518 IPython CPU timings (estimated):\\
1519 User : 0.19597 s.\\
1519 User : 0.19597 s.\\
1520 System: 0.0 s.\\
1520 System: 0.0 s.\\
1521
1521
1522 In [2]: run -t -N5 uniq_stable
1522 In [2]: run -t -N5 uniq_stable
1523
1523
1524 IPython CPU timings (estimated):\\
1524 IPython CPU timings (estimated):\\
1525 Total runs performed: 5\\
1525 Total runs performed: 5\\
1526 Times : Total Per run\\
1526 Times : Total Per run\\
1527 User : 0.910862 s, 0.1821724 s.\\
1527 User : 0.910862 s, 0.1821724 s.\\
1528 System: 0.0 s, 0.0 s.
1528 System: 0.0 s, 0.0 s.
1529
1529
1530 -d: run your program under the control of pdb, the Python debugger.
1530 -d: run your program under the control of pdb, the Python debugger.
1531 This allows you to execute your program step by step, watch variables,
1531 This allows you to execute your program step by step, watch variables,
1532 etc. Internally, what IPython does is similar to calling:
1532 etc. Internally, what IPython does is similar to calling:
1533
1533
1534 pdb.run('execfile("YOURFILENAME")')
1534 pdb.run('execfile("YOURFILENAME")')
1535
1535
1536 with a breakpoint set on line 1 of your file. You can change the line
1536 with a breakpoint set on line 1 of your file. You can change the line
1537 number for this automatic breakpoint to be <N> by using the -bN option
1537 number for this automatic breakpoint to be <N> by using the -bN option
1538 (where N must be an integer). For example:
1538 (where N must be an integer). For example:
1539
1539
1540 %run -d -b40 myscript
1540 %run -d -b40 myscript
1541
1541
1542 will set the first breakpoint at line 40 in myscript.py. Note that
1542 will set the first breakpoint at line 40 in myscript.py. Note that
1543 the first breakpoint must be set on a line which actually does
1543 the first breakpoint must be set on a line which actually does
1544 something (not a comment or docstring) for it to stop execution.
1544 something (not a comment or docstring) for it to stop execution.
1545
1545
1546 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1546 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1547 first enter 'c' (without qoutes) to start execution up to the first
1547 first enter 'c' (without qoutes) to start execution up to the first
1548 breakpoint.
1548 breakpoint.
1549
1549
1550 Entering 'help' gives information about the use of the debugger. You
1550 Entering 'help' gives information about the use of the debugger. You
1551 can easily see pdb's full documentation with "import pdb;pdb.help()"
1551 can easily see pdb's full documentation with "import pdb;pdb.help()"
1552 at a prompt.
1552 at a prompt.
1553
1553
1554 -p: run program under the control of the Python profiler module (which
1554 -p: run program under the control of the Python profiler module (which
1555 prints a detailed report of execution times, function calls, etc).
1555 prints a detailed report of execution times, function calls, etc).
1556
1556
1557 You can pass other options after -p which affect the behavior of the
1557 You can pass other options after -p which affect the behavior of the
1558 profiler itself. See the docs for %prun for details.
1558 profiler itself. See the docs for %prun for details.
1559
1559
1560 In this mode, the program's variables do NOT propagate back to the
1560 In this mode, the program's variables do NOT propagate back to the
1561 IPython interactive namespace (because they remain in the namespace
1561 IPython interactive namespace (because they remain in the namespace
1562 where the profiler executes them).
1562 where the profiler executes them).
1563
1563
1564 Internally this triggers a call to %prun, see its documentation for
1564 Internally this triggers a call to %prun, see its documentation for
1565 details on the options available specifically for profiling.
1565 details on the options available specifically for profiling.
1566
1566
1567 There is one special usage for which the text above doesn't apply:
1567 There is one special usage for which the text above doesn't apply:
1568 if the filename ends with .ipy, the file is run as ipython script,
1568 if the filename ends with .ipy, the file is run as ipython script,
1569 just as if the commands were written on IPython prompt.
1569 just as if the commands were written on IPython prompt.
1570 """
1570 """
1571
1571
1572 # get arguments and set sys.argv for program to be run.
1572 # get arguments and set sys.argv for program to be run.
1573 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1573 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1574 mode='list',list_all=1)
1574 mode='list',list_all=1)
1575
1575
1576 try:
1576 try:
1577 filename = file_finder(arg_lst[0])
1577 filename = file_finder(arg_lst[0])
1578 except IndexError:
1578 except IndexError:
1579 warn('you must provide at least a filename.')
1579 warn('you must provide at least a filename.')
1580 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1580 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1581 return
1581 return
1582 except IOError,msg:
1582 except IOError,msg:
1583 error(msg)
1583 error(msg)
1584 return
1584 return
1585
1585
1586 if filename.lower().endswith('.ipy'):
1586 if filename.lower().endswith('.ipy'):
1587 self.shell.safe_execfile_ipy(filename)
1587 self.shell.safe_execfile_ipy(filename)
1588 return
1588 return
1589
1589
1590 # Control the response to exit() calls made by the script being run
1590 # Control the response to exit() calls made by the script being run
1591 exit_ignore = opts.has_key('e')
1591 exit_ignore = opts.has_key('e')
1592
1592
1593 # Make sure that the running script gets a proper sys.argv as if it
1593 # Make sure that the running script gets a proper sys.argv as if it
1594 # were run from a system shell.
1594 # were run from a system shell.
1595 save_argv = sys.argv # save it for later restoring
1595 save_argv = sys.argv # save it for later restoring
1596 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1596 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1597
1597
1598 if opts.has_key('i'):
1598 if opts.has_key('i'):
1599 # Run in user's interactive namespace
1599 # Run in user's interactive namespace
1600 prog_ns = self.shell.user_ns
1600 prog_ns = self.shell.user_ns
1601 __name__save = self.shell.user_ns['__name__']
1601 __name__save = self.shell.user_ns['__name__']
1602 prog_ns['__name__'] = '__main__'
1602 prog_ns['__name__'] = '__main__'
1603 main_mod = self.shell.new_main_mod(prog_ns)
1603 main_mod = self.shell.new_main_mod(prog_ns)
1604 else:
1604 else:
1605 # Run in a fresh, empty namespace
1605 # Run in a fresh, empty namespace
1606 if opts.has_key('n'):
1606 if opts.has_key('n'):
1607 name = os.path.splitext(os.path.basename(filename))[0]
1607 name = os.path.splitext(os.path.basename(filename))[0]
1608 else:
1608 else:
1609 name = '__main__'
1609 name = '__main__'
1610
1610
1611 main_mod = self.shell.new_main_mod()
1611 main_mod = self.shell.new_main_mod()
1612 prog_ns = main_mod.__dict__
1612 prog_ns = main_mod.__dict__
1613 prog_ns['__name__'] = name
1613 prog_ns['__name__'] = name
1614
1614
1615 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1615 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1616 # set the __file__ global in the script's namespace
1616 # set the __file__ global in the script's namespace
1617 prog_ns['__file__'] = filename
1617 prog_ns['__file__'] = filename
1618
1618
1619 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1619 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1620 # that, if we overwrite __main__, we replace it at the end
1620 # that, if we overwrite __main__, we replace it at the end
1621 main_mod_name = prog_ns['__name__']
1621 main_mod_name = prog_ns['__name__']
1622
1622
1623 if main_mod_name == '__main__':
1623 if main_mod_name == '__main__':
1624 restore_main = sys.modules['__main__']
1624 restore_main = sys.modules['__main__']
1625 else:
1625 else:
1626 restore_main = False
1626 restore_main = False
1627
1627
1628 # This needs to be undone at the end to prevent holding references to
1628 # This needs to be undone at the end to prevent holding references to
1629 # every single object ever created.
1629 # every single object ever created.
1630 sys.modules[main_mod_name] = main_mod
1630 sys.modules[main_mod_name] = main_mod
1631
1631
1632 try:
1632 try:
1633 stats = None
1633 stats = None
1634 with self.readline_no_record:
1634 with self.readline_no_record:
1635 if opts.has_key('p'):
1635 if opts.has_key('p'):
1636 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1636 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1637 else:
1637 else:
1638 if opts.has_key('d'):
1638 if opts.has_key('d'):
1639 deb = debugger.Pdb(self.shell.colors)
1639 deb = debugger.Pdb(self.shell.colors)
1640 # reset Breakpoint state, which is moronically kept
1640 # reset Breakpoint state, which is moronically kept
1641 # in a class
1641 # in a class
1642 bdb.Breakpoint.next = 1
1642 bdb.Breakpoint.next = 1
1643 bdb.Breakpoint.bplist = {}
1643 bdb.Breakpoint.bplist = {}
1644 bdb.Breakpoint.bpbynumber = [None]
1644 bdb.Breakpoint.bpbynumber = [None]
1645 # Set an initial breakpoint to stop execution
1645 # Set an initial breakpoint to stop execution
1646 maxtries = 10
1646 maxtries = 10
1647 bp = int(opts.get('b',[1])[0])
1647 bp = int(opts.get('b',[1])[0])
1648 checkline = deb.checkline(filename,bp)
1648 checkline = deb.checkline(filename,bp)
1649 if not checkline:
1649 if not checkline:
1650 for bp in range(bp+1,bp+maxtries+1):
1650 for bp in range(bp+1,bp+maxtries+1):
1651 if deb.checkline(filename,bp):
1651 if deb.checkline(filename,bp):
1652 break
1652 break
1653 else:
1653 else:
1654 msg = ("\nI failed to find a valid line to set "
1654 msg = ("\nI failed to find a valid line to set "
1655 "a breakpoint\n"
1655 "a breakpoint\n"
1656 "after trying up to line: %s.\n"
1656 "after trying up to line: %s.\n"
1657 "Please set a valid breakpoint manually "
1657 "Please set a valid breakpoint manually "
1658 "with the -b option." % bp)
1658 "with the -b option." % bp)
1659 error(msg)
1659 error(msg)
1660 return
1660 return
1661 # if we find a good linenumber, set the breakpoint
1661 # if we find a good linenumber, set the breakpoint
1662 deb.do_break('%s:%s' % (filename,bp))
1662 deb.do_break('%s:%s' % (filename,bp))
1663 # Start file run
1663 # Start file run
1664 print "NOTE: Enter 'c' at the",
1664 print "NOTE: Enter 'c' at the",
1665 print "%s prompt to start your script." % deb.prompt
1665 print "%s prompt to start your script." % deb.prompt
1666 try:
1666 try:
1667 deb.run('execfile("%s")' % filename,prog_ns)
1667 deb.run('execfile("%s")' % filename,prog_ns)
1668
1668
1669 except:
1669 except:
1670 etype, value, tb = sys.exc_info()
1670 etype, value, tb = sys.exc_info()
1671 # Skip three frames in the traceback: the %run one,
1671 # Skip three frames in the traceback: the %run one,
1672 # one inside bdb.py, and the command-line typed by the
1672 # one inside bdb.py, and the command-line typed by the
1673 # user (run by exec in pdb itself).
1673 # user (run by exec in pdb itself).
1674 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1674 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1675 else:
1675 else:
1676 if runner is None:
1676 if runner is None:
1677 runner = self.shell.safe_execfile
1677 runner = self.shell.safe_execfile
1678 if opts.has_key('t'):
1678 if opts.has_key('t'):
1679 # timed execution
1679 # timed execution
1680 try:
1680 try:
1681 nruns = int(opts['N'][0])
1681 nruns = int(opts['N'][0])
1682 if nruns < 1:
1682 if nruns < 1:
1683 error('Number of runs must be >=1')
1683 error('Number of runs must be >=1')
1684 return
1684 return
1685 except (KeyError):
1685 except (KeyError):
1686 nruns = 1
1686 nruns = 1
1687 if nruns == 1:
1687 if nruns == 1:
1688 t0 = clock2()
1688 t0 = clock2()
1689 runner(filename,prog_ns,prog_ns,
1689 runner(filename,prog_ns,prog_ns,
1690 exit_ignore=exit_ignore)
1690 exit_ignore=exit_ignore)
1691 t1 = clock2()
1691 t1 = clock2()
1692 t_usr = t1[0]-t0[0]
1692 t_usr = t1[0]-t0[0]
1693 t_sys = t1[1]-t0[1]
1693 t_sys = t1[1]-t0[1]
1694 print "\nIPython CPU timings (estimated):"
1694 print "\nIPython CPU timings (estimated):"
1695 print " User : %10s s." % t_usr
1695 print " User : %10s s." % t_usr
1696 print " System: %10s s." % t_sys
1696 print " System: %10s s." % t_sys
1697 else:
1697 else:
1698 runs = range(nruns)
1698 runs = range(nruns)
1699 t0 = clock2()
1699 t0 = clock2()
1700 for nr in runs:
1700 for nr in runs:
1701 runner(filename,prog_ns,prog_ns,
1701 runner(filename,prog_ns,prog_ns,
1702 exit_ignore=exit_ignore)
1702 exit_ignore=exit_ignore)
1703 t1 = clock2()
1703 t1 = clock2()
1704 t_usr = t1[0]-t0[0]
1704 t_usr = t1[0]-t0[0]
1705 t_sys = t1[1]-t0[1]
1705 t_sys = t1[1]-t0[1]
1706 print "\nIPython CPU timings (estimated):"
1706 print "\nIPython CPU timings (estimated):"
1707 print "Total runs performed:",nruns
1707 print "Total runs performed:",nruns
1708 print " Times : %10s %10s" % ('Total','Per run')
1708 print " Times : %10s %10s" % ('Total','Per run')
1709 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1709 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1710 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1710 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1711
1711
1712 else:
1712 else:
1713 # regular execution
1713 # regular execution
1714 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1714 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1715
1715
1716 if opts.has_key('i'):
1716 if opts.has_key('i'):
1717 self.shell.user_ns['__name__'] = __name__save
1717 self.shell.user_ns['__name__'] = __name__save
1718 else:
1718 else:
1719 # The shell MUST hold a reference to prog_ns so after %run
1719 # The shell MUST hold a reference to prog_ns so after %run
1720 # exits, the python deletion mechanism doesn't zero it out
1720 # exits, the python deletion mechanism doesn't zero it out
1721 # (leaving dangling references).
1721 # (leaving dangling references).
1722 self.shell.cache_main_mod(prog_ns,filename)
1722 self.shell.cache_main_mod(prog_ns,filename)
1723 # update IPython interactive namespace
1723 # update IPython interactive namespace
1724
1724
1725 # Some forms of read errors on the file may mean the
1725 # Some forms of read errors on the file may mean the
1726 # __name__ key was never set; using pop we don't have to
1726 # __name__ key was never set; using pop we don't have to
1727 # worry about a possible KeyError.
1727 # worry about a possible KeyError.
1728 prog_ns.pop('__name__', None)
1728 prog_ns.pop('__name__', None)
1729
1729
1730 self.shell.user_ns.update(prog_ns)
1730 self.shell.user_ns.update(prog_ns)
1731 finally:
1731 finally:
1732 # It's a bit of a mystery why, but __builtins__ can change from
1732 # It's a bit of a mystery why, but __builtins__ can change from
1733 # being a module to becoming a dict missing some key data after
1733 # being a module to becoming a dict missing some key data after
1734 # %run. As best I can see, this is NOT something IPython is doing
1734 # %run. As best I can see, this is NOT something IPython is doing
1735 # at all, and similar problems have been reported before:
1735 # at all, and similar problems have been reported before:
1736 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1736 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1737 # Since this seems to be done by the interpreter itself, the best
1737 # Since this seems to be done by the interpreter itself, the best
1738 # we can do is to at least restore __builtins__ for the user on
1738 # we can do is to at least restore __builtins__ for the user on
1739 # exit.
1739 # exit.
1740 self.shell.user_ns['__builtins__'] = __builtin__
1740 self.shell.user_ns['__builtins__'] = __builtin__
1741
1741
1742 # Ensure key global structures are restored
1742 # Ensure key global structures are restored
1743 sys.argv = save_argv
1743 sys.argv = save_argv
1744 if restore_main:
1744 if restore_main:
1745 sys.modules['__main__'] = restore_main
1745 sys.modules['__main__'] = restore_main
1746 else:
1746 else:
1747 # Remove from sys.modules the reference to main_mod we'd
1747 # Remove from sys.modules the reference to main_mod we'd
1748 # added. Otherwise it will trap references to objects
1748 # added. Otherwise it will trap references to objects
1749 # contained therein.
1749 # contained therein.
1750 del sys.modules[main_mod_name]
1750 del sys.modules[main_mod_name]
1751
1751
1752 return stats
1752 return stats
1753
1753
1754 @skip_doctest
1754 @skip_doctest
1755 def magic_timeit(self, parameter_s =''):
1755 def magic_timeit(self, parameter_s =''):
1756 """Time execution of a Python statement or expression
1756 """Time execution of a Python statement or expression
1757
1757
1758 Usage:\\
1758 Usage:\\
1759 %timeit [-n<N> -r<R> [-t|-c]] statement
1759 %timeit [-n<N> -r<R> [-t|-c]] statement
1760
1760
1761 Time execution of a Python statement or expression using the timeit
1761 Time execution of a Python statement or expression using the timeit
1762 module.
1762 module.
1763
1763
1764 Options:
1764 Options:
1765 -n<N>: execute the given statement <N> times in a loop. If this value
1765 -n<N>: execute the given statement <N> times in a loop. If this value
1766 is not given, a fitting value is chosen.
1766 is not given, a fitting value is chosen.
1767
1767
1768 -r<R>: repeat the loop iteration <R> times and take the best result.
1768 -r<R>: repeat the loop iteration <R> times and take the best result.
1769 Default: 3
1769 Default: 3
1770
1770
1771 -t: use time.time to measure the time, which is the default on Unix.
1771 -t: use time.time to measure the time, which is the default on Unix.
1772 This function measures wall time.
1772 This function measures wall time.
1773
1773
1774 -c: use time.clock to measure the time, which is the default on
1774 -c: use time.clock to measure the time, which is the default on
1775 Windows and measures wall time. On Unix, resource.getrusage is used
1775 Windows and measures wall time. On Unix, resource.getrusage is used
1776 instead and returns the CPU user time.
1776 instead and returns the CPU user time.
1777
1777
1778 -p<P>: use a precision of <P> digits to display the timing result.
1778 -p<P>: use a precision of <P> digits to display the timing result.
1779 Default: 3
1779 Default: 3
1780
1780
1781
1781
1782 Examples:
1782 Examples:
1783
1783
1784 In [1]: %timeit pass
1784 In [1]: %timeit pass
1785 10000000 loops, best of 3: 53.3 ns per loop
1785 10000000 loops, best of 3: 53.3 ns per loop
1786
1786
1787 In [2]: u = None
1787 In [2]: u = None
1788
1788
1789 In [3]: %timeit u is None
1789 In [3]: %timeit u is None
1790 10000000 loops, best of 3: 184 ns per loop
1790 10000000 loops, best of 3: 184 ns per loop
1791
1791
1792 In [4]: %timeit -r 4 u == None
1792 In [4]: %timeit -r 4 u == None
1793 1000000 loops, best of 4: 242 ns per loop
1793 1000000 loops, best of 4: 242 ns per loop
1794
1794
1795 In [5]: import time
1795 In [5]: import time
1796
1796
1797 In [6]: %timeit -n1 time.sleep(2)
1797 In [6]: %timeit -n1 time.sleep(2)
1798 1 loops, best of 3: 2 s per loop
1798 1 loops, best of 3: 2 s per loop
1799
1799
1800
1800
1801 The times reported by %timeit will be slightly higher than those
1801 The times reported by %timeit will be slightly higher than those
1802 reported by the timeit.py script when variables are accessed. This is
1802 reported by the timeit.py script when variables are accessed. This is
1803 due to the fact that %timeit executes the statement in the namespace
1803 due to the fact that %timeit executes the statement in the namespace
1804 of the shell, compared with timeit.py, which uses a single setup
1804 of the shell, compared with timeit.py, which uses a single setup
1805 statement to import function or create variables. Generally, the bias
1805 statement to import function or create variables. Generally, the bias
1806 does not matter as long as results from timeit.py are not mixed with
1806 does not matter as long as results from timeit.py are not mixed with
1807 those from %timeit."""
1807 those from %timeit."""
1808
1808
1809 import timeit
1809 import timeit
1810 import math
1810 import math
1811
1811
1812 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1812 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1813 # certain terminals. Until we figure out a robust way of
1813 # certain terminals. Until we figure out a robust way of
1814 # auto-detecting if the terminal can deal with it, use plain 'us' for
1814 # auto-detecting if the terminal can deal with it, use plain 'us' for
1815 # microseconds. I am really NOT happy about disabling the proper
1815 # microseconds. I am really NOT happy about disabling the proper
1816 # 'micro' prefix, but crashing is worse... If anyone knows what the
1816 # 'micro' prefix, but crashing is worse... If anyone knows what the
1817 # right solution for this is, I'm all ears...
1817 # right solution for this is, I'm all ears...
1818 #
1818 #
1819 # Note: using
1819 # Note: using
1820 #
1820 #
1821 # s = u'\xb5'
1821 # s = u'\xb5'
1822 # s.encode(sys.getdefaultencoding())
1822 # s.encode(sys.getdefaultencoding())
1823 #
1823 #
1824 # is not sufficient, as I've seen terminals where that fails but
1824 # is not sufficient, as I've seen terminals where that fails but
1825 # print s
1825 # print s
1826 #
1826 #
1827 # succeeds
1827 # succeeds
1828 #
1828 #
1829 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1829 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1830
1830
1831 #units = [u"s", u"ms",u'\xb5',"ns"]
1831 #units = [u"s", u"ms",u'\xb5',"ns"]
1832 units = [u"s", u"ms",u'us',"ns"]
1832 units = [u"s", u"ms",u'us',"ns"]
1833
1833
1834 scaling = [1, 1e3, 1e6, 1e9]
1834 scaling = [1, 1e3, 1e6, 1e9]
1835
1835
1836 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1836 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1837 posix=False)
1837 posix=False)
1838 if stmt == "":
1838 if stmt == "":
1839 return
1839 return
1840 timefunc = timeit.default_timer
1840 timefunc = timeit.default_timer
1841 number = int(getattr(opts, "n", 0))
1841 number = int(getattr(opts, "n", 0))
1842 repeat = int(getattr(opts, "r", timeit.default_repeat))
1842 repeat = int(getattr(opts, "r", timeit.default_repeat))
1843 precision = int(getattr(opts, "p", 3))
1843 precision = int(getattr(opts, "p", 3))
1844 if hasattr(opts, "t"):
1844 if hasattr(opts, "t"):
1845 timefunc = time.time
1845 timefunc = time.time
1846 if hasattr(opts, "c"):
1846 if hasattr(opts, "c"):
1847 timefunc = clock
1847 timefunc = clock
1848
1848
1849 timer = timeit.Timer(timer=timefunc)
1849 timer = timeit.Timer(timer=timefunc)
1850 # this code has tight coupling to the inner workings of timeit.Timer,
1850 # this code has tight coupling to the inner workings of timeit.Timer,
1851 # but is there a better way to achieve that the code stmt has access
1851 # but is there a better way to achieve that the code stmt has access
1852 # to the shell namespace?
1852 # to the shell namespace?
1853
1853
1854 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1854 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1855 'setup': "pass"}
1855 'setup': "pass"}
1856 # Track compilation time so it can be reported if too long
1856 # Track compilation time so it can be reported if too long
1857 # Minimum time above which compilation time will be reported
1857 # Minimum time above which compilation time will be reported
1858 tc_min = 0.1
1858 tc_min = 0.1
1859
1859
1860 t0 = clock()
1860 t0 = clock()
1861 code = compile(src, "<magic-timeit>", "exec")
1861 code = compile(src, "<magic-timeit>", "exec")
1862 tc = clock()-t0
1862 tc = clock()-t0
1863
1863
1864 ns = {}
1864 ns = {}
1865 exec code in self.shell.user_ns, ns
1865 exec code in self.shell.user_ns, ns
1866 timer.inner = ns["inner"]
1866 timer.inner = ns["inner"]
1867
1867
1868 if number == 0:
1868 if number == 0:
1869 # determine number so that 0.2 <= total time < 2.0
1869 # determine number so that 0.2 <= total time < 2.0
1870 number = 1
1870 number = 1
1871 for i in range(1, 10):
1871 for i in range(1, 10):
1872 if timer.timeit(number) >= 0.2:
1872 if timer.timeit(number) >= 0.2:
1873 break
1873 break
1874 number *= 10
1874 number *= 10
1875
1875
1876 best = min(timer.repeat(repeat, number)) / number
1876 best = min(timer.repeat(repeat, number)) / number
1877
1877
1878 if best > 0.0 and best < 1000.0:
1878 if best > 0.0 and best < 1000.0:
1879 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1879 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1880 elif best >= 1000.0:
1880 elif best >= 1000.0:
1881 order = 0
1881 order = 0
1882 else:
1882 else:
1883 order = 3
1883 order = 3
1884 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1884 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1885 precision,
1885 precision,
1886 best * scaling[order],
1886 best * scaling[order],
1887 units[order])
1887 units[order])
1888 if tc > tc_min:
1888 if tc > tc_min:
1889 print "Compiler time: %.2f s" % tc
1889 print "Compiler time: %.2f s" % tc
1890
1890
1891 @skip_doctest
1891 @skip_doctest
1892 @needs_local_scope
1892 @needs_local_scope
1893 def magic_time(self,parameter_s = ''):
1893 def magic_time(self,parameter_s = ''):
1894 """Time execution of a Python statement or expression.
1894 """Time execution of a Python statement or expression.
1895
1895
1896 The CPU and wall clock times are printed, and the value of the
1896 The CPU and wall clock times are printed, and the value of the
1897 expression (if any) is returned. Note that under Win32, system time
1897 expression (if any) is returned. Note that under Win32, system time
1898 is always reported as 0, since it can not be measured.
1898 is always reported as 0, since it can not be measured.
1899
1899
1900 This function provides very basic timing functionality. In Python
1900 This function provides very basic timing functionality. In Python
1901 2.3, the timeit module offers more control and sophistication, so this
1901 2.3, the timeit module offers more control and sophistication, so this
1902 could be rewritten to use it (patches welcome).
1902 could be rewritten to use it (patches welcome).
1903
1903
1904 Some examples:
1904 Some examples:
1905
1905
1906 In [1]: time 2**128
1906 In [1]: time 2**128
1907 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1907 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1908 Wall time: 0.00
1908 Wall time: 0.00
1909 Out[1]: 340282366920938463463374607431768211456L
1909 Out[1]: 340282366920938463463374607431768211456L
1910
1910
1911 In [2]: n = 1000000
1911 In [2]: n = 1000000
1912
1912
1913 In [3]: time sum(range(n))
1913 In [3]: time sum(range(n))
1914 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1914 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1915 Wall time: 1.37
1915 Wall time: 1.37
1916 Out[3]: 499999500000L
1916 Out[3]: 499999500000L
1917
1917
1918 In [4]: time print 'hello world'
1918 In [4]: time print 'hello world'
1919 hello world
1919 hello world
1920 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1920 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1921 Wall time: 0.00
1921 Wall time: 0.00
1922
1922
1923 Note that the time needed by Python to compile the given expression
1923 Note that the time needed by Python to compile the given expression
1924 will be reported if it is more than 0.1s. In this example, the
1924 will be reported if it is more than 0.1s. In this example, the
1925 actual exponentiation is done by Python at compilation time, so while
1925 actual exponentiation is done by Python at compilation time, so while
1926 the expression can take a noticeable amount of time to compute, that
1926 the expression can take a noticeable amount of time to compute, that
1927 time is purely due to the compilation:
1927 time is purely due to the compilation:
1928
1928
1929 In [5]: time 3**9999;
1929 In [5]: time 3**9999;
1930 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1930 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1931 Wall time: 0.00 s
1931 Wall time: 0.00 s
1932
1932
1933 In [6]: time 3**999999;
1933 In [6]: time 3**999999;
1934 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1934 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1935 Wall time: 0.00 s
1935 Wall time: 0.00 s
1936 Compiler : 0.78 s
1936 Compiler : 0.78 s
1937 """
1937 """
1938
1938
1939 # fail immediately if the given expression can't be compiled
1939 # fail immediately if the given expression can't be compiled
1940
1940
1941 expr = self.shell.prefilter(parameter_s,False)
1941 expr = self.shell.prefilter(parameter_s,False)
1942
1942
1943 # Minimum time above which compilation time will be reported
1943 # Minimum time above which compilation time will be reported
1944 tc_min = 0.1
1944 tc_min = 0.1
1945
1945
1946 try:
1946 try:
1947 mode = 'eval'
1947 mode = 'eval'
1948 t0 = clock()
1948 t0 = clock()
1949 code = compile(expr,'<timed eval>',mode)
1949 code = compile(expr,'<timed eval>',mode)
1950 tc = clock()-t0
1950 tc = clock()-t0
1951 except SyntaxError:
1951 except SyntaxError:
1952 mode = 'exec'
1952 mode = 'exec'
1953 t0 = clock()
1953 t0 = clock()
1954 code = compile(expr,'<timed exec>',mode)
1954 code = compile(expr,'<timed exec>',mode)
1955 tc = clock()-t0
1955 tc = clock()-t0
1956 # skew measurement as little as possible
1956 # skew measurement as little as possible
1957 glob = self.shell.user_ns
1957 glob = self.shell.user_ns
1958 locs = self._magic_locals
1958 locs = self._magic_locals
1959 clk = clock2
1959 clk = clock2
1960 wtime = time.time
1960 wtime = time.time
1961 # time execution
1961 # time execution
1962 wall_st = wtime()
1962 wall_st = wtime()
1963 if mode=='eval':
1963 if mode=='eval':
1964 st = clk()
1964 st = clk()
1965 out = eval(code, glob, locs)
1965 out = eval(code, glob, locs)
1966 end = clk()
1966 end = clk()
1967 else:
1967 else:
1968 st = clk()
1968 st = clk()
1969 exec code in glob, locs
1969 exec code in glob, locs
1970 end = clk()
1970 end = clk()
1971 out = None
1971 out = None
1972 wall_end = wtime()
1972 wall_end = wtime()
1973 # Compute actual times and report
1973 # Compute actual times and report
1974 wall_time = wall_end-wall_st
1974 wall_time = wall_end-wall_st
1975 cpu_user = end[0]-st[0]
1975 cpu_user = end[0]-st[0]
1976 cpu_sys = end[1]-st[1]
1976 cpu_sys = end[1]-st[1]
1977 cpu_tot = cpu_user+cpu_sys
1977 cpu_tot = cpu_user+cpu_sys
1978 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1978 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1979 (cpu_user,cpu_sys,cpu_tot)
1979 (cpu_user,cpu_sys,cpu_tot)
1980 print "Wall time: %.2f s" % wall_time
1980 print "Wall time: %.2f s" % wall_time
1981 if tc > tc_min:
1981 if tc > tc_min:
1982 print "Compiler : %.2f s" % tc
1982 print "Compiler : %.2f s" % tc
1983 return out
1983 return out
1984
1984
1985 @skip_doctest
1985 @skip_doctest
1986 def magic_macro(self,parameter_s = ''):
1986 def magic_macro(self,parameter_s = ''):
1987 """Define a macro for future re-execution. It accepts ranges of history,
1987 """Define a macro for future re-execution. It accepts ranges of history,
1988 filenames or string objects.
1988 filenames or string objects.
1989
1989
1990 Usage:\\
1990 Usage:\\
1991 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1991 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1992
1992
1993 Options:
1993 Options:
1994
1994
1995 -r: use 'raw' input. By default, the 'processed' history is used,
1995 -r: use 'raw' input. By default, the 'processed' history is used,
1996 so that magics are loaded in their transformed version to valid
1996 so that magics are loaded in their transformed version to valid
1997 Python. If this option is given, the raw input as typed as the
1997 Python. If this option is given, the raw input as typed as the
1998 command line is used instead.
1998 command line is used instead.
1999
1999
2000 This will define a global variable called `name` which is a string
2000 This will define a global variable called `name` which is a string
2001 made of joining the slices and lines you specify (n1,n2,... numbers
2001 made of joining the slices and lines you specify (n1,n2,... numbers
2002 above) from your input history into a single string. This variable
2002 above) from your input history into a single string. This variable
2003 acts like an automatic function which re-executes those lines as if
2003 acts like an automatic function which re-executes those lines as if
2004 you had typed them. You just type 'name' at the prompt and the code
2004 you had typed them. You just type 'name' at the prompt and the code
2005 executes.
2005 executes.
2006
2006
2007 The syntax for indicating input ranges is described in %history.
2007 The syntax for indicating input ranges is described in %history.
2008
2008
2009 Note: as a 'hidden' feature, you can also use traditional python slice
2009 Note: as a 'hidden' feature, you can also use traditional python slice
2010 notation, where N:M means numbers N through M-1.
2010 notation, where N:M means numbers N through M-1.
2011
2011
2012 For example, if your history contains (%hist prints it):
2012 For example, if your history contains (%hist prints it):
2013
2013
2014 44: x=1
2014 44: x=1
2015 45: y=3
2015 45: y=3
2016 46: z=x+y
2016 46: z=x+y
2017 47: print x
2017 47: print x
2018 48: a=5
2018 48: a=5
2019 49: print 'x',x,'y',y
2019 49: print 'x',x,'y',y
2020
2020
2021 you can create a macro with lines 44 through 47 (included) and line 49
2021 you can create a macro with lines 44 through 47 (included) and line 49
2022 called my_macro with:
2022 called my_macro with:
2023
2023
2024 In [55]: %macro my_macro 44-47 49
2024 In [55]: %macro my_macro 44-47 49
2025
2025
2026 Now, typing `my_macro` (without quotes) will re-execute all this code
2026 Now, typing `my_macro` (without quotes) will re-execute all this code
2027 in one pass.
2027 in one pass.
2028
2028
2029 You don't need to give the line-numbers in order, and any given line
2029 You don't need to give the line-numbers in order, and any given line
2030 number can appear multiple times. You can assemble macros with any
2030 number can appear multiple times. You can assemble macros with any
2031 lines from your input history in any order.
2031 lines from your input history in any order.
2032
2032
2033 The macro is a simple object which holds its value in an attribute,
2033 The macro is a simple object which holds its value in an attribute,
2034 but IPython's display system checks for macros and executes them as
2034 but IPython's display system checks for macros and executes them as
2035 code instead of printing them when you type their name.
2035 code instead of printing them when you type their name.
2036
2036
2037 You can view a macro's contents by explicitly printing it with:
2037 You can view a macro's contents by explicitly printing it with:
2038
2038
2039 'print macro_name'.
2039 'print macro_name'.
2040
2040
2041 """
2041 """
2042 opts,args = self.parse_options(parameter_s,'r',mode='list')
2042 opts,args = self.parse_options(parameter_s,'r',mode='list')
2043 if not args: # List existing macros
2043 if not args: # List existing macros
2044 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2044 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2045 isinstance(v, Macro))
2045 isinstance(v, Macro))
2046 if len(args) == 1:
2046 if len(args) == 1:
2047 raise UsageError(
2047 raise UsageError(
2048 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2048 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2049 name, codefrom = args[0], " ".join(args[1:])
2049 name, codefrom = args[0], " ".join(args[1:])
2050
2050
2051 #print 'rng',ranges # dbg
2051 #print 'rng',ranges # dbg
2052 try:
2052 try:
2053 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2053 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2054 except (ValueError, TypeError) as e:
2054 except (ValueError, TypeError) as e:
2055 print e.args[0]
2055 print e.args[0]
2056 return
2056 return
2057 macro = Macro(lines)
2057 macro = Macro(lines)
2058 self.shell.define_macro(name, macro)
2058 self.shell.define_macro(name, macro)
2059 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2059 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2060 print '=== Macro contents: ==='
2060 print '=== Macro contents: ==='
2061 print macro,
2061 print macro,
2062
2062
2063 def magic_save(self,parameter_s = ''):
2063 def magic_save(self,parameter_s = ''):
2064 """Save a set of lines or a macro to a given filename.
2064 """Save a set of lines or a macro to a given filename.
2065
2065
2066 Usage:\\
2066 Usage:\\
2067 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2067 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2068
2068
2069 Options:
2069 Options:
2070
2070
2071 -r: use 'raw' input. By default, the 'processed' history is used,
2071 -r: use 'raw' input. By default, the 'processed' history is used,
2072 so that magics are loaded in their transformed version to valid
2072 so that magics are loaded in their transformed version to valid
2073 Python. If this option is given, the raw input as typed as the
2073 Python. If this option is given, the raw input as typed as the
2074 command line is used instead.
2074 command line is used instead.
2075
2075
2076 This function uses the same syntax as %history for input ranges,
2076 This function uses the same syntax as %history for input ranges,
2077 then saves the lines to the filename you specify.
2077 then saves the lines to the filename you specify.
2078
2078
2079 It adds a '.py' extension to the file if you don't do so yourself, and
2079 It adds a '.py' extension to the file if you don't do so yourself, and
2080 it asks for confirmation before overwriting existing files."""
2080 it asks for confirmation before overwriting existing files."""
2081
2081
2082 opts,args = self.parse_options(parameter_s,'r',mode='list')
2082 opts,args = self.parse_options(parameter_s,'r',mode='list')
2083 fname, codefrom = args[0], " ".join(args[1:])
2083 fname, codefrom = args[0], " ".join(args[1:])
2084 if not fname.endswith('.py'):
2084 if not fname.endswith('.py'):
2085 fname += '.py'
2085 fname += '.py'
2086 if os.path.isfile(fname):
2086 if os.path.isfile(fname):
2087 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2087 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2088 if ans.lower() not in ['y','yes']:
2088 if ans.lower() not in ['y','yes']:
2089 print 'Operation cancelled.'
2089 print 'Operation cancelled.'
2090 return
2090 return
2091 try:
2091 try:
2092 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2092 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2093 except (TypeError, ValueError) as e:
2093 except (TypeError, ValueError) as e:
2094 print e.args[0]
2094 print e.args[0]
2095 return
2095 return
2096 if isinstance(cmds, unicode):
2096 if isinstance(cmds, unicode):
2097 cmds = cmds.encode("utf-8")
2097 cmds = cmds.encode("utf-8")
2098 with open(fname,'w') as f:
2098 with open(fname,'w') as f:
2099 f.write("# coding: utf-8\n")
2099 f.write("# coding: utf-8\n")
2100 f.write(cmds)
2100 f.write(cmds)
2101 print 'The following commands were written to file `%s`:' % fname
2101 print 'The following commands were written to file `%s`:' % fname
2102 print cmds
2102 print cmds
2103
2103
2104 def magic_pastebin(self, parameter_s = ''):
2104 def magic_pastebin(self, parameter_s = ''):
2105 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2105 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2106 try:
2106 try:
2107 code = self.shell.find_user_code(parameter_s)
2107 code = self.shell.find_user_code(parameter_s)
2108 except (ValueError, TypeError) as e:
2108 except (ValueError, TypeError) as e:
2109 print e.args[0]
2109 print e.args[0]
2110 return
2110 return
2111 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2111 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2112 id = pbserver.pastes.newPaste("python", code)
2112 id = pbserver.pastes.newPaste("python", code)
2113 return "http://paste.pocoo.org/show/" + id
2113 return "http://paste.pocoo.org/show/" + id
2114
2114
2115 def magic_loadpy(self, arg_s):
2115 def magic_loadpy(self, arg_s):
2116 """Load a .py python script into the GUI console.
2116 """Load a .py python script into the GUI console.
2117
2117
2118 This magic command can either take a local filename or a url::
2118 This magic command can either take a local filename or a url::
2119
2119
2120 %loadpy myscript.py
2120 %loadpy myscript.py
2121 %loadpy http://www.example.com/myscript.py
2121 %loadpy http://www.example.com/myscript.py
2122 """
2122 """
2123 if not arg_s.endswith('.py'):
2123 if not arg_s.endswith('.py'):
2124 raise ValueError('%%load only works with .py files: %s' % arg_s)
2124 raise ValueError('%%load only works with .py files: %s' % arg_s)
2125 if arg_s.startswith('http'):
2125 if arg_s.startswith('http'):
2126 import urllib2
2126 import urllib2
2127 response = urllib2.urlopen(arg_s)
2127 response = urllib2.urlopen(arg_s)
2128 content = response.read()
2128 content = response.read()
2129 else:
2129 else:
2130 content = open(arg_s).read()
2130 content = open(arg_s).read()
2131 self.set_next_input(content)
2131 self.set_next_input(content)
2132
2132
2133 def _find_edit_target(self, args, opts, last_call):
2133 def _find_edit_target(self, args, opts, last_call):
2134 """Utility method used by magic_edit to find what to edit."""
2134 """Utility method used by magic_edit to find what to edit."""
2135
2135
2136 def make_filename(arg):
2136 def make_filename(arg):
2137 "Make a filename from the given args"
2137 "Make a filename from the given args"
2138 try:
2138 try:
2139 filename = get_py_filename(arg)
2139 filename = get_py_filename(arg)
2140 except IOError:
2140 except IOError:
2141 # If it ends with .py but doesn't already exist, assume we want
2141 # If it ends with .py but doesn't already exist, assume we want
2142 # a new file.
2142 # a new file.
2143 if args.endswith('.py'):
2143 if args.endswith('.py'):
2144 filename = arg
2144 filename = arg
2145 else:
2145 else:
2146 filename = None
2146 filename = None
2147 return filename
2147 return filename
2148
2148
2149 # Set a few locals from the options for convenience:
2149 # Set a few locals from the options for convenience:
2150 opts_prev = 'p' in opts
2150 opts_prev = 'p' in opts
2151 opts_raw = 'r' in opts
2151 opts_raw = 'r' in opts
2152
2152
2153 # custom exceptions
2153 # custom exceptions
2154 class DataIsObject(Exception): pass
2154 class DataIsObject(Exception): pass
2155
2155
2156 # Default line number value
2156 # Default line number value
2157 lineno = opts.get('n',None)
2157 lineno = opts.get('n',None)
2158
2158
2159 if opts_prev:
2159 if opts_prev:
2160 args = '_%s' % last_call[0]
2160 args = '_%s' % last_call[0]
2161 if not self.shell.user_ns.has_key(args):
2161 if not self.shell.user_ns.has_key(args):
2162 args = last_call[1]
2162 args = last_call[1]
2163
2163
2164 # use last_call to remember the state of the previous call, but don't
2164 # use last_call to remember the state of the previous call, but don't
2165 # let it be clobbered by successive '-p' calls.
2165 # let it be clobbered by successive '-p' calls.
2166 try:
2166 try:
2167 last_call[0] = self.shell.displayhook.prompt_count
2167 last_call[0] = self.shell.displayhook.prompt_count
2168 if not opts_prev:
2168 if not opts_prev:
2169 last_call[1] = parameter_s
2169 last_call[1] = parameter_s
2170 except:
2170 except:
2171 pass
2171 pass
2172
2172
2173 # by default this is done with temp files, except when the given
2173 # by default this is done with temp files, except when the given
2174 # arg is a filename
2174 # arg is a filename
2175 use_temp = True
2175 use_temp = True
2176
2176
2177 data = ''
2177 data = ''
2178
2178
2179 # First, see if the arguments should be a filename.
2179 # First, see if the arguments should be a filename.
2180 filename = make_filename(args)
2180 filename = make_filename(args)
2181 if filename:
2181 if filename:
2182 use_temp = False
2182 use_temp = False
2183 elif args:
2183 elif args:
2184 # Mode where user specifies ranges of lines, like in %macro.
2184 # Mode where user specifies ranges of lines, like in %macro.
2185 data = self.extract_input_lines(args, opts_raw)
2185 data = self.extract_input_lines(args, opts_raw)
2186 if not data:
2186 if not data:
2187 try:
2187 try:
2188 # Load the parameter given as a variable. If not a string,
2188 # Load the parameter given as a variable. If not a string,
2189 # process it as an object instead (below)
2189 # process it as an object instead (below)
2190
2190
2191 #print '*** args',args,'type',type(args) # dbg
2191 #print '*** args',args,'type',type(args) # dbg
2192 data = eval(args, self.shell.user_ns)
2192 data = eval(args, self.shell.user_ns)
2193 if not isinstance(data, basestring):
2193 if not isinstance(data, basestring):
2194 raise DataIsObject
2194 raise DataIsObject
2195
2195
2196 except (NameError,SyntaxError):
2196 except (NameError,SyntaxError):
2197 # given argument is not a variable, try as a filename
2197 # given argument is not a variable, try as a filename
2198 filename = make_filename(args)
2198 filename = make_filename(args)
2199 if filename is None:
2199 if filename is None:
2200 warn("Argument given (%s) can't be found as a variable "
2200 warn("Argument given (%s) can't be found as a variable "
2201 "or as a filename." % args)
2201 "or as a filename." % args)
2202 return
2202 return
2203 use_temp = False
2203 use_temp = False
2204
2204
2205 except DataIsObject:
2205 except DataIsObject:
2206 # macros have a special edit function
2206 # macros have a special edit function
2207 if isinstance(data, Macro):
2207 if isinstance(data, Macro):
2208 raise MacroToEdit(data)
2208 raise MacroToEdit(data)
2209
2209
2210 # For objects, try to edit the file where they are defined
2210 # For objects, try to edit the file where they are defined
2211 try:
2211 try:
2212 filename = inspect.getabsfile(data)
2212 filename = inspect.getabsfile(data)
2213 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2213 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2214 # class created by %edit? Try to find source
2214 # class created by %edit? Try to find source
2215 # by looking for method definitions instead, the
2215 # by looking for method definitions instead, the
2216 # __module__ in those classes is FakeModule.
2216 # __module__ in those classes is FakeModule.
2217 attrs = [getattr(data, aname) for aname in dir(data)]
2217 attrs = [getattr(data, aname) for aname in dir(data)]
2218 for attr in attrs:
2218 for attr in attrs:
2219 if not inspect.ismethod(attr):
2219 if not inspect.ismethod(attr):
2220 continue
2220 continue
2221 filename = inspect.getabsfile(attr)
2221 filename = inspect.getabsfile(attr)
2222 if filename and 'fakemodule' not in filename.lower():
2222 if filename and 'fakemodule' not in filename.lower():
2223 # change the attribute to be the edit target instead
2223 # change the attribute to be the edit target instead
2224 data = attr
2224 data = attr
2225 break
2225 break
2226
2226
2227 datafile = 1
2227 datafile = 1
2228 except TypeError:
2228 except TypeError:
2229 filename = make_filename(args)
2229 filename = make_filename(args)
2230 datafile = 1
2230 datafile = 1
2231 warn('Could not find file where `%s` is defined.\n'
2231 warn('Could not find file where `%s` is defined.\n'
2232 'Opening a file named `%s`' % (args,filename))
2232 'Opening a file named `%s`' % (args,filename))
2233 # Now, make sure we can actually read the source (if it was in
2233 # Now, make sure we can actually read the source (if it was in
2234 # a temp file it's gone by now).
2234 # a temp file it's gone by now).
2235 if datafile:
2235 if datafile:
2236 try:
2236 try:
2237 if lineno is None:
2237 if lineno is None:
2238 lineno = inspect.getsourcelines(data)[1]
2238 lineno = inspect.getsourcelines(data)[1]
2239 except IOError:
2239 except IOError:
2240 filename = make_filename(args)
2240 filename = make_filename(args)
2241 if filename is None:
2241 if filename is None:
2242 warn('The file `%s` where `%s` was defined cannot '
2242 warn('The file `%s` where `%s` was defined cannot '
2243 'be read.' % (filename,data))
2243 'be read.' % (filename,data))
2244 return
2244 return
2245 use_temp = False
2245 use_temp = False
2246
2246
2247 if use_temp:
2247 if use_temp:
2248 filename = self.shell.mktempfile(data)
2248 filename = self.shell.mktempfile(data)
2249 print 'IPython will make a temporary file named:',filename
2249 print 'IPython will make a temporary file named:',filename
2250
2250
2251 return filename, lineno, use_temp
2251 return filename, lineno, use_temp
2252
2252
2253 def _edit_macro(self,mname,macro):
2253 def _edit_macro(self,mname,macro):
2254 """open an editor with the macro data in a file"""
2254 """open an editor with the macro data in a file"""
2255 filename = self.shell.mktempfile(macro.value)
2255 filename = self.shell.mktempfile(macro.value)
2256 self.shell.hooks.editor(filename)
2256 self.shell.hooks.editor(filename)
2257
2257
2258 # and make a new macro object, to replace the old one
2258 # and make a new macro object, to replace the old one
2259 mfile = open(filename)
2259 mfile = open(filename)
2260 mvalue = mfile.read()
2260 mvalue = mfile.read()
2261 mfile.close()
2261 mfile.close()
2262 self.shell.user_ns[mname] = Macro(mvalue)
2262 self.shell.user_ns[mname] = Macro(mvalue)
2263
2263
2264 def magic_ed(self,parameter_s=''):
2264 def magic_ed(self,parameter_s=''):
2265 """Alias to %edit."""
2265 """Alias to %edit."""
2266 return self.magic_edit(parameter_s)
2266 return self.magic_edit(parameter_s)
2267
2267
2268 @skip_doctest
2268 @skip_doctest
2269 def magic_edit(self,parameter_s='',last_call=['','']):
2269 def magic_edit(self,parameter_s='',last_call=['','']):
2270 """Bring up an editor and execute the resulting code.
2270 """Bring up an editor and execute the resulting code.
2271
2271
2272 Usage:
2272 Usage:
2273 %edit [options] [args]
2273 %edit [options] [args]
2274
2274
2275 %edit runs IPython's editor hook. The default version of this hook is
2275 %edit runs IPython's editor hook. The default version of this hook is
2276 set to call the __IPYTHON__.rc.editor command. This is read from your
2276 set to call the __IPYTHON__.rc.editor command. This is read from your
2277 environment variable $EDITOR. If this isn't found, it will default to
2277 environment variable $EDITOR. If this isn't found, it will default to
2278 vi under Linux/Unix and to notepad under Windows. See the end of this
2278 vi under Linux/Unix and to notepad under Windows. See the end of this
2279 docstring for how to change the editor hook.
2279 docstring for how to change the editor hook.
2280
2280
2281 You can also set the value of this editor via the command line option
2281 You can also set the value of this editor via the command line option
2282 '-editor' or in your ipythonrc file. This is useful if you wish to use
2282 '-editor' or in your ipythonrc file. This is useful if you wish to use
2283 specifically for IPython an editor different from your typical default
2283 specifically for IPython an editor different from your typical default
2284 (and for Windows users who typically don't set environment variables).
2284 (and for Windows users who typically don't set environment variables).
2285
2285
2286 This command allows you to conveniently edit multi-line code right in
2286 This command allows you to conveniently edit multi-line code right in
2287 your IPython session.
2287 your IPython session.
2288
2288
2289 If called without arguments, %edit opens up an empty editor with a
2289 If called without arguments, %edit opens up an empty editor with a
2290 temporary file and will execute the contents of this file when you
2290 temporary file and will execute the contents of this file when you
2291 close it (don't forget to save it!).
2291 close it (don't forget to save it!).
2292
2292
2293
2293
2294 Options:
2294 Options:
2295
2295
2296 -n <number>: open the editor at a specified line number. By default,
2296 -n <number>: open the editor at a specified line number. By default,
2297 the IPython editor hook uses the unix syntax 'editor +N filename', but
2297 the IPython editor hook uses the unix syntax 'editor +N filename', but
2298 you can configure this by providing your own modified hook if your
2298 you can configure this by providing your own modified hook if your
2299 favorite editor supports line-number specifications with a different
2299 favorite editor supports line-number specifications with a different
2300 syntax.
2300 syntax.
2301
2301
2302 -p: this will call the editor with the same data as the previous time
2302 -p: this will call the editor with the same data as the previous time
2303 it was used, regardless of how long ago (in your current session) it
2303 it was used, regardless of how long ago (in your current session) it
2304 was.
2304 was.
2305
2305
2306 -r: use 'raw' input. This option only applies to input taken from the
2306 -r: use 'raw' input. This option only applies to input taken from the
2307 user's history. By default, the 'processed' history is used, so that
2307 user's history. By default, the 'processed' history is used, so that
2308 magics are loaded in their transformed version to valid Python. If
2308 magics are loaded in their transformed version to valid Python. If
2309 this option is given, the raw input as typed as the command line is
2309 this option is given, the raw input as typed as the command line is
2310 used instead. When you exit the editor, it will be executed by
2310 used instead. When you exit the editor, it will be executed by
2311 IPython's own processor.
2311 IPython's own processor.
2312
2312
2313 -x: do not execute the edited code immediately upon exit. This is
2313 -x: do not execute the edited code immediately upon exit. This is
2314 mainly useful if you are editing programs which need to be called with
2314 mainly useful if you are editing programs which need to be called with
2315 command line arguments, which you can then do using %run.
2315 command line arguments, which you can then do using %run.
2316
2316
2317
2317
2318 Arguments:
2318 Arguments:
2319
2319
2320 If arguments are given, the following possibilites exist:
2320 If arguments are given, the following possibilites exist:
2321
2321
2322 - If the argument is a filename, IPython will load that into the
2322 - If the argument is a filename, IPython will load that into the
2323 editor. It will execute its contents with execfile() when you exit,
2323 editor. It will execute its contents with execfile() when you exit,
2324 loading any code in the file into your interactive namespace.
2324 loading any code in the file into your interactive namespace.
2325
2325
2326 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2326 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2327 The syntax is the same as in the %history magic.
2327 The syntax is the same as in the %history magic.
2328
2328
2329 - If the argument is a string variable, its contents are loaded
2329 - If the argument is a string variable, its contents are loaded
2330 into the editor. You can thus edit any string which contains
2330 into the editor. You can thus edit any string which contains
2331 python code (including the result of previous edits).
2331 python code (including the result of previous edits).
2332
2332
2333 - If the argument is the name of an object (other than a string),
2333 - If the argument is the name of an object (other than a string),
2334 IPython will try to locate the file where it was defined and open the
2334 IPython will try to locate the file where it was defined and open the
2335 editor at the point where it is defined. You can use `%edit function`
2335 editor at the point where it is defined. You can use `%edit function`
2336 to load an editor exactly at the point where 'function' is defined,
2336 to load an editor exactly at the point where 'function' is defined,
2337 edit it and have the file be executed automatically.
2337 edit it and have the file be executed automatically.
2338
2338
2339 If the object is a macro (see %macro for details), this opens up your
2339 If the object is a macro (see %macro for details), this opens up your
2340 specified editor with a temporary file containing the macro's data.
2340 specified editor with a temporary file containing the macro's data.
2341 Upon exit, the macro is reloaded with the contents of the file.
2341 Upon exit, the macro is reloaded with the contents of the file.
2342
2342
2343 Note: opening at an exact line is only supported under Unix, and some
2343 Note: opening at an exact line is only supported under Unix, and some
2344 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2344 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2345 '+NUMBER' parameter necessary for this feature. Good editors like
2345 '+NUMBER' parameter necessary for this feature. Good editors like
2346 (X)Emacs, vi, jed, pico and joe all do.
2346 (X)Emacs, vi, jed, pico and joe all do.
2347
2347
2348 After executing your code, %edit will return as output the code you
2348 After executing your code, %edit will return as output the code you
2349 typed in the editor (except when it was an existing file). This way
2349 typed in the editor (except when it was an existing file). This way
2350 you can reload the code in further invocations of %edit as a variable,
2350 you can reload the code in further invocations of %edit as a variable,
2351 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2351 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2352 the output.
2352 the output.
2353
2353
2354 Note that %edit is also available through the alias %ed.
2354 Note that %edit is also available through the alias %ed.
2355
2355
2356 This is an example of creating a simple function inside the editor and
2356 This is an example of creating a simple function inside the editor and
2357 then modifying it. First, start up the editor:
2357 then modifying it. First, start up the editor:
2358
2358
2359 In [1]: ed
2359 In [1]: ed
2360 Editing... done. Executing edited code...
2360 Editing... done. Executing edited code...
2361 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2361 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2362
2362
2363 We can then call the function foo():
2363 We can then call the function foo():
2364
2364
2365 In [2]: foo()
2365 In [2]: foo()
2366 foo() was defined in an editing session
2366 foo() was defined in an editing session
2367
2367
2368 Now we edit foo. IPython automatically loads the editor with the
2368 Now we edit foo. IPython automatically loads the editor with the
2369 (temporary) file where foo() was previously defined:
2369 (temporary) file where foo() was previously defined:
2370
2370
2371 In [3]: ed foo
2371 In [3]: ed foo
2372 Editing... done. Executing edited code...
2372 Editing... done. Executing edited code...
2373
2373
2374 And if we call foo() again we get the modified version:
2374 And if we call foo() again we get the modified version:
2375
2375
2376 In [4]: foo()
2376 In [4]: foo()
2377 foo() has now been changed!
2377 foo() has now been changed!
2378
2378
2379 Here is an example of how to edit a code snippet successive
2379 Here is an example of how to edit a code snippet successive
2380 times. First we call the editor:
2380 times. First we call the editor:
2381
2381
2382 In [5]: ed
2382 In [5]: ed
2383 Editing... done. Executing edited code...
2383 Editing... done. Executing edited code...
2384 hello
2384 hello
2385 Out[5]: "print 'hello'n"
2385 Out[5]: "print 'hello'n"
2386
2386
2387 Now we call it again with the previous output (stored in _):
2387 Now we call it again with the previous output (stored in _):
2388
2388
2389 In [6]: ed _
2389 In [6]: ed _
2390 Editing... done. Executing edited code...
2390 Editing... done. Executing edited code...
2391 hello world
2391 hello world
2392 Out[6]: "print 'hello world'n"
2392 Out[6]: "print 'hello world'n"
2393
2393
2394 Now we call it with the output #8 (stored in _8, also as Out[8]):
2394 Now we call it with the output #8 (stored in _8, also as Out[8]):
2395
2395
2396 In [7]: ed _8
2396 In [7]: ed _8
2397 Editing... done. Executing edited code...
2397 Editing... done. Executing edited code...
2398 hello again
2398 hello again
2399 Out[7]: "print 'hello again'n"
2399 Out[7]: "print 'hello again'n"
2400
2400
2401
2401
2402 Changing the default editor hook:
2402 Changing the default editor hook:
2403
2403
2404 If you wish to write your own editor hook, you can put it in a
2404 If you wish to write your own editor hook, you can put it in a
2405 configuration file which you load at startup time. The default hook
2405 configuration file which you load at startup time. The default hook
2406 is defined in the IPython.core.hooks module, and you can use that as a
2406 is defined in the IPython.core.hooks module, and you can use that as a
2407 starting example for further modifications. That file also has
2407 starting example for further modifications. That file also has
2408 general instructions on how to set a new hook for use once you've
2408 general instructions on how to set a new hook for use once you've
2409 defined it."""
2409 defined it."""
2410 opts,args = self.parse_options(parameter_s,'prxn:')
2410 opts,args = self.parse_options(parameter_s,'prxn:')
2411
2411
2412 try:
2412 try:
2413 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2413 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2414 except MacroToEdit as e:
2414 except MacroToEdit as e:
2415 self._edit_macro(args, e.args[0])
2415 self._edit_macro(args, e.args[0])
2416 return
2416 return
2417
2417
2418 # do actual editing here
2418 # do actual editing here
2419 print 'Editing...',
2419 print 'Editing...',
2420 sys.stdout.flush()
2420 sys.stdout.flush()
2421 try:
2421 try:
2422 # Quote filenames that may have spaces in them
2422 # Quote filenames that may have spaces in them
2423 if ' ' in filename:
2423 if ' ' in filename:
2424 filename = "'%s'" % filename
2424 filename = "'%s'" % filename
2425 self.shell.hooks.editor(filename,lineno)
2425 self.shell.hooks.editor(filename,lineno)
2426 except TryNext:
2426 except TryNext:
2427 warn('Could not open editor')
2427 warn('Could not open editor')
2428 return
2428 return
2429
2429
2430 # XXX TODO: should this be generalized for all string vars?
2430 # XXX TODO: should this be generalized for all string vars?
2431 # For now, this is special-cased to blocks created by cpaste
2431 # For now, this is special-cased to blocks created by cpaste
2432 if args.strip() == 'pasted_block':
2432 if args.strip() == 'pasted_block':
2433 self.shell.user_ns['pasted_block'] = file_read(filename)
2433 self.shell.user_ns['pasted_block'] = file_read(filename)
2434
2434
2435 if 'x' in opts: # -x prevents actual execution
2435 if 'x' in opts: # -x prevents actual execution
2436 print
2436 print
2437 else:
2437 else:
2438 print 'done. Executing edited code...'
2438 print 'done. Executing edited code...'
2439 if 'r' in opts: # Untranslated IPython code
2439 if 'r' in opts: # Untranslated IPython code
2440 self.shell.run_cell(file_read(filename),
2440 self.shell.run_cell(file_read(filename),
2441 store_history=False)
2441 store_history=False)
2442 else:
2442 else:
2443 self.shell.safe_execfile(filename,self.shell.user_ns,
2443 self.shell.safe_execfile(filename,self.shell.user_ns,
2444 self.shell.user_ns)
2444 self.shell.user_ns)
2445
2445
2446 if is_temp:
2446 if is_temp:
2447 try:
2447 try:
2448 return open(filename).read()
2448 return open(filename).read()
2449 except IOError,msg:
2449 except IOError,msg:
2450 if msg.filename == filename:
2450 if msg.filename == filename:
2451 warn('File not found. Did you forget to save?')
2451 warn('File not found. Did you forget to save?')
2452 return
2452 return
2453 else:
2453 else:
2454 self.shell.showtraceback()
2454 self.shell.showtraceback()
2455
2455
2456 def magic_xmode(self,parameter_s = ''):
2456 def magic_xmode(self,parameter_s = ''):
2457 """Switch modes for the exception handlers.
2457 """Switch modes for the exception handlers.
2458
2458
2459 Valid modes: Plain, Context and Verbose.
2459 Valid modes: Plain, Context and Verbose.
2460
2460
2461 If called without arguments, acts as a toggle."""
2461 If called without arguments, acts as a toggle."""
2462
2462
2463 def xmode_switch_err(name):
2463 def xmode_switch_err(name):
2464 warn('Error changing %s exception modes.\n%s' %
2464 warn('Error changing %s exception modes.\n%s' %
2465 (name,sys.exc_info()[1]))
2465 (name,sys.exc_info()[1]))
2466
2466
2467 shell = self.shell
2467 shell = self.shell
2468 new_mode = parameter_s.strip().capitalize()
2468 new_mode = parameter_s.strip().capitalize()
2469 try:
2469 try:
2470 shell.InteractiveTB.set_mode(mode=new_mode)
2470 shell.InteractiveTB.set_mode(mode=new_mode)
2471 print 'Exception reporting mode:',shell.InteractiveTB.mode
2471 print 'Exception reporting mode:',shell.InteractiveTB.mode
2472 except:
2472 except:
2473 xmode_switch_err('user')
2473 xmode_switch_err('user')
2474
2474
2475 def magic_colors(self,parameter_s = ''):
2475 def magic_colors(self,parameter_s = ''):
2476 """Switch color scheme for prompts, info system and exception handlers.
2476 """Switch color scheme for prompts, info system and exception handlers.
2477
2477
2478 Currently implemented schemes: NoColor, Linux, LightBG.
2478 Currently implemented schemes: NoColor, Linux, LightBG.
2479
2479
2480 Color scheme names are not case-sensitive.
2480 Color scheme names are not case-sensitive.
2481
2481
2482 Examples
2482 Examples
2483 --------
2483 --------
2484 To get a plain black and white terminal::
2484 To get a plain black and white terminal::
2485
2485
2486 %colors nocolor
2486 %colors nocolor
2487 """
2487 """
2488
2488
2489 def color_switch_err(name):
2489 def color_switch_err(name):
2490 warn('Error changing %s color schemes.\n%s' %
2490 warn('Error changing %s color schemes.\n%s' %
2491 (name,sys.exc_info()[1]))
2491 (name,sys.exc_info()[1]))
2492
2492
2493
2493
2494 new_scheme = parameter_s.strip()
2494 new_scheme = parameter_s.strip()
2495 if not new_scheme:
2495 if not new_scheme:
2496 raise UsageError(
2496 raise UsageError(
2497 "%colors: you must specify a color scheme. See '%colors?'")
2497 "%colors: you must specify a color scheme. See '%colors?'")
2498 return
2498 return
2499 # local shortcut
2499 # local shortcut
2500 shell = self.shell
2500 shell = self.shell
2501
2501
2502 import IPython.utils.rlineimpl as readline
2502 import IPython.utils.rlineimpl as readline
2503
2503
2504 if not readline.have_readline and sys.platform == "win32":
2504 if not readline.have_readline and sys.platform == "win32":
2505 msg = """\
2505 msg = """\
2506 Proper color support under MS Windows requires the pyreadline library.
2506 Proper color support under MS Windows requires the pyreadline library.
2507 You can find it at:
2507 You can find it at:
2508 http://ipython.scipy.org/moin/PyReadline/Intro
2508 http://ipython.scipy.org/moin/PyReadline/Intro
2509 Gary's readline needs the ctypes module, from:
2509 Gary's readline needs the ctypes module, from:
2510 http://starship.python.net/crew/theller/ctypes
2510 http://starship.python.net/crew/theller/ctypes
2511 (Note that ctypes is already part of Python versions 2.5 and newer).
2511 (Note that ctypes is already part of Python versions 2.5 and newer).
2512
2512
2513 Defaulting color scheme to 'NoColor'"""
2513 Defaulting color scheme to 'NoColor'"""
2514 new_scheme = 'NoColor'
2514 new_scheme = 'NoColor'
2515 warn(msg)
2515 warn(msg)
2516
2516
2517 # readline option is 0
2517 # readline option is 0
2518 if not shell.has_readline:
2518 if not shell.has_readline:
2519 new_scheme = 'NoColor'
2519 new_scheme = 'NoColor'
2520
2520
2521 # Set prompt colors
2521 # Set prompt colors
2522 try:
2522 try:
2523 shell.displayhook.set_colors(new_scheme)
2523 shell.displayhook.set_colors(new_scheme)
2524 except:
2524 except:
2525 color_switch_err('prompt')
2525 color_switch_err('prompt')
2526 else:
2526 else:
2527 shell.colors = \
2527 shell.colors = \
2528 shell.displayhook.color_table.active_scheme_name
2528 shell.displayhook.color_table.active_scheme_name
2529 # Set exception colors
2529 # Set exception colors
2530 try:
2530 try:
2531 shell.InteractiveTB.set_colors(scheme = new_scheme)
2531 shell.InteractiveTB.set_colors(scheme = new_scheme)
2532 shell.SyntaxTB.set_colors(scheme = new_scheme)
2532 shell.SyntaxTB.set_colors(scheme = new_scheme)
2533 except:
2533 except:
2534 color_switch_err('exception')
2534 color_switch_err('exception')
2535
2535
2536 # Set info (for 'object?') colors
2536 # Set info (for 'object?') colors
2537 if shell.color_info:
2537 if shell.color_info:
2538 try:
2538 try:
2539 shell.inspector.set_active_scheme(new_scheme)
2539 shell.inspector.set_active_scheme(new_scheme)
2540 except:
2540 except:
2541 color_switch_err('object inspector')
2541 color_switch_err('object inspector')
2542 else:
2542 else:
2543 shell.inspector.set_active_scheme('NoColor')
2543 shell.inspector.set_active_scheme('NoColor')
2544
2544
2545 def magic_pprint(self, parameter_s=''):
2545 def magic_pprint(self, parameter_s=''):
2546 """Toggle pretty printing on/off."""
2546 """Toggle pretty printing on/off."""
2547 ptformatter = self.shell.display_formatter.formatters['text/plain']
2547 ptformatter = self.shell.display_formatter.formatters['text/plain']
2548 ptformatter.pprint = bool(1 - ptformatter.pprint)
2548 ptformatter.pprint = bool(1 - ptformatter.pprint)
2549 print 'Pretty printing has been turned', \
2549 print 'Pretty printing has been turned', \
2550 ['OFF','ON'][ptformatter.pprint]
2550 ['OFF','ON'][ptformatter.pprint]
2551
2551
2552 #......................................................................
2552 #......................................................................
2553 # Functions to implement unix shell-type things
2553 # Functions to implement unix shell-type things
2554
2554
2555 @skip_doctest
2555 @skip_doctest
2556 def magic_alias(self, parameter_s = ''):
2556 def magic_alias(self, parameter_s = ''):
2557 """Define an alias for a system command.
2557 """Define an alias for a system command.
2558
2558
2559 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2559 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2560
2560
2561 Then, typing 'alias_name params' will execute the system command 'cmd
2561 Then, typing 'alias_name params' will execute the system command 'cmd
2562 params' (from your underlying operating system).
2562 params' (from your underlying operating system).
2563
2563
2564 Aliases have lower precedence than magic functions and Python normal
2564 Aliases have lower precedence than magic functions and Python normal
2565 variables, so if 'foo' is both a Python variable and an alias, the
2565 variables, so if 'foo' is both a Python variable and an alias, the
2566 alias can not be executed until 'del foo' removes the Python variable.
2566 alias can not be executed until 'del foo' removes the Python variable.
2567
2567
2568 You can use the %l specifier in an alias definition to represent the
2568 You can use the %l specifier in an alias definition to represent the
2569 whole line when the alias is called. For example:
2569 whole line when the alias is called. For example:
2570
2570
2571 In [2]: alias bracket echo "Input in brackets: <%l>"
2571 In [2]: alias bracket echo "Input in brackets: <%l>"
2572 In [3]: bracket hello world
2572 In [3]: bracket hello world
2573 Input in brackets: <hello world>
2573 Input in brackets: <hello world>
2574
2574
2575 You can also define aliases with parameters using %s specifiers (one
2575 You can also define aliases with parameters using %s specifiers (one
2576 per parameter):
2576 per parameter):
2577
2577
2578 In [1]: alias parts echo first %s second %s
2578 In [1]: alias parts echo first %s second %s
2579 In [2]: %parts A B
2579 In [2]: %parts A B
2580 first A second B
2580 first A second B
2581 In [3]: %parts A
2581 In [3]: %parts A
2582 Incorrect number of arguments: 2 expected.
2582 Incorrect number of arguments: 2 expected.
2583 parts is an alias to: 'echo first %s second %s'
2583 parts is an alias to: 'echo first %s second %s'
2584
2584
2585 Note that %l and %s are mutually exclusive. You can only use one or
2585 Note that %l and %s are mutually exclusive. You can only use one or
2586 the other in your aliases.
2586 the other in your aliases.
2587
2587
2588 Aliases expand Python variables just like system calls using ! or !!
2588 Aliases expand Python variables just like system calls using ! or !!
2589 do: all expressions prefixed with '$' get expanded. For details of
2589 do: all expressions prefixed with '$' get expanded. For details of
2590 the semantic rules, see PEP-215:
2590 the semantic rules, see PEP-215:
2591 http://www.python.org/peps/pep-0215.html. This is the library used by
2591 http://www.python.org/peps/pep-0215.html. This is the library used by
2592 IPython for variable expansion. If you want to access a true shell
2592 IPython for variable expansion. If you want to access a true shell
2593 variable, an extra $ is necessary to prevent its expansion by IPython:
2593 variable, an extra $ is necessary to prevent its expansion by IPython:
2594
2594
2595 In [6]: alias show echo
2595 In [6]: alias show echo
2596 In [7]: PATH='A Python string'
2596 In [7]: PATH='A Python string'
2597 In [8]: show $PATH
2597 In [8]: show $PATH
2598 A Python string
2598 A Python string
2599 In [9]: show $$PATH
2599 In [9]: show $$PATH
2600 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2600 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2601
2601
2602 You can use the alias facility to acess all of $PATH. See the %rehash
2602 You can use the alias facility to acess all of $PATH. See the %rehash
2603 and %rehashx functions, which automatically create aliases for the
2603 and %rehashx functions, which automatically create aliases for the
2604 contents of your $PATH.
2604 contents of your $PATH.
2605
2605
2606 If called with no parameters, %alias prints the current alias table."""
2606 If called with no parameters, %alias prints the current alias table."""
2607
2607
2608 par = parameter_s.strip()
2608 par = parameter_s.strip()
2609 if not par:
2609 if not par:
2610 stored = self.db.get('stored_aliases', {} )
2610 stored = self.db.get('stored_aliases', {} )
2611 aliases = sorted(self.shell.alias_manager.aliases)
2611 aliases = sorted(self.shell.alias_manager.aliases)
2612 # for k, v in stored:
2612 # for k, v in stored:
2613 # atab.append(k, v[0])
2613 # atab.append(k, v[0])
2614
2614
2615 print "Total number of aliases:", len(aliases)
2615 print "Total number of aliases:", len(aliases)
2616 sys.stdout.flush()
2616 sys.stdout.flush()
2617 return aliases
2617 return aliases
2618
2618
2619 # Now try to define a new one
2619 # Now try to define a new one
2620 try:
2620 try:
2621 alias,cmd = par.split(None, 1)
2621 alias,cmd = par.split(None, 1)
2622 except:
2622 except:
2623 print oinspect.getdoc(self.magic_alias)
2623 print oinspect.getdoc(self.magic_alias)
2624 else:
2624 else:
2625 self.shell.alias_manager.soft_define_alias(alias, cmd)
2625 self.shell.alias_manager.soft_define_alias(alias, cmd)
2626 # end magic_alias
2626 # end magic_alias
2627
2627
2628 def magic_unalias(self, parameter_s = ''):
2628 def magic_unalias(self, parameter_s = ''):
2629 """Remove an alias"""
2629 """Remove an alias"""
2630
2630
2631 aname = parameter_s.strip()
2631 aname = parameter_s.strip()
2632 self.shell.alias_manager.undefine_alias(aname)
2632 self.shell.alias_manager.undefine_alias(aname)
2633 stored = self.db.get('stored_aliases', {} )
2633 stored = self.db.get('stored_aliases', {} )
2634 if aname in stored:
2634 if aname in stored:
2635 print "Removing %stored alias",aname
2635 print "Removing %stored alias",aname
2636 del stored[aname]
2636 del stored[aname]
2637 self.db['stored_aliases'] = stored
2637 self.db['stored_aliases'] = stored
2638
2638
2639 def magic_rehashx(self, parameter_s = ''):
2639 def magic_rehashx(self, parameter_s = ''):
2640 """Update the alias table with all executable files in $PATH.
2640 """Update the alias table with all executable files in $PATH.
2641
2641
2642 This version explicitly checks that every entry in $PATH is a file
2642 This version explicitly checks that every entry in $PATH is a file
2643 with execute access (os.X_OK), so it is much slower than %rehash.
2643 with execute access (os.X_OK), so it is much slower than %rehash.
2644
2644
2645 Under Windows, it checks executability as a match agains a
2645 Under Windows, it checks executability as a match agains a
2646 '|'-separated string of extensions, stored in the IPython config
2646 '|'-separated string of extensions, stored in the IPython config
2647 variable win_exec_ext. This defaults to 'exe|com|bat'.
2647 variable win_exec_ext. This defaults to 'exe|com|bat'.
2648
2648
2649 This function also resets the root module cache of module completer,
2649 This function also resets the root module cache of module completer,
2650 used on slow filesystems.
2650 used on slow filesystems.
2651 """
2651 """
2652 from IPython.core.alias import InvalidAliasError
2652 from IPython.core.alias import InvalidAliasError
2653
2653
2654 # for the benefit of module completer in ipy_completers.py
2654 # for the benefit of module completer in ipy_completers.py
2655 del self.db['rootmodules']
2655 del self.db['rootmodules']
2656
2656
2657 path = [os.path.abspath(os.path.expanduser(p)) for p in
2657 path = [os.path.abspath(os.path.expanduser(p)) for p in
2658 os.environ.get('PATH','').split(os.pathsep)]
2658 os.environ.get('PATH','').split(os.pathsep)]
2659 path = filter(os.path.isdir,path)
2659 path = filter(os.path.isdir,path)
2660
2660
2661 syscmdlist = []
2661 syscmdlist = []
2662 # Now define isexec in a cross platform manner.
2662 # Now define isexec in a cross platform manner.
2663 if os.name == 'posix':
2663 if os.name == 'posix':
2664 isexec = lambda fname:os.path.isfile(fname) and \
2664 isexec = lambda fname:os.path.isfile(fname) and \
2665 os.access(fname,os.X_OK)
2665 os.access(fname,os.X_OK)
2666 else:
2666 else:
2667 try:
2667 try:
2668 winext = os.environ['pathext'].replace(';','|').replace('.','')
2668 winext = os.environ['pathext'].replace(';','|').replace('.','')
2669 except KeyError:
2669 except KeyError:
2670 winext = 'exe|com|bat|py'
2670 winext = 'exe|com|bat|py'
2671 if 'py' not in winext:
2671 if 'py' not in winext:
2672 winext += '|py'
2672 winext += '|py'
2673 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2673 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2674 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2674 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2675 savedir = os.getcwd()
2675 savedir = os.getcwd()
2676
2676
2677 # Now walk the paths looking for executables to alias.
2677 # Now walk the paths looking for executables to alias.
2678 try:
2678 try:
2679 # write the whole loop for posix/Windows so we don't have an if in
2679 # write the whole loop for posix/Windows so we don't have an if in
2680 # the innermost part
2680 # the innermost part
2681 if os.name == 'posix':
2681 if os.name == 'posix':
2682 for pdir in path:
2682 for pdir in path:
2683 os.chdir(pdir)
2683 os.chdir(pdir)
2684 for ff in os.listdir(pdir):
2684 for ff in os.listdir(pdir):
2685 if isexec(ff):
2685 if isexec(ff):
2686 try:
2686 try:
2687 # Removes dots from the name since ipython
2687 # Removes dots from the name since ipython
2688 # will assume names with dots to be python.
2688 # will assume names with dots to be python.
2689 self.shell.alias_manager.define_alias(
2689 self.shell.alias_manager.define_alias(
2690 ff.replace('.',''), ff)
2690 ff.replace('.',''), ff)
2691 except InvalidAliasError:
2691 except InvalidAliasError:
2692 pass
2692 pass
2693 else:
2693 else:
2694 syscmdlist.append(ff)
2694 syscmdlist.append(ff)
2695 else:
2695 else:
2696 no_alias = self.shell.alias_manager.no_alias
2696 no_alias = self.shell.alias_manager.no_alias
2697 for pdir in path:
2697 for pdir in path:
2698 os.chdir(pdir)
2698 os.chdir(pdir)
2699 for ff in os.listdir(pdir):
2699 for ff in os.listdir(pdir):
2700 base, ext = os.path.splitext(ff)
2700 base, ext = os.path.splitext(ff)
2701 if isexec(ff) and base.lower() not in no_alias:
2701 if isexec(ff) and base.lower() not in no_alias:
2702 if ext.lower() == '.exe':
2702 if ext.lower() == '.exe':
2703 ff = base
2703 ff = base
2704 try:
2704 try:
2705 # Removes dots from the name since ipython
2705 # Removes dots from the name since ipython
2706 # will assume names with dots to be python.
2706 # will assume names with dots to be python.
2707 self.shell.alias_manager.define_alias(
2707 self.shell.alias_manager.define_alias(
2708 base.lower().replace('.',''), ff)
2708 base.lower().replace('.',''), ff)
2709 except InvalidAliasError:
2709 except InvalidAliasError:
2710 pass
2710 pass
2711 syscmdlist.append(ff)
2711 syscmdlist.append(ff)
2712 db = self.db
2712 db = self.db
2713 db['syscmdlist'] = syscmdlist
2713 db['syscmdlist'] = syscmdlist
2714 finally:
2714 finally:
2715 os.chdir(savedir)
2715 os.chdir(savedir)
2716
2716
2717 @skip_doctest
2717 @skip_doctest
2718 def magic_pwd(self, parameter_s = ''):
2718 def magic_pwd(self, parameter_s = ''):
2719 """Return the current working directory path.
2719 """Return the current working directory path.
2720
2720
2721 Examples
2721 Examples
2722 --------
2722 --------
2723 ::
2723 ::
2724
2724
2725 In [9]: pwd
2725 In [9]: pwd
2726 Out[9]: '/home/tsuser/sprint/ipython'
2726 Out[9]: '/home/tsuser/sprint/ipython'
2727 """
2727 """
2728 return os.getcwd()
2728 return os.getcwd()
2729
2729
2730 @skip_doctest
2730 @skip_doctest
2731 def magic_cd(self, parameter_s=''):
2731 def magic_cd(self, parameter_s=''):
2732 """Change the current working directory.
2732 """Change the current working directory.
2733
2733
2734 This command automatically maintains an internal list of directories
2734 This command automatically maintains an internal list of directories
2735 you visit during your IPython session, in the variable _dh. The
2735 you visit during your IPython session, in the variable _dh. The
2736 command %dhist shows this history nicely formatted. You can also
2736 command %dhist shows this history nicely formatted. You can also
2737 do 'cd -<tab>' to see directory history conveniently.
2737 do 'cd -<tab>' to see directory history conveniently.
2738
2738
2739 Usage:
2739 Usage:
2740
2740
2741 cd 'dir': changes to directory 'dir'.
2741 cd 'dir': changes to directory 'dir'.
2742
2742
2743 cd -: changes to the last visited directory.
2743 cd -: changes to the last visited directory.
2744
2744
2745 cd -<n>: changes to the n-th directory in the directory history.
2745 cd -<n>: changes to the n-th directory in the directory history.
2746
2746
2747 cd --foo: change to directory that matches 'foo' in history
2747 cd --foo: change to directory that matches 'foo' in history
2748
2748
2749 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2749 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2750 (note: cd <bookmark_name> is enough if there is no
2750 (note: cd <bookmark_name> is enough if there is no
2751 directory <bookmark_name>, but a bookmark with the name exists.)
2751 directory <bookmark_name>, but a bookmark with the name exists.)
2752 'cd -b <tab>' allows you to tab-complete bookmark names.
2752 'cd -b <tab>' allows you to tab-complete bookmark names.
2753
2753
2754 Options:
2754 Options:
2755
2755
2756 -q: quiet. Do not print the working directory after the cd command is
2756 -q: quiet. Do not print the working directory after the cd command is
2757 executed. By default IPython's cd command does print this directory,
2757 executed. By default IPython's cd command does print this directory,
2758 since the default prompts do not display path information.
2758 since the default prompts do not display path information.
2759
2759
2760 Note that !cd doesn't work for this purpose because the shell where
2760 Note that !cd doesn't work for this purpose because the shell where
2761 !command runs is immediately discarded after executing 'command'.
2761 !command runs is immediately discarded after executing 'command'.
2762
2762
2763 Examples
2763 Examples
2764 --------
2764 --------
2765 ::
2765 ::
2766
2766
2767 In [10]: cd parent/child
2767 In [10]: cd parent/child
2768 /home/tsuser/parent/child
2768 /home/tsuser/parent/child
2769 """
2769 """
2770
2770
2771 parameter_s = parameter_s.strip()
2771 parameter_s = parameter_s.strip()
2772 #bkms = self.shell.persist.get("bookmarks",{})
2772 #bkms = self.shell.persist.get("bookmarks",{})
2773
2773
2774 oldcwd = os.getcwd()
2774 oldcwd = os.getcwd()
2775 numcd = re.match(r'(-)(\d+)$',parameter_s)
2775 numcd = re.match(r'(-)(\d+)$',parameter_s)
2776 # jump in directory history by number
2776 # jump in directory history by number
2777 if numcd:
2777 if numcd:
2778 nn = int(numcd.group(2))
2778 nn = int(numcd.group(2))
2779 try:
2779 try:
2780 ps = self.shell.user_ns['_dh'][nn]
2780 ps = self.shell.user_ns['_dh'][nn]
2781 except IndexError:
2781 except IndexError:
2782 print 'The requested directory does not exist in history.'
2782 print 'The requested directory does not exist in history.'
2783 return
2783 return
2784 else:
2784 else:
2785 opts = {}
2785 opts = {}
2786 elif parameter_s.startswith('--'):
2786 elif parameter_s.startswith('--'):
2787 ps = None
2787 ps = None
2788 fallback = None
2788 fallback = None
2789 pat = parameter_s[2:]
2789 pat = parameter_s[2:]
2790 dh = self.shell.user_ns['_dh']
2790 dh = self.shell.user_ns['_dh']
2791 # first search only by basename (last component)
2791 # first search only by basename (last component)
2792 for ent in reversed(dh):
2792 for ent in reversed(dh):
2793 if pat in os.path.basename(ent) and os.path.isdir(ent):
2793 if pat in os.path.basename(ent) and os.path.isdir(ent):
2794 ps = ent
2794 ps = ent
2795 break
2795 break
2796
2796
2797 if fallback is None and pat in ent and os.path.isdir(ent):
2797 if fallback is None and pat in ent and os.path.isdir(ent):
2798 fallback = ent
2798 fallback = ent
2799
2799
2800 # if we have no last part match, pick the first full path match
2800 # if we have no last part match, pick the first full path match
2801 if ps is None:
2801 if ps is None:
2802 ps = fallback
2802 ps = fallback
2803
2803
2804 if ps is None:
2804 if ps is None:
2805 print "No matching entry in directory history"
2805 print "No matching entry in directory history"
2806 return
2806 return
2807 else:
2807 else:
2808 opts = {}
2808 opts = {}
2809
2809
2810
2810
2811 else:
2811 else:
2812 #turn all non-space-escaping backslashes to slashes,
2812 #turn all non-space-escaping backslashes to slashes,
2813 # for c:\windows\directory\names\
2813 # for c:\windows\directory\names\
2814 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2814 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2815 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2815 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2816 # jump to previous
2816 # jump to previous
2817 if ps == '-':
2817 if ps == '-':
2818 try:
2818 try:
2819 ps = self.shell.user_ns['_dh'][-2]
2819 ps = self.shell.user_ns['_dh'][-2]
2820 except IndexError:
2820 except IndexError:
2821 raise UsageError('%cd -: No previous directory to change to.')
2821 raise UsageError('%cd -: No previous directory to change to.')
2822 # jump to bookmark if needed
2822 # jump to bookmark if needed
2823 else:
2823 else:
2824 if not os.path.isdir(ps) or opts.has_key('b'):
2824 if not os.path.isdir(ps) or opts.has_key('b'):
2825 bkms = self.db.get('bookmarks', {})
2825 bkms = self.db.get('bookmarks', {})
2826
2826
2827 if bkms.has_key(ps):
2827 if bkms.has_key(ps):
2828 target = bkms[ps]
2828 target = bkms[ps]
2829 print '(bookmark:%s) -> %s' % (ps,target)
2829 print '(bookmark:%s) -> %s' % (ps,target)
2830 ps = target
2830 ps = target
2831 else:
2831 else:
2832 if opts.has_key('b'):
2832 if opts.has_key('b'):
2833 raise UsageError("Bookmark '%s' not found. "
2833 raise UsageError("Bookmark '%s' not found. "
2834 "Use '%%bookmark -l' to see your bookmarks." % ps)
2834 "Use '%%bookmark -l' to see your bookmarks." % ps)
2835
2835
2836 # at this point ps should point to the target dir
2836 # at this point ps should point to the target dir
2837 if ps:
2837 if ps:
2838 try:
2838 try:
2839 os.chdir(os.path.expanduser(ps))
2839 os.chdir(os.path.expanduser(ps))
2840 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2840 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2841 set_term_title('IPython: ' + abbrev_cwd())
2841 set_term_title('IPython: ' + abbrev_cwd())
2842 except OSError:
2842 except OSError:
2843 print sys.exc_info()[1]
2843 print sys.exc_info()[1]
2844 else:
2844 else:
2845 cwd = os.getcwd()
2845 cwd = os.getcwd()
2846 dhist = self.shell.user_ns['_dh']
2846 dhist = self.shell.user_ns['_dh']
2847 if oldcwd != cwd:
2847 if oldcwd != cwd:
2848 dhist.append(cwd)
2848 dhist.append(cwd)
2849 self.db['dhist'] = compress_dhist(dhist)[-100:]
2849 self.db['dhist'] = compress_dhist(dhist)[-100:]
2850
2850
2851 else:
2851 else:
2852 os.chdir(self.shell.home_dir)
2852 os.chdir(self.shell.home_dir)
2853 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2853 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2854 set_term_title('IPython: ' + '~')
2854 set_term_title('IPython: ' + '~')
2855 cwd = os.getcwd()
2855 cwd = os.getcwd()
2856 dhist = self.shell.user_ns['_dh']
2856 dhist = self.shell.user_ns['_dh']
2857
2857
2858 if oldcwd != cwd:
2858 if oldcwd != cwd:
2859 dhist.append(cwd)
2859 dhist.append(cwd)
2860 self.db['dhist'] = compress_dhist(dhist)[-100:]
2860 self.db['dhist'] = compress_dhist(dhist)[-100:]
2861 if not 'q' in opts and self.shell.user_ns['_dh']:
2861 if not 'q' in opts and self.shell.user_ns['_dh']:
2862 print self.shell.user_ns['_dh'][-1]
2862 print self.shell.user_ns['_dh'][-1]
2863
2863
2864
2864
2865 def magic_env(self, parameter_s=''):
2865 def magic_env(self, parameter_s=''):
2866 """List environment variables."""
2866 """List environment variables."""
2867
2867
2868 return os.environ.data
2868 return os.environ.data
2869
2869
2870 def magic_pushd(self, parameter_s=''):
2870 def magic_pushd(self, parameter_s=''):
2871 """Place the current dir on stack and change directory.
2871 """Place the current dir on stack and change directory.
2872
2872
2873 Usage:\\
2873 Usage:\\
2874 %pushd ['dirname']
2874 %pushd ['dirname']
2875 """
2875 """
2876
2876
2877 dir_s = self.shell.dir_stack
2877 dir_s = self.shell.dir_stack
2878 tgt = os.path.expanduser(parameter_s)
2878 tgt = os.path.expanduser(parameter_s)
2879 cwd = os.getcwd().replace(self.home_dir,'~')
2879 cwd = os.getcwd().replace(self.home_dir,'~')
2880 if tgt:
2880 if tgt:
2881 self.magic_cd(parameter_s)
2881 self.magic_cd(parameter_s)
2882 dir_s.insert(0,cwd)
2882 dir_s.insert(0,cwd)
2883 return self.magic_dirs()
2883 return self.magic_dirs()
2884
2884
2885 def magic_popd(self, parameter_s=''):
2885 def magic_popd(self, parameter_s=''):
2886 """Change to directory popped off the top of the stack.
2886 """Change to directory popped off the top of the stack.
2887 """
2887 """
2888 if not self.shell.dir_stack:
2888 if not self.shell.dir_stack:
2889 raise UsageError("%popd on empty stack")
2889 raise UsageError("%popd on empty stack")
2890 top = self.shell.dir_stack.pop(0)
2890 top = self.shell.dir_stack.pop(0)
2891 self.magic_cd(top)
2891 self.magic_cd(top)
2892 print "popd ->",top
2892 print "popd ->",top
2893
2893
2894 def magic_dirs(self, parameter_s=''):
2894 def magic_dirs(self, parameter_s=''):
2895 """Return the current directory stack."""
2895 """Return the current directory stack."""
2896
2896
2897 return self.shell.dir_stack
2897 return self.shell.dir_stack
2898
2898
2899 def magic_dhist(self, parameter_s=''):
2899 def magic_dhist(self, parameter_s=''):
2900 """Print your history of visited directories.
2900 """Print your history of visited directories.
2901
2901
2902 %dhist -> print full history\\
2902 %dhist -> print full history\\
2903 %dhist n -> print last n entries only\\
2903 %dhist n -> print last n entries only\\
2904 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2904 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2905
2905
2906 This history is automatically maintained by the %cd command, and
2906 This history is automatically maintained by the %cd command, and
2907 always available as the global list variable _dh. You can use %cd -<n>
2907 always available as the global list variable _dh. You can use %cd -<n>
2908 to go to directory number <n>.
2908 to go to directory number <n>.
2909
2909
2910 Note that most of time, you should view directory history by entering
2910 Note that most of time, you should view directory history by entering
2911 cd -<TAB>.
2911 cd -<TAB>.
2912
2912
2913 """
2913 """
2914
2914
2915 dh = self.shell.user_ns['_dh']
2915 dh = self.shell.user_ns['_dh']
2916 if parameter_s:
2916 if parameter_s:
2917 try:
2917 try:
2918 args = map(int,parameter_s.split())
2918 args = map(int,parameter_s.split())
2919 except:
2919 except:
2920 self.arg_err(Magic.magic_dhist)
2920 self.arg_err(Magic.magic_dhist)
2921 return
2921 return
2922 if len(args) == 1:
2922 if len(args) == 1:
2923 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2923 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2924 elif len(args) == 2:
2924 elif len(args) == 2:
2925 ini,fin = args
2925 ini,fin = args
2926 else:
2926 else:
2927 self.arg_err(Magic.magic_dhist)
2927 self.arg_err(Magic.magic_dhist)
2928 return
2928 return
2929 else:
2929 else:
2930 ini,fin = 0,len(dh)
2930 ini,fin = 0,len(dh)
2931 nlprint(dh,
2931 nlprint(dh,
2932 header = 'Directory history (kept in _dh)',
2932 header = 'Directory history (kept in _dh)',
2933 start=ini,stop=fin)
2933 start=ini,stop=fin)
2934
2934
2935 @skip_doctest
2935 @skip_doctest
2936 def magic_sc(self, parameter_s=''):
2936 def magic_sc(self, parameter_s=''):
2937 """Shell capture - execute a shell command and capture its output.
2937 """Shell capture - execute a shell command and capture its output.
2938
2938
2939 DEPRECATED. Suboptimal, retained for backwards compatibility.
2939 DEPRECATED. Suboptimal, retained for backwards compatibility.
2940
2940
2941 You should use the form 'var = !command' instead. Example:
2941 You should use the form 'var = !command' instead. Example:
2942
2942
2943 "%sc -l myfiles = ls ~" should now be written as
2943 "%sc -l myfiles = ls ~" should now be written as
2944
2944
2945 "myfiles = !ls ~"
2945 "myfiles = !ls ~"
2946
2946
2947 myfiles.s, myfiles.l and myfiles.n still apply as documented
2947 myfiles.s, myfiles.l and myfiles.n still apply as documented
2948 below.
2948 below.
2949
2949
2950 --
2950 --
2951 %sc [options] varname=command
2951 %sc [options] varname=command
2952
2952
2953 IPython will run the given command using commands.getoutput(), and
2953 IPython will run the given command using commands.getoutput(), and
2954 will then update the user's interactive namespace with a variable
2954 will then update the user's interactive namespace with a variable
2955 called varname, containing the value of the call. Your command can
2955 called varname, containing the value of the call. Your command can
2956 contain shell wildcards, pipes, etc.
2956 contain shell wildcards, pipes, etc.
2957
2957
2958 The '=' sign in the syntax is mandatory, and the variable name you
2958 The '=' sign in the syntax is mandatory, and the variable name you
2959 supply must follow Python's standard conventions for valid names.
2959 supply must follow Python's standard conventions for valid names.
2960
2960
2961 (A special format without variable name exists for internal use)
2961 (A special format without variable name exists for internal use)
2962
2962
2963 Options:
2963 Options:
2964
2964
2965 -l: list output. Split the output on newlines into a list before
2965 -l: list output. Split the output on newlines into a list before
2966 assigning it to the given variable. By default the output is stored
2966 assigning it to the given variable. By default the output is stored
2967 as a single string.
2967 as a single string.
2968
2968
2969 -v: verbose. Print the contents of the variable.
2969 -v: verbose. Print the contents of the variable.
2970
2970
2971 In most cases you should not need to split as a list, because the
2971 In most cases you should not need to split as a list, because the
2972 returned value is a special type of string which can automatically
2972 returned value is a special type of string which can automatically
2973 provide its contents either as a list (split on newlines) or as a
2973 provide its contents either as a list (split on newlines) or as a
2974 space-separated string. These are convenient, respectively, either
2974 space-separated string. These are convenient, respectively, either
2975 for sequential processing or to be passed to a shell command.
2975 for sequential processing or to be passed to a shell command.
2976
2976
2977 For example:
2977 For example:
2978
2978
2979 # all-random
2979 # all-random
2980
2980
2981 # Capture into variable a
2981 # Capture into variable a
2982 In [1]: sc a=ls *py
2982 In [1]: sc a=ls *py
2983
2983
2984 # a is a string with embedded newlines
2984 # a is a string with embedded newlines
2985 In [2]: a
2985 In [2]: a
2986 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2986 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2987
2987
2988 # which can be seen as a list:
2988 # which can be seen as a list:
2989 In [3]: a.l
2989 In [3]: a.l
2990 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2990 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2991
2991
2992 # or as a whitespace-separated string:
2992 # or as a whitespace-separated string:
2993 In [4]: a.s
2993 In [4]: a.s
2994 Out[4]: 'setup.py win32_manual_post_install.py'
2994 Out[4]: 'setup.py win32_manual_post_install.py'
2995
2995
2996 # a.s is useful to pass as a single command line:
2996 # a.s is useful to pass as a single command line:
2997 In [5]: !wc -l $a.s
2997 In [5]: !wc -l $a.s
2998 146 setup.py
2998 146 setup.py
2999 130 win32_manual_post_install.py
2999 130 win32_manual_post_install.py
3000 276 total
3000 276 total
3001
3001
3002 # while the list form is useful to loop over:
3002 # while the list form is useful to loop over:
3003 In [6]: for f in a.l:
3003 In [6]: for f in a.l:
3004 ...: !wc -l $f
3004 ...: !wc -l $f
3005 ...:
3005 ...:
3006 146 setup.py
3006 146 setup.py
3007 130 win32_manual_post_install.py
3007 130 win32_manual_post_install.py
3008
3008
3009 Similiarly, the lists returned by the -l option are also special, in
3009 Similiarly, the lists returned by the -l option are also special, in
3010 the sense that you can equally invoke the .s attribute on them to
3010 the sense that you can equally invoke the .s attribute on them to
3011 automatically get a whitespace-separated string from their contents:
3011 automatically get a whitespace-separated string from their contents:
3012
3012
3013 In [7]: sc -l b=ls *py
3013 In [7]: sc -l b=ls *py
3014
3014
3015 In [8]: b
3015 In [8]: b
3016 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3016 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3017
3017
3018 In [9]: b.s
3018 In [9]: b.s
3019 Out[9]: 'setup.py win32_manual_post_install.py'
3019 Out[9]: 'setup.py win32_manual_post_install.py'
3020
3020
3021 In summary, both the lists and strings used for ouptut capture have
3021 In summary, both the lists and strings used for ouptut capture have
3022 the following special attributes:
3022 the following special attributes:
3023
3023
3024 .l (or .list) : value as list.
3024 .l (or .list) : value as list.
3025 .n (or .nlstr): value as newline-separated string.
3025 .n (or .nlstr): value as newline-separated string.
3026 .s (or .spstr): value as space-separated string.
3026 .s (or .spstr): value as space-separated string.
3027 """
3027 """
3028
3028
3029 opts,args = self.parse_options(parameter_s,'lv')
3029 opts,args = self.parse_options(parameter_s,'lv')
3030 # Try to get a variable name and command to run
3030 # Try to get a variable name and command to run
3031 try:
3031 try:
3032 # the variable name must be obtained from the parse_options
3032 # the variable name must be obtained from the parse_options
3033 # output, which uses shlex.split to strip options out.
3033 # output, which uses shlex.split to strip options out.
3034 var,_ = args.split('=',1)
3034 var,_ = args.split('=',1)
3035 var = var.strip()
3035 var = var.strip()
3036 # But the the command has to be extracted from the original input
3036 # But the the command has to be extracted from the original input
3037 # parameter_s, not on what parse_options returns, to avoid the
3037 # parameter_s, not on what parse_options returns, to avoid the
3038 # quote stripping which shlex.split performs on it.
3038 # quote stripping which shlex.split performs on it.
3039 _,cmd = parameter_s.split('=',1)
3039 _,cmd = parameter_s.split('=',1)
3040 except ValueError:
3040 except ValueError:
3041 var,cmd = '',''
3041 var,cmd = '',''
3042 # If all looks ok, proceed
3042 # If all looks ok, proceed
3043 split = 'l' in opts
3043 split = 'l' in opts
3044 out = self.shell.getoutput(cmd, split=split)
3044 out = self.shell.getoutput(cmd, split=split)
3045 if opts.has_key('v'):
3045 if opts.has_key('v'):
3046 print '%s ==\n%s' % (var,pformat(out))
3046 print '%s ==\n%s' % (var,pformat(out))
3047 if var:
3047 if var:
3048 self.shell.user_ns.update({var:out})
3048 self.shell.user_ns.update({var:out})
3049 else:
3049 else:
3050 return out
3050 return out
3051
3051
3052 def magic_sx(self, parameter_s=''):
3052 def magic_sx(self, parameter_s=''):
3053 """Shell execute - run a shell command and capture its output.
3053 """Shell execute - run a shell command and capture its output.
3054
3054
3055 %sx command
3055 %sx command
3056
3056
3057 IPython will run the given command using commands.getoutput(), and
3057 IPython will run the given command using commands.getoutput(), and
3058 return the result formatted as a list (split on '\\n'). Since the
3058 return the result formatted as a list (split on '\\n'). Since the
3059 output is _returned_, it will be stored in ipython's regular output
3059 output is _returned_, it will be stored in ipython's regular output
3060 cache Out[N] and in the '_N' automatic variables.
3060 cache Out[N] and in the '_N' automatic variables.
3061
3061
3062 Notes:
3062 Notes:
3063
3063
3064 1) If an input line begins with '!!', then %sx is automatically
3064 1) If an input line begins with '!!', then %sx is automatically
3065 invoked. That is, while:
3065 invoked. That is, while:
3066 !ls
3066 !ls
3067 causes ipython to simply issue system('ls'), typing
3067 causes ipython to simply issue system('ls'), typing
3068 !!ls
3068 !!ls
3069 is a shorthand equivalent to:
3069 is a shorthand equivalent to:
3070 %sx ls
3070 %sx ls
3071
3071
3072 2) %sx differs from %sc in that %sx automatically splits into a list,
3072 2) %sx differs from %sc in that %sx automatically splits into a list,
3073 like '%sc -l'. The reason for this is to make it as easy as possible
3073 like '%sc -l'. The reason for this is to make it as easy as possible
3074 to process line-oriented shell output via further python commands.
3074 to process line-oriented shell output via further python commands.
3075 %sc is meant to provide much finer control, but requires more
3075 %sc is meant to provide much finer control, but requires more
3076 typing.
3076 typing.
3077
3077
3078 3) Just like %sc -l, this is a list with special attributes:
3078 3) Just like %sc -l, this is a list with special attributes:
3079
3079
3080 .l (or .list) : value as list.
3080 .l (or .list) : value as list.
3081 .n (or .nlstr): value as newline-separated string.
3081 .n (or .nlstr): value as newline-separated string.
3082 .s (or .spstr): value as whitespace-separated string.
3082 .s (or .spstr): value as whitespace-separated string.
3083
3083
3084 This is very useful when trying to use such lists as arguments to
3084 This is very useful when trying to use such lists as arguments to
3085 system commands."""
3085 system commands."""
3086
3086
3087 if parameter_s:
3087 if parameter_s:
3088 return self.shell.getoutput(parameter_s)
3088 return self.shell.getoutput(parameter_s)
3089
3089
3090
3090
3091 def magic_bookmark(self, parameter_s=''):
3091 def magic_bookmark(self, parameter_s=''):
3092 """Manage IPython's bookmark system.
3092 """Manage IPython's bookmark system.
3093
3093
3094 %bookmark <name> - set bookmark to current dir
3094 %bookmark <name> - set bookmark to current dir
3095 %bookmark <name> <dir> - set bookmark to <dir>
3095 %bookmark <name> <dir> - set bookmark to <dir>
3096 %bookmark -l - list all bookmarks
3096 %bookmark -l - list all bookmarks
3097 %bookmark -d <name> - remove bookmark
3097 %bookmark -d <name> - remove bookmark
3098 %bookmark -r - remove all bookmarks
3098 %bookmark -r - remove all bookmarks
3099
3099
3100 You can later on access a bookmarked folder with:
3100 You can later on access a bookmarked folder with:
3101 %cd -b <name>
3101 %cd -b <name>
3102 or simply '%cd <name>' if there is no directory called <name> AND
3102 or simply '%cd <name>' if there is no directory called <name> AND
3103 there is such a bookmark defined.
3103 there is such a bookmark defined.
3104
3104
3105 Your bookmarks persist through IPython sessions, but they are
3105 Your bookmarks persist through IPython sessions, but they are
3106 associated with each profile."""
3106 associated with each profile."""
3107
3107
3108 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3108 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3109 if len(args) > 2:
3109 if len(args) > 2:
3110 raise UsageError("%bookmark: too many arguments")
3110 raise UsageError("%bookmark: too many arguments")
3111
3111
3112 bkms = self.db.get('bookmarks',{})
3112 bkms = self.db.get('bookmarks',{})
3113
3113
3114 if opts.has_key('d'):
3114 if opts.has_key('d'):
3115 try:
3115 try:
3116 todel = args[0]
3116 todel = args[0]
3117 except IndexError:
3117 except IndexError:
3118 raise UsageError(
3118 raise UsageError(
3119 "%bookmark -d: must provide a bookmark to delete")
3119 "%bookmark -d: must provide a bookmark to delete")
3120 else:
3120 else:
3121 try:
3121 try:
3122 del bkms[todel]
3122 del bkms[todel]
3123 except KeyError:
3123 except KeyError:
3124 raise UsageError(
3124 raise UsageError(
3125 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3125 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3126
3126
3127 elif opts.has_key('r'):
3127 elif opts.has_key('r'):
3128 bkms = {}
3128 bkms = {}
3129 elif opts.has_key('l'):
3129 elif opts.has_key('l'):
3130 bks = bkms.keys()
3130 bks = bkms.keys()
3131 bks.sort()
3131 bks.sort()
3132 if bks:
3132 if bks:
3133 size = max(map(len,bks))
3133 size = max(map(len,bks))
3134 else:
3134 else:
3135 size = 0
3135 size = 0
3136 fmt = '%-'+str(size)+'s -> %s'
3136 fmt = '%-'+str(size)+'s -> %s'
3137 print 'Current bookmarks:'
3137 print 'Current bookmarks:'
3138 for bk in bks:
3138 for bk in bks:
3139 print fmt % (bk,bkms[bk])
3139 print fmt % (bk,bkms[bk])
3140 else:
3140 else:
3141 if not args:
3141 if not args:
3142 raise UsageError("%bookmark: You must specify the bookmark name")
3142 raise UsageError("%bookmark: You must specify the bookmark name")
3143 elif len(args)==1:
3143 elif len(args)==1:
3144 bkms[args[0]] = os.getcwd()
3144 bkms[args[0]] = os.getcwd()
3145 elif len(args)==2:
3145 elif len(args)==2:
3146 bkms[args[0]] = args[1]
3146 bkms[args[0]] = args[1]
3147 self.db['bookmarks'] = bkms
3147 self.db['bookmarks'] = bkms
3148
3148
3149 def magic_pycat(self, parameter_s=''):
3149 def magic_pycat(self, parameter_s=''):
3150 """Show a syntax-highlighted file through a pager.
3150 """Show a syntax-highlighted file through a pager.
3151
3151
3152 This magic is similar to the cat utility, but it will assume the file
3152 This magic is similar to the cat utility, but it will assume the file
3153 to be Python source and will show it with syntax highlighting. """
3153 to be Python source and will show it with syntax highlighting. """
3154
3154
3155 try:
3155 try:
3156 filename = get_py_filename(parameter_s)
3156 filename = get_py_filename(parameter_s)
3157 cont = file_read(filename)
3157 cont = file_read(filename)
3158 except IOError:
3158 except IOError:
3159 try:
3159 try:
3160 cont = eval(parameter_s,self.user_ns)
3160 cont = eval(parameter_s,self.user_ns)
3161 except NameError:
3161 except NameError:
3162 cont = None
3162 cont = None
3163 if cont is None:
3163 if cont is None:
3164 print "Error: no such file or variable"
3164 print "Error: no such file or variable"
3165 return
3165 return
3166
3166
3167 page.page(self.shell.pycolorize(cont))
3167 page.page(self.shell.pycolorize(cont))
3168
3168
3169 def _rerun_pasted(self):
3169 def _rerun_pasted(self):
3170 """ Rerun a previously pasted command.
3170 """ Rerun a previously pasted command.
3171 """
3171 """
3172 b = self.user_ns.get('pasted_block', None)
3172 b = self.user_ns.get('pasted_block', None)
3173 if b is None:
3173 if b is None:
3174 raise UsageError('No previous pasted block available')
3174 raise UsageError('No previous pasted block available')
3175 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3175 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3176 exec b in self.user_ns
3176 exec b in self.user_ns
3177
3177
3178 def _get_pasted_lines(self, sentinel):
3178 def _get_pasted_lines(self, sentinel):
3179 """ Yield pasted lines until the user enters the given sentinel value.
3179 """ Yield pasted lines until the user enters the given sentinel value.
3180 """
3180 """
3181 from IPython.core import interactiveshell
3181 from IPython.core import interactiveshell
3182 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3182 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3183 while True:
3183 while True:
3184 l = interactiveshell.raw_input_original(':')
3184 l = interactiveshell.raw_input_original(':')
3185 if l == sentinel:
3185 if l == sentinel:
3186 return
3186 return
3187 else:
3187 else:
3188 yield l
3188 yield l
3189
3189
3190 def _strip_pasted_lines_for_code(self, raw_lines):
3190 def _strip_pasted_lines_for_code(self, raw_lines):
3191 """ Strip non-code parts of a sequence of lines to return a block of
3191 """ Strip non-code parts of a sequence of lines to return a block of
3192 code.
3192 code.
3193 """
3193 """
3194 # Regular expressions that declare text we strip from the input:
3194 # Regular expressions that declare text we strip from the input:
3195 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3195 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3196 r'^\s*(\s?>)+', # Python input prompt
3196 r'^\s*(\s?>)+', # Python input prompt
3197 r'^\s*\.{3,}', # Continuation prompts
3197 r'^\s*\.{3,}', # Continuation prompts
3198 r'^\++',
3198 r'^\++',
3199 ]
3199 ]
3200
3200
3201 strip_from_start = map(re.compile,strip_re)
3201 strip_from_start = map(re.compile,strip_re)
3202
3202
3203 lines = []
3203 lines = []
3204 for l in raw_lines:
3204 for l in raw_lines:
3205 for pat in strip_from_start:
3205 for pat in strip_from_start:
3206 l = pat.sub('',l)
3206 l = pat.sub('',l)
3207 lines.append(l)
3207 lines.append(l)
3208
3208
3209 block = "\n".join(lines) + '\n'
3209 block = "\n".join(lines) + '\n'
3210 #print "block:\n",block
3210 #print "block:\n",block
3211 return block
3211 return block
3212
3212
3213 def _execute_block(self, block, par):
3213 def _execute_block(self, block, par):
3214 """ Execute a block, or store it in a variable, per the user's request.
3214 """ Execute a block, or store it in a variable, per the user's request.
3215 """
3215 """
3216 if not par:
3216 if not par:
3217 b = textwrap.dedent(block)
3217 b = textwrap.dedent(block)
3218 self.user_ns['pasted_block'] = b
3218 self.user_ns['pasted_block'] = b
3219 exec b in self.user_ns
3219 exec b in self.user_ns
3220 else:
3220 else:
3221 self.user_ns[par] = SList(block.splitlines())
3221 self.user_ns[par] = SList(block.splitlines())
3222 print "Block assigned to '%s'" % par
3222 print "Block assigned to '%s'" % par
3223
3223
3224 def magic_quickref(self,arg):
3224 def magic_quickref(self,arg):
3225 """ Show a quick reference sheet """
3225 """ Show a quick reference sheet """
3226 import IPython.core.usage
3226 import IPython.core.usage
3227 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3227 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3228
3228
3229 page.page(qr)
3229 page.page(qr)
3230
3230
3231 def magic_doctest_mode(self,parameter_s=''):
3231 def magic_doctest_mode(self,parameter_s=''):
3232 """Toggle doctest mode on and off.
3232 """Toggle doctest mode on and off.
3233
3233
3234 This mode is intended to make IPython behave as much as possible like a
3234 This mode is intended to make IPython behave as much as possible like a
3235 plain Python shell, from the perspective of how its prompts, exceptions
3235 plain Python shell, from the perspective of how its prompts, exceptions
3236 and output look. This makes it easy to copy and paste parts of a
3236 and output look. This makes it easy to copy and paste parts of a
3237 session into doctests. It does so by:
3237 session into doctests. It does so by:
3238
3238
3239 - Changing the prompts to the classic ``>>>`` ones.
3239 - Changing the prompts to the classic ``>>>`` ones.
3240 - Changing the exception reporting mode to 'Plain'.
3240 - Changing the exception reporting mode to 'Plain'.
3241 - Disabling pretty-printing of output.
3241 - Disabling pretty-printing of output.
3242
3242
3243 Note that IPython also supports the pasting of code snippets that have
3243 Note that IPython also supports the pasting of code snippets that have
3244 leading '>>>' and '...' prompts in them. This means that you can paste
3244 leading '>>>' and '...' prompts in them. This means that you can paste
3245 doctests from files or docstrings (even if they have leading
3245 doctests from files or docstrings (even if they have leading
3246 whitespace), and the code will execute correctly. You can then use
3246 whitespace), and the code will execute correctly. You can then use
3247 '%history -t' to see the translated history; this will give you the
3247 '%history -t' to see the translated history; this will give you the
3248 input after removal of all the leading prompts and whitespace, which
3248 input after removal of all the leading prompts and whitespace, which
3249 can be pasted back into an editor.
3249 can be pasted back into an editor.
3250
3250
3251 With these features, you can switch into this mode easily whenever you
3251 With these features, you can switch into this mode easily whenever you
3252 need to do testing and changes to doctests, without having to leave
3252 need to do testing and changes to doctests, without having to leave
3253 your existing IPython session.
3253 your existing IPython session.
3254 """
3254 """
3255
3255
3256 from IPython.utils.ipstruct import Struct
3256 from IPython.utils.ipstruct import Struct
3257
3257
3258 # Shorthands
3258 # Shorthands
3259 shell = self.shell
3259 shell = self.shell
3260 oc = shell.displayhook
3260 oc = shell.displayhook
3261 meta = shell.meta
3261 meta = shell.meta
3262 disp_formatter = self.shell.display_formatter
3262 disp_formatter = self.shell.display_formatter
3263 ptformatter = disp_formatter.formatters['text/plain']
3263 ptformatter = disp_formatter.formatters['text/plain']
3264 # dstore is a data store kept in the instance metadata bag to track any
3264 # dstore is a data store kept in the instance metadata bag to track any
3265 # changes we make, so we can undo them later.
3265 # changes we make, so we can undo them later.
3266 dstore = meta.setdefault('doctest_mode',Struct())
3266 dstore = meta.setdefault('doctest_mode',Struct())
3267 save_dstore = dstore.setdefault
3267 save_dstore = dstore.setdefault
3268
3268
3269 # save a few values we'll need to recover later
3269 # save a few values we'll need to recover later
3270 mode = save_dstore('mode',False)
3270 mode = save_dstore('mode',False)
3271 save_dstore('rc_pprint',ptformatter.pprint)
3271 save_dstore('rc_pprint',ptformatter.pprint)
3272 save_dstore('xmode',shell.InteractiveTB.mode)
3272 save_dstore('xmode',shell.InteractiveTB.mode)
3273 save_dstore('rc_separate_out',shell.separate_out)
3273 save_dstore('rc_separate_out',shell.separate_out)
3274 save_dstore('rc_separate_out2',shell.separate_out2)
3274 save_dstore('rc_separate_out2',shell.separate_out2)
3275 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3275 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3276 save_dstore('rc_separate_in',shell.separate_in)
3276 save_dstore('rc_separate_in',shell.separate_in)
3277 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3277 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3278
3278
3279 if mode == False:
3279 if mode == False:
3280 # turn on
3280 # turn on
3281 oc.prompt1.p_template = '>>> '
3281 oc.prompt1.p_template = '>>> '
3282 oc.prompt2.p_template = '... '
3282 oc.prompt2.p_template = '... '
3283 oc.prompt_out.p_template = ''
3283 oc.prompt_out.p_template = ''
3284
3284
3285 # Prompt separators like plain python
3285 # Prompt separators like plain python
3286 oc.input_sep = oc.prompt1.sep = ''
3286 oc.input_sep = oc.prompt1.sep = ''
3287 oc.output_sep = ''
3287 oc.output_sep = ''
3288 oc.output_sep2 = ''
3288 oc.output_sep2 = ''
3289
3289
3290 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3290 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3291 oc.prompt_out.pad_left = False
3291 oc.prompt_out.pad_left = False
3292
3292
3293 ptformatter.pprint = False
3293 ptformatter.pprint = False
3294 disp_formatter.plain_text_only = True
3294 disp_formatter.plain_text_only = True
3295
3295
3296 shell.magic_xmode('Plain')
3296 shell.magic_xmode('Plain')
3297 else:
3297 else:
3298 # turn off
3298 # turn off
3299 oc.prompt1.p_template = shell.prompt_in1
3299 oc.prompt1.p_template = shell.prompt_in1
3300 oc.prompt2.p_template = shell.prompt_in2
3300 oc.prompt2.p_template = shell.prompt_in2
3301 oc.prompt_out.p_template = shell.prompt_out
3301 oc.prompt_out.p_template = shell.prompt_out
3302
3302
3303 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3303 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3304
3304
3305 oc.output_sep = dstore.rc_separate_out
3305 oc.output_sep = dstore.rc_separate_out
3306 oc.output_sep2 = dstore.rc_separate_out2
3306 oc.output_sep2 = dstore.rc_separate_out2
3307
3307
3308 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3308 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3309 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3309 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3310
3310
3311 ptformatter.pprint = dstore.rc_pprint
3311 ptformatter.pprint = dstore.rc_pprint
3312 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3312 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3313
3313
3314 shell.magic_xmode(dstore.xmode)
3314 shell.magic_xmode(dstore.xmode)
3315
3315
3316 # Store new mode and inform
3316 # Store new mode and inform
3317 dstore.mode = bool(1-int(mode))
3317 dstore.mode = bool(1-int(mode))
3318 mode_label = ['OFF','ON'][dstore.mode]
3318 mode_label = ['OFF','ON'][dstore.mode]
3319 print 'Doctest mode is:', mode_label
3319 print 'Doctest mode is:', mode_label
3320
3320
3321 def magic_gui(self, parameter_s=''):
3321 def magic_gui(self, parameter_s=''):
3322 """Enable or disable IPython GUI event loop integration.
3322 """Enable or disable IPython GUI event loop integration.
3323
3323
3324 %gui [GUINAME]
3324 %gui [GUINAME]
3325
3325
3326 This magic replaces IPython's threaded shells that were activated
3326 This magic replaces IPython's threaded shells that were activated
3327 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3327 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3328 can now be enabled, disabled and changed at runtime and keyboard
3328 can now be enabled, disabled and changed at runtime and keyboard
3329 interrupts should work without any problems. The following toolkits
3329 interrupts should work without any problems. The following toolkits
3330 are supported: wxPython, PyQt4, PyGTK, and Tk::
3330 are supported: wxPython, PyQt4, PyGTK, and Tk::
3331
3331
3332 %gui wx # enable wxPython event loop integration
3332 %gui wx # enable wxPython event loop integration
3333 %gui qt4|qt # enable PyQt4 event loop integration
3333 %gui qt4|qt # enable PyQt4 event loop integration
3334 %gui gtk # enable PyGTK event loop integration
3334 %gui gtk # enable PyGTK event loop integration
3335 %gui tk # enable Tk event loop integration
3335 %gui tk # enable Tk event loop integration
3336 %gui # disable all event loop integration
3336 %gui # disable all event loop integration
3337
3337
3338 WARNING: after any of these has been called you can simply create
3338 WARNING: after any of these has been called you can simply create
3339 an application object, but DO NOT start the event loop yourself, as
3339 an application object, but DO NOT start the event loop yourself, as
3340 we have already handled that.
3340 we have already handled that.
3341 """
3341 """
3342 from IPython.lib.inputhook import enable_gui
3342 from IPython.lib.inputhook import enable_gui
3343 opts, arg = self.parse_options(parameter_s, '')
3343 opts, arg = self.parse_options(parameter_s, '')
3344 if arg=='': arg = None
3344 if arg=='': arg = None
3345 return enable_gui(arg)
3345 return enable_gui(arg)
3346
3346
3347 def magic_load_ext(self, module_str):
3347 def magic_load_ext(self, module_str):
3348 """Load an IPython extension by its module name."""
3348 """Load an IPython extension by its module name."""
3349 return self.extension_manager.load_extension(module_str)
3349 return self.extension_manager.load_extension(module_str)
3350
3350
3351 def magic_unload_ext(self, module_str):
3351 def magic_unload_ext(self, module_str):
3352 """Unload an IPython extension by its module name."""
3352 """Unload an IPython extension by its module name."""
3353 self.extension_manager.unload_extension(module_str)
3353 self.extension_manager.unload_extension(module_str)
3354
3354
3355 def magic_reload_ext(self, module_str):
3355 def magic_reload_ext(self, module_str):
3356 """Reload an IPython extension by its module name."""
3356 """Reload an IPython extension by its module name."""
3357 self.extension_manager.reload_extension(module_str)
3357 self.extension_manager.reload_extension(module_str)
3358
3358
3359 @skip_doctest
3359 @skip_doctest
3360 def magic_install_profiles(self, s):
3360 def magic_install_profiles(self, s):
3361 """Install the default IPython profiles into the .ipython dir.
3361 """Install the default IPython profiles into the .ipython dir.
3362
3362
3363 If the default profiles have already been installed, they will not
3363 If the default profiles have already been installed, they will not
3364 be overwritten. You can force overwriting them by using the ``-o``
3364 be overwritten. You can force overwriting them by using the ``-o``
3365 option::
3365 option::
3366
3366
3367 In [1]: %install_profiles -o
3367 In [1]: %install_profiles -o
3368 """
3368 """
3369 if '-o' in s:
3369 if '-o' in s:
3370 overwrite = True
3370 overwrite = True
3371 else:
3371 else:
3372 overwrite = False
3372 overwrite = False
3373 from IPython.config import profile
3373 from IPython.config import profile
3374 profile_dir = os.path.dirname(profile.__file__)
3374 profile_dir = os.path.dirname(profile.__file__)
3375 ipython_dir = self.ipython_dir
3375 ipython_dir = self.ipython_dir
3376 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3376 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3377 for src in os.listdir(profile_dir):
3377 for src in os.listdir(profile_dir):
3378 if src.startswith('profile_'):
3378 if src.startswith('profile_'):
3379 name = src.replace('profile_', '')
3379 name = src.replace('profile_', '')
3380 print " %s"%name
3380 print " %s"%name
3381 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3381 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3382 pd.copy_config_file('ipython_config.py', path=src,
3382 pd.copy_config_file('ipython_config.py', path=src,
3383 overwrite=overwrite)
3383 overwrite=overwrite)
3384
3384
3385 @skip_doctest
3385 @skip_doctest
3386 def magic_install_default_config(self, s):
3386 def magic_install_default_config(self, s):
3387 """Install IPython's default config file into the .ipython dir.
3387 """Install IPython's default config file into the .ipython dir.
3388
3388
3389 If the default config file (:file:`ipython_config.py`) is already
3389 If the default config file (:file:`ipython_config.py`) is already
3390 installed, it will not be overwritten. You can force overwriting
3390 installed, it will not be overwritten. You can force overwriting
3391 by using the ``-o`` option::
3391 by using the ``-o`` option::
3392
3392
3393 In [1]: %install_default_config
3393 In [1]: %install_default_config
3394 """
3394 """
3395 if '-o' in s:
3395 if '-o' in s:
3396 overwrite = True
3396 overwrite = True
3397 else:
3397 else:
3398 overwrite = False
3398 overwrite = False
3399 pd = self.shell.profile_dir
3399 pd = self.shell.profile_dir
3400 print "Installing default config file in: %s" % pd.location
3400 print "Installing default config file in: %s" % pd.location
3401 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3401 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3402
3402
3403 # Pylab support: simple wrappers that activate pylab, load gui input
3403 # Pylab support: simple wrappers that activate pylab, load gui input
3404 # handling and modify slightly %run
3404 # handling and modify slightly %run
3405
3405
3406 @skip_doctest
3406 @skip_doctest
3407 def _pylab_magic_run(self, parameter_s=''):
3407 def _pylab_magic_run(self, parameter_s=''):
3408 Magic.magic_run(self, parameter_s,
3408 Magic.magic_run(self, parameter_s,
3409 runner=mpl_runner(self.shell.safe_execfile))
3409 runner=mpl_runner(self.shell.safe_execfile))
3410
3410
3411 _pylab_magic_run.__doc__ = magic_run.__doc__
3411 _pylab_magic_run.__doc__ = magic_run.__doc__
3412
3412
3413 @skip_doctest
3413 @skip_doctest
3414 def magic_pylab(self, s):
3414 def magic_pylab(self, s):
3415 """Load numpy and matplotlib to work interactively.
3415 """Load numpy and matplotlib to work interactively.
3416
3416
3417 %pylab [GUINAME]
3417 %pylab [GUINAME]
3418
3418
3419 This function lets you activate pylab (matplotlib, numpy and
3419 This function lets you activate pylab (matplotlib, numpy and
3420 interactive support) at any point during an IPython session.
3420 interactive support) at any point during an IPython session.
3421
3421
3422 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3422 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3423 pylab and mlab, as well as all names from numpy and pylab.
3423 pylab and mlab, as well as all names from numpy and pylab.
3424
3424
3425 Parameters
3425 Parameters
3426 ----------
3426 ----------
3427 guiname : optional
3427 guiname : optional
3428 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3428 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3429 'tk'). If given, the corresponding Matplotlib backend is used,
3429 'tk'). If given, the corresponding Matplotlib backend is used,
3430 otherwise matplotlib's default (which you can override in your
3430 otherwise matplotlib's default (which you can override in your
3431 matplotlib config file) is used.
3431 matplotlib config file) is used.
3432
3432
3433 Examples
3433 Examples
3434 --------
3434 --------
3435 In this case, where the MPL default is TkAgg:
3435 In this case, where the MPL default is TkAgg:
3436 In [2]: %pylab
3436 In [2]: %pylab
3437
3437
3438 Welcome to pylab, a matplotlib-based Python environment.
3438 Welcome to pylab, a matplotlib-based Python environment.
3439 Backend in use: TkAgg
3439 Backend in use: TkAgg
3440 For more information, type 'help(pylab)'.
3440 For more information, type 'help(pylab)'.
3441
3441
3442 But you can explicitly request a different backend:
3442 But you can explicitly request a different backend:
3443 In [3]: %pylab qt
3443 In [3]: %pylab qt
3444
3444
3445 Welcome to pylab, a matplotlib-based Python environment.
3445 Welcome to pylab, a matplotlib-based Python environment.
3446 Backend in use: Qt4Agg
3446 Backend in use: Qt4Agg
3447 For more information, type 'help(pylab)'.
3447 For more information, type 'help(pylab)'.
3448 """
3448 """
3449 self.shell.enable_pylab(s)
3449 self.shell.enable_pylab(s)
3450
3450
3451 def magic_tb(self, s):
3451 def magic_tb(self, s):
3452 """Print the last traceback with the currently active exception mode.
3452 """Print the last traceback with the currently active exception mode.
3453
3453
3454 See %xmode for changing exception reporting modes."""
3454 See %xmode for changing exception reporting modes."""
3455 self.shell.showtraceback()
3455 self.shell.showtraceback()
3456
3456
3457 @skip_doctest
3457 @skip_doctest
3458 def magic_precision(self, s=''):
3458 def magic_precision(self, s=''):
3459 """Set floating point precision for pretty printing.
3459 """Set floating point precision for pretty printing.
3460
3460
3461 Can set either integer precision or a format string.
3461 Can set either integer precision or a format string.
3462
3462
3463 If numpy has been imported and precision is an int,
3463 If numpy has been imported and precision is an int,
3464 numpy display precision will also be set, via ``numpy.set_printoptions``.
3464 numpy display precision will also be set, via ``numpy.set_printoptions``.
3465
3465
3466 If no argument is given, defaults will be restored.
3466 If no argument is given, defaults will be restored.
3467
3467
3468 Examples
3468 Examples
3469 --------
3469 --------
3470 ::
3470 ::
3471
3471
3472 In [1]: from math import pi
3472 In [1]: from math import pi
3473
3473
3474 In [2]: %precision 3
3474 In [2]: %precision 3
3475 Out[2]: '%.3f'
3475 Out[2]: u'%.3f'
3476
3476
3477 In [3]: pi
3477 In [3]: pi
3478 Out[3]: 3.142
3478 Out[3]: 3.142
3479
3479
3480 In [4]: %precision %i
3480 In [4]: %precision %i
3481 Out[4]: '%i'
3481 Out[4]: u'%i'
3482
3482
3483 In [5]: pi
3483 In [5]: pi
3484 Out[5]: 3
3484 Out[5]: 3
3485
3485
3486 In [6]: %precision %e
3486 In [6]: %precision %e
3487 Out[6]: '%e'
3487 Out[6]: u'%e'
3488
3488
3489 In [7]: pi**10
3489 In [7]: pi**10
3490 Out[7]: 9.364805e+04
3490 Out[7]: 9.364805e+04
3491
3491
3492 In [8]: %precision
3492 In [8]: %precision
3493 Out[8]: '%r'
3493 Out[8]: u'%r'
3494
3494
3495 In [9]: pi**10
3495 In [9]: pi**10
3496 Out[9]: 93648.047476082982
3496 Out[9]: 93648.047476082982
3497
3497
3498 """
3498 """
3499
3499
3500 ptformatter = self.shell.display_formatter.formatters['text/plain']
3500 ptformatter = self.shell.display_formatter.formatters['text/plain']
3501 ptformatter.float_precision = s
3501 ptformatter.float_precision = s
3502 return ptformatter.float_format
3502 return ptformatter.float_format
3503
3503
3504 # end Magic
3504 # end Magic
@@ -1,1013 +1,1013 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 Prefiltering components.
4 Prefiltering components.
5
5
6 Prefilters transform user input before it is exec'd by Python. These
6 Prefilters transform user input before it is exec'd by Python. These
7 transforms are used to implement additional syntax such as !ls and %magic.
7 transforms are used to implement additional syntax such as !ls and %magic.
8
8
9 Authors:
9 Authors:
10
10
11 * Brian Granger
11 * Brian Granger
12 * Fernando Perez
12 * Fernando Perez
13 * Dan Milstein
13 * Dan Milstein
14 * Ville Vainio
14 * Ville Vainio
15 """
15 """
16
16
17 #-----------------------------------------------------------------------------
17 #-----------------------------------------------------------------------------
18 # Copyright (C) 2008-2009 The IPython Development Team
18 # Copyright (C) 2008-2009 The IPython Development Team
19 #
19 #
20 # Distributed under the terms of the BSD License. The full license is in
20 # Distributed under the terms of the BSD License. The full license is in
21 # the file COPYING, distributed as part of this software.
21 # the file COPYING, distributed as part of this software.
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23
23
24 #-----------------------------------------------------------------------------
24 #-----------------------------------------------------------------------------
25 # Imports
25 # Imports
26 #-----------------------------------------------------------------------------
26 #-----------------------------------------------------------------------------
27
27
28 import __builtin__
28 import __builtin__
29 import codeop
29 import codeop
30 import re
30 import re
31
31
32 from IPython.core.alias import AliasManager
32 from IPython.core.alias import AliasManager
33 from IPython.core.autocall import IPyAutocall
33 from IPython.core.autocall import IPyAutocall
34 from IPython.config.configurable import Configurable
34 from IPython.config.configurable import Configurable
35 from IPython.core.macro import Macro
35 from IPython.core.macro import Macro
36 from IPython.core.splitinput import split_user_input
36 from IPython.core.splitinput import split_user_input
37 from IPython.core import page
37 from IPython.core import page
38
38
39 from IPython.utils.traitlets import List, Int, Any, Str, CBool, Bool, Instance
39 from IPython.utils.traitlets import List, Int, Any, Unicode, CBool, Bool, Instance
40 from IPython.utils.text import make_quoted_expr
40 from IPython.utils.text import make_quoted_expr
41 from IPython.utils.autoattr import auto_attr
41 from IPython.utils.autoattr import auto_attr
42
42
43 #-----------------------------------------------------------------------------
43 #-----------------------------------------------------------------------------
44 # Global utilities, errors and constants
44 # Global utilities, errors and constants
45 #-----------------------------------------------------------------------------
45 #-----------------------------------------------------------------------------
46
46
47 # Warning, these cannot be changed unless various regular expressions
47 # Warning, these cannot be changed unless various regular expressions
48 # are updated in a number of places. Not great, but at least we told you.
48 # are updated in a number of places. Not great, but at least we told you.
49 ESC_SHELL = '!'
49 ESC_SHELL = '!'
50 ESC_SH_CAP = '!!'
50 ESC_SH_CAP = '!!'
51 ESC_HELP = '?'
51 ESC_HELP = '?'
52 ESC_MAGIC = '%'
52 ESC_MAGIC = '%'
53 ESC_QUOTE = ','
53 ESC_QUOTE = ','
54 ESC_QUOTE2 = ';'
54 ESC_QUOTE2 = ';'
55 ESC_PAREN = '/'
55 ESC_PAREN = '/'
56
56
57
57
58 class PrefilterError(Exception):
58 class PrefilterError(Exception):
59 pass
59 pass
60
60
61
61
62 # RegExp to identify potential function names
62 # RegExp to identify potential function names
63 re_fun_name = re.compile(r'[a-zA-Z_]([a-zA-Z0-9_.]*) *$')
63 re_fun_name = re.compile(r'[a-zA-Z_]([a-zA-Z0-9_.]*) *$')
64
64
65 # RegExp to exclude strings with this start from autocalling. In
65 # RegExp to exclude strings with this start from autocalling. In
66 # particular, all binary operators should be excluded, so that if foo is
66 # particular, all binary operators should be excluded, so that if foo is
67 # callable, foo OP bar doesn't become foo(OP bar), which is invalid. The
67 # callable, foo OP bar doesn't become foo(OP bar), which is invalid. The
68 # characters '!=()' don't need to be checked for, as the checkPythonChars
68 # characters '!=()' don't need to be checked for, as the checkPythonChars
69 # routine explicitely does so, to catch direct calls and rebindings of
69 # routine explicitely does so, to catch direct calls and rebindings of
70 # existing names.
70 # existing names.
71
71
72 # Warning: the '-' HAS TO BE AT THE END of the first group, otherwise
72 # Warning: the '-' HAS TO BE AT THE END of the first group, otherwise
73 # it affects the rest of the group in square brackets.
73 # it affects the rest of the group in square brackets.
74 re_exclude_auto = re.compile(r'^[,&^\|\*/\+-]'
74 re_exclude_auto = re.compile(r'^[,&^\|\*/\+-]'
75 r'|^is |^not |^in |^and |^or ')
75 r'|^is |^not |^in |^and |^or ')
76
76
77 # try to catch also methods for stuff in lists/tuples/dicts: off
77 # try to catch also methods for stuff in lists/tuples/dicts: off
78 # (experimental). For this to work, the line_split regexp would need
78 # (experimental). For this to work, the line_split regexp would need
79 # to be modified so it wouldn't break things at '['. That line is
79 # to be modified so it wouldn't break things at '['. That line is
80 # nasty enough that I shouldn't change it until I can test it _well_.
80 # nasty enough that I shouldn't change it until I can test it _well_.
81 #self.re_fun_name = re.compile (r'[a-zA-Z_]([a-zA-Z0-9_.\[\]]*) ?$')
81 #self.re_fun_name = re.compile (r'[a-zA-Z_]([a-zA-Z0-9_.\[\]]*) ?$')
82
82
83
83
84 # Handler Check Utilities
84 # Handler Check Utilities
85 def is_shadowed(identifier, ip):
85 def is_shadowed(identifier, ip):
86 """Is the given identifier defined in one of the namespaces which shadow
86 """Is the given identifier defined in one of the namespaces which shadow
87 the alias and magic namespaces? Note that an identifier is different
87 the alias and magic namespaces? Note that an identifier is different
88 than ifun, because it can not contain a '.' character."""
88 than ifun, because it can not contain a '.' character."""
89 # This is much safer than calling ofind, which can change state
89 # This is much safer than calling ofind, which can change state
90 return (identifier in ip.user_ns \
90 return (identifier in ip.user_ns \
91 or identifier in ip.internal_ns \
91 or identifier in ip.internal_ns \
92 or identifier in ip.ns_table['builtin'])
92 or identifier in ip.ns_table['builtin'])
93
93
94
94
95 #-----------------------------------------------------------------------------
95 #-----------------------------------------------------------------------------
96 # The LineInfo class used throughout
96 # The LineInfo class used throughout
97 #-----------------------------------------------------------------------------
97 #-----------------------------------------------------------------------------
98
98
99
99
100 class LineInfo(object):
100 class LineInfo(object):
101 """A single line of input and associated info.
101 """A single line of input and associated info.
102
102
103 Includes the following as properties:
103 Includes the following as properties:
104
104
105 line
105 line
106 The original, raw line
106 The original, raw line
107
107
108 continue_prompt
108 continue_prompt
109 Is this line a continuation in a sequence of multiline input?
109 Is this line a continuation in a sequence of multiline input?
110
110
111 pre
111 pre
112 The initial esc character or whitespace.
112 The initial esc character or whitespace.
113
113
114 pre_char
114 pre_char
115 The escape character(s) in pre or the empty string if there isn't one.
115 The escape character(s) in pre or the empty string if there isn't one.
116 Note that '!!' is a possible value for pre_char. Otherwise it will
116 Note that '!!' is a possible value for pre_char. Otherwise it will
117 always be a single character.
117 always be a single character.
118
118
119 pre_whitespace
119 pre_whitespace
120 The leading whitespace from pre if it exists. If there is a pre_char,
120 The leading whitespace from pre if it exists. If there is a pre_char,
121 this is just ''.
121 this is just ''.
122
122
123 ifun
123 ifun
124 The 'function part', which is basically the maximal initial sequence
124 The 'function part', which is basically the maximal initial sequence
125 of valid python identifiers and the '.' character. This is what is
125 of valid python identifiers and the '.' character. This is what is
126 checked for alias and magic transformations, used for auto-calling,
126 checked for alias and magic transformations, used for auto-calling,
127 etc.
127 etc.
128
128
129 the_rest
129 the_rest
130 Everything else on the line.
130 Everything else on the line.
131 """
131 """
132 def __init__(self, line, continue_prompt):
132 def __init__(self, line, continue_prompt):
133 self.line = line
133 self.line = line
134 self.continue_prompt = continue_prompt
134 self.continue_prompt = continue_prompt
135 self.pre, self.ifun, self.the_rest = split_user_input(line)
135 self.pre, self.ifun, self.the_rest = split_user_input(line)
136
136
137 self.pre_char = self.pre.strip()
137 self.pre_char = self.pre.strip()
138 if self.pre_char:
138 if self.pre_char:
139 self.pre_whitespace = '' # No whitespace allowd before esc chars
139 self.pre_whitespace = '' # No whitespace allowd before esc chars
140 else:
140 else:
141 self.pre_whitespace = self.pre
141 self.pre_whitespace = self.pre
142
142
143 self._oinfo = None
143 self._oinfo = None
144
144
145 def ofind(self, ip):
145 def ofind(self, ip):
146 """Do a full, attribute-walking lookup of the ifun in the various
146 """Do a full, attribute-walking lookup of the ifun in the various
147 namespaces for the given IPython InteractiveShell instance.
147 namespaces for the given IPython InteractiveShell instance.
148
148
149 Return a dict with keys: found,obj,ospace,ismagic
149 Return a dict with keys: found,obj,ospace,ismagic
150
150
151 Note: can cause state changes because of calling getattr, but should
151 Note: can cause state changes because of calling getattr, but should
152 only be run if autocall is on and if the line hasn't matched any
152 only be run if autocall is on and if the line hasn't matched any
153 other, less dangerous handlers.
153 other, less dangerous handlers.
154
154
155 Does cache the results of the call, so can be called multiple times
155 Does cache the results of the call, so can be called multiple times
156 without worrying about *further* damaging state.
156 without worrying about *further* damaging state.
157 """
157 """
158 if not self._oinfo:
158 if not self._oinfo:
159 # ip.shell._ofind is actually on the Magic class!
159 # ip.shell._ofind is actually on the Magic class!
160 self._oinfo = ip.shell._ofind(self.ifun)
160 self._oinfo = ip.shell._ofind(self.ifun)
161 return self._oinfo
161 return self._oinfo
162
162
163 def __str__(self):
163 def __str__(self):
164 return "Lineinfo [%s|%s|%s]" %(self.pre, self.ifun, self.the_rest)
164 return "Lineinfo [%s|%s|%s]" %(self.pre, self.ifun, self.the_rest)
165
165
166
166
167 #-----------------------------------------------------------------------------
167 #-----------------------------------------------------------------------------
168 # Main Prefilter manager
168 # Main Prefilter manager
169 #-----------------------------------------------------------------------------
169 #-----------------------------------------------------------------------------
170
170
171
171
172 class PrefilterManager(Configurable):
172 class PrefilterManager(Configurable):
173 """Main prefilter component.
173 """Main prefilter component.
174
174
175 The IPython prefilter is run on all user input before it is run. The
175 The IPython prefilter is run on all user input before it is run. The
176 prefilter consumes lines of input and produces transformed lines of
176 prefilter consumes lines of input and produces transformed lines of
177 input.
177 input.
178
178
179 The iplementation consists of two phases:
179 The iplementation consists of two phases:
180
180
181 1. Transformers
181 1. Transformers
182 2. Checkers and handlers
182 2. Checkers and handlers
183
183
184 Over time, we plan on deprecating the checkers and handlers and doing
184 Over time, we plan on deprecating the checkers and handlers and doing
185 everything in the transformers.
185 everything in the transformers.
186
186
187 The transformers are instances of :class:`PrefilterTransformer` and have
187 The transformers are instances of :class:`PrefilterTransformer` and have
188 a single method :meth:`transform` that takes a line and returns a
188 a single method :meth:`transform` that takes a line and returns a
189 transformed line. The transformation can be accomplished using any
189 transformed line. The transformation can be accomplished using any
190 tool, but our current ones use regular expressions for speed. We also
190 tool, but our current ones use regular expressions for speed. We also
191 ship :mod:`pyparsing` in :mod:`IPython.external` for use in transformers.
191 ship :mod:`pyparsing` in :mod:`IPython.external` for use in transformers.
192
192
193 After all the transformers have been run, the line is fed to the checkers,
193 After all the transformers have been run, the line is fed to the checkers,
194 which are instances of :class:`PrefilterChecker`. The line is passed to
194 which are instances of :class:`PrefilterChecker`. The line is passed to
195 the :meth:`check` method, which either returns `None` or a
195 the :meth:`check` method, which either returns `None` or a
196 :class:`PrefilterHandler` instance. If `None` is returned, the other
196 :class:`PrefilterHandler` instance. If `None` is returned, the other
197 checkers are tried. If an :class:`PrefilterHandler` instance is returned,
197 checkers are tried. If an :class:`PrefilterHandler` instance is returned,
198 the line is passed to the :meth:`handle` method of the returned
198 the line is passed to the :meth:`handle` method of the returned
199 handler and no further checkers are tried.
199 handler and no further checkers are tried.
200
200
201 Both transformers and checkers have a `priority` attribute, that determines
201 Both transformers and checkers have a `priority` attribute, that determines
202 the order in which they are called. Smaller priorities are tried first.
202 the order in which they are called. Smaller priorities are tried first.
203
203
204 Both transformers and checkers also have `enabled` attribute, which is
204 Both transformers and checkers also have `enabled` attribute, which is
205 a boolean that determines if the instance is used.
205 a boolean that determines if the instance is used.
206
206
207 Users or developers can change the priority or enabled attribute of
207 Users or developers can change the priority or enabled attribute of
208 transformers or checkers, but they must call the :meth:`sort_checkers`
208 transformers or checkers, but they must call the :meth:`sort_checkers`
209 or :meth:`sort_transformers` method after changing the priority.
209 or :meth:`sort_transformers` method after changing the priority.
210 """
210 """
211
211
212 multi_line_specials = CBool(True, config=True)
212 multi_line_specials = CBool(True, config=True)
213 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
213 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
214
214
215 def __init__(self, shell=None, config=None):
215 def __init__(self, shell=None, config=None):
216 super(PrefilterManager, self).__init__(shell=shell, config=config)
216 super(PrefilterManager, self).__init__(shell=shell, config=config)
217 self.shell = shell
217 self.shell = shell
218 self.init_transformers()
218 self.init_transformers()
219 self.init_handlers()
219 self.init_handlers()
220 self.init_checkers()
220 self.init_checkers()
221
221
222 #-------------------------------------------------------------------------
222 #-------------------------------------------------------------------------
223 # API for managing transformers
223 # API for managing transformers
224 #-------------------------------------------------------------------------
224 #-------------------------------------------------------------------------
225
225
226 def init_transformers(self):
226 def init_transformers(self):
227 """Create the default transformers."""
227 """Create the default transformers."""
228 self._transformers = []
228 self._transformers = []
229 for transformer_cls in _default_transformers:
229 for transformer_cls in _default_transformers:
230 transformer_cls(
230 transformer_cls(
231 shell=self.shell, prefilter_manager=self, config=self.config
231 shell=self.shell, prefilter_manager=self, config=self.config
232 )
232 )
233
233
234 def sort_transformers(self):
234 def sort_transformers(self):
235 """Sort the transformers by priority.
235 """Sort the transformers by priority.
236
236
237 This must be called after the priority of a transformer is changed.
237 This must be called after the priority of a transformer is changed.
238 The :meth:`register_transformer` method calls this automatically.
238 The :meth:`register_transformer` method calls this automatically.
239 """
239 """
240 self._transformers.sort(key=lambda x: x.priority)
240 self._transformers.sort(key=lambda x: x.priority)
241
241
242 @property
242 @property
243 def transformers(self):
243 def transformers(self):
244 """Return a list of checkers, sorted by priority."""
244 """Return a list of checkers, sorted by priority."""
245 return self._transformers
245 return self._transformers
246
246
247 def register_transformer(self, transformer):
247 def register_transformer(self, transformer):
248 """Register a transformer instance."""
248 """Register a transformer instance."""
249 if transformer not in self._transformers:
249 if transformer not in self._transformers:
250 self._transformers.append(transformer)
250 self._transformers.append(transformer)
251 self.sort_transformers()
251 self.sort_transformers()
252
252
253 def unregister_transformer(self, transformer):
253 def unregister_transformer(self, transformer):
254 """Unregister a transformer instance."""
254 """Unregister a transformer instance."""
255 if transformer in self._transformers:
255 if transformer in self._transformers:
256 self._transformers.remove(transformer)
256 self._transformers.remove(transformer)
257
257
258 #-------------------------------------------------------------------------
258 #-------------------------------------------------------------------------
259 # API for managing checkers
259 # API for managing checkers
260 #-------------------------------------------------------------------------
260 #-------------------------------------------------------------------------
261
261
262 def init_checkers(self):
262 def init_checkers(self):
263 """Create the default checkers."""
263 """Create the default checkers."""
264 self._checkers = []
264 self._checkers = []
265 for checker in _default_checkers:
265 for checker in _default_checkers:
266 checker(
266 checker(
267 shell=self.shell, prefilter_manager=self, config=self.config
267 shell=self.shell, prefilter_manager=self, config=self.config
268 )
268 )
269
269
270 def sort_checkers(self):
270 def sort_checkers(self):
271 """Sort the checkers by priority.
271 """Sort the checkers by priority.
272
272
273 This must be called after the priority of a checker is changed.
273 This must be called after the priority of a checker is changed.
274 The :meth:`register_checker` method calls this automatically.
274 The :meth:`register_checker` method calls this automatically.
275 """
275 """
276 self._checkers.sort(key=lambda x: x.priority)
276 self._checkers.sort(key=lambda x: x.priority)
277
277
278 @property
278 @property
279 def checkers(self):
279 def checkers(self):
280 """Return a list of checkers, sorted by priority."""
280 """Return a list of checkers, sorted by priority."""
281 return self._checkers
281 return self._checkers
282
282
283 def register_checker(self, checker):
283 def register_checker(self, checker):
284 """Register a checker instance."""
284 """Register a checker instance."""
285 if checker not in self._checkers:
285 if checker not in self._checkers:
286 self._checkers.append(checker)
286 self._checkers.append(checker)
287 self.sort_checkers()
287 self.sort_checkers()
288
288
289 def unregister_checker(self, checker):
289 def unregister_checker(self, checker):
290 """Unregister a checker instance."""
290 """Unregister a checker instance."""
291 if checker in self._checkers:
291 if checker in self._checkers:
292 self._checkers.remove(checker)
292 self._checkers.remove(checker)
293
293
294 #-------------------------------------------------------------------------
294 #-------------------------------------------------------------------------
295 # API for managing checkers
295 # API for managing checkers
296 #-------------------------------------------------------------------------
296 #-------------------------------------------------------------------------
297
297
298 def init_handlers(self):
298 def init_handlers(self):
299 """Create the default handlers."""
299 """Create the default handlers."""
300 self._handlers = {}
300 self._handlers = {}
301 self._esc_handlers = {}
301 self._esc_handlers = {}
302 for handler in _default_handlers:
302 for handler in _default_handlers:
303 handler(
303 handler(
304 shell=self.shell, prefilter_manager=self, config=self.config
304 shell=self.shell, prefilter_manager=self, config=self.config
305 )
305 )
306
306
307 @property
307 @property
308 def handlers(self):
308 def handlers(self):
309 """Return a dict of all the handlers."""
309 """Return a dict of all the handlers."""
310 return self._handlers
310 return self._handlers
311
311
312 def register_handler(self, name, handler, esc_strings):
312 def register_handler(self, name, handler, esc_strings):
313 """Register a handler instance by name with esc_strings."""
313 """Register a handler instance by name with esc_strings."""
314 self._handlers[name] = handler
314 self._handlers[name] = handler
315 for esc_str in esc_strings:
315 for esc_str in esc_strings:
316 self._esc_handlers[esc_str] = handler
316 self._esc_handlers[esc_str] = handler
317
317
318 def unregister_handler(self, name, handler, esc_strings):
318 def unregister_handler(self, name, handler, esc_strings):
319 """Unregister a handler instance by name with esc_strings."""
319 """Unregister a handler instance by name with esc_strings."""
320 try:
320 try:
321 del self._handlers[name]
321 del self._handlers[name]
322 except KeyError:
322 except KeyError:
323 pass
323 pass
324 for esc_str in esc_strings:
324 for esc_str in esc_strings:
325 h = self._esc_handlers.get(esc_str)
325 h = self._esc_handlers.get(esc_str)
326 if h is handler:
326 if h is handler:
327 del self._esc_handlers[esc_str]
327 del self._esc_handlers[esc_str]
328
328
329 def get_handler_by_name(self, name):
329 def get_handler_by_name(self, name):
330 """Get a handler by its name."""
330 """Get a handler by its name."""
331 return self._handlers.get(name)
331 return self._handlers.get(name)
332
332
333 def get_handler_by_esc(self, esc_str):
333 def get_handler_by_esc(self, esc_str):
334 """Get a handler by its escape string."""
334 """Get a handler by its escape string."""
335 return self._esc_handlers.get(esc_str)
335 return self._esc_handlers.get(esc_str)
336
336
337 #-------------------------------------------------------------------------
337 #-------------------------------------------------------------------------
338 # Main prefiltering API
338 # Main prefiltering API
339 #-------------------------------------------------------------------------
339 #-------------------------------------------------------------------------
340
340
341 def prefilter_line_info(self, line_info):
341 def prefilter_line_info(self, line_info):
342 """Prefilter a line that has been converted to a LineInfo object.
342 """Prefilter a line that has been converted to a LineInfo object.
343
343
344 This implements the checker/handler part of the prefilter pipe.
344 This implements the checker/handler part of the prefilter pipe.
345 """
345 """
346 # print "prefilter_line_info: ", line_info
346 # print "prefilter_line_info: ", line_info
347 handler = self.find_handler(line_info)
347 handler = self.find_handler(line_info)
348 return handler.handle(line_info)
348 return handler.handle(line_info)
349
349
350 def find_handler(self, line_info):
350 def find_handler(self, line_info):
351 """Find a handler for the line_info by trying checkers."""
351 """Find a handler for the line_info by trying checkers."""
352 for checker in self.checkers:
352 for checker in self.checkers:
353 if checker.enabled:
353 if checker.enabled:
354 handler = checker.check(line_info)
354 handler = checker.check(line_info)
355 if handler:
355 if handler:
356 return handler
356 return handler
357 return self.get_handler_by_name('normal')
357 return self.get_handler_by_name('normal')
358
358
359 def transform_line(self, line, continue_prompt):
359 def transform_line(self, line, continue_prompt):
360 """Calls the enabled transformers in order of increasing priority."""
360 """Calls the enabled transformers in order of increasing priority."""
361 for transformer in self.transformers:
361 for transformer in self.transformers:
362 if transformer.enabled:
362 if transformer.enabled:
363 line = transformer.transform(line, continue_prompt)
363 line = transformer.transform(line, continue_prompt)
364 return line
364 return line
365
365
366 def prefilter_line(self, line, continue_prompt=False):
366 def prefilter_line(self, line, continue_prompt=False):
367 """Prefilter a single input line as text.
367 """Prefilter a single input line as text.
368
368
369 This method prefilters a single line of text by calling the
369 This method prefilters a single line of text by calling the
370 transformers and then the checkers/handlers.
370 transformers and then the checkers/handlers.
371 """
371 """
372
372
373 # print "prefilter_line: ", line, continue_prompt
373 # print "prefilter_line: ", line, continue_prompt
374 # All handlers *must* return a value, even if it's blank ('').
374 # All handlers *must* return a value, even if it's blank ('').
375
375
376 # save the line away in case we crash, so the post-mortem handler can
376 # save the line away in case we crash, so the post-mortem handler can
377 # record it
377 # record it
378 self.shell._last_input_line = line
378 self.shell._last_input_line = line
379
379
380 if not line:
380 if not line:
381 # Return immediately on purely empty lines, so that if the user
381 # Return immediately on purely empty lines, so that if the user
382 # previously typed some whitespace that started a continuation
382 # previously typed some whitespace that started a continuation
383 # prompt, he can break out of that loop with just an empty line.
383 # prompt, he can break out of that loop with just an empty line.
384 # This is how the default python prompt works.
384 # This is how the default python prompt works.
385 return ''
385 return ''
386
386
387 # At this point, we invoke our transformers.
387 # At this point, we invoke our transformers.
388 if not continue_prompt or (continue_prompt and self.multi_line_specials):
388 if not continue_prompt or (continue_prompt and self.multi_line_specials):
389 line = self.transform_line(line, continue_prompt)
389 line = self.transform_line(line, continue_prompt)
390
390
391 # Now we compute line_info for the checkers and handlers
391 # Now we compute line_info for the checkers and handlers
392 line_info = LineInfo(line, continue_prompt)
392 line_info = LineInfo(line, continue_prompt)
393
393
394 # the input history needs to track even empty lines
394 # the input history needs to track even empty lines
395 stripped = line.strip()
395 stripped = line.strip()
396
396
397 normal_handler = self.get_handler_by_name('normal')
397 normal_handler = self.get_handler_by_name('normal')
398 if not stripped:
398 if not stripped:
399 if not continue_prompt:
399 if not continue_prompt:
400 self.shell.displayhook.prompt_count -= 1
400 self.shell.displayhook.prompt_count -= 1
401
401
402 return normal_handler.handle(line_info)
402 return normal_handler.handle(line_info)
403
403
404 # special handlers are only allowed for single line statements
404 # special handlers are only allowed for single line statements
405 if continue_prompt and not self.multi_line_specials:
405 if continue_prompt and not self.multi_line_specials:
406 return normal_handler.handle(line_info)
406 return normal_handler.handle(line_info)
407
407
408 prefiltered = self.prefilter_line_info(line_info)
408 prefiltered = self.prefilter_line_info(line_info)
409 # print "prefiltered line: %r" % prefiltered
409 # print "prefiltered line: %r" % prefiltered
410 return prefiltered
410 return prefiltered
411
411
412 def prefilter_lines(self, lines, continue_prompt=False):
412 def prefilter_lines(self, lines, continue_prompt=False):
413 """Prefilter multiple input lines of text.
413 """Prefilter multiple input lines of text.
414
414
415 This is the main entry point for prefiltering multiple lines of
415 This is the main entry point for prefiltering multiple lines of
416 input. This simply calls :meth:`prefilter_line` for each line of
416 input. This simply calls :meth:`prefilter_line` for each line of
417 input.
417 input.
418
418
419 This covers cases where there are multiple lines in the user entry,
419 This covers cases where there are multiple lines in the user entry,
420 which is the case when the user goes back to a multiline history
420 which is the case when the user goes back to a multiline history
421 entry and presses enter.
421 entry and presses enter.
422 """
422 """
423 llines = lines.rstrip('\n').split('\n')
423 llines = lines.rstrip('\n').split('\n')
424 # We can get multiple lines in one shot, where multiline input 'blends'
424 # We can get multiple lines in one shot, where multiline input 'blends'
425 # into one line, in cases like recalling from the readline history
425 # into one line, in cases like recalling from the readline history
426 # buffer. We need to make sure that in such cases, we correctly
426 # buffer. We need to make sure that in such cases, we correctly
427 # communicate downstream which line is first and which are continuation
427 # communicate downstream which line is first and which are continuation
428 # ones.
428 # ones.
429 if len(llines) > 1:
429 if len(llines) > 1:
430 out = '\n'.join([self.prefilter_line(line, lnum>0)
430 out = '\n'.join([self.prefilter_line(line, lnum>0)
431 for lnum, line in enumerate(llines) ])
431 for lnum, line in enumerate(llines) ])
432 else:
432 else:
433 out = self.prefilter_line(llines[0], continue_prompt)
433 out = self.prefilter_line(llines[0], continue_prompt)
434
434
435 return out
435 return out
436
436
437 #-----------------------------------------------------------------------------
437 #-----------------------------------------------------------------------------
438 # Prefilter transformers
438 # Prefilter transformers
439 #-----------------------------------------------------------------------------
439 #-----------------------------------------------------------------------------
440
440
441
441
442 class PrefilterTransformer(Configurable):
442 class PrefilterTransformer(Configurable):
443 """Transform a line of user input."""
443 """Transform a line of user input."""
444
444
445 priority = Int(100, config=True)
445 priority = Int(100, config=True)
446 # Transformers don't currently use shell or prefilter_manager, but as we
446 # Transformers don't currently use shell or prefilter_manager, but as we
447 # move away from checkers and handlers, they will need them.
447 # move away from checkers and handlers, they will need them.
448 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
448 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
449 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
449 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
450 enabled = Bool(True, config=True)
450 enabled = Bool(True, config=True)
451
451
452 def __init__(self, shell=None, prefilter_manager=None, config=None):
452 def __init__(self, shell=None, prefilter_manager=None, config=None):
453 super(PrefilterTransformer, self).__init__(
453 super(PrefilterTransformer, self).__init__(
454 shell=shell, prefilter_manager=prefilter_manager, config=config
454 shell=shell, prefilter_manager=prefilter_manager, config=config
455 )
455 )
456 self.prefilter_manager.register_transformer(self)
456 self.prefilter_manager.register_transformer(self)
457
457
458 def transform(self, line, continue_prompt):
458 def transform(self, line, continue_prompt):
459 """Transform a line, returning the new one."""
459 """Transform a line, returning the new one."""
460 return None
460 return None
461
461
462 def __repr__(self):
462 def __repr__(self):
463 return "<%s(priority=%r, enabled=%r)>" % (
463 return "<%s(priority=%r, enabled=%r)>" % (
464 self.__class__.__name__, self.priority, self.enabled)
464 self.__class__.__name__, self.priority, self.enabled)
465
465
466
466
467 _assign_system_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))'
467 _assign_system_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))'
468 r'\s*=\s*!(?P<cmd>.*)')
468 r'\s*=\s*!(?P<cmd>.*)')
469
469
470
470
471 class AssignSystemTransformer(PrefilterTransformer):
471 class AssignSystemTransformer(PrefilterTransformer):
472 """Handle the `files = !ls` syntax."""
472 """Handle the `files = !ls` syntax."""
473
473
474 priority = Int(100, config=True)
474 priority = Int(100, config=True)
475
475
476 def transform(self, line, continue_prompt):
476 def transform(self, line, continue_prompt):
477 m = _assign_system_re.match(line)
477 m = _assign_system_re.match(line)
478 if m is not None:
478 if m is not None:
479 cmd = m.group('cmd')
479 cmd = m.group('cmd')
480 lhs = m.group('lhs')
480 lhs = m.group('lhs')
481 expr = make_quoted_expr("sc =%s" % cmd)
481 expr = make_quoted_expr("sc =%s" % cmd)
482 new_line = '%s = get_ipython().magic(%s)' % (lhs, expr)
482 new_line = '%s = get_ipython().magic(%s)' % (lhs, expr)
483 return new_line
483 return new_line
484 return line
484 return line
485
485
486
486
487 _assign_magic_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))'
487 _assign_magic_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))'
488 r'\s*=\s*%(?P<cmd>.*)')
488 r'\s*=\s*%(?P<cmd>.*)')
489
489
490 class AssignMagicTransformer(PrefilterTransformer):
490 class AssignMagicTransformer(PrefilterTransformer):
491 """Handle the `a = %who` syntax."""
491 """Handle the `a = %who` syntax."""
492
492
493 priority = Int(200, config=True)
493 priority = Int(200, config=True)
494
494
495 def transform(self, line, continue_prompt):
495 def transform(self, line, continue_prompt):
496 m = _assign_magic_re.match(line)
496 m = _assign_magic_re.match(line)
497 if m is not None:
497 if m is not None:
498 cmd = m.group('cmd')
498 cmd = m.group('cmd')
499 lhs = m.group('lhs')
499 lhs = m.group('lhs')
500 expr = make_quoted_expr(cmd)
500 expr = make_quoted_expr(cmd)
501 new_line = '%s = get_ipython().magic(%s)' % (lhs, expr)
501 new_line = '%s = get_ipython().magic(%s)' % (lhs, expr)
502 return new_line
502 return new_line
503 return line
503 return line
504
504
505
505
506 _classic_prompt_re = re.compile(r'(^[ \t]*>>> |^[ \t]*\.\.\. )')
506 _classic_prompt_re = re.compile(r'(^[ \t]*>>> |^[ \t]*\.\.\. )')
507
507
508 class PyPromptTransformer(PrefilterTransformer):
508 class PyPromptTransformer(PrefilterTransformer):
509 """Handle inputs that start with '>>> ' syntax."""
509 """Handle inputs that start with '>>> ' syntax."""
510
510
511 priority = Int(50, config=True)
511 priority = Int(50, config=True)
512
512
513 def transform(self, line, continue_prompt):
513 def transform(self, line, continue_prompt):
514
514
515 if not line or line.isspace() or line.strip() == '...':
515 if not line or line.isspace() or line.strip() == '...':
516 # This allows us to recognize multiple input prompts separated by
516 # This allows us to recognize multiple input prompts separated by
517 # blank lines and pasted in a single chunk, very common when
517 # blank lines and pasted in a single chunk, very common when
518 # pasting doctests or long tutorial passages.
518 # pasting doctests or long tutorial passages.
519 return ''
519 return ''
520 m = _classic_prompt_re.match(line)
520 m = _classic_prompt_re.match(line)
521 if m:
521 if m:
522 return line[len(m.group(0)):]
522 return line[len(m.group(0)):]
523 else:
523 else:
524 return line
524 return line
525
525
526
526
527 _ipy_prompt_re = re.compile(r'(^[ \t]*In \[\d+\]: |^[ \t]*\ \ \ \.\.\.+: )')
527 _ipy_prompt_re = re.compile(r'(^[ \t]*In \[\d+\]: |^[ \t]*\ \ \ \.\.\.+: )')
528
528
529 class IPyPromptTransformer(PrefilterTransformer):
529 class IPyPromptTransformer(PrefilterTransformer):
530 """Handle inputs that start classic IPython prompt syntax."""
530 """Handle inputs that start classic IPython prompt syntax."""
531
531
532 priority = Int(50, config=True)
532 priority = Int(50, config=True)
533
533
534 def transform(self, line, continue_prompt):
534 def transform(self, line, continue_prompt):
535
535
536 if not line or line.isspace() or line.strip() == '...':
536 if not line or line.isspace() or line.strip() == '...':
537 # This allows us to recognize multiple input prompts separated by
537 # This allows us to recognize multiple input prompts separated by
538 # blank lines and pasted in a single chunk, very common when
538 # blank lines and pasted in a single chunk, very common when
539 # pasting doctests or long tutorial passages.
539 # pasting doctests or long tutorial passages.
540 return ''
540 return ''
541 m = _ipy_prompt_re.match(line)
541 m = _ipy_prompt_re.match(line)
542 if m:
542 if m:
543 return line[len(m.group(0)):]
543 return line[len(m.group(0)):]
544 else:
544 else:
545 return line
545 return line
546
546
547 #-----------------------------------------------------------------------------
547 #-----------------------------------------------------------------------------
548 # Prefilter checkers
548 # Prefilter checkers
549 #-----------------------------------------------------------------------------
549 #-----------------------------------------------------------------------------
550
550
551
551
552 class PrefilterChecker(Configurable):
552 class PrefilterChecker(Configurable):
553 """Inspect an input line and return a handler for that line."""
553 """Inspect an input line and return a handler for that line."""
554
554
555 priority = Int(100, config=True)
555 priority = Int(100, config=True)
556 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
556 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
557 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
557 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
558 enabled = Bool(True, config=True)
558 enabled = Bool(True, config=True)
559
559
560 def __init__(self, shell=None, prefilter_manager=None, config=None):
560 def __init__(self, shell=None, prefilter_manager=None, config=None):
561 super(PrefilterChecker, self).__init__(
561 super(PrefilterChecker, self).__init__(
562 shell=shell, prefilter_manager=prefilter_manager, config=config
562 shell=shell, prefilter_manager=prefilter_manager, config=config
563 )
563 )
564 self.prefilter_manager.register_checker(self)
564 self.prefilter_manager.register_checker(self)
565
565
566 def check(self, line_info):
566 def check(self, line_info):
567 """Inspect line_info and return a handler instance or None."""
567 """Inspect line_info and return a handler instance or None."""
568 return None
568 return None
569
569
570 def __repr__(self):
570 def __repr__(self):
571 return "<%s(priority=%r, enabled=%r)>" % (
571 return "<%s(priority=%r, enabled=%r)>" % (
572 self.__class__.__name__, self.priority, self.enabled)
572 self.__class__.__name__, self.priority, self.enabled)
573
573
574
574
575 class EmacsChecker(PrefilterChecker):
575 class EmacsChecker(PrefilterChecker):
576
576
577 priority = Int(100, config=True)
577 priority = Int(100, config=True)
578 enabled = Bool(False, config=True)
578 enabled = Bool(False, config=True)
579
579
580 def check(self, line_info):
580 def check(self, line_info):
581 "Emacs ipython-mode tags certain input lines."
581 "Emacs ipython-mode tags certain input lines."
582 if line_info.line.endswith('# PYTHON-MODE'):
582 if line_info.line.endswith('# PYTHON-MODE'):
583 return self.prefilter_manager.get_handler_by_name('emacs')
583 return self.prefilter_manager.get_handler_by_name('emacs')
584 else:
584 else:
585 return None
585 return None
586
586
587
587
588 class ShellEscapeChecker(PrefilterChecker):
588 class ShellEscapeChecker(PrefilterChecker):
589
589
590 priority = Int(200, config=True)
590 priority = Int(200, config=True)
591
591
592 def check(self, line_info):
592 def check(self, line_info):
593 if line_info.line.lstrip().startswith(ESC_SHELL):
593 if line_info.line.lstrip().startswith(ESC_SHELL):
594 return self.prefilter_manager.get_handler_by_name('shell')
594 return self.prefilter_manager.get_handler_by_name('shell')
595
595
596
596
597 class MacroChecker(PrefilterChecker):
597 class MacroChecker(PrefilterChecker):
598
598
599 priority = Int(250, config=True)
599 priority = Int(250, config=True)
600
600
601 def check(self, line_info):
601 def check(self, line_info):
602 obj = self.shell.user_ns.get(line_info.ifun)
602 obj = self.shell.user_ns.get(line_info.ifun)
603 if isinstance(obj, Macro):
603 if isinstance(obj, Macro):
604 return self.prefilter_manager.get_handler_by_name('macro')
604 return self.prefilter_manager.get_handler_by_name('macro')
605 else:
605 else:
606 return None
606 return None
607
607
608
608
609 class IPyAutocallChecker(PrefilterChecker):
609 class IPyAutocallChecker(PrefilterChecker):
610
610
611 priority = Int(300, config=True)
611 priority = Int(300, config=True)
612
612
613 def check(self, line_info):
613 def check(self, line_info):
614 "Instances of IPyAutocall in user_ns get autocalled immediately"
614 "Instances of IPyAutocall in user_ns get autocalled immediately"
615 obj = self.shell.user_ns.get(line_info.ifun, None)
615 obj = self.shell.user_ns.get(line_info.ifun, None)
616 if isinstance(obj, IPyAutocall):
616 if isinstance(obj, IPyAutocall):
617 obj.set_ip(self.shell)
617 obj.set_ip(self.shell)
618 return self.prefilter_manager.get_handler_by_name('auto')
618 return self.prefilter_manager.get_handler_by_name('auto')
619 else:
619 else:
620 return None
620 return None
621
621
622
622
623 class MultiLineMagicChecker(PrefilterChecker):
623 class MultiLineMagicChecker(PrefilterChecker):
624
624
625 priority = Int(400, config=True)
625 priority = Int(400, config=True)
626
626
627 def check(self, line_info):
627 def check(self, line_info):
628 "Allow ! and !! in multi-line statements if multi_line_specials is on"
628 "Allow ! and !! in multi-line statements if multi_line_specials is on"
629 # Note that this one of the only places we check the first character of
629 # Note that this one of the only places we check the first character of
630 # ifun and *not* the pre_char. Also note that the below test matches
630 # ifun and *not* the pre_char. Also note that the below test matches
631 # both ! and !!.
631 # both ! and !!.
632 if line_info.continue_prompt \
632 if line_info.continue_prompt \
633 and self.prefilter_manager.multi_line_specials:
633 and self.prefilter_manager.multi_line_specials:
634 if line_info.ifun.startswith(ESC_MAGIC):
634 if line_info.ifun.startswith(ESC_MAGIC):
635 return self.prefilter_manager.get_handler_by_name('magic')
635 return self.prefilter_manager.get_handler_by_name('magic')
636 else:
636 else:
637 return None
637 return None
638
638
639
639
640 class EscCharsChecker(PrefilterChecker):
640 class EscCharsChecker(PrefilterChecker):
641
641
642 priority = Int(500, config=True)
642 priority = Int(500, config=True)
643
643
644 def check(self, line_info):
644 def check(self, line_info):
645 """Check for escape character and return either a handler to handle it,
645 """Check for escape character and return either a handler to handle it,
646 or None if there is no escape char."""
646 or None if there is no escape char."""
647 if line_info.line[-1] == ESC_HELP \
647 if line_info.line[-1] == ESC_HELP \
648 and line_info.pre_char != ESC_SHELL \
648 and line_info.pre_char != ESC_SHELL \
649 and line_info.pre_char != ESC_SH_CAP:
649 and line_info.pre_char != ESC_SH_CAP:
650 # the ? can be at the end, but *not* for either kind of shell escape,
650 # the ? can be at the end, but *not* for either kind of shell escape,
651 # because a ? can be a vaild final char in a shell cmd
651 # because a ? can be a vaild final char in a shell cmd
652 return self.prefilter_manager.get_handler_by_name('help')
652 return self.prefilter_manager.get_handler_by_name('help')
653 else:
653 else:
654 # This returns None like it should if no handler exists
654 # This returns None like it should if no handler exists
655 return self.prefilter_manager.get_handler_by_esc(line_info.pre_char)
655 return self.prefilter_manager.get_handler_by_esc(line_info.pre_char)
656
656
657
657
658 class AssignmentChecker(PrefilterChecker):
658 class AssignmentChecker(PrefilterChecker):
659
659
660 priority = Int(600, config=True)
660 priority = Int(600, config=True)
661
661
662 def check(self, line_info):
662 def check(self, line_info):
663 """Check to see if user is assigning to a var for the first time, in
663 """Check to see if user is assigning to a var for the first time, in
664 which case we want to avoid any sort of automagic / autocall games.
664 which case we want to avoid any sort of automagic / autocall games.
665
665
666 This allows users to assign to either alias or magic names true python
666 This allows users to assign to either alias or magic names true python
667 variables (the magic/alias systems always take second seat to true
667 variables (the magic/alias systems always take second seat to true
668 python code). E.g. ls='hi', or ls,that=1,2"""
668 python code). E.g. ls='hi', or ls,that=1,2"""
669 if line_info.the_rest:
669 if line_info.the_rest:
670 if line_info.the_rest[0] in '=,':
670 if line_info.the_rest[0] in '=,':
671 return self.prefilter_manager.get_handler_by_name('normal')
671 return self.prefilter_manager.get_handler_by_name('normal')
672 else:
672 else:
673 return None
673 return None
674
674
675
675
676 class AutoMagicChecker(PrefilterChecker):
676 class AutoMagicChecker(PrefilterChecker):
677
677
678 priority = Int(700, config=True)
678 priority = Int(700, config=True)
679
679
680 def check(self, line_info):
680 def check(self, line_info):
681 """If the ifun is magic, and automagic is on, run it. Note: normal,
681 """If the ifun is magic, and automagic is on, run it. Note: normal,
682 non-auto magic would already have been triggered via '%' in
682 non-auto magic would already have been triggered via '%' in
683 check_esc_chars. This just checks for automagic. Also, before
683 check_esc_chars. This just checks for automagic. Also, before
684 triggering the magic handler, make sure that there is nothing in the
684 triggering the magic handler, make sure that there is nothing in the
685 user namespace which could shadow it."""
685 user namespace which could shadow it."""
686 if not self.shell.automagic or not hasattr(self.shell,'magic_'+line_info.ifun):
686 if not self.shell.automagic or not hasattr(self.shell,'magic_'+line_info.ifun):
687 return None
687 return None
688
688
689 # We have a likely magic method. Make sure we should actually call it.
689 # We have a likely magic method. Make sure we should actually call it.
690 if line_info.continue_prompt and not self.prefilter_manager.multi_line_specials:
690 if line_info.continue_prompt and not self.prefilter_manager.multi_line_specials:
691 return None
691 return None
692
692
693 head = line_info.ifun.split('.',1)[0]
693 head = line_info.ifun.split('.',1)[0]
694 if is_shadowed(head, self.shell):
694 if is_shadowed(head, self.shell):
695 return None
695 return None
696
696
697 return self.prefilter_manager.get_handler_by_name('magic')
697 return self.prefilter_manager.get_handler_by_name('magic')
698
698
699
699
700 class AliasChecker(PrefilterChecker):
700 class AliasChecker(PrefilterChecker):
701
701
702 priority = Int(800, config=True)
702 priority = Int(800, config=True)
703
703
704 def check(self, line_info):
704 def check(self, line_info):
705 "Check if the initital identifier on the line is an alias."
705 "Check if the initital identifier on the line is an alias."
706 # Note: aliases can not contain '.'
706 # Note: aliases can not contain '.'
707 head = line_info.ifun.split('.',1)[0]
707 head = line_info.ifun.split('.',1)[0]
708 if line_info.ifun not in self.shell.alias_manager \
708 if line_info.ifun not in self.shell.alias_manager \
709 or head not in self.shell.alias_manager \
709 or head not in self.shell.alias_manager \
710 or is_shadowed(head, self.shell):
710 or is_shadowed(head, self.shell):
711 return None
711 return None
712
712
713 return self.prefilter_manager.get_handler_by_name('alias')
713 return self.prefilter_manager.get_handler_by_name('alias')
714
714
715
715
716 class PythonOpsChecker(PrefilterChecker):
716 class PythonOpsChecker(PrefilterChecker):
717
717
718 priority = Int(900, config=True)
718 priority = Int(900, config=True)
719
719
720 def check(self, line_info):
720 def check(self, line_info):
721 """If the 'rest' of the line begins with a function call or pretty much
721 """If the 'rest' of the line begins with a function call or pretty much
722 any python operator, we should simply execute the line (regardless of
722 any python operator, we should simply execute the line (regardless of
723 whether or not there's a possible autocall expansion). This avoids
723 whether or not there's a possible autocall expansion). This avoids
724 spurious (and very confusing) geattr() accesses."""
724 spurious (and very confusing) geattr() accesses."""
725 if line_info.the_rest and line_info.the_rest[0] in '!=()<>,+*/%^&|':
725 if line_info.the_rest and line_info.the_rest[0] in '!=()<>,+*/%^&|':
726 return self.prefilter_manager.get_handler_by_name('normal')
726 return self.prefilter_manager.get_handler_by_name('normal')
727 else:
727 else:
728 return None
728 return None
729
729
730
730
731 class AutocallChecker(PrefilterChecker):
731 class AutocallChecker(PrefilterChecker):
732
732
733 priority = Int(1000, config=True)
733 priority = Int(1000, config=True)
734
734
735 def check(self, line_info):
735 def check(self, line_info):
736 "Check if the initial word/function is callable and autocall is on."
736 "Check if the initial word/function is callable and autocall is on."
737 if not self.shell.autocall:
737 if not self.shell.autocall:
738 return None
738 return None
739
739
740 oinfo = line_info.ofind(self.shell) # This can mutate state via getattr
740 oinfo = line_info.ofind(self.shell) # This can mutate state via getattr
741 if not oinfo['found']:
741 if not oinfo['found']:
742 return None
742 return None
743
743
744 if callable(oinfo['obj']) \
744 if callable(oinfo['obj']) \
745 and (not re_exclude_auto.match(line_info.the_rest)) \
745 and (not re_exclude_auto.match(line_info.the_rest)) \
746 and re_fun_name.match(line_info.ifun):
746 and re_fun_name.match(line_info.ifun):
747 return self.prefilter_manager.get_handler_by_name('auto')
747 return self.prefilter_manager.get_handler_by_name('auto')
748 else:
748 else:
749 return None
749 return None
750
750
751
751
752 #-----------------------------------------------------------------------------
752 #-----------------------------------------------------------------------------
753 # Prefilter handlers
753 # Prefilter handlers
754 #-----------------------------------------------------------------------------
754 #-----------------------------------------------------------------------------
755
755
756
756
757 class PrefilterHandler(Configurable):
757 class PrefilterHandler(Configurable):
758
758
759 handler_name = Str('normal')
759 handler_name = Unicode('normal')
760 esc_strings = List([])
760 esc_strings = List([])
761 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
761 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
762 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
762 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
763
763
764 def __init__(self, shell=None, prefilter_manager=None, config=None):
764 def __init__(self, shell=None, prefilter_manager=None, config=None):
765 super(PrefilterHandler, self).__init__(
765 super(PrefilterHandler, self).__init__(
766 shell=shell, prefilter_manager=prefilter_manager, config=config
766 shell=shell, prefilter_manager=prefilter_manager, config=config
767 )
767 )
768 self.prefilter_manager.register_handler(
768 self.prefilter_manager.register_handler(
769 self.handler_name,
769 self.handler_name,
770 self,
770 self,
771 self.esc_strings
771 self.esc_strings
772 )
772 )
773
773
774 def handle(self, line_info):
774 def handle(self, line_info):
775 # print "normal: ", line_info
775 # print "normal: ", line_info
776 """Handle normal input lines. Use as a template for handlers."""
776 """Handle normal input lines. Use as a template for handlers."""
777
777
778 # With autoindent on, we need some way to exit the input loop, and I
778 # With autoindent on, we need some way to exit the input loop, and I
779 # don't want to force the user to have to backspace all the way to
779 # don't want to force the user to have to backspace all the way to
780 # clear the line. The rule will be in this case, that either two
780 # clear the line. The rule will be in this case, that either two
781 # lines of pure whitespace in a row, or a line of pure whitespace but
781 # lines of pure whitespace in a row, or a line of pure whitespace but
782 # of a size different to the indent level, will exit the input loop.
782 # of a size different to the indent level, will exit the input loop.
783 line = line_info.line
783 line = line_info.line
784 continue_prompt = line_info.continue_prompt
784 continue_prompt = line_info.continue_prompt
785
785
786 if (continue_prompt and
786 if (continue_prompt and
787 self.shell.autoindent and
787 self.shell.autoindent and
788 line.isspace() and
788 line.isspace() and
789 0 < abs(len(line) - self.shell.indent_current_nsp) <= 2):
789 0 < abs(len(line) - self.shell.indent_current_nsp) <= 2):
790 line = ''
790 line = ''
791
791
792 return line
792 return line
793
793
794 def __str__(self):
794 def __str__(self):
795 return "<%s(name=%s)>" % (self.__class__.__name__, self.handler_name)
795 return "<%s(name=%s)>" % (self.__class__.__name__, self.handler_name)
796
796
797
797
798 class AliasHandler(PrefilterHandler):
798 class AliasHandler(PrefilterHandler):
799
799
800 handler_name = Str('alias')
800 handler_name = Unicode('alias')
801
801
802 def handle(self, line_info):
802 def handle(self, line_info):
803 """Handle alias input lines. """
803 """Handle alias input lines. """
804 transformed = self.shell.alias_manager.expand_aliases(line_info.ifun,line_info.the_rest)
804 transformed = self.shell.alias_manager.expand_aliases(line_info.ifun,line_info.the_rest)
805 # pre is needed, because it carries the leading whitespace. Otherwise
805 # pre is needed, because it carries the leading whitespace. Otherwise
806 # aliases won't work in indented sections.
806 # aliases won't work in indented sections.
807 line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace,
807 line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace,
808 make_quoted_expr(transformed))
808 make_quoted_expr(transformed))
809
809
810 return line_out
810 return line_out
811
811
812
812
813 class ShellEscapeHandler(PrefilterHandler):
813 class ShellEscapeHandler(PrefilterHandler):
814
814
815 handler_name = Str('shell')
815 handler_name = Unicode('shell')
816 esc_strings = List([ESC_SHELL, ESC_SH_CAP])
816 esc_strings = List([ESC_SHELL, ESC_SH_CAP])
817
817
818 def handle(self, line_info):
818 def handle(self, line_info):
819 """Execute the line in a shell, empty return value"""
819 """Execute the line in a shell, empty return value"""
820 magic_handler = self.prefilter_manager.get_handler_by_name('magic')
820 magic_handler = self.prefilter_manager.get_handler_by_name('magic')
821
821
822 line = line_info.line
822 line = line_info.line
823 if line.lstrip().startswith(ESC_SH_CAP):
823 if line.lstrip().startswith(ESC_SH_CAP):
824 # rewrite LineInfo's line, ifun and the_rest to properly hold the
824 # rewrite LineInfo's line, ifun and the_rest to properly hold the
825 # call to %sx and the actual command to be executed, so
825 # call to %sx and the actual command to be executed, so
826 # handle_magic can work correctly. Note that this works even if
826 # handle_magic can work correctly. Note that this works even if
827 # the line is indented, so it handles multi_line_specials
827 # the line is indented, so it handles multi_line_specials
828 # properly.
828 # properly.
829 new_rest = line.lstrip()[2:]
829 new_rest = line.lstrip()[2:]
830 line_info.line = '%ssx %s' % (ESC_MAGIC, new_rest)
830 line_info.line = '%ssx %s' % (ESC_MAGIC, new_rest)
831 line_info.ifun = 'sx'
831 line_info.ifun = 'sx'
832 line_info.the_rest = new_rest
832 line_info.the_rest = new_rest
833 return magic_handler.handle(line_info)
833 return magic_handler.handle(line_info)
834 else:
834 else:
835 cmd = line.lstrip().lstrip(ESC_SHELL)
835 cmd = line.lstrip().lstrip(ESC_SHELL)
836 line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace,
836 line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace,
837 make_quoted_expr(cmd))
837 make_quoted_expr(cmd))
838 return line_out
838 return line_out
839
839
840
840
841 class MacroHandler(PrefilterHandler):
841 class MacroHandler(PrefilterHandler):
842 handler_name = Str("macro")
842 handler_name = Unicode("macro")
843
843
844 def handle(self, line_info):
844 def handle(self, line_info):
845 obj = self.shell.user_ns.get(line_info.ifun)
845 obj = self.shell.user_ns.get(line_info.ifun)
846 pre_space = line_info.pre_whitespace
846 pre_space = line_info.pre_whitespace
847 line_sep = "\n" + pre_space
847 line_sep = "\n" + pre_space
848 return pre_space + line_sep.join(obj.value.splitlines())
848 return pre_space + line_sep.join(obj.value.splitlines())
849
849
850
850
851 class MagicHandler(PrefilterHandler):
851 class MagicHandler(PrefilterHandler):
852
852
853 handler_name = Str('magic')
853 handler_name = Unicode('magic')
854 esc_strings = List([ESC_MAGIC])
854 esc_strings = List([ESC_MAGIC])
855
855
856 def handle(self, line_info):
856 def handle(self, line_info):
857 """Execute magic functions."""
857 """Execute magic functions."""
858 ifun = line_info.ifun
858 ifun = line_info.ifun
859 the_rest = line_info.the_rest
859 the_rest = line_info.the_rest
860 cmd = '%sget_ipython().magic(%s)' % (line_info.pre_whitespace,
860 cmd = '%sget_ipython().magic(%s)' % (line_info.pre_whitespace,
861 make_quoted_expr(ifun + " " + the_rest))
861 make_quoted_expr(ifun + " " + the_rest))
862 return cmd
862 return cmd
863
863
864
864
865 class AutoHandler(PrefilterHandler):
865 class AutoHandler(PrefilterHandler):
866
866
867 handler_name = Str('auto')
867 handler_name = Unicode('auto')
868 esc_strings = List([ESC_PAREN, ESC_QUOTE, ESC_QUOTE2])
868 esc_strings = List([ESC_PAREN, ESC_QUOTE, ESC_QUOTE2])
869
869
870 def handle(self, line_info):
870 def handle(self, line_info):
871 """Handle lines which can be auto-executed, quoting if requested."""
871 """Handle lines which can be auto-executed, quoting if requested."""
872 line = line_info.line
872 line = line_info.line
873 ifun = line_info.ifun
873 ifun = line_info.ifun
874 the_rest = line_info.the_rest
874 the_rest = line_info.the_rest
875 pre = line_info.pre
875 pre = line_info.pre
876 continue_prompt = line_info.continue_prompt
876 continue_prompt = line_info.continue_prompt
877 obj = line_info.ofind(self)['obj']
877 obj = line_info.ofind(self)['obj']
878 #print 'pre <%s> ifun <%s> rest <%s>' % (pre,ifun,the_rest) # dbg
878 #print 'pre <%s> ifun <%s> rest <%s>' % (pre,ifun,the_rest) # dbg
879
879
880 # This should only be active for single-line input!
880 # This should only be active for single-line input!
881 if continue_prompt:
881 if continue_prompt:
882 return line
882 return line
883
883
884 force_auto = isinstance(obj, IPyAutocall)
884 force_auto = isinstance(obj, IPyAutocall)
885 auto_rewrite = getattr(obj, 'rewrite', True)
885 auto_rewrite = getattr(obj, 'rewrite', True)
886
886
887 if pre == ESC_QUOTE:
887 if pre == ESC_QUOTE:
888 # Auto-quote splitting on whitespace
888 # Auto-quote splitting on whitespace
889 newcmd = '%s("%s")' % (ifun,'", "'.join(the_rest.split()) )
889 newcmd = '%s("%s")' % (ifun,'", "'.join(the_rest.split()) )
890 elif pre == ESC_QUOTE2:
890 elif pre == ESC_QUOTE2:
891 # Auto-quote whole string
891 # Auto-quote whole string
892 newcmd = '%s("%s")' % (ifun,the_rest)
892 newcmd = '%s("%s")' % (ifun,the_rest)
893 elif pre == ESC_PAREN:
893 elif pre == ESC_PAREN:
894 newcmd = '%s(%s)' % (ifun,",".join(the_rest.split()))
894 newcmd = '%s(%s)' % (ifun,",".join(the_rest.split()))
895 else:
895 else:
896 # Auto-paren.
896 # Auto-paren.
897 # We only apply it to argument-less calls if the autocall
897 # We only apply it to argument-less calls if the autocall
898 # parameter is set to 2. We only need to check that autocall is <
898 # parameter is set to 2. We only need to check that autocall is <
899 # 2, since this function isn't called unless it's at least 1.
899 # 2, since this function isn't called unless it's at least 1.
900 if not the_rest and (self.shell.autocall < 2) and not force_auto:
900 if not the_rest and (self.shell.autocall < 2) and not force_auto:
901 newcmd = '%s %s' % (ifun,the_rest)
901 newcmd = '%s %s' % (ifun,the_rest)
902 auto_rewrite = False
902 auto_rewrite = False
903 else:
903 else:
904 if not force_auto and the_rest.startswith('['):
904 if not force_auto and the_rest.startswith('['):
905 if hasattr(obj,'__getitem__'):
905 if hasattr(obj,'__getitem__'):
906 # Don't autocall in this case: item access for an object
906 # Don't autocall in this case: item access for an object
907 # which is BOTH callable and implements __getitem__.
907 # which is BOTH callable and implements __getitem__.
908 newcmd = '%s %s' % (ifun,the_rest)
908 newcmd = '%s %s' % (ifun,the_rest)
909 auto_rewrite = False
909 auto_rewrite = False
910 else:
910 else:
911 # if the object doesn't support [] access, go ahead and
911 # if the object doesn't support [] access, go ahead and
912 # autocall
912 # autocall
913 newcmd = '%s(%s)' % (ifun.rstrip(),the_rest)
913 newcmd = '%s(%s)' % (ifun.rstrip(),the_rest)
914 elif the_rest.endswith(';'):
914 elif the_rest.endswith(';'):
915 newcmd = '%s(%s);' % (ifun.rstrip(),the_rest[:-1])
915 newcmd = '%s(%s);' % (ifun.rstrip(),the_rest[:-1])
916 else:
916 else:
917 newcmd = '%s(%s)' % (ifun.rstrip(), the_rest)
917 newcmd = '%s(%s)' % (ifun.rstrip(), the_rest)
918
918
919 if auto_rewrite:
919 if auto_rewrite:
920 self.shell.auto_rewrite_input(newcmd)
920 self.shell.auto_rewrite_input(newcmd)
921
921
922 return newcmd
922 return newcmd
923
923
924
924
925 class HelpHandler(PrefilterHandler):
925 class HelpHandler(PrefilterHandler):
926
926
927 handler_name = Str('help')
927 handler_name = Unicode('help')
928 esc_strings = List([ESC_HELP])
928 esc_strings = List([ESC_HELP])
929
929
930 def handle(self, line_info):
930 def handle(self, line_info):
931 """Try to get some help for the object.
931 """Try to get some help for the object.
932
932
933 obj? or ?obj -> basic information.
933 obj? or ?obj -> basic information.
934 obj?? or ??obj -> more details.
934 obj?? or ??obj -> more details.
935 """
935 """
936 normal_handler = self.prefilter_manager.get_handler_by_name('normal')
936 normal_handler = self.prefilter_manager.get_handler_by_name('normal')
937 line = line_info.line
937 line = line_info.line
938 # We need to make sure that we don't process lines which would be
938 # We need to make sure that we don't process lines which would be
939 # otherwise valid python, such as "x=1 # what?"
939 # otherwise valid python, such as "x=1 # what?"
940 try:
940 try:
941 codeop.compile_command(line)
941 codeop.compile_command(line)
942 except SyntaxError:
942 except SyntaxError:
943 # We should only handle as help stuff which is NOT valid syntax
943 # We should only handle as help stuff which is NOT valid syntax
944 if line[0]==ESC_HELP:
944 if line[0]==ESC_HELP:
945 line = line[1:]
945 line = line[1:]
946 elif line[-1]==ESC_HELP:
946 elif line[-1]==ESC_HELP:
947 line = line[:-1]
947 line = line[:-1]
948 if line:
948 if line:
949 #print 'line:<%r>' % line # dbg
949 #print 'line:<%r>' % line # dbg
950 self.shell.magic_pinfo(line)
950 self.shell.magic_pinfo(line)
951 else:
951 else:
952 self.shell.show_usage()
952 self.shell.show_usage()
953 return '' # Empty string is needed here!
953 return '' # Empty string is needed here!
954 except:
954 except:
955 raise
955 raise
956 # Pass any other exceptions through to the normal handler
956 # Pass any other exceptions through to the normal handler
957 return normal_handler.handle(line_info)
957 return normal_handler.handle(line_info)
958 else:
958 else:
959 # If the code compiles ok, we should handle it normally
959 # If the code compiles ok, we should handle it normally
960 return normal_handler.handle(line_info)
960 return normal_handler.handle(line_info)
961
961
962
962
963 class EmacsHandler(PrefilterHandler):
963 class EmacsHandler(PrefilterHandler):
964
964
965 handler_name = Str('emacs')
965 handler_name = Unicode('emacs')
966 esc_strings = List([])
966 esc_strings = List([])
967
967
968 def handle(self, line_info):
968 def handle(self, line_info):
969 """Handle input lines marked by python-mode."""
969 """Handle input lines marked by python-mode."""
970
970
971 # Currently, nothing is done. Later more functionality can be added
971 # Currently, nothing is done. Later more functionality can be added
972 # here if needed.
972 # here if needed.
973
973
974 # The input cache shouldn't be updated
974 # The input cache shouldn't be updated
975 return line_info.line
975 return line_info.line
976
976
977
977
978 #-----------------------------------------------------------------------------
978 #-----------------------------------------------------------------------------
979 # Defaults
979 # Defaults
980 #-----------------------------------------------------------------------------
980 #-----------------------------------------------------------------------------
981
981
982
982
983 _default_transformers = [
983 _default_transformers = [
984 AssignSystemTransformer,
984 AssignSystemTransformer,
985 AssignMagicTransformer,
985 AssignMagicTransformer,
986 PyPromptTransformer,
986 PyPromptTransformer,
987 IPyPromptTransformer,
987 IPyPromptTransformer,
988 ]
988 ]
989
989
990 _default_checkers = [
990 _default_checkers = [
991 EmacsChecker,
991 EmacsChecker,
992 ShellEscapeChecker,
992 ShellEscapeChecker,
993 MacroChecker,
993 MacroChecker,
994 IPyAutocallChecker,
994 IPyAutocallChecker,
995 MultiLineMagicChecker,
995 MultiLineMagicChecker,
996 EscCharsChecker,
996 EscCharsChecker,
997 AssignmentChecker,
997 AssignmentChecker,
998 AutoMagicChecker,
998 AutoMagicChecker,
999 AliasChecker,
999 AliasChecker,
1000 PythonOpsChecker,
1000 PythonOpsChecker,
1001 AutocallChecker
1001 AutocallChecker
1002 ]
1002 ]
1003
1003
1004 _default_handlers = [
1004 _default_handlers = [
1005 PrefilterHandler,
1005 PrefilterHandler,
1006 AliasHandler,
1006 AliasHandler,
1007 ShellEscapeHandler,
1007 ShellEscapeHandler,
1008 MacroHandler,
1008 MacroHandler,
1009 MagicHandler,
1009 MagicHandler,
1010 AutoHandler,
1010 AutoHandler,
1011 HelpHandler,
1011 HelpHandler,
1012 EmacsHandler
1012 EmacsHandler
1013 ]
1013 ]
@@ -1,462 +1,462 b''
1 """Tests for various magic functions.
1 """Tests for various magic functions.
2
2
3 Needs to be run by nose (to make ipython session available).
3 Needs to be run by nose (to make ipython session available).
4 """
4 """
5 from __future__ import absolute_import
5 from __future__ import absolute_import
6
6
7 #-----------------------------------------------------------------------------
7 #-----------------------------------------------------------------------------
8 # Imports
8 # Imports
9 #-----------------------------------------------------------------------------
9 #-----------------------------------------------------------------------------
10
10
11 import os
11 import os
12 import sys
12 import sys
13 import tempfile
13 import tempfile
14 import types
14 import types
15 from cStringIO import StringIO
15 from cStringIO import StringIO
16
16
17 import nose.tools as nt
17 import nose.tools as nt
18
18
19 from IPython.utils.path import get_long_path_name
19 from IPython.utils.path import get_long_path_name
20 from IPython.testing import decorators as dec
20 from IPython.testing import decorators as dec
21 from IPython.testing import tools as tt
21 from IPython.testing import tools as tt
22
22
23 #-----------------------------------------------------------------------------
23 #-----------------------------------------------------------------------------
24 # Test functions begin
24 # Test functions begin
25 #-----------------------------------------------------------------------------
25 #-----------------------------------------------------------------------------
26 def test_rehashx():
26 def test_rehashx():
27 # clear up everything
27 # clear up everything
28 _ip = get_ipython()
28 _ip = get_ipython()
29 _ip.alias_manager.alias_table.clear()
29 _ip.alias_manager.alias_table.clear()
30 del _ip.db['syscmdlist']
30 del _ip.db['syscmdlist']
31
31
32 _ip.magic('rehashx')
32 _ip.magic('rehashx')
33 # Practically ALL ipython development systems will have more than 10 aliases
33 # Practically ALL ipython development systems will have more than 10 aliases
34
34
35 yield (nt.assert_true, len(_ip.alias_manager.alias_table) > 10)
35 yield (nt.assert_true, len(_ip.alias_manager.alias_table) > 10)
36 for key, val in _ip.alias_manager.alias_table.iteritems():
36 for key, val in _ip.alias_manager.alias_table.iteritems():
37 # we must strip dots from alias names
37 # we must strip dots from alias names
38 nt.assert_true('.' not in key)
38 nt.assert_true('.' not in key)
39
39
40 # rehashx must fill up syscmdlist
40 # rehashx must fill up syscmdlist
41 scoms = _ip.db['syscmdlist']
41 scoms = _ip.db['syscmdlist']
42 yield (nt.assert_true, len(scoms) > 10)
42 yield (nt.assert_true, len(scoms) > 10)
43
43
44
44
45 def test_magic_parse_options():
45 def test_magic_parse_options():
46 """Test that we don't mangle paths when parsing magic options."""
46 """Test that we don't mangle paths when parsing magic options."""
47 ip = get_ipython()
47 ip = get_ipython()
48 path = 'c:\\x'
48 path = 'c:\\x'
49 opts = ip.parse_options('-f %s' % path,'f:')[0]
49 opts = ip.parse_options('-f %s' % path,'f:')[0]
50 # argv splitting is os-dependent
50 # argv splitting is os-dependent
51 if os.name == 'posix':
51 if os.name == 'posix':
52 expected = 'c:x'
52 expected = 'c:x'
53 else:
53 else:
54 expected = path
54 expected = path
55 nt.assert_equals(opts['f'], expected)
55 nt.assert_equals(opts['f'], expected)
56
56
57
57
58 def doctest_hist_f():
58 def doctest_hist_f():
59 """Test %hist -f with temporary filename.
59 """Test %hist -f with temporary filename.
60
60
61 In [9]: import tempfile
61 In [9]: import tempfile
62
62
63 In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-')
63 In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-')
64
64
65 In [11]: %hist -nl -f $tfile 3
65 In [11]: %hist -nl -f $tfile 3
66
66
67 In [13]: import os; os.unlink(tfile)
67 In [13]: import os; os.unlink(tfile)
68 """
68 """
69
69
70
70
71 def doctest_hist_r():
71 def doctest_hist_r():
72 """Test %hist -r
72 """Test %hist -r
73
73
74 XXX - This test is not recording the output correctly. For some reason, in
74 XXX - This test is not recording the output correctly. For some reason, in
75 testing mode the raw history isn't getting populated. No idea why.
75 testing mode the raw history isn't getting populated. No idea why.
76 Disabling the output checking for now, though at least we do run it.
76 Disabling the output checking for now, though at least we do run it.
77
77
78 In [1]: 'hist' in _ip.lsmagic()
78 In [1]: 'hist' in _ip.lsmagic()
79 Out[1]: True
79 Out[1]: True
80
80
81 In [2]: x=1
81 In [2]: x=1
82
82
83 In [3]: %hist -rl 2
83 In [3]: %hist -rl 2
84 x=1 # random
84 x=1 # random
85 %hist -r 2
85 %hist -r 2
86 """
86 """
87
87
88 def doctest_hist_op():
88 def doctest_hist_op():
89 """Test %hist -op
89 """Test %hist -op
90
90
91 In [1]: class b:
91 In [1]: class b:
92 ...: pass
92 ...: pass
93 ...:
93 ...:
94
94
95 In [2]: class s(b):
95 In [2]: class s(b):
96 ...: def __str__(self):
96 ...: def __str__(self):
97 ...: return 's'
97 ...: return 's'
98 ...:
98 ...:
99
99
100 In [3]:
100 In [3]:
101
101
102 In [4]: class r(b):
102 In [4]: class r(b):
103 ...: def __repr__(self):
103 ...: def __repr__(self):
104 ...: return 'r'
104 ...: return 'r'
105 ...:
105 ...:
106
106
107 In [5]: class sr(s,r): pass
107 In [5]: class sr(s,r): pass
108 ...:
108 ...:
109
109
110 In [6]:
110 In [6]:
111
111
112 In [7]: bb=b()
112 In [7]: bb=b()
113
113
114 In [8]: ss=s()
114 In [8]: ss=s()
115
115
116 In [9]: rr=r()
116 In [9]: rr=r()
117
117
118 In [10]: ssrr=sr()
118 In [10]: ssrr=sr()
119
119
120 In [11]: bb
120 In [11]: bb
121 Out[11]: <...b instance at ...>
121 Out[11]: <...b instance at ...>
122
122
123 In [12]: ss
123 In [12]: ss
124 Out[12]: <...s instance at ...>
124 Out[12]: <...s instance at ...>
125
125
126 In [13]:
126 In [13]:
127
127
128 In [14]: %hist -op
128 In [14]: %hist -op
129 >>> class b:
129 >>> class b:
130 ... pass
130 ... pass
131 ...
131 ...
132 >>> class s(b):
132 >>> class s(b):
133 ... def __str__(self):
133 ... def __str__(self):
134 ... return 's'
134 ... return 's'
135 ...
135 ...
136 >>>
136 >>>
137 >>> class r(b):
137 >>> class r(b):
138 ... def __repr__(self):
138 ... def __repr__(self):
139 ... return 'r'
139 ... return 'r'
140 ...
140 ...
141 >>> class sr(s,r): pass
141 >>> class sr(s,r): pass
142 >>>
142 >>>
143 >>> bb=b()
143 >>> bb=b()
144 >>> ss=s()
144 >>> ss=s()
145 >>> rr=r()
145 >>> rr=r()
146 >>> ssrr=sr()
146 >>> ssrr=sr()
147 >>> bb
147 >>> bb
148 <...b instance at ...>
148 <...b instance at ...>
149 >>> ss
149 >>> ss
150 <...s instance at ...>
150 <...s instance at ...>
151 >>>
151 >>>
152 """
152 """
153
153
154 def test_macro():
154 def test_macro():
155 ip = get_ipython()
155 ip = get_ipython()
156 ip.history_manager.reset() # Clear any existing history.
156 ip.history_manager.reset() # Clear any existing history.
157 cmds = ["a=1", "def b():\n return a**2", "print(a,b())"]
157 cmds = ["a=1", "def b():\n return a**2", "print(a,b())"]
158 for i, cmd in enumerate(cmds, start=1):
158 for i, cmd in enumerate(cmds, start=1):
159 ip.history_manager.store_inputs(i, cmd)
159 ip.history_manager.store_inputs(i, cmd)
160 ip.magic("macro test 1-3")
160 ip.magic("macro test 1-3")
161 nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n")
161 nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n")
162
162
163 # List macros.
163 # List macros.
164 assert "test" in ip.magic("macro")
164 assert "test" in ip.magic("macro")
165
165
166 def test_macro_run():
166 def test_macro_run():
167 """Test that we can run a multi-line macro successfully."""
167 """Test that we can run a multi-line macro successfully."""
168 ip = get_ipython()
168 ip = get_ipython()
169 ip.history_manager.reset()
169 ip.history_manager.reset()
170 cmds = ["a=10", "a+=1", "print a", "%macro test 2-3"]
170 cmds = ["a=10", "a+=1", "print a", "%macro test 2-3"]
171 for cmd in cmds:
171 for cmd in cmds:
172 ip.run_cell(cmd)
172 ip.run_cell(cmd)
173 nt.assert_equal(ip.user_ns["test"].value, "a+=1\nprint a\n")
173 nt.assert_equal(ip.user_ns["test"].value, "a+=1\nprint a\n")
174 original_stdout = sys.stdout
174 original_stdout = sys.stdout
175 new_stdout = StringIO()
175 new_stdout = StringIO()
176 sys.stdout = new_stdout
176 sys.stdout = new_stdout
177 try:
177 try:
178 ip.run_cell("test")
178 ip.run_cell("test")
179 nt.assert_true("12" in new_stdout.getvalue())
179 nt.assert_true("12" in new_stdout.getvalue())
180 ip.run_cell("test")
180 ip.run_cell("test")
181 nt.assert_true("13" in new_stdout.getvalue())
181 nt.assert_true("13" in new_stdout.getvalue())
182 finally:
182 finally:
183 sys.stdout = original_stdout
183 sys.stdout = original_stdout
184 new_stdout.close()
184 new_stdout.close()
185
185
186
186
187 # XXX failing for now, until we get clearcmd out of quarantine. But we should
187 # XXX failing for now, until we get clearcmd out of quarantine. But we should
188 # fix this and revert the skip to happen only if numpy is not around.
188 # fix this and revert the skip to happen only if numpy is not around.
189 #@dec.skipif_not_numpy
189 #@dec.skipif_not_numpy
190 @dec.skip_known_failure
190 @dec.skip_known_failure
191 def test_numpy_clear_array_undec():
191 def test_numpy_clear_array_undec():
192 from IPython.extensions import clearcmd
192 from IPython.extensions import clearcmd
193
193
194 _ip.ex('import numpy as np')
194 _ip.ex('import numpy as np')
195 _ip.ex('a = np.empty(2)')
195 _ip.ex('a = np.empty(2)')
196 yield (nt.assert_true, 'a' in _ip.user_ns)
196 yield (nt.assert_true, 'a' in _ip.user_ns)
197 _ip.magic('clear array')
197 _ip.magic('clear array')
198 yield (nt.assert_false, 'a' in _ip.user_ns)
198 yield (nt.assert_false, 'a' in _ip.user_ns)
199
199
200
200
201 # Multiple tests for clipboard pasting
201 # Multiple tests for clipboard pasting
202 @dec.parametric
202 @dec.parametric
203 def test_paste():
203 def test_paste():
204 _ip = get_ipython()
204 _ip = get_ipython()
205 def paste(txt, flags='-q'):
205 def paste(txt, flags='-q'):
206 """Paste input text, by default in quiet mode"""
206 """Paste input text, by default in quiet mode"""
207 hooks.clipboard_get = lambda : txt
207 hooks.clipboard_get = lambda : txt
208 _ip.magic('paste '+flags)
208 _ip.magic('paste '+flags)
209
209
210 # Inject fake clipboard hook but save original so we can restore it later
210 # Inject fake clipboard hook but save original so we can restore it later
211 hooks = _ip.hooks
211 hooks = _ip.hooks
212 user_ns = _ip.user_ns
212 user_ns = _ip.user_ns
213 original_clip = hooks.clipboard_get
213 original_clip = hooks.clipboard_get
214
214
215 try:
215 try:
216 # This try/except with an emtpy except clause is here only because
216 # This try/except with an emtpy except clause is here only because
217 # try/yield/finally is invalid syntax in Python 2.4. This will be
217 # try/yield/finally is invalid syntax in Python 2.4. This will be
218 # removed when we drop 2.4-compatibility, and the emtpy except below
218 # removed when we drop 2.4-compatibility, and the emtpy except below
219 # will be changed to a finally.
219 # will be changed to a finally.
220
220
221 # Run tests with fake clipboard function
221 # Run tests with fake clipboard function
222 user_ns.pop('x', None)
222 user_ns.pop('x', None)
223 paste('x=1')
223 paste('x=1')
224 yield nt.assert_equal(user_ns['x'], 1)
224 yield nt.assert_equal(user_ns['x'], 1)
225
225
226 user_ns.pop('x', None)
226 user_ns.pop('x', None)
227 paste('>>> x=2')
227 paste('>>> x=2')
228 yield nt.assert_equal(user_ns['x'], 2)
228 yield nt.assert_equal(user_ns['x'], 2)
229
229
230 paste("""
230 paste("""
231 >>> x = [1,2,3]
231 >>> x = [1,2,3]
232 >>> y = []
232 >>> y = []
233 >>> for i in x:
233 >>> for i in x:
234 ... y.append(i**2)
234 ... y.append(i**2)
235 ...
235 ...
236 """)
236 """)
237 yield nt.assert_equal(user_ns['x'], [1,2,3])
237 yield nt.assert_equal(user_ns['x'], [1,2,3])
238 yield nt.assert_equal(user_ns['y'], [1,4,9])
238 yield nt.assert_equal(user_ns['y'], [1,4,9])
239
239
240 # Now, test that paste -r works
240 # Now, test that paste -r works
241 user_ns.pop('x', None)
241 user_ns.pop('x', None)
242 yield nt.assert_false('x' in user_ns)
242 yield nt.assert_false('x' in user_ns)
243 _ip.magic('paste -r')
243 _ip.magic('paste -r')
244 yield nt.assert_equal(user_ns['x'], [1,2,3])
244 yield nt.assert_equal(user_ns['x'], [1,2,3])
245
245
246 # Also test paste echoing, by temporarily faking the writer
246 # Also test paste echoing, by temporarily faking the writer
247 w = StringIO()
247 w = StringIO()
248 writer = _ip.write
248 writer = _ip.write
249 _ip.write = w.write
249 _ip.write = w.write
250 code = """
250 code = """
251 a = 100
251 a = 100
252 b = 200"""
252 b = 200"""
253 try:
253 try:
254 paste(code,'')
254 paste(code,'')
255 out = w.getvalue()
255 out = w.getvalue()
256 finally:
256 finally:
257 _ip.write = writer
257 _ip.write = writer
258 yield nt.assert_equal(user_ns['a'], 100)
258 yield nt.assert_equal(user_ns['a'], 100)
259 yield nt.assert_equal(user_ns['b'], 200)
259 yield nt.assert_equal(user_ns['b'], 200)
260 yield nt.assert_equal(out, code+"\n## -- End pasted text --\n")
260 yield nt.assert_equal(out, code+"\n## -- End pasted text --\n")
261
261
262 finally:
262 finally:
263 # This should be in a finally clause, instead of the bare except above.
263 # This should be in a finally clause, instead of the bare except above.
264 # Restore original hook
264 # Restore original hook
265 hooks.clipboard_get = original_clip
265 hooks.clipboard_get = original_clip
266
266
267
267
268 def test_time():
268 def test_time():
269 _ip.magic('time None')
269 _ip.magic('time None')
270
270
271
271
272 def doctest_time():
272 def doctest_time():
273 """
273 """
274 In [10]: %time None
274 In [10]: %time None
275 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
275 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
276 Wall time: 0.00 s
276 Wall time: 0.00 s
277
277
278 In [11]: def f(kmjy):
278 In [11]: def f(kmjy):
279 ....: %time print 2*kmjy
279 ....: %time print 2*kmjy
280
280
281 In [12]: f(3)
281 In [12]: f(3)
282 6
282 6
283 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
283 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
284 Wall time: 0.00 s
284 Wall time: 0.00 s
285 """
285 """
286
286
287
287
288 def test_doctest_mode():
288 def test_doctest_mode():
289 "Toggle doctest_mode twice, it should be a no-op and run without error"
289 "Toggle doctest_mode twice, it should be a no-op and run without error"
290 _ip.magic('doctest_mode')
290 _ip.magic('doctest_mode')
291 _ip.magic('doctest_mode')
291 _ip.magic('doctest_mode')
292
292
293
293
294 def test_parse_options():
294 def test_parse_options():
295 """Tests for basic options parsing in magics."""
295 """Tests for basic options parsing in magics."""
296 # These are only the most minimal of tests, more should be added later. At
296 # These are only the most minimal of tests, more should be added later. At
297 # the very least we check that basic text/unicode calls work OK.
297 # the very least we check that basic text/unicode calls work OK.
298 nt.assert_equal(_ip.parse_options('foo', '')[1], 'foo')
298 nt.assert_equal(_ip.parse_options('foo', '')[1], 'foo')
299 nt.assert_equal(_ip.parse_options(u'foo', '')[1], u'foo')
299 nt.assert_equal(_ip.parse_options(u'foo', '')[1], u'foo')
300
300
301
301
302 def test_dirops():
302 def test_dirops():
303 """Test various directory handling operations."""
303 """Test various directory handling operations."""
304 curpath = lambda :os.path.splitdrive(os.getcwdu())[1].replace('\\','/')
304 curpath = lambda :os.path.splitdrive(os.getcwdu())[1].replace('\\','/')
305
305
306 startdir = os.getcwdu()
306 startdir = os.getcwdu()
307 ipdir = _ip.ipython_dir
307 ipdir = _ip.ipython_dir
308 try:
308 try:
309 _ip.magic('cd "%s"' % ipdir)
309 _ip.magic('cd "%s"' % ipdir)
310 nt.assert_equal(curpath(), ipdir)
310 nt.assert_equal(curpath(), ipdir)
311 _ip.magic('cd -')
311 _ip.magic('cd -')
312 nt.assert_equal(curpath(), startdir)
312 nt.assert_equal(curpath(), startdir)
313 _ip.magic('pushd "%s"' % ipdir)
313 _ip.magic('pushd "%s"' % ipdir)
314 nt.assert_equal(curpath(), ipdir)
314 nt.assert_equal(curpath(), ipdir)
315 _ip.magic('popd')
315 _ip.magic('popd')
316 nt.assert_equal(curpath(), startdir)
316 nt.assert_equal(curpath(), startdir)
317 finally:
317 finally:
318 os.chdir(startdir)
318 os.chdir(startdir)
319
319
320
320
321 def check_cpaste(code, should_fail=False):
321 def check_cpaste(code, should_fail=False):
322 """Execute code via 'cpaste' and ensure it was executed, unless
322 """Execute code via 'cpaste' and ensure it was executed, unless
323 should_fail is set.
323 should_fail is set.
324 """
324 """
325 _ip.user_ns['code_ran'] = False
325 _ip.user_ns['code_ran'] = False
326
326
327 src = StringIO()
327 src = StringIO()
328 src.write('\n')
328 src.write('\n')
329 src.write(code)
329 src.write(code)
330 src.write('\n--\n')
330 src.write('\n--\n')
331 src.seek(0)
331 src.seek(0)
332
332
333 stdin_save = sys.stdin
333 stdin_save = sys.stdin
334 sys.stdin = src
334 sys.stdin = src
335
335
336 try:
336 try:
337 _ip.magic('cpaste')
337 _ip.magic('cpaste')
338 except:
338 except:
339 if not should_fail:
339 if not should_fail:
340 raise AssertionError("Failure not expected : '%s'" %
340 raise AssertionError("Failure not expected : '%s'" %
341 code)
341 code)
342 else:
342 else:
343 assert _ip.user_ns['code_ran']
343 assert _ip.user_ns['code_ran']
344 if should_fail:
344 if should_fail:
345 raise AssertionError("Failure expected : '%s'" % code)
345 raise AssertionError("Failure expected : '%s'" % code)
346 finally:
346 finally:
347 sys.stdin = stdin_save
347 sys.stdin = stdin_save
348
348
349
349
350 def test_cpaste():
350 def test_cpaste():
351 """Test cpaste magic"""
351 """Test cpaste magic"""
352
352
353 def run():
353 def run():
354 """Marker function: sets a flag when executed.
354 """Marker function: sets a flag when executed.
355 """
355 """
356 _ip.user_ns['code_ran'] = True
356 _ip.user_ns['code_ran'] = True
357 return 'run' # return string so '+ run()' doesn't result in success
357 return 'run' # return string so '+ run()' doesn't result in success
358
358
359 tests = {'pass': ["> > > run()",
359 tests = {'pass': ["> > > run()",
360 ">>> > run()",
360 ">>> > run()",
361 "+++ run()",
361 "+++ run()",
362 "++ run()",
362 "++ run()",
363 " >>> run()"],
363 " >>> run()"],
364
364
365 'fail': ["+ + run()",
365 'fail': ["+ + run()",
366 " ++ run()"]}
366 " ++ run()"]}
367
367
368 _ip.user_ns['run'] = run
368 _ip.user_ns['run'] = run
369
369
370 for code in tests['pass']:
370 for code in tests['pass']:
371 check_cpaste(code)
371 check_cpaste(code)
372
372
373 for code in tests['fail']:
373 for code in tests['fail']:
374 check_cpaste(code, should_fail=True)
374 check_cpaste(code, should_fail=True)
375
375
376 def test_xmode():
376 def test_xmode():
377 # Calling xmode three times should be a no-op
377 # Calling xmode three times should be a no-op
378 xmode = _ip.InteractiveTB.mode
378 xmode = _ip.InteractiveTB.mode
379 for i in range(3):
379 for i in range(3):
380 _ip.magic("xmode")
380 _ip.magic("xmode")
381 nt.assert_equal(_ip.InteractiveTB.mode, xmode)
381 nt.assert_equal(_ip.InteractiveTB.mode, xmode)
382
382
383 def test_reset_hard():
383 def test_reset_hard():
384 monitor = []
384 monitor = []
385 class A(object):
385 class A(object):
386 def __del__(self):
386 def __del__(self):
387 monitor.append(1)
387 monitor.append(1)
388 def __repr__(self):
388 def __repr__(self):
389 return "<A instance>"
389 return "<A instance>"
390
390
391 _ip.user_ns["a"] = A()
391 _ip.user_ns["a"] = A()
392 _ip.run_cell("a")
392 _ip.run_cell("a")
393
393
394 nt.assert_equal(monitor, [])
394 nt.assert_equal(monitor, [])
395 _ip.magic_reset("-f")
395 _ip.magic_reset("-f")
396 nt.assert_equal(monitor, [1])
396 nt.assert_equal(monitor, [1])
397
397
398 class TestXdel(tt.TempFileMixin):
398 class TestXdel(tt.TempFileMixin):
399 def test_xdel(self):
399 def test_xdel(self):
400 """Test that references from %run are cleared by xdel."""
400 """Test that references from %run are cleared by xdel."""
401 src = ("class A(object):\n"
401 src = ("class A(object):\n"
402 " monitor = []\n"
402 " monitor = []\n"
403 " def __del__(self):\n"
403 " def __del__(self):\n"
404 " self.monitor.append(1)\n"
404 " self.monitor.append(1)\n"
405 "a = A()\n")
405 "a = A()\n")
406 self.mktmp(src)
406 self.mktmp(src)
407 # %run creates some hidden references...
407 # %run creates some hidden references...
408 _ip.magic("run %s" % self.fname)
408 _ip.magic("run %s" % self.fname)
409 # ... as does the displayhook.
409 # ... as does the displayhook.
410 _ip.run_cell("a")
410 _ip.run_cell("a")
411
411
412 monitor = _ip.user_ns["A"].monitor
412 monitor = _ip.user_ns["A"].monitor
413 nt.assert_equal(monitor, [])
413 nt.assert_equal(monitor, [])
414
414
415 _ip.magic("xdel a")
415 _ip.magic("xdel a")
416
416
417 # Check that a's __del__ method has been called.
417 # Check that a's __del__ method has been called.
418 nt.assert_equal(monitor, [1])
418 nt.assert_equal(monitor, [1])
419
419
420 def doctest_who():
420 def doctest_who():
421 """doctest for %who
421 """doctest for %who
422
422
423 In [1]: %reset -f
423 In [1]: %reset -f
424
424
425 In [2]: alpha = 123
425 In [2]: alpha = 123
426
426
427 In [3]: beta = 'beta'
427 In [3]: beta = 'beta'
428
428
429 In [4]: %who int
429 In [4]: %who int
430 alpha
430 alpha
431
431
432 In [5]: %who str
432 In [5]: %who str
433 beta
433 beta
434
434
435 In [6]: %whos
435 In [6]: %whos
436 Variable Type Data/Info
436 Variable Type Data/Info
437 ----------------------------
437 ----------------------------
438 alpha int 123
438 alpha int 123
439 beta str beta
439 beta str beta
440
440
441 In [7]: %who_ls
441 In [7]: %who_ls
442 Out[7]: ['alpha', 'beta']
442 Out[7]: ['alpha', 'beta']
443 """
443 """
444
444
445 def doctest_precision():
445 def doctest_precision():
446 """doctest for %precision
446 """doctest for %precision
447
447
448 In [1]: f = get_ipython().shell.display_formatter.formatters['text/plain']
448 In [1]: f = get_ipython().shell.display_formatter.formatters['text/plain']
449
449
450 In [2]: %precision 5
450 In [2]: %precision 5
451 Out[2]: '%.5f'
451 Out[2]: u'%.5f'
452
452
453 In [3]: f.float_format
453 In [3]: f.float_format
454 Out[3]: '%.5f'
454 Out[3]: u'%.5f'
455
455
456 In [4]: %precision %e
456 In [4]: %precision %e
457 Out[4]: '%e'
457 Out[4]: u'%e'
458
458
459 In [5]: f(3.1415927)
459 In [5]: f(3.1415927)
460 Out[5]: '3.141593e+00'
460 Out[5]: u'3.141593e+00'
461 """
461 """
462
462
@@ -1,510 +1,509 b''
1 """ A FrontendWidget that emulates the interface of the console IPython and
1 """ A FrontendWidget that emulates the interface of the console IPython and
2 supports the additional functionality provided by the IPython kernel.
2 supports the additional functionality provided by the IPython kernel.
3 """
3 """
4
4
5 #-----------------------------------------------------------------------------
5 #-----------------------------------------------------------------------------
6 # Imports
6 # Imports
7 #-----------------------------------------------------------------------------
7 #-----------------------------------------------------------------------------
8
8
9 # Standard library imports
9 # Standard library imports
10 from collections import namedtuple
10 from collections import namedtuple
11 import os.path
11 import os.path
12 import re
12 import re
13 from subprocess import Popen
13 from subprocess import Popen
14 import sys
14 import sys
15 from textwrap import dedent
15 from textwrap import dedent
16
16
17 # System library imports
17 # System library imports
18 from IPython.external.qt import QtCore, QtGui
18 from IPython.external.qt import QtCore, QtGui
19
19
20 # Local imports
20 # Local imports
21 from IPython.core.inputsplitter import IPythonInputSplitter, \
21 from IPython.core.inputsplitter import IPythonInputSplitter, \
22 transform_ipy_prompt
22 transform_ipy_prompt
23 from IPython.core.usage import default_gui_banner
23 from IPython.core.usage import default_gui_banner
24 from IPython.utils.traitlets import Bool, Str, Unicode
24 from IPython.utils.traitlets import Bool, Unicode
25 from frontend_widget import FrontendWidget
25 from frontend_widget import FrontendWidget
26 import styles
26 import styles
27
27
28 #-----------------------------------------------------------------------------
28 #-----------------------------------------------------------------------------
29 # Constants
29 # Constants
30 #-----------------------------------------------------------------------------
30 #-----------------------------------------------------------------------------
31
31
32 # Default strings to build and display input and output prompts (and separators
32 # Default strings to build and display input and output prompts (and separators
33 # in between)
33 # in between)
34 default_in_prompt = 'In [<span class="in-prompt-number">%i</span>]: '
34 default_in_prompt = 'In [<span class="in-prompt-number">%i</span>]: '
35 default_out_prompt = 'Out[<span class="out-prompt-number">%i</span>]: '
35 default_out_prompt = 'Out[<span class="out-prompt-number">%i</span>]: '
36 default_input_sep = '\n'
36 default_input_sep = '\n'
37 default_output_sep = ''
37 default_output_sep = ''
38 default_output_sep2 = ''
38 default_output_sep2 = ''
39
39
40 # Base path for most payload sources.
40 # Base path for most payload sources.
41 zmq_shell_source = 'IPython.zmq.zmqshell.ZMQInteractiveShell'
41 zmq_shell_source = 'IPython.zmq.zmqshell.ZMQInteractiveShell'
42
42
43 if sys.platform.startswith('win'):
43 if sys.platform.startswith('win'):
44 default_editor = 'notepad'
44 default_editor = 'notepad'
45 else:
45 else:
46 default_editor = ''
46 default_editor = ''
47
47
48 #-----------------------------------------------------------------------------
48 #-----------------------------------------------------------------------------
49 # IPythonWidget class
49 # IPythonWidget class
50 #-----------------------------------------------------------------------------
50 #-----------------------------------------------------------------------------
51
51
52 class IPythonWidget(FrontendWidget):
52 class IPythonWidget(FrontendWidget):
53 """ A FrontendWidget for an IPython kernel.
53 """ A FrontendWidget for an IPython kernel.
54 """
54 """
55
55
56 # If set, the 'custom_edit_requested(str, int)' signal will be emitted when
56 # If set, the 'custom_edit_requested(str, int)' signal will be emitted when
57 # an editor is needed for a file. This overrides 'editor' and 'editor_line'
57 # an editor is needed for a file. This overrides 'editor' and 'editor_line'
58 # settings.
58 # settings.
59 custom_edit = Bool(False)
59 custom_edit = Bool(False)
60 custom_edit_requested = QtCore.Signal(object, object)
60 custom_edit_requested = QtCore.Signal(object, object)
61
61
62 editor = Unicode(default_editor, config=True,
62 editor = Unicode(default_editor, config=True,
63 help="""
63 help="""
64 A command for invoking a system text editor. If the string contains a
64 A command for invoking a system text editor. If the string contains a
65 {filename} format specifier, it will be used. Otherwise, the filename will
65 {filename} format specifier, it will be used. Otherwise, the filename will
66 be appended to the end the command.
66 be appended to the end the command.
67 """)
67 """)
68
68
69 editor_line = Unicode(config=True,
69 editor_line = Unicode(config=True,
70 help="""
70 help="""
71 The editor command to use when a specific line number is requested. The
71 The editor command to use when a specific line number is requested. The
72 string should contain two format specifiers: {line} and {filename}. If
72 string should contain two format specifiers: {line} and {filename}. If
73 this parameter is not specified, the line number option to the %edit magic
73 this parameter is not specified, the line number option to the %edit magic
74 will be ignored.
74 will be ignored.
75 """)
75 """)
76
76
77 style_sheet = Unicode(config=True,
77 style_sheet = Unicode(config=True,
78 help="""
78 help="""
79 A CSS stylesheet. The stylesheet can contain classes for:
79 A CSS stylesheet. The stylesheet can contain classes for:
80 1. Qt: QPlainTextEdit, QFrame, QWidget, etc
80 1. Qt: QPlainTextEdit, QFrame, QWidget, etc
81 2. Pygments: .c, .k, .o, etc. (see PygmentsHighlighter)
81 2. Pygments: .c, .k, .o, etc. (see PygmentsHighlighter)
82 3. IPython: .error, .in-prompt, .out-prompt, etc
82 3. IPython: .error, .in-prompt, .out-prompt, etc
83 """)
83 """)
84
84
85
85 syntax_style = Unicode(config=True,
86 syntax_style = Str(config=True,
87 help="""
86 help="""
88 If not empty, use this Pygments style for syntax highlighting. Otherwise,
87 If not empty, use this Pygments style for syntax highlighting. Otherwise,
89 the style sheet is queried for Pygments style information.
88 the style sheet is queried for Pygments style information.
90 """)
89 """)
91
90
92 # Prompts.
91 # Prompts.
93 in_prompt = Str(default_in_prompt, config=True)
92 in_prompt = Unicode(default_in_prompt, config=True)
94 out_prompt = Str(default_out_prompt, config=True)
93 out_prompt = Unicode(default_out_prompt, config=True)
95 input_sep = Str(default_input_sep, config=True)
94 input_sep = Unicode(default_input_sep, config=True)
96 output_sep = Str(default_output_sep, config=True)
95 output_sep = Unicode(default_output_sep, config=True)
97 output_sep2 = Str(default_output_sep2, config=True)
96 output_sep2 = Unicode(default_output_sep2, config=True)
98
97
99 # FrontendWidget protected class variables.
98 # FrontendWidget protected class variables.
100 _input_splitter_class = IPythonInputSplitter
99 _input_splitter_class = IPythonInputSplitter
101
100
102 # IPythonWidget protected class variables.
101 # IPythonWidget protected class variables.
103 _PromptBlock = namedtuple('_PromptBlock', ['block', 'length', 'number'])
102 _PromptBlock = namedtuple('_PromptBlock', ['block', 'length', 'number'])
104 _payload_source_edit = zmq_shell_source + '.edit_magic'
103 _payload_source_edit = zmq_shell_source + '.edit_magic'
105 _payload_source_exit = zmq_shell_source + '.ask_exit'
104 _payload_source_exit = zmq_shell_source + '.ask_exit'
106 _payload_source_next_input = zmq_shell_source + '.set_next_input'
105 _payload_source_next_input = zmq_shell_source + '.set_next_input'
107 _payload_source_page = 'IPython.zmq.page.page'
106 _payload_source_page = 'IPython.zmq.page.page'
108
107
109 #---------------------------------------------------------------------------
108 #---------------------------------------------------------------------------
110 # 'object' interface
109 # 'object' interface
111 #---------------------------------------------------------------------------
110 #---------------------------------------------------------------------------
112
111
113 def __init__(self, *args, **kw):
112 def __init__(self, *args, **kw):
114 super(IPythonWidget, self).__init__(*args, **kw)
113 super(IPythonWidget, self).__init__(*args, **kw)
115
114
116 # IPythonWidget protected variables.
115 # IPythonWidget protected variables.
117 self._payload_handlers = {
116 self._payload_handlers = {
118 self._payload_source_edit : self._handle_payload_edit,
117 self._payload_source_edit : self._handle_payload_edit,
119 self._payload_source_exit : self._handle_payload_exit,
118 self._payload_source_exit : self._handle_payload_exit,
120 self._payload_source_page : self._handle_payload_page,
119 self._payload_source_page : self._handle_payload_page,
121 self._payload_source_next_input : self._handle_payload_next_input }
120 self._payload_source_next_input : self._handle_payload_next_input }
122 self._previous_prompt_obj = None
121 self._previous_prompt_obj = None
123 self._keep_kernel_on_exit = None
122 self._keep_kernel_on_exit = None
124
123
125 # Initialize widget styling.
124 # Initialize widget styling.
126 if self.style_sheet:
125 if self.style_sheet:
127 self._style_sheet_changed()
126 self._style_sheet_changed()
128 self._syntax_style_changed()
127 self._syntax_style_changed()
129 else:
128 else:
130 self.set_default_style()
129 self.set_default_style()
131
130
132 #---------------------------------------------------------------------------
131 #---------------------------------------------------------------------------
133 # 'BaseFrontendMixin' abstract interface
132 # 'BaseFrontendMixin' abstract interface
134 #---------------------------------------------------------------------------
133 #---------------------------------------------------------------------------
135
134
136 def _handle_complete_reply(self, rep):
135 def _handle_complete_reply(self, rep):
137 """ Reimplemented to support IPython's improved completion machinery.
136 """ Reimplemented to support IPython's improved completion machinery.
138 """
137 """
139 cursor = self._get_cursor()
138 cursor = self._get_cursor()
140 info = self._request_info.get('complete')
139 info = self._request_info.get('complete')
141 if info and info.id == rep['parent_header']['msg_id'] and \
140 if info and info.id == rep['parent_header']['msg_id'] and \
142 info.pos == cursor.position():
141 info.pos == cursor.position():
143 matches = rep['content']['matches']
142 matches = rep['content']['matches']
144 text = rep['content']['matched_text']
143 text = rep['content']['matched_text']
145 offset = len(text)
144 offset = len(text)
146
145
147 # Clean up matches with period and path separators if the matched
146 # Clean up matches with period and path separators if the matched
148 # text has not been transformed. This is done by truncating all
147 # text has not been transformed. This is done by truncating all
149 # but the last component and then suitably decreasing the offset
148 # but the last component and then suitably decreasing the offset
150 # between the current cursor position and the start of completion.
149 # between the current cursor position and the start of completion.
151 if len(matches) > 1 and matches[0][:offset] == text:
150 if len(matches) > 1 and matches[0][:offset] == text:
152 parts = re.split(r'[./\\]', text)
151 parts = re.split(r'[./\\]', text)
153 sep_count = len(parts) - 1
152 sep_count = len(parts) - 1
154 if sep_count:
153 if sep_count:
155 chop_length = sum(map(len, parts[:sep_count])) + sep_count
154 chop_length = sum(map(len, parts[:sep_count])) + sep_count
156 matches = [ match[chop_length:] for match in matches ]
155 matches = [ match[chop_length:] for match in matches ]
157 offset -= chop_length
156 offset -= chop_length
158
157
159 # Move the cursor to the start of the match and complete.
158 # Move the cursor to the start of the match and complete.
160 cursor.movePosition(QtGui.QTextCursor.Left, n=offset)
159 cursor.movePosition(QtGui.QTextCursor.Left, n=offset)
161 self._complete_with_items(cursor, matches)
160 self._complete_with_items(cursor, matches)
162
161
163 def _handle_execute_reply(self, msg):
162 def _handle_execute_reply(self, msg):
164 """ Reimplemented to support prompt requests.
163 """ Reimplemented to support prompt requests.
165 """
164 """
166 info = self._request_info.get('execute')
165 info = self._request_info.get('execute')
167 if info and info.id == msg['parent_header']['msg_id']:
166 if info and info.id == msg['parent_header']['msg_id']:
168 if info.kind == 'prompt':
167 if info.kind == 'prompt':
169 number = msg['content']['execution_count'] + 1
168 number = msg['content']['execution_count'] + 1
170 self._show_interpreter_prompt(number)
169 self._show_interpreter_prompt(number)
171 else:
170 else:
172 super(IPythonWidget, self)._handle_execute_reply(msg)
171 super(IPythonWidget, self)._handle_execute_reply(msg)
173
172
174 def _handle_history_reply(self, msg):
173 def _handle_history_reply(self, msg):
175 """ Implemented to handle history tail replies, which are only supported
174 """ Implemented to handle history tail replies, which are only supported
176 by the IPython kernel.
175 by the IPython kernel.
177 """
176 """
178 history_items = msg['content']['history']
177 history_items = msg['content']['history']
179 items = [ line.rstrip() for _, _, line in history_items ]
178 items = [ line.rstrip() for _, _, line in history_items ]
180 self._set_history(items)
179 self._set_history(items)
181
180
182 def _handle_pyout(self, msg):
181 def _handle_pyout(self, msg):
183 """ Reimplemented for IPython-style "display hook".
182 """ Reimplemented for IPython-style "display hook".
184 """
183 """
185 if not self._hidden and self._is_from_this_session(msg):
184 if not self._hidden and self._is_from_this_session(msg):
186 content = msg['content']
185 content = msg['content']
187 prompt_number = content['execution_count']
186 prompt_number = content['execution_count']
188 data = content['data']
187 data = content['data']
189 if data.has_key('text/html'):
188 if data.has_key('text/html'):
190 self._append_plain_text(self.output_sep)
189 self._append_plain_text(self.output_sep)
191 self._append_html(self._make_out_prompt(prompt_number))
190 self._append_html(self._make_out_prompt(prompt_number))
192 html = data['text/html']
191 html = data['text/html']
193 self._append_plain_text('\n')
192 self._append_plain_text('\n')
194 self._append_html(html + self.output_sep2)
193 self._append_html(html + self.output_sep2)
195 elif data.has_key('text/plain'):
194 elif data.has_key('text/plain'):
196 self._append_plain_text(self.output_sep)
195 self._append_plain_text(self.output_sep)
197 self._append_html(self._make_out_prompt(prompt_number))
196 self._append_html(self._make_out_prompt(prompt_number))
198 text = data['text/plain']
197 text = data['text/plain']
199 # If the repr is multiline, make sure we start on a new line,
198 # If the repr is multiline, make sure we start on a new line,
200 # so that its lines are aligned.
199 # so that its lines are aligned.
201 if "\n" in text and not self.output_sep.endswith("\n"):
200 if "\n" in text and not self.output_sep.endswith("\n"):
202 self._append_plain_text('\n')
201 self._append_plain_text('\n')
203 self._append_plain_text(text + self.output_sep2)
202 self._append_plain_text(text + self.output_sep2)
204
203
205 def _handle_display_data(self, msg):
204 def _handle_display_data(self, msg):
206 """ The base handler for the ``display_data`` message.
205 """ The base handler for the ``display_data`` message.
207 """
206 """
208 # For now, we don't display data from other frontends, but we
207 # For now, we don't display data from other frontends, but we
209 # eventually will as this allows all frontends to monitor the display
208 # eventually will as this allows all frontends to monitor the display
210 # data. But we need to figure out how to handle this in the GUI.
209 # data. But we need to figure out how to handle this in the GUI.
211 if not self._hidden and self._is_from_this_session(msg):
210 if not self._hidden and self._is_from_this_session(msg):
212 source = msg['content']['source']
211 source = msg['content']['source']
213 data = msg['content']['data']
212 data = msg['content']['data']
214 metadata = msg['content']['metadata']
213 metadata = msg['content']['metadata']
215 # In the regular IPythonWidget, we simply print the plain text
214 # In the regular IPythonWidget, we simply print the plain text
216 # representation.
215 # representation.
217 if data.has_key('text/html'):
216 if data.has_key('text/html'):
218 html = data['text/html']
217 html = data['text/html']
219 self._append_html(html)
218 self._append_html(html)
220 elif data.has_key('text/plain'):
219 elif data.has_key('text/plain'):
221 text = data['text/plain']
220 text = data['text/plain']
222 self._append_plain_text(text)
221 self._append_plain_text(text)
223 # This newline seems to be needed for text and html output.
222 # This newline seems to be needed for text and html output.
224 self._append_plain_text(u'\n')
223 self._append_plain_text(u'\n')
225
224
226 def _started_channels(self):
225 def _started_channels(self):
227 """ Reimplemented to make a history request.
226 """ Reimplemented to make a history request.
228 """
227 """
229 super(IPythonWidget, self)._started_channels()
228 super(IPythonWidget, self)._started_channels()
230 self.kernel_manager.shell_channel.history(hist_access_type='tail', n=1000)
229 self.kernel_manager.shell_channel.history(hist_access_type='tail', n=1000)
231
230
232 #---------------------------------------------------------------------------
231 #---------------------------------------------------------------------------
233 # 'ConsoleWidget' public interface
232 # 'ConsoleWidget' public interface
234 #---------------------------------------------------------------------------
233 #---------------------------------------------------------------------------
235
234
236 def copy(self):
235 def copy(self):
237 """ Copy the currently selected text to the clipboard, removing prompts
236 """ Copy the currently selected text to the clipboard, removing prompts
238 if possible.
237 if possible.
239 """
238 """
240 text = self._control.textCursor().selection().toPlainText()
239 text = self._control.textCursor().selection().toPlainText()
241 if text:
240 if text:
242 lines = map(transform_ipy_prompt, text.splitlines())
241 lines = map(transform_ipy_prompt, text.splitlines())
243 text = '\n'.join(lines)
242 text = '\n'.join(lines)
244 QtGui.QApplication.clipboard().setText(text)
243 QtGui.QApplication.clipboard().setText(text)
245
244
246 #---------------------------------------------------------------------------
245 #---------------------------------------------------------------------------
247 # 'FrontendWidget' public interface
246 # 'FrontendWidget' public interface
248 #---------------------------------------------------------------------------
247 #---------------------------------------------------------------------------
249
248
250 def execute_file(self, path, hidden=False):
249 def execute_file(self, path, hidden=False):
251 """ Reimplemented to use the 'run' magic.
250 """ Reimplemented to use the 'run' magic.
252 """
251 """
253 # Use forward slashes on Windows to avoid escaping each separator.
252 # Use forward slashes on Windows to avoid escaping each separator.
254 if sys.platform == 'win32':
253 if sys.platform == 'win32':
255 path = os.path.normpath(path).replace('\\', '/')
254 path = os.path.normpath(path).replace('\\', '/')
256
255
257 self.execute('%%run %s' % path, hidden=hidden)
256 self.execute('%%run %s' % path, hidden=hidden)
258
257
259 #---------------------------------------------------------------------------
258 #---------------------------------------------------------------------------
260 # 'FrontendWidget' protected interface
259 # 'FrontendWidget' protected interface
261 #---------------------------------------------------------------------------
260 #---------------------------------------------------------------------------
262
261
263 def _complete(self):
262 def _complete(self):
264 """ Reimplemented to support IPython's improved completion machinery.
263 """ Reimplemented to support IPython's improved completion machinery.
265 """
264 """
266 # We let the kernel split the input line, so we *always* send an empty
265 # We let the kernel split the input line, so we *always* send an empty
267 # text field. Readline-based frontends do get a real text field which
266 # text field. Readline-based frontends do get a real text field which
268 # they can use.
267 # they can use.
269 text = ''
268 text = ''
270
269
271 # Send the completion request to the kernel
270 # Send the completion request to the kernel
272 msg_id = self.kernel_manager.shell_channel.complete(
271 msg_id = self.kernel_manager.shell_channel.complete(
273 text, # text
272 text, # text
274 self._get_input_buffer_cursor_line(), # line
273 self._get_input_buffer_cursor_line(), # line
275 self._get_input_buffer_cursor_column(), # cursor_pos
274 self._get_input_buffer_cursor_column(), # cursor_pos
276 self.input_buffer) # block
275 self.input_buffer) # block
277 pos = self._get_cursor().position()
276 pos = self._get_cursor().position()
278 info = self._CompletionRequest(msg_id, pos)
277 info = self._CompletionRequest(msg_id, pos)
279 self._request_info['complete'] = info
278 self._request_info['complete'] = info
280
279
281 def _get_banner(self):
280 def _get_banner(self):
282 """ Reimplemented to return IPython's default banner.
281 """ Reimplemented to return IPython's default banner.
283 """
282 """
284 return default_gui_banner
283 return default_gui_banner
285
284
286 def _process_execute_error(self, msg):
285 def _process_execute_error(self, msg):
287 """ Reimplemented for IPython-style traceback formatting.
286 """ Reimplemented for IPython-style traceback formatting.
288 """
287 """
289 content = msg['content']
288 content = msg['content']
290 traceback = '\n'.join(content['traceback']) + '\n'
289 traceback = '\n'.join(content['traceback']) + '\n'
291 if False:
290 if False:
292 # FIXME: For now, tracebacks come as plain text, so we can't use
291 # FIXME: For now, tracebacks come as plain text, so we can't use
293 # the html renderer yet. Once we refactor ultratb to produce
292 # the html renderer yet. Once we refactor ultratb to produce
294 # properly styled tracebacks, this branch should be the default
293 # properly styled tracebacks, this branch should be the default
295 traceback = traceback.replace(' ', '&nbsp;')
294 traceback = traceback.replace(' ', '&nbsp;')
296 traceback = traceback.replace('\n', '<br/>')
295 traceback = traceback.replace('\n', '<br/>')
297
296
298 ename = content['ename']
297 ename = content['ename']
299 ename_styled = '<span class="error">%s</span>' % ename
298 ename_styled = '<span class="error">%s</span>' % ename
300 traceback = traceback.replace(ename, ename_styled)
299 traceback = traceback.replace(ename, ename_styled)
301
300
302 self._append_html(traceback)
301 self._append_html(traceback)
303 else:
302 else:
304 # This is the fallback for now, using plain text with ansi escapes
303 # This is the fallback for now, using plain text with ansi escapes
305 self._append_plain_text(traceback)
304 self._append_plain_text(traceback)
306
305
307 def _process_execute_payload(self, item):
306 def _process_execute_payload(self, item):
308 """ Reimplemented to dispatch payloads to handler methods.
307 """ Reimplemented to dispatch payloads to handler methods.
309 """
308 """
310 handler = self._payload_handlers.get(item['source'])
309 handler = self._payload_handlers.get(item['source'])
311 if handler is None:
310 if handler is None:
312 # We have no handler for this type of payload, simply ignore it
311 # We have no handler for this type of payload, simply ignore it
313 return False
312 return False
314 else:
313 else:
315 handler(item)
314 handler(item)
316 return True
315 return True
317
316
318 def _show_interpreter_prompt(self, number=None):
317 def _show_interpreter_prompt(self, number=None):
319 """ Reimplemented for IPython-style prompts.
318 """ Reimplemented for IPython-style prompts.
320 """
319 """
321 # If a number was not specified, make a prompt number request.
320 # If a number was not specified, make a prompt number request.
322 if number is None:
321 if number is None:
323 msg_id = self.kernel_manager.shell_channel.execute('', silent=True)
322 msg_id = self.kernel_manager.shell_channel.execute('', silent=True)
324 info = self._ExecutionRequest(msg_id, 'prompt')
323 info = self._ExecutionRequest(msg_id, 'prompt')
325 self._request_info['execute'] = info
324 self._request_info['execute'] = info
326 return
325 return
327
326
328 # Show a new prompt and save information about it so that it can be
327 # Show a new prompt and save information about it so that it can be
329 # updated later if the prompt number turns out to be wrong.
328 # updated later if the prompt number turns out to be wrong.
330 self._prompt_sep = self.input_sep
329 self._prompt_sep = self.input_sep
331 self._show_prompt(self._make_in_prompt(number), html=True)
330 self._show_prompt(self._make_in_prompt(number), html=True)
332 block = self._control.document().lastBlock()
331 block = self._control.document().lastBlock()
333 length = len(self._prompt)
332 length = len(self._prompt)
334 self._previous_prompt_obj = self._PromptBlock(block, length, number)
333 self._previous_prompt_obj = self._PromptBlock(block, length, number)
335
334
336 # Update continuation prompt to reflect (possibly) new prompt length.
335 # Update continuation prompt to reflect (possibly) new prompt length.
337 self._set_continuation_prompt(
336 self._set_continuation_prompt(
338 self._make_continuation_prompt(self._prompt), html=True)
337 self._make_continuation_prompt(self._prompt), html=True)
339
338
340 def _show_interpreter_prompt_for_reply(self, msg):
339 def _show_interpreter_prompt_for_reply(self, msg):
341 """ Reimplemented for IPython-style prompts.
340 """ Reimplemented for IPython-style prompts.
342 """
341 """
343 # Update the old prompt number if necessary.
342 # Update the old prompt number if necessary.
344 content = msg['content']
343 content = msg['content']
345 previous_prompt_number = content['execution_count']
344 previous_prompt_number = content['execution_count']
346 if self._previous_prompt_obj and \
345 if self._previous_prompt_obj and \
347 self._previous_prompt_obj.number != previous_prompt_number:
346 self._previous_prompt_obj.number != previous_prompt_number:
348 block = self._previous_prompt_obj.block
347 block = self._previous_prompt_obj.block
349
348
350 # Make sure the prompt block has not been erased.
349 # Make sure the prompt block has not been erased.
351 if block.isValid() and block.text():
350 if block.isValid() and block.text():
352
351
353 # Remove the old prompt and insert a new prompt.
352 # Remove the old prompt and insert a new prompt.
354 cursor = QtGui.QTextCursor(block)
353 cursor = QtGui.QTextCursor(block)
355 cursor.movePosition(QtGui.QTextCursor.Right,
354 cursor.movePosition(QtGui.QTextCursor.Right,
356 QtGui.QTextCursor.KeepAnchor,
355 QtGui.QTextCursor.KeepAnchor,
357 self._previous_prompt_obj.length)
356 self._previous_prompt_obj.length)
358 prompt = self._make_in_prompt(previous_prompt_number)
357 prompt = self._make_in_prompt(previous_prompt_number)
359 self._prompt = self._insert_html_fetching_plain_text(
358 self._prompt = self._insert_html_fetching_plain_text(
360 cursor, prompt)
359 cursor, prompt)
361
360
362 # When the HTML is inserted, Qt blows away the syntax
361 # When the HTML is inserted, Qt blows away the syntax
363 # highlighting for the line, so we need to rehighlight it.
362 # highlighting for the line, so we need to rehighlight it.
364 self._highlighter.rehighlightBlock(cursor.block())
363 self._highlighter.rehighlightBlock(cursor.block())
365
364
366 self._previous_prompt_obj = None
365 self._previous_prompt_obj = None
367
366
368 # Show a new prompt with the kernel's estimated prompt number.
367 # Show a new prompt with the kernel's estimated prompt number.
369 self._show_interpreter_prompt(previous_prompt_number + 1)
368 self._show_interpreter_prompt(previous_prompt_number + 1)
370
369
371 #---------------------------------------------------------------------------
370 #---------------------------------------------------------------------------
372 # 'IPythonWidget' interface
371 # 'IPythonWidget' interface
373 #---------------------------------------------------------------------------
372 #---------------------------------------------------------------------------
374
373
375 def set_default_style(self, colors='lightbg'):
374 def set_default_style(self, colors='lightbg'):
376 """ Sets the widget style to the class defaults.
375 """ Sets the widget style to the class defaults.
377
376
378 Parameters:
377 Parameters:
379 -----------
378 -----------
380 colors : str, optional (default lightbg)
379 colors : str, optional (default lightbg)
381 Whether to use the default IPython light background or dark
380 Whether to use the default IPython light background or dark
382 background or B&W style.
381 background or B&W style.
383 """
382 """
384 colors = colors.lower()
383 colors = colors.lower()
385 if colors=='lightbg':
384 if colors=='lightbg':
386 self.style_sheet = styles.default_light_style_sheet
385 self.style_sheet = styles.default_light_style_sheet
387 self.syntax_style = styles.default_light_syntax_style
386 self.syntax_style = styles.default_light_syntax_style
388 elif colors=='linux':
387 elif colors=='linux':
389 self.style_sheet = styles.default_dark_style_sheet
388 self.style_sheet = styles.default_dark_style_sheet
390 self.syntax_style = styles.default_dark_syntax_style
389 self.syntax_style = styles.default_dark_syntax_style
391 elif colors=='nocolor':
390 elif colors=='nocolor':
392 self.style_sheet = styles.default_bw_style_sheet
391 self.style_sheet = styles.default_bw_style_sheet
393 self.syntax_style = styles.default_bw_syntax_style
392 self.syntax_style = styles.default_bw_syntax_style
394 else:
393 else:
395 raise KeyError("No such color scheme: %s"%colors)
394 raise KeyError("No such color scheme: %s"%colors)
396
395
397 #---------------------------------------------------------------------------
396 #---------------------------------------------------------------------------
398 # 'IPythonWidget' protected interface
397 # 'IPythonWidget' protected interface
399 #---------------------------------------------------------------------------
398 #---------------------------------------------------------------------------
400
399
401 def _edit(self, filename, line=None):
400 def _edit(self, filename, line=None):
402 """ Opens a Python script for editing.
401 """ Opens a Python script for editing.
403
402
404 Parameters:
403 Parameters:
405 -----------
404 -----------
406 filename : str
405 filename : str
407 A path to a local system file.
406 A path to a local system file.
408
407
409 line : int, optional
408 line : int, optional
410 A line of interest in the file.
409 A line of interest in the file.
411 """
410 """
412 if self.custom_edit:
411 if self.custom_edit:
413 self.custom_edit_requested.emit(filename, line)
412 self.custom_edit_requested.emit(filename, line)
414 elif not self.editor:
413 elif not self.editor:
415 self._append_plain_text('No default editor available.\n'
414 self._append_plain_text('No default editor available.\n'
416 'Specify a GUI text editor in the `IPythonWidget.editor` configurable\n'
415 'Specify a GUI text editor in the `IPythonWidget.editor` configurable\n'
417 'to enable the %edit magic')
416 'to enable the %edit magic')
418 else:
417 else:
419 try:
418 try:
420 filename = '"%s"' % filename
419 filename = '"%s"' % filename
421 if line and self.editor_line:
420 if line and self.editor_line:
422 command = self.editor_line.format(filename=filename,
421 command = self.editor_line.format(filename=filename,
423 line=line)
422 line=line)
424 else:
423 else:
425 try:
424 try:
426 command = self.editor.format()
425 command = self.editor.format()
427 except KeyError:
426 except KeyError:
428 command = self.editor.format(filename=filename)
427 command = self.editor.format(filename=filename)
429 else:
428 else:
430 command += ' ' + filename
429 command += ' ' + filename
431 except KeyError:
430 except KeyError:
432 self._append_plain_text('Invalid editor command.\n')
431 self._append_plain_text('Invalid editor command.\n')
433 else:
432 else:
434 try:
433 try:
435 Popen(command, shell=True)
434 Popen(command, shell=True)
436 except OSError:
435 except OSError:
437 msg = 'Opening editor with command "%s" failed.\n'
436 msg = 'Opening editor with command "%s" failed.\n'
438 self._append_plain_text(msg % command)
437 self._append_plain_text(msg % command)
439
438
440 def _make_in_prompt(self, number):
439 def _make_in_prompt(self, number):
441 """ Given a prompt number, returns an HTML In prompt.
440 """ Given a prompt number, returns an HTML In prompt.
442 """
441 """
443 body = self.in_prompt % number
442 body = self.in_prompt % number
444 return '<span class="in-prompt">%s</span>' % body
443 return '<span class="in-prompt">%s</span>' % body
445
444
446 def _make_continuation_prompt(self, prompt):
445 def _make_continuation_prompt(self, prompt):
447 """ Given a plain text version of an In prompt, returns an HTML
446 """ Given a plain text version of an In prompt, returns an HTML
448 continuation prompt.
447 continuation prompt.
449 """
448 """
450 end_chars = '...: '
449 end_chars = '...: '
451 space_count = len(prompt.lstrip('\n')) - len(end_chars)
450 space_count = len(prompt.lstrip('\n')) - len(end_chars)
452 body = '&nbsp;' * space_count + end_chars
451 body = '&nbsp;' * space_count + end_chars
453 return '<span class="in-prompt">%s</span>' % body
452 return '<span class="in-prompt">%s</span>' % body
454
453
455 def _make_out_prompt(self, number):
454 def _make_out_prompt(self, number):
456 """ Given a prompt number, returns an HTML Out prompt.
455 """ Given a prompt number, returns an HTML Out prompt.
457 """
456 """
458 body = self.out_prompt % number
457 body = self.out_prompt % number
459 return '<span class="out-prompt">%s</span>' % body
458 return '<span class="out-prompt">%s</span>' % body
460
459
461 #------ Payload handlers --------------------------------------------------
460 #------ Payload handlers --------------------------------------------------
462
461
463 # Payload handlers with a generic interface: each takes the opaque payload
462 # Payload handlers with a generic interface: each takes the opaque payload
464 # dict, unpacks it and calls the underlying functions with the necessary
463 # dict, unpacks it and calls the underlying functions with the necessary
465 # arguments.
464 # arguments.
466
465
467 def _handle_payload_edit(self, item):
466 def _handle_payload_edit(self, item):
468 self._edit(item['filename'], item['line_number'])
467 self._edit(item['filename'], item['line_number'])
469
468
470 def _handle_payload_exit(self, item):
469 def _handle_payload_exit(self, item):
471 self._keep_kernel_on_exit = item['keepkernel']
470 self._keep_kernel_on_exit = item['keepkernel']
472 self.exit_requested.emit()
471 self.exit_requested.emit()
473
472
474 def _handle_payload_next_input(self, item):
473 def _handle_payload_next_input(self, item):
475 self.input_buffer = dedent(item['text'].rstrip())
474 self.input_buffer = dedent(item['text'].rstrip())
476
475
477 def _handle_payload_page(self, item):
476 def _handle_payload_page(self, item):
478 # Since the plain text widget supports only a very small subset of HTML
477 # Since the plain text widget supports only a very small subset of HTML
479 # and we have no control over the HTML source, we only page HTML
478 # and we have no control over the HTML source, we only page HTML
480 # payloads in the rich text widget.
479 # payloads in the rich text widget.
481 if item['html'] and self.kind == 'rich':
480 if item['html'] and self.kind == 'rich':
482 self._page(item['html'], html=True)
481 self._page(item['html'], html=True)
483 else:
482 else:
484 self._page(item['text'], html=False)
483 self._page(item['text'], html=False)
485
484
486 #------ Trait change handlers --------------------------------------------
485 #------ Trait change handlers --------------------------------------------
487
486
488 def _style_sheet_changed(self):
487 def _style_sheet_changed(self):
489 """ Set the style sheets of the underlying widgets.
488 """ Set the style sheets of the underlying widgets.
490 """
489 """
491 self.setStyleSheet(self.style_sheet)
490 self.setStyleSheet(self.style_sheet)
492 self._control.document().setDefaultStyleSheet(self.style_sheet)
491 self._control.document().setDefaultStyleSheet(self.style_sheet)
493 if self._page_control:
492 if self._page_control:
494 self._page_control.document().setDefaultStyleSheet(self.style_sheet)
493 self._page_control.document().setDefaultStyleSheet(self.style_sheet)
495
494
496 bg_color = self._control.palette().window().color()
495 bg_color = self._control.palette().window().color()
497 self._ansi_processor.set_background_color(bg_color)
496 self._ansi_processor.set_background_color(bg_color)
498
497
499
498
500 def _syntax_style_changed(self):
499 def _syntax_style_changed(self):
501 """ Set the style for the syntax highlighter.
500 """ Set the style for the syntax highlighter.
502 """
501 """
503 if self._highlighter is None:
502 if self._highlighter is None:
504 # ignore premature calls
503 # ignore premature calls
505 return
504 return
506 if self.syntax_style:
505 if self.syntax_style:
507 self._highlighter.set_style(self.syntax_style)
506 self._highlighter.set_style(self.syntax_style)
508 else:
507 else:
509 self._highlighter.set_style_sheet(self.style_sheet)
508 self._highlighter.set_style_sheet(self.style_sheet)
510
509
@@ -1,247 +1,247 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 An embedded IPython shell.
4 An embedded IPython shell.
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * Fernando Perez
9 * Fernando Perez
10
10
11 Notes
11 Notes
12 -----
12 -----
13 """
13 """
14
14
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16 # Copyright (C) 2008-2009 The IPython Development Team
16 # Copyright (C) 2008-2009 The IPython Development Team
17 #
17 #
18 # Distributed under the terms of the BSD License. The full license is in
18 # Distributed under the terms of the BSD License. The full license is in
19 # the file COPYING, distributed as part of this software.
19 # the file COPYING, distributed as part of this software.
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21
21
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23 # Imports
23 # Imports
24 #-----------------------------------------------------------------------------
24 #-----------------------------------------------------------------------------
25
25
26 from __future__ import with_statement
26 from __future__ import with_statement
27 import __main__
27 import __main__
28
28
29 import sys
29 import sys
30 from contextlib import nested
30 from contextlib import nested
31
31
32 from IPython.core import ultratb
32 from IPython.core import ultratb
33 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
33 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
34 from IPython.frontend.terminal.ipapp import load_default_config
34 from IPython.frontend.terminal.ipapp import load_default_config
35
35
36 from IPython.utils.traitlets import Bool, Str, CBool, Unicode
36 from IPython.utils.traitlets import Bool, CBool, Unicode
37 from IPython.utils.io import ask_yes_no
37 from IPython.utils.io import ask_yes_no
38
38
39
39
40 #-----------------------------------------------------------------------------
40 #-----------------------------------------------------------------------------
41 # Classes and functions
41 # Classes and functions
42 #-----------------------------------------------------------------------------
42 #-----------------------------------------------------------------------------
43
43
44 # This is an additional magic that is exposed in embedded shells.
44 # This is an additional magic that is exposed in embedded shells.
45 def kill_embedded(self,parameter_s=''):
45 def kill_embedded(self,parameter_s=''):
46 """%kill_embedded : deactivate for good the current embedded IPython.
46 """%kill_embedded : deactivate for good the current embedded IPython.
47
47
48 This function (after asking for confirmation) sets an internal flag so that
48 This function (after asking for confirmation) sets an internal flag so that
49 an embedded IPython will never activate again. This is useful to
49 an embedded IPython will never activate again. This is useful to
50 permanently disable a shell that is being called inside a loop: once you've
50 permanently disable a shell that is being called inside a loop: once you've
51 figured out what you needed from it, you may then kill it and the program
51 figured out what you needed from it, you may then kill it and the program
52 will then continue to run without the interactive shell interfering again.
52 will then continue to run without the interactive shell interfering again.
53 """
53 """
54
54
55 kill = ask_yes_no("Are you sure you want to kill this embedded instance "
55 kill = ask_yes_no("Are you sure you want to kill this embedded instance "
56 "(y/n)? [y/N] ",'n')
56 "(y/n)? [y/N] ",'n')
57 if kill:
57 if kill:
58 self.embedded_active = False
58 self.embedded_active = False
59 print "This embedded IPython will not reactivate anymore once you exit."
59 print "This embedded IPython will not reactivate anymore once you exit."
60
60
61
61
62 class InteractiveShellEmbed(TerminalInteractiveShell):
62 class InteractiveShellEmbed(TerminalInteractiveShell):
63
63
64 dummy_mode = Bool(False)
64 dummy_mode = Bool(False)
65 exit_msg = Unicode('')
65 exit_msg = Unicode('')
66 embedded = CBool(True)
66 embedded = CBool(True)
67 embedded_active = CBool(True)
67 embedded_active = CBool(True)
68 # Like the base class display_banner is not configurable, but here it
68 # Like the base class display_banner is not configurable, but here it
69 # is True by default.
69 # is True by default.
70 display_banner = CBool(True)
70 display_banner = CBool(True)
71
71
72 def __init__(self, config=None, ipython_dir=None, user_ns=None,
72 def __init__(self, config=None, ipython_dir=None, user_ns=None,
73 user_global_ns=None, custom_exceptions=((),None),
73 user_global_ns=None, custom_exceptions=((),None),
74 usage=None, banner1=None, banner2=None,
74 usage=None, banner1=None, banner2=None,
75 display_banner=None, exit_msg=u''):
75 display_banner=None, exit_msg=u''):
76
76
77 super(InteractiveShellEmbed,self).__init__(
77 super(InteractiveShellEmbed,self).__init__(
78 config=config, ipython_dir=ipython_dir, user_ns=user_ns,
78 config=config, ipython_dir=ipython_dir, user_ns=user_ns,
79 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions,
79 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions,
80 usage=usage, banner1=banner1, banner2=banner2,
80 usage=usage, banner1=banner1, banner2=banner2,
81 display_banner=display_banner
81 display_banner=display_banner
82 )
82 )
83
83
84 self.exit_msg = exit_msg
84 self.exit_msg = exit_msg
85 self.define_magic("kill_embedded", kill_embedded)
85 self.define_magic("kill_embedded", kill_embedded)
86
86
87 # don't use the ipython crash handler so that user exceptions aren't
87 # don't use the ipython crash handler so that user exceptions aren't
88 # trapped
88 # trapped
89 sys.excepthook = ultratb.FormattedTB(color_scheme=self.colors,
89 sys.excepthook = ultratb.FormattedTB(color_scheme=self.colors,
90 mode=self.xmode,
90 mode=self.xmode,
91 call_pdb=self.pdb)
91 call_pdb=self.pdb)
92
92
93 def init_sys_modules(self):
93 def init_sys_modules(self):
94 pass
94 pass
95
95
96 def __call__(self, header='', local_ns=None, global_ns=None, dummy=None,
96 def __call__(self, header='', local_ns=None, global_ns=None, dummy=None,
97 stack_depth=1):
97 stack_depth=1):
98 """Activate the interactive interpreter.
98 """Activate the interactive interpreter.
99
99
100 __call__(self,header='',local_ns=None,global_ns,dummy=None) -> Start
100 __call__(self,header='',local_ns=None,global_ns,dummy=None) -> Start
101 the interpreter shell with the given local and global namespaces, and
101 the interpreter shell with the given local and global namespaces, and
102 optionally print a header string at startup.
102 optionally print a header string at startup.
103
103
104 The shell can be globally activated/deactivated using the
104 The shell can be globally activated/deactivated using the
105 set/get_dummy_mode methods. This allows you to turn off a shell used
105 set/get_dummy_mode methods. This allows you to turn off a shell used
106 for debugging globally.
106 for debugging globally.
107
107
108 However, *each* time you call the shell you can override the current
108 However, *each* time you call the shell you can override the current
109 state of dummy_mode with the optional keyword parameter 'dummy'. For
109 state of dummy_mode with the optional keyword parameter 'dummy'. For
110 example, if you set dummy mode on with IPShell.set_dummy_mode(1), you
110 example, if you set dummy mode on with IPShell.set_dummy_mode(1), you
111 can still have a specific call work by making it as IPShell(dummy=0).
111 can still have a specific call work by making it as IPShell(dummy=0).
112
112
113 The optional keyword parameter dummy controls whether the call
113 The optional keyword parameter dummy controls whether the call
114 actually does anything.
114 actually does anything.
115 """
115 """
116
116
117 # If the user has turned it off, go away
117 # If the user has turned it off, go away
118 if not self.embedded_active:
118 if not self.embedded_active:
119 return
119 return
120
120
121 # Normal exits from interactive mode set this flag, so the shell can't
121 # Normal exits from interactive mode set this flag, so the shell can't
122 # re-enter (it checks this variable at the start of interactive mode).
122 # re-enter (it checks this variable at the start of interactive mode).
123 self.exit_now = False
123 self.exit_now = False
124
124
125 # Allow the dummy parameter to override the global __dummy_mode
125 # Allow the dummy parameter to override the global __dummy_mode
126 if dummy or (dummy != 0 and self.dummy_mode):
126 if dummy or (dummy != 0 and self.dummy_mode):
127 return
127 return
128
128
129 if self.has_readline:
129 if self.has_readline:
130 self.set_readline_completer()
130 self.set_readline_completer()
131
131
132 # self.banner is auto computed
132 # self.banner is auto computed
133 if header:
133 if header:
134 self.old_banner2 = self.banner2
134 self.old_banner2 = self.banner2
135 self.banner2 = self.banner2 + '\n' + header + '\n'
135 self.banner2 = self.banner2 + '\n' + header + '\n'
136 else:
136 else:
137 self.old_banner2 = ''
137 self.old_banner2 = ''
138
138
139 # Call the embedding code with a stack depth of 1 so it can skip over
139 # Call the embedding code with a stack depth of 1 so it can skip over
140 # our call and get the original caller's namespaces.
140 # our call and get the original caller's namespaces.
141 self.mainloop(local_ns, global_ns, stack_depth=stack_depth)
141 self.mainloop(local_ns, global_ns, stack_depth=stack_depth)
142
142
143 self.banner2 = self.old_banner2
143 self.banner2 = self.old_banner2
144
144
145 if self.exit_msg is not None:
145 if self.exit_msg is not None:
146 print self.exit_msg
146 print self.exit_msg
147
147
148 def mainloop(self, local_ns=None, global_ns=None, stack_depth=0,
148 def mainloop(self, local_ns=None, global_ns=None, stack_depth=0,
149 display_banner=None):
149 display_banner=None):
150 """Embeds IPython into a running python program.
150 """Embeds IPython into a running python program.
151
151
152 Input:
152 Input:
153
153
154 - header: An optional header message can be specified.
154 - header: An optional header message can be specified.
155
155
156 - local_ns, global_ns: working namespaces. If given as None, the
156 - local_ns, global_ns: working namespaces. If given as None, the
157 IPython-initialized one is updated with __main__.__dict__, so that
157 IPython-initialized one is updated with __main__.__dict__, so that
158 program variables become visible but user-specific configuration
158 program variables become visible but user-specific configuration
159 remains possible.
159 remains possible.
160
160
161 - stack_depth: specifies how many levels in the stack to go to
161 - stack_depth: specifies how many levels in the stack to go to
162 looking for namespaces (when local_ns and global_ns are None). This
162 looking for namespaces (when local_ns and global_ns are None). This
163 allows an intermediate caller to make sure that this function gets
163 allows an intermediate caller to make sure that this function gets
164 the namespace from the intended level in the stack. By default (0)
164 the namespace from the intended level in the stack. By default (0)
165 it will get its locals and globals from the immediate caller.
165 it will get its locals and globals from the immediate caller.
166
166
167 Warning: it's possible to use this in a program which is being run by
167 Warning: it's possible to use this in a program which is being run by
168 IPython itself (via %run), but some funny things will happen (a few
168 IPython itself (via %run), but some funny things will happen (a few
169 globals get overwritten). In the future this will be cleaned up, as
169 globals get overwritten). In the future this will be cleaned up, as
170 there is no fundamental reason why it can't work perfectly."""
170 there is no fundamental reason why it can't work perfectly."""
171
171
172 # Get locals and globals from caller
172 # Get locals and globals from caller
173 if local_ns is None or global_ns is None:
173 if local_ns is None or global_ns is None:
174 call_frame = sys._getframe(stack_depth).f_back
174 call_frame = sys._getframe(stack_depth).f_back
175
175
176 if local_ns is None:
176 if local_ns is None:
177 local_ns = call_frame.f_locals
177 local_ns = call_frame.f_locals
178 if global_ns is None:
178 if global_ns is None:
179 global_ns = call_frame.f_globals
179 global_ns = call_frame.f_globals
180
180
181 # Update namespaces and fire up interpreter
181 # Update namespaces and fire up interpreter
182
182
183 # The global one is easy, we can just throw it in
183 # The global one is easy, we can just throw it in
184 self.user_global_ns = global_ns
184 self.user_global_ns = global_ns
185
185
186 # but the user/local one is tricky: ipython needs it to store internal
186 # but the user/local one is tricky: ipython needs it to store internal
187 # data, but we also need the locals. We'll copy locals in the user
187 # data, but we also need the locals. We'll copy locals in the user
188 # one, but will track what got copied so we can delete them at exit.
188 # one, but will track what got copied so we can delete them at exit.
189 # This is so that a later embedded call doesn't see locals from a
189 # This is so that a later embedded call doesn't see locals from a
190 # previous call (which most likely existed in a separate scope).
190 # previous call (which most likely existed in a separate scope).
191 local_varnames = local_ns.keys()
191 local_varnames = local_ns.keys()
192 self.user_ns.update(local_ns)
192 self.user_ns.update(local_ns)
193 #self.user_ns['local_ns'] = local_ns # dbg
193 #self.user_ns['local_ns'] = local_ns # dbg
194
194
195 # Patch for global embedding to make sure that things don't overwrite
195 # Patch for global embedding to make sure that things don't overwrite
196 # user globals accidentally. Thanks to Richard <rxe@renre-europe.com>
196 # user globals accidentally. Thanks to Richard <rxe@renre-europe.com>
197 # FIXME. Test this a bit more carefully (the if.. is new)
197 # FIXME. Test this a bit more carefully (the if.. is new)
198 if local_ns is None and global_ns is None:
198 if local_ns is None and global_ns is None:
199 self.user_global_ns.update(__main__.__dict__)
199 self.user_global_ns.update(__main__.__dict__)
200
200
201 # make sure the tab-completer has the correct frame information, so it
201 # make sure the tab-completer has the correct frame information, so it
202 # actually completes using the frame's locals/globals
202 # actually completes using the frame's locals/globals
203 self.set_completer_frame()
203 self.set_completer_frame()
204
204
205 with nested(self.builtin_trap, self.display_trap):
205 with nested(self.builtin_trap, self.display_trap):
206 self.interact(display_banner=display_banner)
206 self.interact(display_banner=display_banner)
207
207
208 # now, purge out the user namespace from anything we might have added
208 # now, purge out the user namespace from anything we might have added
209 # from the caller's local namespace
209 # from the caller's local namespace
210 delvar = self.user_ns.pop
210 delvar = self.user_ns.pop
211 for var in local_varnames:
211 for var in local_varnames:
212 delvar(var,None)
212 delvar(var,None)
213
213
214
214
215 _embedded_shell = None
215 _embedded_shell = None
216
216
217
217
218 def embed(**kwargs):
218 def embed(**kwargs):
219 """Call this to embed IPython at the current point in your program.
219 """Call this to embed IPython at the current point in your program.
220
220
221 The first invocation of this will create an :class:`InteractiveShellEmbed`
221 The first invocation of this will create an :class:`InteractiveShellEmbed`
222 instance and then call it. Consecutive calls just call the already
222 instance and then call it. Consecutive calls just call the already
223 created instance.
223 created instance.
224
224
225 Here is a simple example::
225 Here is a simple example::
226
226
227 from IPython import embed
227 from IPython import embed
228 a = 10
228 a = 10
229 b = 20
229 b = 20
230 embed('First time')
230 embed('First time')
231 c = 30
231 c = 30
232 d = 40
232 d = 40
233 embed
233 embed
234
234
235 Full customization can be done by passing a :class:`Struct` in as the
235 Full customization can be done by passing a :class:`Struct` in as the
236 config argument.
236 config argument.
237 """
237 """
238 config = kwargs.get('config')
238 config = kwargs.get('config')
239 header = kwargs.pop('header', u'')
239 header = kwargs.pop('header', u'')
240 if config is None:
240 if config is None:
241 config = load_default_config()
241 config = load_default_config()
242 config.InteractiveShellEmbed = config.TerminalInteractiveShell
242 config.InteractiveShellEmbed = config.TerminalInteractiveShell
243 kwargs['config'] = config
243 kwargs['config'] = config
244 global _embedded_shell
244 global _embedded_shell
245 if _embedded_shell is None:
245 if _embedded_shell is None:
246 _embedded_shell = InteractiveShellEmbed(**kwargs)
246 _embedded_shell = InteractiveShellEmbed(**kwargs)
247 _embedded_shell(header=header, stack_depth=2)
247 _embedded_shell(header=header, stack_depth=2)
@@ -1,590 +1,590 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Subclass of InteractiveShell for terminal based frontends."""
2 """Subclass of InteractiveShell for terminal based frontends."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 # Copyright (C) 2008-2010 The IPython Development Team
7 # Copyright (C) 2008-2010 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 import __builtin__
17 import __builtin__
18 import bdb
18 import bdb
19 from contextlib import nested
19 from contextlib import nested
20 import os
20 import os
21 import re
21 import re
22 import sys
22 import sys
23
23
24 from IPython.core.error import TryNext
24 from IPython.core.error import TryNext
25 from IPython.core.usage import interactive_usage, default_banner
25 from IPython.core.usage import interactive_usage, default_banner
26 from IPython.core.interactiveshell import InteractiveShell, InteractiveShellABC
26 from IPython.core.interactiveshell import InteractiveShell, InteractiveShellABC
27 from IPython.lib.inputhook import enable_gui
27 from IPython.lib.inputhook import enable_gui
28 from IPython.lib.pylabtools import pylab_activate
28 from IPython.lib.pylabtools import pylab_activate
29 from IPython.testing.skipdoctest import skip_doctest
29 from IPython.testing.skipdoctest import skip_doctest
30 from IPython.utils.terminal import toggle_set_term_title, set_term_title
30 from IPython.utils.terminal import toggle_set_term_title, set_term_title
31 from IPython.utils.process import abbrev_cwd
31 from IPython.utils.process import abbrev_cwd
32 from IPython.utils.warn import warn
32 from IPython.utils.warn import warn
33 from IPython.utils.text import num_ini_spaces
33 from IPython.utils.text import num_ini_spaces
34 from IPython.utils.traitlets import Int, Str, CBool, Unicode
34 from IPython.utils.traitlets import Int, CBool, Unicode
35
35
36 #-----------------------------------------------------------------------------
36 #-----------------------------------------------------------------------------
37 # Utilities
37 # Utilities
38 #-----------------------------------------------------------------------------
38 #-----------------------------------------------------------------------------
39
39
40 def get_default_editor():
40 def get_default_editor():
41 try:
41 try:
42 ed = os.environ['EDITOR']
42 ed = os.environ['EDITOR']
43 except KeyError:
43 except KeyError:
44 if os.name == 'posix':
44 if os.name == 'posix':
45 ed = 'vi' # the only one guaranteed to be there!
45 ed = 'vi' # the only one guaranteed to be there!
46 else:
46 else:
47 ed = 'notepad' # same in Windows!
47 ed = 'notepad' # same in Windows!
48 return ed
48 return ed
49
49
50
50
51 # store the builtin raw_input globally, and use this always, in case user code
51 # store the builtin raw_input globally, and use this always, in case user code
52 # overwrites it (like wx.py.PyShell does)
52 # overwrites it (like wx.py.PyShell does)
53 raw_input_original = raw_input
53 raw_input_original = raw_input
54
54
55 #-----------------------------------------------------------------------------
55 #-----------------------------------------------------------------------------
56 # Main class
56 # Main class
57 #-----------------------------------------------------------------------------
57 #-----------------------------------------------------------------------------
58
58
59 class TerminalInteractiveShell(InteractiveShell):
59 class TerminalInteractiveShell(InteractiveShell):
60
60
61 autoedit_syntax = CBool(False, config=True,
61 autoedit_syntax = CBool(False, config=True,
62 help="auto editing of files with syntax errors.")
62 help="auto editing of files with syntax errors.")
63 banner = Unicode('')
63 banner = Unicode('')
64 banner1 = Unicode(default_banner, config=True,
64 banner1 = Unicode(default_banner, config=True,
65 help="""The part of the banner to be printed before the profile"""
65 help="""The part of the banner to be printed before the profile"""
66 )
66 )
67 banner2 = Unicode('', config=True,
67 banner2 = Unicode('', config=True,
68 help="""The part of the banner to be printed after the profile"""
68 help="""The part of the banner to be printed after the profile"""
69 )
69 )
70 confirm_exit = CBool(True, config=True,
70 confirm_exit = CBool(True, config=True,
71 help="""
71 help="""
72 Set to confirm when you try to exit IPython with an EOF (Control-D
72 Set to confirm when you try to exit IPython with an EOF (Control-D
73 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
73 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
74 you can force a direct exit without any confirmation.""",
74 you can force a direct exit without any confirmation.""",
75 )
75 )
76 # This display_banner only controls whether or not self.show_banner()
76 # This display_banner only controls whether or not self.show_banner()
77 # is called when mainloop/interact are called. The default is False
77 # is called when mainloop/interact are called. The default is False
78 # because for the terminal based application, the banner behavior
78 # because for the terminal based application, the banner behavior
79 # is controlled by Global.display_banner, which IPythonApp looks at
79 # is controlled by Global.display_banner, which IPythonApp looks at
80 # to determine if *it* should call show_banner() by hand or not.
80 # to determine if *it* should call show_banner() by hand or not.
81 display_banner = CBool(False) # This isn't configurable!
81 display_banner = CBool(False) # This isn't configurable!
82 embedded = CBool(False)
82 embedded = CBool(False)
83 embedded_active = CBool(False)
83 embedded_active = CBool(False)
84 editor = Unicode(get_default_editor(), config=True,
84 editor = Unicode(get_default_editor(), config=True,
85 help="Set the editor used by IPython (default to $EDITOR/vi/notepad)."
85 help="Set the editor used by IPython (default to $EDITOR/vi/notepad)."
86 )
86 )
87 pager = Unicode('less', config=True,
87 pager = Unicode('less', config=True,
88 help="The shell program to be used for paging.")
88 help="The shell program to be used for paging.")
89
89
90 screen_length = Int(0, config=True,
90 screen_length = Int(0, config=True,
91 help=
91 help=
92 """Number of lines of your screen, used to control printing of very
92 """Number of lines of your screen, used to control printing of very
93 long strings. Strings longer than this number of lines will be sent
93 long strings. Strings longer than this number of lines will be sent
94 through a pager instead of directly printed. The default value for
94 through a pager instead of directly printed. The default value for
95 this is 0, which means IPython will auto-detect your screen size every
95 this is 0, which means IPython will auto-detect your screen size every
96 time it needs to print certain potentially long strings (this doesn't
96 time it needs to print certain potentially long strings (this doesn't
97 change the behavior of the 'print' keyword, it's only triggered
97 change the behavior of the 'print' keyword, it's only triggered
98 internally). If for some reason this isn't working well (it needs
98 internally). If for some reason this isn't working well (it needs
99 curses support), specify it yourself. Otherwise don't change the
99 curses support), specify it yourself. Otherwise don't change the
100 default.""",
100 default.""",
101 )
101 )
102 term_title = CBool(False, config=True,
102 term_title = CBool(False, config=True,
103 help="Enable auto setting the terminal title."
103 help="Enable auto setting the terminal title."
104 )
104 )
105
105
106 def __init__(self, config=None, ipython_dir=None, profile_dir=None, user_ns=None,
106 def __init__(self, config=None, ipython_dir=None, profile_dir=None, user_ns=None,
107 user_global_ns=None, custom_exceptions=((),None),
107 user_global_ns=None, custom_exceptions=((),None),
108 usage=None, banner1=None, banner2=None,
108 usage=None, banner1=None, banner2=None,
109 display_banner=None):
109 display_banner=None):
110
110
111 super(TerminalInteractiveShell, self).__init__(
111 super(TerminalInteractiveShell, self).__init__(
112 config=config, profile_dir=profile_dir, user_ns=user_ns,
112 config=config, profile_dir=profile_dir, user_ns=user_ns,
113 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions
113 user_global_ns=user_global_ns, custom_exceptions=custom_exceptions
114 )
114 )
115 # use os.system instead of utils.process.system by default, except on Windows
115 # use os.system instead of utils.process.system by default, except on Windows
116 if os.name == 'nt':
116 if os.name == 'nt':
117 self.system = self.system_piped
117 self.system = self.system_piped
118 else:
118 else:
119 self.system = self.system_raw
119 self.system = self.system_raw
120
120
121 self.init_term_title()
121 self.init_term_title()
122 self.init_usage(usage)
122 self.init_usage(usage)
123 self.init_banner(banner1, banner2, display_banner)
123 self.init_banner(banner1, banner2, display_banner)
124
124
125 #-------------------------------------------------------------------------
125 #-------------------------------------------------------------------------
126 # Things related to the terminal
126 # Things related to the terminal
127 #-------------------------------------------------------------------------
127 #-------------------------------------------------------------------------
128
128
129 @property
129 @property
130 def usable_screen_length(self):
130 def usable_screen_length(self):
131 if self.screen_length == 0:
131 if self.screen_length == 0:
132 return 0
132 return 0
133 else:
133 else:
134 num_lines_bot = self.separate_in.count('\n')+1
134 num_lines_bot = self.separate_in.count('\n')+1
135 return self.screen_length - num_lines_bot
135 return self.screen_length - num_lines_bot
136
136
137 def init_term_title(self):
137 def init_term_title(self):
138 # Enable or disable the terminal title.
138 # Enable or disable the terminal title.
139 if self.term_title:
139 if self.term_title:
140 toggle_set_term_title(True)
140 toggle_set_term_title(True)
141 set_term_title('IPython: ' + abbrev_cwd())
141 set_term_title('IPython: ' + abbrev_cwd())
142 else:
142 else:
143 toggle_set_term_title(False)
143 toggle_set_term_title(False)
144
144
145 #-------------------------------------------------------------------------
145 #-------------------------------------------------------------------------
146 # Things related to aliases
146 # Things related to aliases
147 #-------------------------------------------------------------------------
147 #-------------------------------------------------------------------------
148
148
149 def init_alias(self):
149 def init_alias(self):
150 # The parent class defines aliases that can be safely used with any
150 # The parent class defines aliases that can be safely used with any
151 # frontend.
151 # frontend.
152 super(TerminalInteractiveShell, self).init_alias()
152 super(TerminalInteractiveShell, self).init_alias()
153
153
154 # Now define aliases that only make sense on the terminal, because they
154 # Now define aliases that only make sense on the terminal, because they
155 # need direct access to the console in a way that we can't emulate in
155 # need direct access to the console in a way that we can't emulate in
156 # GUI or web frontend
156 # GUI or web frontend
157 if os.name == 'posix':
157 if os.name == 'posix':
158 aliases = [('clear', 'clear'), ('more', 'more'), ('less', 'less'),
158 aliases = [('clear', 'clear'), ('more', 'more'), ('less', 'less'),
159 ('man', 'man')]
159 ('man', 'man')]
160 elif os.name == 'nt':
160 elif os.name == 'nt':
161 aliases = [('cls', 'cls')]
161 aliases = [('cls', 'cls')]
162
162
163
163
164 for name, cmd in aliases:
164 for name, cmd in aliases:
165 self.alias_manager.define_alias(name, cmd)
165 self.alias_manager.define_alias(name, cmd)
166
166
167 #-------------------------------------------------------------------------
167 #-------------------------------------------------------------------------
168 # Things related to the banner and usage
168 # Things related to the banner and usage
169 #-------------------------------------------------------------------------
169 #-------------------------------------------------------------------------
170
170
171 def _banner1_changed(self):
171 def _banner1_changed(self):
172 self.compute_banner()
172 self.compute_banner()
173
173
174 def _banner2_changed(self):
174 def _banner2_changed(self):
175 self.compute_banner()
175 self.compute_banner()
176
176
177 def _term_title_changed(self, name, new_value):
177 def _term_title_changed(self, name, new_value):
178 self.init_term_title()
178 self.init_term_title()
179
179
180 def init_banner(self, banner1, banner2, display_banner):
180 def init_banner(self, banner1, banner2, display_banner):
181 if banner1 is not None:
181 if banner1 is not None:
182 self.banner1 = banner1
182 self.banner1 = banner1
183 if banner2 is not None:
183 if banner2 is not None:
184 self.banner2 = banner2
184 self.banner2 = banner2
185 if display_banner is not None:
185 if display_banner is not None:
186 self.display_banner = display_banner
186 self.display_banner = display_banner
187 self.compute_banner()
187 self.compute_banner()
188
188
189 def show_banner(self, banner=None):
189 def show_banner(self, banner=None):
190 if banner is None:
190 if banner is None:
191 banner = self.banner
191 banner = self.banner
192 self.write(banner)
192 self.write(banner)
193
193
194 def compute_banner(self):
194 def compute_banner(self):
195 self.banner = self.banner1
195 self.banner = self.banner1
196 if self.profile and self.profile != 'default':
196 if self.profile and self.profile != 'default':
197 self.banner += '\nIPython profile: %s\n' % self.profile
197 self.banner += '\nIPython profile: %s\n' % self.profile
198 if self.banner2:
198 if self.banner2:
199 self.banner += '\n' + self.banner2
199 self.banner += '\n' + self.banner2
200
200
201 def init_usage(self, usage=None):
201 def init_usage(self, usage=None):
202 if usage is None:
202 if usage is None:
203 self.usage = interactive_usage
203 self.usage = interactive_usage
204 else:
204 else:
205 self.usage = usage
205 self.usage = usage
206
206
207 #-------------------------------------------------------------------------
207 #-------------------------------------------------------------------------
208 # Mainloop and code execution logic
208 # Mainloop and code execution logic
209 #-------------------------------------------------------------------------
209 #-------------------------------------------------------------------------
210
210
211 def mainloop(self, display_banner=None):
211 def mainloop(self, display_banner=None):
212 """Start the mainloop.
212 """Start the mainloop.
213
213
214 If an optional banner argument is given, it will override the
214 If an optional banner argument is given, it will override the
215 internally created default banner.
215 internally created default banner.
216 """
216 """
217
217
218 with nested(self.builtin_trap, self.display_trap):
218 with nested(self.builtin_trap, self.display_trap):
219
219
220 while 1:
220 while 1:
221 try:
221 try:
222 self.interact(display_banner=display_banner)
222 self.interact(display_banner=display_banner)
223 #self.interact_with_readline()
223 #self.interact_with_readline()
224 # XXX for testing of a readline-decoupled repl loop, call
224 # XXX for testing of a readline-decoupled repl loop, call
225 # interact_with_readline above
225 # interact_with_readline above
226 break
226 break
227 except KeyboardInterrupt:
227 except KeyboardInterrupt:
228 # this should not be necessary, but KeyboardInterrupt
228 # this should not be necessary, but KeyboardInterrupt
229 # handling seems rather unpredictable...
229 # handling seems rather unpredictable...
230 self.write("\nKeyboardInterrupt in interact()\n")
230 self.write("\nKeyboardInterrupt in interact()\n")
231
231
232 def interact(self, display_banner=None):
232 def interact(self, display_banner=None):
233 """Closely emulate the interactive Python console."""
233 """Closely emulate the interactive Python console."""
234
234
235 # batch run -> do not interact
235 # batch run -> do not interact
236 if self.exit_now:
236 if self.exit_now:
237 return
237 return
238
238
239 if display_banner is None:
239 if display_banner is None:
240 display_banner = self.display_banner
240 display_banner = self.display_banner
241 if display_banner:
241 if display_banner:
242 self.show_banner()
242 self.show_banner()
243
243
244 more = False
244 more = False
245
245
246 # Mark activity in the builtins
246 # Mark activity in the builtins
247 __builtin__.__dict__['__IPYTHON__active'] += 1
247 __builtin__.__dict__['__IPYTHON__active'] += 1
248
248
249 if self.has_readline:
249 if self.has_readline:
250 self.readline_startup_hook(self.pre_readline)
250 self.readline_startup_hook(self.pre_readline)
251 # exit_now is set by a call to %Exit or %Quit, through the
251 # exit_now is set by a call to %Exit or %Quit, through the
252 # ask_exit callback.
252 # ask_exit callback.
253
253
254 while not self.exit_now:
254 while not self.exit_now:
255 self.hooks.pre_prompt_hook()
255 self.hooks.pre_prompt_hook()
256 if more:
256 if more:
257 try:
257 try:
258 prompt = self.hooks.generate_prompt(True)
258 prompt = self.hooks.generate_prompt(True)
259 except:
259 except:
260 self.showtraceback()
260 self.showtraceback()
261 if self.autoindent:
261 if self.autoindent:
262 self.rl_do_indent = True
262 self.rl_do_indent = True
263
263
264 else:
264 else:
265 try:
265 try:
266 prompt = self.hooks.generate_prompt(False)
266 prompt = self.hooks.generate_prompt(False)
267 except:
267 except:
268 self.showtraceback()
268 self.showtraceback()
269 try:
269 try:
270 line = self.raw_input(prompt)
270 line = self.raw_input(prompt)
271 if self.exit_now:
271 if self.exit_now:
272 # quick exit on sys.std[in|out] close
272 # quick exit on sys.std[in|out] close
273 break
273 break
274 if self.autoindent:
274 if self.autoindent:
275 self.rl_do_indent = False
275 self.rl_do_indent = False
276
276
277 except KeyboardInterrupt:
277 except KeyboardInterrupt:
278 #double-guard against keyboardinterrupts during kbdint handling
278 #double-guard against keyboardinterrupts during kbdint handling
279 try:
279 try:
280 self.write('\nKeyboardInterrupt\n')
280 self.write('\nKeyboardInterrupt\n')
281 self.input_splitter.reset()
281 self.input_splitter.reset()
282 more = False
282 more = False
283 except KeyboardInterrupt:
283 except KeyboardInterrupt:
284 pass
284 pass
285 except EOFError:
285 except EOFError:
286 if self.autoindent:
286 if self.autoindent:
287 self.rl_do_indent = False
287 self.rl_do_indent = False
288 if self.has_readline:
288 if self.has_readline:
289 self.readline_startup_hook(None)
289 self.readline_startup_hook(None)
290 self.write('\n')
290 self.write('\n')
291 self.exit()
291 self.exit()
292 except bdb.BdbQuit:
292 except bdb.BdbQuit:
293 warn('The Python debugger has exited with a BdbQuit exception.\n'
293 warn('The Python debugger has exited with a BdbQuit exception.\n'
294 'Because of how pdb handles the stack, it is impossible\n'
294 'Because of how pdb handles the stack, it is impossible\n'
295 'for IPython to properly format this particular exception.\n'
295 'for IPython to properly format this particular exception.\n'
296 'IPython will resume normal operation.')
296 'IPython will resume normal operation.')
297 except:
297 except:
298 # exceptions here are VERY RARE, but they can be triggered
298 # exceptions here are VERY RARE, but they can be triggered
299 # asynchronously by signal handlers, for example.
299 # asynchronously by signal handlers, for example.
300 self.showtraceback()
300 self.showtraceback()
301 else:
301 else:
302 self.input_splitter.push(line)
302 self.input_splitter.push(line)
303 more = self.input_splitter.push_accepts_more()
303 more = self.input_splitter.push_accepts_more()
304 if (self.SyntaxTB.last_syntax_error and
304 if (self.SyntaxTB.last_syntax_error and
305 self.autoedit_syntax):
305 self.autoedit_syntax):
306 self.edit_syntax_error()
306 self.edit_syntax_error()
307 if not more:
307 if not more:
308 source_raw = self.input_splitter.source_raw_reset()[1]
308 source_raw = self.input_splitter.source_raw_reset()[1]
309 self.run_cell(source_raw)
309 self.run_cell(source_raw)
310
310
311 # We are off again...
311 # We are off again...
312 __builtin__.__dict__['__IPYTHON__active'] -= 1
312 __builtin__.__dict__['__IPYTHON__active'] -= 1
313
313
314 # Turn off the exit flag, so the mainloop can be restarted if desired
314 # Turn off the exit flag, so the mainloop can be restarted if desired
315 self.exit_now = False
315 self.exit_now = False
316
316
317 def raw_input(self, prompt=''):
317 def raw_input(self, prompt=''):
318 """Write a prompt and read a line.
318 """Write a prompt and read a line.
319
319
320 The returned line does not include the trailing newline.
320 The returned line does not include the trailing newline.
321 When the user enters the EOF key sequence, EOFError is raised.
321 When the user enters the EOF key sequence, EOFError is raised.
322
322
323 Optional inputs:
323 Optional inputs:
324
324
325 - prompt(''): a string to be printed to prompt the user.
325 - prompt(''): a string to be printed to prompt the user.
326
326
327 - continue_prompt(False): whether this line is the first one or a
327 - continue_prompt(False): whether this line is the first one or a
328 continuation in a sequence of inputs.
328 continuation in a sequence of inputs.
329 """
329 """
330 # Code run by the user may have modified the readline completer state.
330 # Code run by the user may have modified the readline completer state.
331 # We must ensure that our completer is back in place.
331 # We must ensure that our completer is back in place.
332
332
333 if self.has_readline:
333 if self.has_readline:
334 self.set_readline_completer()
334 self.set_readline_completer()
335
335
336 try:
336 try:
337 line = raw_input_original(prompt).decode(self.stdin_encoding)
337 line = raw_input_original(prompt).decode(self.stdin_encoding)
338 except ValueError:
338 except ValueError:
339 warn("\n********\nYou or a %run:ed script called sys.stdin.close()"
339 warn("\n********\nYou or a %run:ed script called sys.stdin.close()"
340 " or sys.stdout.close()!\nExiting IPython!")
340 " or sys.stdout.close()!\nExiting IPython!")
341 self.ask_exit()
341 self.ask_exit()
342 return ""
342 return ""
343
343
344 # Try to be reasonably smart about not re-indenting pasted input more
344 # Try to be reasonably smart about not re-indenting pasted input more
345 # than necessary. We do this by trimming out the auto-indent initial
345 # than necessary. We do this by trimming out the auto-indent initial
346 # spaces, if the user's actual input started itself with whitespace.
346 # spaces, if the user's actual input started itself with whitespace.
347 if self.autoindent:
347 if self.autoindent:
348 if num_ini_spaces(line) > self.indent_current_nsp:
348 if num_ini_spaces(line) > self.indent_current_nsp:
349 line = line[self.indent_current_nsp:]
349 line = line[self.indent_current_nsp:]
350 self.indent_current_nsp = 0
350 self.indent_current_nsp = 0
351
351
352 return line
352 return line
353
353
354 #-------------------------------------------------------------------------
354 #-------------------------------------------------------------------------
355 # Methods to support auto-editing of SyntaxErrors.
355 # Methods to support auto-editing of SyntaxErrors.
356 #-------------------------------------------------------------------------
356 #-------------------------------------------------------------------------
357
357
358 def edit_syntax_error(self):
358 def edit_syntax_error(self):
359 """The bottom half of the syntax error handler called in the main loop.
359 """The bottom half of the syntax error handler called in the main loop.
360
360
361 Loop until syntax error is fixed or user cancels.
361 Loop until syntax error is fixed or user cancels.
362 """
362 """
363
363
364 while self.SyntaxTB.last_syntax_error:
364 while self.SyntaxTB.last_syntax_error:
365 # copy and clear last_syntax_error
365 # copy and clear last_syntax_error
366 err = self.SyntaxTB.clear_err_state()
366 err = self.SyntaxTB.clear_err_state()
367 if not self._should_recompile(err):
367 if not self._should_recompile(err):
368 return
368 return
369 try:
369 try:
370 # may set last_syntax_error again if a SyntaxError is raised
370 # may set last_syntax_error again if a SyntaxError is raised
371 self.safe_execfile(err.filename,self.user_ns)
371 self.safe_execfile(err.filename,self.user_ns)
372 except:
372 except:
373 self.showtraceback()
373 self.showtraceback()
374 else:
374 else:
375 try:
375 try:
376 f = file(err.filename)
376 f = file(err.filename)
377 try:
377 try:
378 # This should be inside a display_trap block and I
378 # This should be inside a display_trap block and I
379 # think it is.
379 # think it is.
380 sys.displayhook(f.read())
380 sys.displayhook(f.read())
381 finally:
381 finally:
382 f.close()
382 f.close()
383 except:
383 except:
384 self.showtraceback()
384 self.showtraceback()
385
385
386 def _should_recompile(self,e):
386 def _should_recompile(self,e):
387 """Utility routine for edit_syntax_error"""
387 """Utility routine for edit_syntax_error"""
388
388
389 if e.filename in ('<ipython console>','<input>','<string>',
389 if e.filename in ('<ipython console>','<input>','<string>',
390 '<console>','<BackgroundJob compilation>',
390 '<console>','<BackgroundJob compilation>',
391 None):
391 None):
392
392
393 return False
393 return False
394 try:
394 try:
395 if (self.autoedit_syntax and
395 if (self.autoedit_syntax and
396 not self.ask_yes_no('Return to editor to correct syntax error? '
396 not self.ask_yes_no('Return to editor to correct syntax error? '
397 '[Y/n] ','y')):
397 '[Y/n] ','y')):
398 return False
398 return False
399 except EOFError:
399 except EOFError:
400 return False
400 return False
401
401
402 def int0(x):
402 def int0(x):
403 try:
403 try:
404 return int(x)
404 return int(x)
405 except TypeError:
405 except TypeError:
406 return 0
406 return 0
407 # always pass integer line and offset values to editor hook
407 # always pass integer line and offset values to editor hook
408 try:
408 try:
409 self.hooks.fix_error_editor(e.filename,
409 self.hooks.fix_error_editor(e.filename,
410 int0(e.lineno),int0(e.offset),e.msg)
410 int0(e.lineno),int0(e.offset),e.msg)
411 except TryNext:
411 except TryNext:
412 warn('Could not open editor')
412 warn('Could not open editor')
413 return False
413 return False
414 return True
414 return True
415
415
416 #-------------------------------------------------------------------------
416 #-------------------------------------------------------------------------
417 # Things related to GUI support and pylab
417 # Things related to GUI support and pylab
418 #-------------------------------------------------------------------------
418 #-------------------------------------------------------------------------
419
419
420 def enable_pylab(self, gui=None):
420 def enable_pylab(self, gui=None):
421 """Activate pylab support at runtime.
421 """Activate pylab support at runtime.
422
422
423 This turns on support for matplotlib, preloads into the interactive
423 This turns on support for matplotlib, preloads into the interactive
424 namespace all of numpy and pylab, and configures IPython to correcdtly
424 namespace all of numpy and pylab, and configures IPython to correcdtly
425 interact with the GUI event loop. The GUI backend to be used can be
425 interact with the GUI event loop. The GUI backend to be used can be
426 optionally selected with the optional :param:`gui` argument.
426 optionally selected with the optional :param:`gui` argument.
427
427
428 Parameters
428 Parameters
429 ----------
429 ----------
430 gui : optional, string
430 gui : optional, string
431
431
432 If given, dictates the choice of matplotlib GUI backend to use
432 If given, dictates the choice of matplotlib GUI backend to use
433 (should be one of IPython's supported backends, 'tk', 'qt', 'wx' or
433 (should be one of IPython's supported backends, 'tk', 'qt', 'wx' or
434 'gtk'), otherwise we use the default chosen by matplotlib (as
434 'gtk'), otherwise we use the default chosen by matplotlib (as
435 dictated by the matplotlib build-time options plus the user's
435 dictated by the matplotlib build-time options plus the user's
436 matplotlibrc configuration file).
436 matplotlibrc configuration file).
437 """
437 """
438 # We want to prevent the loading of pylab to pollute the user's
438 # We want to prevent the loading of pylab to pollute the user's
439 # namespace as shown by the %who* magics, so we execute the activation
439 # namespace as shown by the %who* magics, so we execute the activation
440 # code in an empty namespace, and we update *both* user_ns and
440 # code in an empty namespace, and we update *both* user_ns and
441 # user_ns_hidden with this information.
441 # user_ns_hidden with this information.
442 ns = {}
442 ns = {}
443 gui = pylab_activate(ns, gui)
443 gui = pylab_activate(ns, gui)
444 self.user_ns.update(ns)
444 self.user_ns.update(ns)
445 self.user_ns_hidden.update(ns)
445 self.user_ns_hidden.update(ns)
446 # Now we must activate the gui pylab wants to use, and fix %run to take
446 # Now we must activate the gui pylab wants to use, and fix %run to take
447 # plot updates into account
447 # plot updates into account
448 enable_gui(gui)
448 enable_gui(gui)
449 self.magic_run = self._pylab_magic_run
449 self.magic_run = self._pylab_magic_run
450
450
451 #-------------------------------------------------------------------------
451 #-------------------------------------------------------------------------
452 # Things related to exiting
452 # Things related to exiting
453 #-------------------------------------------------------------------------
453 #-------------------------------------------------------------------------
454
454
455 def ask_exit(self):
455 def ask_exit(self):
456 """ Ask the shell to exit. Can be overiden and used as a callback. """
456 """ Ask the shell to exit. Can be overiden and used as a callback. """
457 self.exit_now = True
457 self.exit_now = True
458
458
459 def exit(self):
459 def exit(self):
460 """Handle interactive exit.
460 """Handle interactive exit.
461
461
462 This method calls the ask_exit callback."""
462 This method calls the ask_exit callback."""
463 if self.confirm_exit:
463 if self.confirm_exit:
464 if self.ask_yes_no('Do you really want to exit ([y]/n)?','y'):
464 if self.ask_yes_no('Do you really want to exit ([y]/n)?','y'):
465 self.ask_exit()
465 self.ask_exit()
466 else:
466 else:
467 self.ask_exit()
467 self.ask_exit()
468
468
469 #------------------------------------------------------------------------
469 #------------------------------------------------------------------------
470 # Magic overrides
470 # Magic overrides
471 #------------------------------------------------------------------------
471 #------------------------------------------------------------------------
472 # Once the base class stops inheriting from magic, this code needs to be
472 # Once the base class stops inheriting from magic, this code needs to be
473 # moved into a separate machinery as well. For now, at least isolate here
473 # moved into a separate machinery as well. For now, at least isolate here
474 # the magics which this class needs to implement differently from the base
474 # the magics which this class needs to implement differently from the base
475 # class, or that are unique to it.
475 # class, or that are unique to it.
476
476
477 def magic_autoindent(self, parameter_s = ''):
477 def magic_autoindent(self, parameter_s = ''):
478 """Toggle autoindent on/off (if available)."""
478 """Toggle autoindent on/off (if available)."""
479
479
480 self.shell.set_autoindent()
480 self.shell.set_autoindent()
481 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
481 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
482
482
483 @skip_doctest
483 @skip_doctest
484 def magic_cpaste(self, parameter_s=''):
484 def magic_cpaste(self, parameter_s=''):
485 """Paste & execute a pre-formatted code block from clipboard.
485 """Paste & execute a pre-formatted code block from clipboard.
486
486
487 You must terminate the block with '--' (two minus-signs) alone on the
487 You must terminate the block with '--' (two minus-signs) alone on the
488 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
488 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
489 is the new sentinel for this operation)
489 is the new sentinel for this operation)
490
490
491 The block is dedented prior to execution to enable execution of method
491 The block is dedented prior to execution to enable execution of method
492 definitions. '>' and '+' characters at the beginning of a line are
492 definitions. '>' and '+' characters at the beginning of a line are
493 ignored, to allow pasting directly from e-mails, diff files and
493 ignored, to allow pasting directly from e-mails, diff files and
494 doctests (the '...' continuation prompt is also stripped). The
494 doctests (the '...' continuation prompt is also stripped). The
495 executed block is also assigned to variable named 'pasted_block' for
495 executed block is also assigned to variable named 'pasted_block' for
496 later editing with '%edit pasted_block'.
496 later editing with '%edit pasted_block'.
497
497
498 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
498 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
499 This assigns the pasted block to variable 'foo' as string, without
499 This assigns the pasted block to variable 'foo' as string, without
500 dedenting or executing it (preceding >>> and + is still stripped)
500 dedenting or executing it (preceding >>> and + is still stripped)
501
501
502 '%cpaste -r' re-executes the block previously entered by cpaste.
502 '%cpaste -r' re-executes the block previously entered by cpaste.
503
503
504 Do not be alarmed by garbled output on Windows (it's a readline bug).
504 Do not be alarmed by garbled output on Windows (it's a readline bug).
505 Just press enter and type -- (and press enter again) and the block
505 Just press enter and type -- (and press enter again) and the block
506 will be what was just pasted.
506 will be what was just pasted.
507
507
508 IPython statements (magics, shell escapes) are not supported (yet).
508 IPython statements (magics, shell escapes) are not supported (yet).
509
509
510 See also
510 See also
511 --------
511 --------
512 paste: automatically pull code from clipboard.
512 paste: automatically pull code from clipboard.
513
513
514 Examples
514 Examples
515 --------
515 --------
516 ::
516 ::
517
517
518 In [8]: %cpaste
518 In [8]: %cpaste
519 Pasting code; enter '--' alone on the line to stop.
519 Pasting code; enter '--' alone on the line to stop.
520 :>>> a = ["world!", "Hello"]
520 :>>> a = ["world!", "Hello"]
521 :>>> print " ".join(sorted(a))
521 :>>> print " ".join(sorted(a))
522 :--
522 :--
523 Hello world!
523 Hello world!
524 """
524 """
525
525
526 opts,args = self.parse_options(parameter_s,'rs:',mode='string')
526 opts,args = self.parse_options(parameter_s,'rs:',mode='string')
527 par = args.strip()
527 par = args.strip()
528 if opts.has_key('r'):
528 if opts.has_key('r'):
529 self._rerun_pasted()
529 self._rerun_pasted()
530 return
530 return
531
531
532 sentinel = opts.get('s','--')
532 sentinel = opts.get('s','--')
533
533
534 block = self._strip_pasted_lines_for_code(
534 block = self._strip_pasted_lines_for_code(
535 self._get_pasted_lines(sentinel))
535 self._get_pasted_lines(sentinel))
536
536
537 self._execute_block(block, par)
537 self._execute_block(block, par)
538
538
539 def magic_paste(self, parameter_s=''):
539 def magic_paste(self, parameter_s=''):
540 """Paste & execute a pre-formatted code block from clipboard.
540 """Paste & execute a pre-formatted code block from clipboard.
541
541
542 The text is pulled directly from the clipboard without user
542 The text is pulled directly from the clipboard without user
543 intervention and printed back on the screen before execution (unless
543 intervention and printed back on the screen before execution (unless
544 the -q flag is given to force quiet mode).
544 the -q flag is given to force quiet mode).
545
545
546 The block is dedented prior to execution to enable execution of method
546 The block is dedented prior to execution to enable execution of method
547 definitions. '>' and '+' characters at the beginning of a line are
547 definitions. '>' and '+' characters at the beginning of a line are
548 ignored, to allow pasting directly from e-mails, diff files and
548 ignored, to allow pasting directly from e-mails, diff files and
549 doctests (the '...' continuation prompt is also stripped). The
549 doctests (the '...' continuation prompt is also stripped). The
550 executed block is also assigned to variable named 'pasted_block' for
550 executed block is also assigned to variable named 'pasted_block' for
551 later editing with '%edit pasted_block'.
551 later editing with '%edit pasted_block'.
552
552
553 You can also pass a variable name as an argument, e.g. '%paste foo'.
553 You can also pass a variable name as an argument, e.g. '%paste foo'.
554 This assigns the pasted block to variable 'foo' as string, without
554 This assigns the pasted block to variable 'foo' as string, without
555 dedenting or executing it (preceding >>> and + is still stripped)
555 dedenting or executing it (preceding >>> and + is still stripped)
556
556
557 Options
557 Options
558 -------
558 -------
559
559
560 -r: re-executes the block previously entered by cpaste.
560 -r: re-executes the block previously entered by cpaste.
561
561
562 -q: quiet mode: do not echo the pasted text back to the terminal.
562 -q: quiet mode: do not echo the pasted text back to the terminal.
563
563
564 IPython statements (magics, shell escapes) are not supported (yet).
564 IPython statements (magics, shell escapes) are not supported (yet).
565
565
566 See also
566 See also
567 --------
567 --------
568 cpaste: manually paste code into terminal until you mark its end.
568 cpaste: manually paste code into terminal until you mark its end.
569 """
569 """
570 opts,args = self.parse_options(parameter_s,'rq',mode='string')
570 opts,args = self.parse_options(parameter_s,'rq',mode='string')
571 par = args.strip()
571 par = args.strip()
572 if opts.has_key('r'):
572 if opts.has_key('r'):
573 self._rerun_pasted()
573 self._rerun_pasted()
574 return
574 return
575
575
576 text = self.shell.hooks.clipboard_get()
576 text = self.shell.hooks.clipboard_get()
577 block = self._strip_pasted_lines_for_code(text.splitlines())
577 block = self._strip_pasted_lines_for_code(text.splitlines())
578
578
579 # By default, echo back to terminal unless quiet mode is requested
579 # By default, echo back to terminal unless quiet mode is requested
580 if not opts.has_key('q'):
580 if not opts.has_key('q'):
581 write = self.shell.write
581 write = self.shell.write
582 write(self.shell.pycolorize(block))
582 write(self.shell.pycolorize(block))
583 if not block.endswith('\n'):
583 if not block.endswith('\n'):
584 write('\n')
584 write('\n')
585 write("## -- End pasted text --\n")
585 write("## -- End pasted text --\n")
586
586
587 self._execute_block(block, par)
587 self._execute_block(block, par)
588
588
589
589
590 InteractiveShellABC.register(TerminalInteractiveShell)
590 InteractiveShellABC.register(TerminalInteractiveShell)
@@ -1,814 +1,814 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 Tests for IPython.utils.traitlets.
4 Tests for IPython.utils.traitlets.
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * Enthought, Inc. Some of the code in this file comes from enthought.traits
9 * Enthought, Inc. Some of the code in this file comes from enthought.traits
10 and is licensed under the BSD license. Also, many of the ideas also come
10 and is licensed under the BSD license. Also, many of the ideas also come
11 from enthought.traits even though our implementation is very different.
11 from enthought.traits even though our implementation is very different.
12 """
12 """
13
13
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 # Copyright (C) 2008-2009 The IPython Development Team
15 # Copyright (C) 2008-2009 The IPython Development Team
16 #
16 #
17 # Distributed under the terms of the BSD License. The full license is in
17 # Distributed under the terms of the BSD License. The full license is in
18 # the file COPYING, distributed as part of this software.
18 # the file COPYING, distributed as part of this software.
19 #-----------------------------------------------------------------------------
19 #-----------------------------------------------------------------------------
20
20
21 #-----------------------------------------------------------------------------
21 #-----------------------------------------------------------------------------
22 # Imports
22 # Imports
23 #-----------------------------------------------------------------------------
23 #-----------------------------------------------------------------------------
24
24
25 from unittest import TestCase
25 from unittest import TestCase
26
26
27 from IPython.utils.traitlets import (
27 from IPython.utils.traitlets import (
28 HasTraits, MetaHasTraits, TraitType, Any, CStr,
28 HasTraits, MetaHasTraits, TraitType, Any, CBytes,
29 Int, Long, Float, Complex, Str, Unicode, TraitError,
29 Int, Long, Float, Complex, Bytes, Unicode, TraitError,
30 Undefined, Type, This, Instance, TCPAddress, List, Tuple
30 Undefined, Type, This, Instance, TCPAddress, List, Tuple
31 )
31 )
32
32
33
33
34 #-----------------------------------------------------------------------------
34 #-----------------------------------------------------------------------------
35 # Helper classes for testing
35 # Helper classes for testing
36 #-----------------------------------------------------------------------------
36 #-----------------------------------------------------------------------------
37
37
38
38
39 class HasTraitsStub(HasTraits):
39 class HasTraitsStub(HasTraits):
40
40
41 def _notify_trait(self, name, old, new):
41 def _notify_trait(self, name, old, new):
42 self._notify_name = name
42 self._notify_name = name
43 self._notify_old = old
43 self._notify_old = old
44 self._notify_new = new
44 self._notify_new = new
45
45
46
46
47 #-----------------------------------------------------------------------------
47 #-----------------------------------------------------------------------------
48 # Test classes
48 # Test classes
49 #-----------------------------------------------------------------------------
49 #-----------------------------------------------------------------------------
50
50
51
51
52 class TestTraitType(TestCase):
52 class TestTraitType(TestCase):
53
53
54 def test_get_undefined(self):
54 def test_get_undefined(self):
55 class A(HasTraits):
55 class A(HasTraits):
56 a = TraitType
56 a = TraitType
57 a = A()
57 a = A()
58 self.assertEquals(a.a, Undefined)
58 self.assertEquals(a.a, Undefined)
59
59
60 def test_set(self):
60 def test_set(self):
61 class A(HasTraitsStub):
61 class A(HasTraitsStub):
62 a = TraitType
62 a = TraitType
63
63
64 a = A()
64 a = A()
65 a.a = 10
65 a.a = 10
66 self.assertEquals(a.a, 10)
66 self.assertEquals(a.a, 10)
67 self.assertEquals(a._notify_name, 'a')
67 self.assertEquals(a._notify_name, 'a')
68 self.assertEquals(a._notify_old, Undefined)
68 self.assertEquals(a._notify_old, Undefined)
69 self.assertEquals(a._notify_new, 10)
69 self.assertEquals(a._notify_new, 10)
70
70
71 def test_validate(self):
71 def test_validate(self):
72 class MyTT(TraitType):
72 class MyTT(TraitType):
73 def validate(self, inst, value):
73 def validate(self, inst, value):
74 return -1
74 return -1
75 class A(HasTraitsStub):
75 class A(HasTraitsStub):
76 tt = MyTT
76 tt = MyTT
77
77
78 a = A()
78 a = A()
79 a.tt = 10
79 a.tt = 10
80 self.assertEquals(a.tt, -1)
80 self.assertEquals(a.tt, -1)
81
81
82 def test_default_validate(self):
82 def test_default_validate(self):
83 class MyIntTT(TraitType):
83 class MyIntTT(TraitType):
84 def validate(self, obj, value):
84 def validate(self, obj, value):
85 if isinstance(value, int):
85 if isinstance(value, int):
86 return value
86 return value
87 self.error(obj, value)
87 self.error(obj, value)
88 class A(HasTraits):
88 class A(HasTraits):
89 tt = MyIntTT(10)
89 tt = MyIntTT(10)
90 a = A()
90 a = A()
91 self.assertEquals(a.tt, 10)
91 self.assertEquals(a.tt, 10)
92
92
93 # Defaults are validated when the HasTraits is instantiated
93 # Defaults are validated when the HasTraits is instantiated
94 class B(HasTraits):
94 class B(HasTraits):
95 tt = MyIntTT('bad default')
95 tt = MyIntTT('bad default')
96 self.assertRaises(TraitError, B)
96 self.assertRaises(TraitError, B)
97
97
98 def test_is_valid_for(self):
98 def test_is_valid_for(self):
99 class MyTT(TraitType):
99 class MyTT(TraitType):
100 def is_valid_for(self, value):
100 def is_valid_for(self, value):
101 return True
101 return True
102 class A(HasTraits):
102 class A(HasTraits):
103 tt = MyTT
103 tt = MyTT
104
104
105 a = A()
105 a = A()
106 a.tt = 10
106 a.tt = 10
107 self.assertEquals(a.tt, 10)
107 self.assertEquals(a.tt, 10)
108
108
109 def test_value_for(self):
109 def test_value_for(self):
110 class MyTT(TraitType):
110 class MyTT(TraitType):
111 def value_for(self, value):
111 def value_for(self, value):
112 return 20
112 return 20
113 class A(HasTraits):
113 class A(HasTraits):
114 tt = MyTT
114 tt = MyTT
115
115
116 a = A()
116 a = A()
117 a.tt = 10
117 a.tt = 10
118 self.assertEquals(a.tt, 20)
118 self.assertEquals(a.tt, 20)
119
119
120 def test_info(self):
120 def test_info(self):
121 class A(HasTraits):
121 class A(HasTraits):
122 tt = TraitType
122 tt = TraitType
123 a = A()
123 a = A()
124 self.assertEquals(A.tt.info(), 'any value')
124 self.assertEquals(A.tt.info(), 'any value')
125
125
126 def test_error(self):
126 def test_error(self):
127 class A(HasTraits):
127 class A(HasTraits):
128 tt = TraitType
128 tt = TraitType
129 a = A()
129 a = A()
130 self.assertRaises(TraitError, A.tt.error, a, 10)
130 self.assertRaises(TraitError, A.tt.error, a, 10)
131
131
132 def test_dynamic_initializer(self):
132 def test_dynamic_initializer(self):
133 class A(HasTraits):
133 class A(HasTraits):
134 x = Int(10)
134 x = Int(10)
135 def _x_default(self):
135 def _x_default(self):
136 return 11
136 return 11
137 class B(A):
137 class B(A):
138 x = Int(20)
138 x = Int(20)
139 class C(A):
139 class C(A):
140 def _x_default(self):
140 def _x_default(self):
141 return 21
141 return 21
142
142
143 a = A()
143 a = A()
144 self.assertEquals(a._trait_values, {})
144 self.assertEquals(a._trait_values, {})
145 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
145 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
146 self.assertEquals(a.x, 11)
146 self.assertEquals(a.x, 11)
147 self.assertEquals(a._trait_values, {'x': 11})
147 self.assertEquals(a._trait_values, {'x': 11})
148 b = B()
148 b = B()
149 self.assertEquals(b._trait_values, {'x': 20})
149 self.assertEquals(b._trait_values, {'x': 20})
150 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
150 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
151 self.assertEquals(b.x, 20)
151 self.assertEquals(b.x, 20)
152 c = C()
152 c = C()
153 self.assertEquals(c._trait_values, {})
153 self.assertEquals(c._trait_values, {})
154 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
154 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
155 self.assertEquals(c.x, 21)
155 self.assertEquals(c.x, 21)
156 self.assertEquals(c._trait_values, {'x': 21})
156 self.assertEquals(c._trait_values, {'x': 21})
157 # Ensure that the base class remains unmolested when the _default
157 # Ensure that the base class remains unmolested when the _default
158 # initializer gets overridden in a subclass.
158 # initializer gets overridden in a subclass.
159 a = A()
159 a = A()
160 c = C()
160 c = C()
161 self.assertEquals(a._trait_values, {})
161 self.assertEquals(a._trait_values, {})
162 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
162 self.assertEquals(a._trait_dyn_inits.keys(), ['x'])
163 self.assertEquals(a.x, 11)
163 self.assertEquals(a.x, 11)
164 self.assertEquals(a._trait_values, {'x': 11})
164 self.assertEquals(a._trait_values, {'x': 11})
165
165
166
166
167
167
168 class TestHasTraitsMeta(TestCase):
168 class TestHasTraitsMeta(TestCase):
169
169
170 def test_metaclass(self):
170 def test_metaclass(self):
171 self.assertEquals(type(HasTraits), MetaHasTraits)
171 self.assertEquals(type(HasTraits), MetaHasTraits)
172
172
173 class A(HasTraits):
173 class A(HasTraits):
174 a = Int
174 a = Int
175
175
176 a = A()
176 a = A()
177 self.assertEquals(type(a.__class__), MetaHasTraits)
177 self.assertEquals(type(a.__class__), MetaHasTraits)
178 self.assertEquals(a.a,0)
178 self.assertEquals(a.a,0)
179 a.a = 10
179 a.a = 10
180 self.assertEquals(a.a,10)
180 self.assertEquals(a.a,10)
181
181
182 class B(HasTraits):
182 class B(HasTraits):
183 b = Int()
183 b = Int()
184
184
185 b = B()
185 b = B()
186 self.assertEquals(b.b,0)
186 self.assertEquals(b.b,0)
187 b.b = 10
187 b.b = 10
188 self.assertEquals(b.b,10)
188 self.assertEquals(b.b,10)
189
189
190 class C(HasTraits):
190 class C(HasTraits):
191 c = Int(30)
191 c = Int(30)
192
192
193 c = C()
193 c = C()
194 self.assertEquals(c.c,30)
194 self.assertEquals(c.c,30)
195 c.c = 10
195 c.c = 10
196 self.assertEquals(c.c,10)
196 self.assertEquals(c.c,10)
197
197
198 def test_this_class(self):
198 def test_this_class(self):
199 class A(HasTraits):
199 class A(HasTraits):
200 t = This()
200 t = This()
201 tt = This()
201 tt = This()
202 class B(A):
202 class B(A):
203 tt = This()
203 tt = This()
204 ttt = This()
204 ttt = This()
205 self.assertEquals(A.t.this_class, A)
205 self.assertEquals(A.t.this_class, A)
206 self.assertEquals(B.t.this_class, A)
206 self.assertEquals(B.t.this_class, A)
207 self.assertEquals(B.tt.this_class, B)
207 self.assertEquals(B.tt.this_class, B)
208 self.assertEquals(B.ttt.this_class, B)
208 self.assertEquals(B.ttt.this_class, B)
209
209
210 class TestHasTraitsNotify(TestCase):
210 class TestHasTraitsNotify(TestCase):
211
211
212 def setUp(self):
212 def setUp(self):
213 self._notify1 = []
213 self._notify1 = []
214 self._notify2 = []
214 self._notify2 = []
215
215
216 def notify1(self, name, old, new):
216 def notify1(self, name, old, new):
217 self._notify1.append((name, old, new))
217 self._notify1.append((name, old, new))
218
218
219 def notify2(self, name, old, new):
219 def notify2(self, name, old, new):
220 self._notify2.append((name, old, new))
220 self._notify2.append((name, old, new))
221
221
222 def test_notify_all(self):
222 def test_notify_all(self):
223
223
224 class A(HasTraits):
224 class A(HasTraits):
225 a = Int
225 a = Int
226 b = Float
226 b = Float
227
227
228 a = A()
228 a = A()
229 a.on_trait_change(self.notify1)
229 a.on_trait_change(self.notify1)
230 a.a = 0
230 a.a = 0
231 self.assertEquals(len(self._notify1),0)
231 self.assertEquals(len(self._notify1),0)
232 a.b = 0.0
232 a.b = 0.0
233 self.assertEquals(len(self._notify1),0)
233 self.assertEquals(len(self._notify1),0)
234 a.a = 10
234 a.a = 10
235 self.assert_(('a',0,10) in self._notify1)
235 self.assert_(('a',0,10) in self._notify1)
236 a.b = 10.0
236 a.b = 10.0
237 self.assert_(('b',0.0,10.0) in self._notify1)
237 self.assert_(('b',0.0,10.0) in self._notify1)
238 self.assertRaises(TraitError,setattr,a,'a','bad string')
238 self.assertRaises(TraitError,setattr,a,'a','bad string')
239 self.assertRaises(TraitError,setattr,a,'b','bad string')
239 self.assertRaises(TraitError,setattr,a,'b','bad string')
240 self._notify1 = []
240 self._notify1 = []
241 a.on_trait_change(self.notify1,remove=True)
241 a.on_trait_change(self.notify1,remove=True)
242 a.a = 20
242 a.a = 20
243 a.b = 20.0
243 a.b = 20.0
244 self.assertEquals(len(self._notify1),0)
244 self.assertEquals(len(self._notify1),0)
245
245
246 def test_notify_one(self):
246 def test_notify_one(self):
247
247
248 class A(HasTraits):
248 class A(HasTraits):
249 a = Int
249 a = Int
250 b = Float
250 b = Float
251
251
252 a = A()
252 a = A()
253 a.on_trait_change(self.notify1, 'a')
253 a.on_trait_change(self.notify1, 'a')
254 a.a = 0
254 a.a = 0
255 self.assertEquals(len(self._notify1),0)
255 self.assertEquals(len(self._notify1),0)
256 a.a = 10
256 a.a = 10
257 self.assert_(('a',0,10) in self._notify1)
257 self.assert_(('a',0,10) in self._notify1)
258 self.assertRaises(TraitError,setattr,a,'a','bad string')
258 self.assertRaises(TraitError,setattr,a,'a','bad string')
259
259
260 def test_subclass(self):
260 def test_subclass(self):
261
261
262 class A(HasTraits):
262 class A(HasTraits):
263 a = Int
263 a = Int
264
264
265 class B(A):
265 class B(A):
266 b = Float
266 b = Float
267
267
268 b = B()
268 b = B()
269 self.assertEquals(b.a,0)
269 self.assertEquals(b.a,0)
270 self.assertEquals(b.b,0.0)
270 self.assertEquals(b.b,0.0)
271 b.a = 100
271 b.a = 100
272 b.b = 100.0
272 b.b = 100.0
273 self.assertEquals(b.a,100)
273 self.assertEquals(b.a,100)
274 self.assertEquals(b.b,100.0)
274 self.assertEquals(b.b,100.0)
275
275
276 def test_notify_subclass(self):
276 def test_notify_subclass(self):
277
277
278 class A(HasTraits):
278 class A(HasTraits):
279 a = Int
279 a = Int
280
280
281 class B(A):
281 class B(A):
282 b = Float
282 b = Float
283
283
284 b = B()
284 b = B()
285 b.on_trait_change(self.notify1, 'a')
285 b.on_trait_change(self.notify1, 'a')
286 b.on_trait_change(self.notify2, 'b')
286 b.on_trait_change(self.notify2, 'b')
287 b.a = 0
287 b.a = 0
288 b.b = 0.0
288 b.b = 0.0
289 self.assertEquals(len(self._notify1),0)
289 self.assertEquals(len(self._notify1),0)
290 self.assertEquals(len(self._notify2),0)
290 self.assertEquals(len(self._notify2),0)
291 b.a = 10
291 b.a = 10
292 b.b = 10.0
292 b.b = 10.0
293 self.assert_(('a',0,10) in self._notify1)
293 self.assert_(('a',0,10) in self._notify1)
294 self.assert_(('b',0.0,10.0) in self._notify2)
294 self.assert_(('b',0.0,10.0) in self._notify2)
295
295
296 def test_static_notify(self):
296 def test_static_notify(self):
297
297
298 class A(HasTraits):
298 class A(HasTraits):
299 a = Int
299 a = Int
300 _notify1 = []
300 _notify1 = []
301 def _a_changed(self, name, old, new):
301 def _a_changed(self, name, old, new):
302 self._notify1.append((name, old, new))
302 self._notify1.append((name, old, new))
303
303
304 a = A()
304 a = A()
305 a.a = 0
305 a.a = 0
306 # This is broken!!!
306 # This is broken!!!
307 self.assertEquals(len(a._notify1),0)
307 self.assertEquals(len(a._notify1),0)
308 a.a = 10
308 a.a = 10
309 self.assert_(('a',0,10) in a._notify1)
309 self.assert_(('a',0,10) in a._notify1)
310
310
311 class B(A):
311 class B(A):
312 b = Float
312 b = Float
313 _notify2 = []
313 _notify2 = []
314 def _b_changed(self, name, old, new):
314 def _b_changed(self, name, old, new):
315 self._notify2.append((name, old, new))
315 self._notify2.append((name, old, new))
316
316
317 b = B()
317 b = B()
318 b.a = 10
318 b.a = 10
319 b.b = 10.0
319 b.b = 10.0
320 self.assert_(('a',0,10) in b._notify1)
320 self.assert_(('a',0,10) in b._notify1)
321 self.assert_(('b',0.0,10.0) in b._notify2)
321 self.assert_(('b',0.0,10.0) in b._notify2)
322
322
323 def test_notify_args(self):
323 def test_notify_args(self):
324
324
325 def callback0():
325 def callback0():
326 self.cb = ()
326 self.cb = ()
327 def callback1(name):
327 def callback1(name):
328 self.cb = (name,)
328 self.cb = (name,)
329 def callback2(name, new):
329 def callback2(name, new):
330 self.cb = (name, new)
330 self.cb = (name, new)
331 def callback3(name, old, new):
331 def callback3(name, old, new):
332 self.cb = (name, old, new)
332 self.cb = (name, old, new)
333
333
334 class A(HasTraits):
334 class A(HasTraits):
335 a = Int
335 a = Int
336
336
337 a = A()
337 a = A()
338 a.on_trait_change(callback0, 'a')
338 a.on_trait_change(callback0, 'a')
339 a.a = 10
339 a.a = 10
340 self.assertEquals(self.cb,())
340 self.assertEquals(self.cb,())
341 a.on_trait_change(callback0, 'a', remove=True)
341 a.on_trait_change(callback0, 'a', remove=True)
342
342
343 a.on_trait_change(callback1, 'a')
343 a.on_trait_change(callback1, 'a')
344 a.a = 100
344 a.a = 100
345 self.assertEquals(self.cb,('a',))
345 self.assertEquals(self.cb,('a',))
346 a.on_trait_change(callback1, 'a', remove=True)
346 a.on_trait_change(callback1, 'a', remove=True)
347
347
348 a.on_trait_change(callback2, 'a')
348 a.on_trait_change(callback2, 'a')
349 a.a = 1000
349 a.a = 1000
350 self.assertEquals(self.cb,('a',1000))
350 self.assertEquals(self.cb,('a',1000))
351 a.on_trait_change(callback2, 'a', remove=True)
351 a.on_trait_change(callback2, 'a', remove=True)
352
352
353 a.on_trait_change(callback3, 'a')
353 a.on_trait_change(callback3, 'a')
354 a.a = 10000
354 a.a = 10000
355 self.assertEquals(self.cb,('a',1000,10000))
355 self.assertEquals(self.cb,('a',1000,10000))
356 a.on_trait_change(callback3, 'a', remove=True)
356 a.on_trait_change(callback3, 'a', remove=True)
357
357
358 self.assertEquals(len(a._trait_notifiers['a']),0)
358 self.assertEquals(len(a._trait_notifiers['a']),0)
359
359
360
360
361 class TestHasTraits(TestCase):
361 class TestHasTraits(TestCase):
362
362
363 def test_trait_names(self):
363 def test_trait_names(self):
364 class A(HasTraits):
364 class A(HasTraits):
365 i = Int
365 i = Int
366 f = Float
366 f = Float
367 a = A()
367 a = A()
368 self.assertEquals(a.trait_names(),['i','f'])
368 self.assertEquals(a.trait_names(),['i','f'])
369 self.assertEquals(A.class_trait_names(),['i','f'])
369 self.assertEquals(A.class_trait_names(),['i','f'])
370
370
371 def test_trait_metadata(self):
371 def test_trait_metadata(self):
372 class A(HasTraits):
372 class A(HasTraits):
373 i = Int(config_key='MY_VALUE')
373 i = Int(config_key='MY_VALUE')
374 a = A()
374 a = A()
375 self.assertEquals(a.trait_metadata('i','config_key'), 'MY_VALUE')
375 self.assertEquals(a.trait_metadata('i','config_key'), 'MY_VALUE')
376
376
377 def test_traits(self):
377 def test_traits(self):
378 class A(HasTraits):
378 class A(HasTraits):
379 i = Int
379 i = Int
380 f = Float
380 f = Float
381 a = A()
381 a = A()
382 self.assertEquals(a.traits(), dict(i=A.i, f=A.f))
382 self.assertEquals(a.traits(), dict(i=A.i, f=A.f))
383 self.assertEquals(A.class_traits(), dict(i=A.i, f=A.f))
383 self.assertEquals(A.class_traits(), dict(i=A.i, f=A.f))
384
384
385 def test_traits_metadata(self):
385 def test_traits_metadata(self):
386 class A(HasTraits):
386 class A(HasTraits):
387 i = Int(config_key='VALUE1', other_thing='VALUE2')
387 i = Int(config_key='VALUE1', other_thing='VALUE2')
388 f = Float(config_key='VALUE3', other_thing='VALUE2')
388 f = Float(config_key='VALUE3', other_thing='VALUE2')
389 j = Int(0)
389 j = Int(0)
390 a = A()
390 a = A()
391 self.assertEquals(a.traits(), dict(i=A.i, f=A.f, j=A.j))
391 self.assertEquals(a.traits(), dict(i=A.i, f=A.f, j=A.j))
392 traits = a.traits(config_key='VALUE1', other_thing='VALUE2')
392 traits = a.traits(config_key='VALUE1', other_thing='VALUE2')
393 self.assertEquals(traits, dict(i=A.i))
393 self.assertEquals(traits, dict(i=A.i))
394
394
395 # This passes, but it shouldn't because I am replicating a bug in
395 # This passes, but it shouldn't because I am replicating a bug in
396 # traits.
396 # traits.
397 traits = a.traits(config_key=lambda v: True)
397 traits = a.traits(config_key=lambda v: True)
398 self.assertEquals(traits, dict(i=A.i, f=A.f, j=A.j))
398 self.assertEquals(traits, dict(i=A.i, f=A.f, j=A.j))
399
399
400 def test_init(self):
400 def test_init(self):
401 class A(HasTraits):
401 class A(HasTraits):
402 i = Int()
402 i = Int()
403 x = Float()
403 x = Float()
404 a = A(i=1, x=10.0)
404 a = A(i=1, x=10.0)
405 self.assertEquals(a.i, 1)
405 self.assertEquals(a.i, 1)
406 self.assertEquals(a.x, 10.0)
406 self.assertEquals(a.x, 10.0)
407
407
408 #-----------------------------------------------------------------------------
408 #-----------------------------------------------------------------------------
409 # Tests for specific trait types
409 # Tests for specific trait types
410 #-----------------------------------------------------------------------------
410 #-----------------------------------------------------------------------------
411
411
412
412
413 class TestType(TestCase):
413 class TestType(TestCase):
414
414
415 def test_default(self):
415 def test_default(self):
416
416
417 class B(object): pass
417 class B(object): pass
418 class A(HasTraits):
418 class A(HasTraits):
419 klass = Type
419 klass = Type
420
420
421 a = A()
421 a = A()
422 self.assertEquals(a.klass, None)
422 self.assertEquals(a.klass, None)
423
423
424 a.klass = B
424 a.klass = B
425 self.assertEquals(a.klass, B)
425 self.assertEquals(a.klass, B)
426 self.assertRaises(TraitError, setattr, a, 'klass', 10)
426 self.assertRaises(TraitError, setattr, a, 'klass', 10)
427
427
428 def test_value(self):
428 def test_value(self):
429
429
430 class B(object): pass
430 class B(object): pass
431 class C(object): pass
431 class C(object): pass
432 class A(HasTraits):
432 class A(HasTraits):
433 klass = Type(B)
433 klass = Type(B)
434
434
435 a = A()
435 a = A()
436 self.assertEquals(a.klass, B)
436 self.assertEquals(a.klass, B)
437 self.assertRaises(TraitError, setattr, a, 'klass', C)
437 self.assertRaises(TraitError, setattr, a, 'klass', C)
438 self.assertRaises(TraitError, setattr, a, 'klass', object)
438 self.assertRaises(TraitError, setattr, a, 'klass', object)
439 a.klass = B
439 a.klass = B
440
440
441 def test_allow_none(self):
441 def test_allow_none(self):
442
442
443 class B(object): pass
443 class B(object): pass
444 class C(B): pass
444 class C(B): pass
445 class A(HasTraits):
445 class A(HasTraits):
446 klass = Type(B, allow_none=False)
446 klass = Type(B, allow_none=False)
447
447
448 a = A()
448 a = A()
449 self.assertEquals(a.klass, B)
449 self.assertEquals(a.klass, B)
450 self.assertRaises(TraitError, setattr, a, 'klass', None)
450 self.assertRaises(TraitError, setattr, a, 'klass', None)
451 a.klass = C
451 a.klass = C
452 self.assertEquals(a.klass, C)
452 self.assertEquals(a.klass, C)
453
453
454 def test_validate_klass(self):
454 def test_validate_klass(self):
455
455
456 class A(HasTraits):
456 class A(HasTraits):
457 klass = Type('no strings allowed')
457 klass = Type('no strings allowed')
458
458
459 self.assertRaises(ImportError, A)
459 self.assertRaises(ImportError, A)
460
460
461 class A(HasTraits):
461 class A(HasTraits):
462 klass = Type('rub.adub.Duck')
462 klass = Type('rub.adub.Duck')
463
463
464 self.assertRaises(ImportError, A)
464 self.assertRaises(ImportError, A)
465
465
466 def test_validate_default(self):
466 def test_validate_default(self):
467
467
468 class B(object): pass
468 class B(object): pass
469 class A(HasTraits):
469 class A(HasTraits):
470 klass = Type('bad default', B)
470 klass = Type('bad default', B)
471
471
472 self.assertRaises(ImportError, A)
472 self.assertRaises(ImportError, A)
473
473
474 class C(HasTraits):
474 class C(HasTraits):
475 klass = Type(None, B, allow_none=False)
475 klass = Type(None, B, allow_none=False)
476
476
477 self.assertRaises(TraitError, C)
477 self.assertRaises(TraitError, C)
478
478
479 def test_str_klass(self):
479 def test_str_klass(self):
480
480
481 class A(HasTraits):
481 class A(HasTraits):
482 klass = Type('IPython.utils.ipstruct.Struct')
482 klass = Type('IPython.utils.ipstruct.Struct')
483
483
484 from IPython.utils.ipstruct import Struct
484 from IPython.utils.ipstruct import Struct
485 a = A()
485 a = A()
486 a.klass = Struct
486 a.klass = Struct
487 self.assertEquals(a.klass, Struct)
487 self.assertEquals(a.klass, Struct)
488
488
489 self.assertRaises(TraitError, setattr, a, 'klass', 10)
489 self.assertRaises(TraitError, setattr, a, 'klass', 10)
490
490
491 class TestInstance(TestCase):
491 class TestInstance(TestCase):
492
492
493 def test_basic(self):
493 def test_basic(self):
494 class Foo(object): pass
494 class Foo(object): pass
495 class Bar(Foo): pass
495 class Bar(Foo): pass
496 class Bah(object): pass
496 class Bah(object): pass
497
497
498 class A(HasTraits):
498 class A(HasTraits):
499 inst = Instance(Foo)
499 inst = Instance(Foo)
500
500
501 a = A()
501 a = A()
502 self.assert_(a.inst is None)
502 self.assert_(a.inst is None)
503 a.inst = Foo()
503 a.inst = Foo()
504 self.assert_(isinstance(a.inst, Foo))
504 self.assert_(isinstance(a.inst, Foo))
505 a.inst = Bar()
505 a.inst = Bar()
506 self.assert_(isinstance(a.inst, Foo))
506 self.assert_(isinstance(a.inst, Foo))
507 self.assertRaises(TraitError, setattr, a, 'inst', Foo)
507 self.assertRaises(TraitError, setattr, a, 'inst', Foo)
508 self.assertRaises(TraitError, setattr, a, 'inst', Bar)
508 self.assertRaises(TraitError, setattr, a, 'inst', Bar)
509 self.assertRaises(TraitError, setattr, a, 'inst', Bah())
509 self.assertRaises(TraitError, setattr, a, 'inst', Bah())
510
510
511 def test_unique_default_value(self):
511 def test_unique_default_value(self):
512 class Foo(object): pass
512 class Foo(object): pass
513 class A(HasTraits):
513 class A(HasTraits):
514 inst = Instance(Foo,(),{})
514 inst = Instance(Foo,(),{})
515
515
516 a = A()
516 a = A()
517 b = A()
517 b = A()
518 self.assert_(a.inst is not b.inst)
518 self.assert_(a.inst is not b.inst)
519
519
520 def test_args_kw(self):
520 def test_args_kw(self):
521 class Foo(object):
521 class Foo(object):
522 def __init__(self, c): self.c = c
522 def __init__(self, c): self.c = c
523 class Bar(object): pass
523 class Bar(object): pass
524 class Bah(object):
524 class Bah(object):
525 def __init__(self, c, d):
525 def __init__(self, c, d):
526 self.c = c; self.d = d
526 self.c = c; self.d = d
527
527
528 class A(HasTraits):
528 class A(HasTraits):
529 inst = Instance(Foo, (10,))
529 inst = Instance(Foo, (10,))
530 a = A()
530 a = A()
531 self.assertEquals(a.inst.c, 10)
531 self.assertEquals(a.inst.c, 10)
532
532
533 class B(HasTraits):
533 class B(HasTraits):
534 inst = Instance(Bah, args=(10,), kw=dict(d=20))
534 inst = Instance(Bah, args=(10,), kw=dict(d=20))
535 b = B()
535 b = B()
536 self.assertEquals(b.inst.c, 10)
536 self.assertEquals(b.inst.c, 10)
537 self.assertEquals(b.inst.d, 20)
537 self.assertEquals(b.inst.d, 20)
538
538
539 class C(HasTraits):
539 class C(HasTraits):
540 inst = Instance(Foo)
540 inst = Instance(Foo)
541 c = C()
541 c = C()
542 self.assert_(c.inst is None)
542 self.assert_(c.inst is None)
543
543
544 def test_bad_default(self):
544 def test_bad_default(self):
545 class Foo(object): pass
545 class Foo(object): pass
546
546
547 class A(HasTraits):
547 class A(HasTraits):
548 inst = Instance(Foo, allow_none=False)
548 inst = Instance(Foo, allow_none=False)
549
549
550 self.assertRaises(TraitError, A)
550 self.assertRaises(TraitError, A)
551
551
552 def test_instance(self):
552 def test_instance(self):
553 class Foo(object): pass
553 class Foo(object): pass
554
554
555 def inner():
555 def inner():
556 class A(HasTraits):
556 class A(HasTraits):
557 inst = Instance(Foo())
557 inst = Instance(Foo())
558
558
559 self.assertRaises(TraitError, inner)
559 self.assertRaises(TraitError, inner)
560
560
561
561
562 class TestThis(TestCase):
562 class TestThis(TestCase):
563
563
564 def test_this_class(self):
564 def test_this_class(self):
565 class Foo(HasTraits):
565 class Foo(HasTraits):
566 this = This
566 this = This
567
567
568 f = Foo()
568 f = Foo()
569 self.assertEquals(f.this, None)
569 self.assertEquals(f.this, None)
570 g = Foo()
570 g = Foo()
571 f.this = g
571 f.this = g
572 self.assertEquals(f.this, g)
572 self.assertEquals(f.this, g)
573 self.assertRaises(TraitError, setattr, f, 'this', 10)
573 self.assertRaises(TraitError, setattr, f, 'this', 10)
574
574
575 def test_this_inst(self):
575 def test_this_inst(self):
576 class Foo(HasTraits):
576 class Foo(HasTraits):
577 this = This()
577 this = This()
578
578
579 f = Foo()
579 f = Foo()
580 f.this = Foo()
580 f.this = Foo()
581 self.assert_(isinstance(f.this, Foo))
581 self.assert_(isinstance(f.this, Foo))
582
582
583 def test_subclass(self):
583 def test_subclass(self):
584 class Foo(HasTraits):
584 class Foo(HasTraits):
585 t = This()
585 t = This()
586 class Bar(Foo):
586 class Bar(Foo):
587 pass
587 pass
588 f = Foo()
588 f = Foo()
589 b = Bar()
589 b = Bar()
590 f.t = b
590 f.t = b
591 b.t = f
591 b.t = f
592 self.assertEquals(f.t, b)
592 self.assertEquals(f.t, b)
593 self.assertEquals(b.t, f)
593 self.assertEquals(b.t, f)
594
594
595 def test_subclass_override(self):
595 def test_subclass_override(self):
596 class Foo(HasTraits):
596 class Foo(HasTraits):
597 t = This()
597 t = This()
598 class Bar(Foo):
598 class Bar(Foo):
599 t = This()
599 t = This()
600 f = Foo()
600 f = Foo()
601 b = Bar()
601 b = Bar()
602 f.t = b
602 f.t = b
603 self.assertEquals(f.t, b)
603 self.assertEquals(f.t, b)
604 self.assertRaises(TraitError, setattr, b, 't', f)
604 self.assertRaises(TraitError, setattr, b, 't', f)
605
605
606 class TraitTestBase(TestCase):
606 class TraitTestBase(TestCase):
607 """A best testing class for basic trait types."""
607 """A best testing class for basic trait types."""
608
608
609 def assign(self, value):
609 def assign(self, value):
610 self.obj.value = value
610 self.obj.value = value
611
611
612 def coerce(self, value):
612 def coerce(self, value):
613 return value
613 return value
614
614
615 def test_good_values(self):
615 def test_good_values(self):
616 if hasattr(self, '_good_values'):
616 if hasattr(self, '_good_values'):
617 for value in self._good_values:
617 for value in self._good_values:
618 self.assign(value)
618 self.assign(value)
619 self.assertEquals(self.obj.value, self.coerce(value))
619 self.assertEquals(self.obj.value, self.coerce(value))
620
620
621 def test_bad_values(self):
621 def test_bad_values(self):
622 if hasattr(self, '_bad_values'):
622 if hasattr(self, '_bad_values'):
623 for value in self._bad_values:
623 for value in self._bad_values:
624 self.assertRaises(TraitError, self.assign, value)
624 self.assertRaises(TraitError, self.assign, value)
625
625
626 def test_default_value(self):
626 def test_default_value(self):
627 if hasattr(self, '_default_value'):
627 if hasattr(self, '_default_value'):
628 self.assertEquals(self._default_value, self.obj.value)
628 self.assertEquals(self._default_value, self.obj.value)
629
629
630
630
631 class AnyTrait(HasTraits):
631 class AnyTrait(HasTraits):
632
632
633 value = Any
633 value = Any
634
634
635 class AnyTraitTest(TraitTestBase):
635 class AnyTraitTest(TraitTestBase):
636
636
637 obj = AnyTrait()
637 obj = AnyTrait()
638
638
639 _default_value = None
639 _default_value = None
640 _good_values = [10.0, 'ten', u'ten', [10], {'ten': 10},(10,), None, 1j]
640 _good_values = [10.0, 'ten', u'ten', [10], {'ten': 10},(10,), None, 1j]
641 _bad_values = []
641 _bad_values = []
642
642
643
643
644 class IntTrait(HasTraits):
644 class IntTrait(HasTraits):
645
645
646 value = Int(99)
646 value = Int(99)
647
647
648 class TestInt(TraitTestBase):
648 class TestInt(TraitTestBase):
649
649
650 obj = IntTrait()
650 obj = IntTrait()
651 _default_value = 99
651 _default_value = 99
652 _good_values = [10, -10]
652 _good_values = [10, -10]
653 _bad_values = ['ten', u'ten', [10], {'ten': 10},(10,), None, 1j, 10L,
653 _bad_values = ['ten', u'ten', [10], {'ten': 10},(10,), None, 1j, 10L,
654 -10L, 10.1, -10.1, '10L', '-10L', '10.1', '-10.1', u'10L',
654 -10L, 10.1, -10.1, '10L', '-10L', '10.1', '-10.1', u'10L',
655 u'-10L', u'10.1', u'-10.1', '10', '-10', u'10', u'-10']
655 u'-10L', u'10.1', u'-10.1', '10', '-10', u'10', u'-10']
656
656
657
657
658 class LongTrait(HasTraits):
658 class LongTrait(HasTraits):
659
659
660 value = Long(99L)
660 value = Long(99L)
661
661
662 class TestLong(TraitTestBase):
662 class TestLong(TraitTestBase):
663
663
664 obj = LongTrait()
664 obj = LongTrait()
665
665
666 _default_value = 99L
666 _default_value = 99L
667 _good_values = [10, -10, 10L, -10L]
667 _good_values = [10, -10, 10L, -10L]
668 _bad_values = ['ten', u'ten', [10], [10l], {'ten': 10},(10,),(10L,),
668 _bad_values = ['ten', u'ten', [10], [10l], {'ten': 10},(10,),(10L,),
669 None, 1j, 10.1, -10.1, '10', '-10', '10L', '-10L', '10.1',
669 None, 1j, 10.1, -10.1, '10', '-10', '10L', '-10L', '10.1',
670 '-10.1', u'10', u'-10', u'10L', u'-10L', u'10.1',
670 '-10.1', u'10', u'-10', u'10L', u'-10L', u'10.1',
671 u'-10.1']
671 u'-10.1']
672
672
673
673
674 class FloatTrait(HasTraits):
674 class FloatTrait(HasTraits):
675
675
676 value = Float(99.0)
676 value = Float(99.0)
677
677
678 class TestFloat(TraitTestBase):
678 class TestFloat(TraitTestBase):
679
679
680 obj = FloatTrait()
680 obj = FloatTrait()
681
681
682 _default_value = 99.0
682 _default_value = 99.0
683 _good_values = [10, -10, 10.1, -10.1]
683 _good_values = [10, -10, 10.1, -10.1]
684 _bad_values = [10L, -10L, 'ten', u'ten', [10], {'ten': 10},(10,), None,
684 _bad_values = [10L, -10L, 'ten', u'ten', [10], {'ten': 10},(10,), None,
685 1j, '10', '-10', '10L', '-10L', '10.1', '-10.1', u'10',
685 1j, '10', '-10', '10L', '-10L', '10.1', '-10.1', u'10',
686 u'-10', u'10L', u'-10L', u'10.1', u'-10.1']
686 u'-10', u'10L', u'-10L', u'10.1', u'-10.1']
687
687
688
688
689 class ComplexTrait(HasTraits):
689 class ComplexTrait(HasTraits):
690
690
691 value = Complex(99.0-99.0j)
691 value = Complex(99.0-99.0j)
692
692
693 class TestComplex(TraitTestBase):
693 class TestComplex(TraitTestBase):
694
694
695 obj = ComplexTrait()
695 obj = ComplexTrait()
696
696
697 _default_value = 99.0-99.0j
697 _default_value = 99.0-99.0j
698 _good_values = [10, -10, 10.1, -10.1, 10j, 10+10j, 10-10j,
698 _good_values = [10, -10, 10.1, -10.1, 10j, 10+10j, 10-10j,
699 10.1j, 10.1+10.1j, 10.1-10.1j]
699 10.1j, 10.1+10.1j, 10.1-10.1j]
700 _bad_values = [10L, -10L, u'10L', u'-10L', 'ten', [10], {'ten': 10},(10,), None]
700 _bad_values = [10L, -10L, u'10L', u'-10L', 'ten', [10], {'ten': 10},(10,), None]
701
701
702
702
703 class StringTrait(HasTraits):
703 class BytesTrait(HasTraits):
704
704
705 value = Str('string')
705 value = Bytes('string')
706
706
707 class TestString(TraitTestBase):
707 class TestBytes(TraitTestBase):
708
708
709 obj = StringTrait()
709 obj = BytesTrait()
710
710
711 _default_value = 'string'
711 _default_value = 'string'
712 _good_values = ['10', '-10', '10L',
712 _good_values = ['10', '-10', '10L',
713 '-10L', '10.1', '-10.1', 'string']
713 '-10L', '10.1', '-10.1', 'string']
714 _bad_values = [10, -10, 10L, -10L, 10.1, -10.1, 1j, [10],
714 _bad_values = [10, -10, 10L, -10L, 10.1, -10.1, 1j, [10],
715 ['ten'],{'ten': 10},(10,), None, u'string']
715 ['ten'],{'ten': 10},(10,), None, u'string']
716
716
717
717
718 class UnicodeTrait(HasTraits):
718 class UnicodeTrait(HasTraits):
719
719
720 value = Unicode(u'unicode')
720 value = Unicode(u'unicode')
721
721
722 class TestUnicode(TraitTestBase):
722 class TestUnicode(TraitTestBase):
723
723
724 obj = UnicodeTrait()
724 obj = UnicodeTrait()
725
725
726 _default_value = u'unicode'
726 _default_value = u'unicode'
727 _good_values = ['10', '-10', '10L', '-10L', '10.1',
727 _good_values = ['10', '-10', '10L', '-10L', '10.1',
728 '-10.1', '', u'', 'string', u'string', ]
728 '-10.1', '', u'', 'string', u'string', ]
729 _bad_values = [10, -10, 10L, -10L, 10.1, -10.1, 1j,
729 _bad_values = [10, -10, 10L, -10L, 10.1, -10.1, 1j,
730 [10], ['ten'], [u'ten'], {'ten': 10},(10,), None]
730 [10], ['ten'], [u'ten'], {'ten': 10},(10,), None]
731
731
732
732
733 class TCPAddressTrait(HasTraits):
733 class TCPAddressTrait(HasTraits):
734
734
735 value = TCPAddress()
735 value = TCPAddress()
736
736
737 class TestTCPAddress(TraitTestBase):
737 class TestTCPAddress(TraitTestBase):
738
738
739 obj = TCPAddressTrait()
739 obj = TCPAddressTrait()
740
740
741 _default_value = ('127.0.0.1',0)
741 _default_value = ('127.0.0.1',0)
742 _good_values = [('localhost',0),('192.168.0.1',1000),('www.google.com',80)]
742 _good_values = [('localhost',0),('192.168.0.1',1000),('www.google.com',80)]
743 _bad_values = [(0,0),('localhost',10.0),('localhost',-1)]
743 _bad_values = [(0,0),('localhost',10.0),('localhost',-1)]
744
744
745 class ListTrait(HasTraits):
745 class ListTrait(HasTraits):
746
746
747 value = List(Int)
747 value = List(Int)
748
748
749 class TestList(TraitTestBase):
749 class TestList(TraitTestBase):
750
750
751 obj = ListTrait()
751 obj = ListTrait()
752
752
753 _default_value = []
753 _default_value = []
754 _good_values = [[], [1], range(10)]
754 _good_values = [[], [1], range(10)]
755 _bad_values = [10, [1,'a'], 'a', (1,2)]
755 _bad_values = [10, [1,'a'], 'a', (1,2)]
756
756
757 class LenListTrait(HasTraits):
757 class LenListTrait(HasTraits):
758
758
759 value = List(Int, [0], minlen=1, maxlen=2)
759 value = List(Int, [0], minlen=1, maxlen=2)
760
760
761 class TestLenList(TraitTestBase):
761 class TestLenList(TraitTestBase):
762
762
763 obj = LenListTrait()
763 obj = LenListTrait()
764
764
765 _default_value = [0]
765 _default_value = [0]
766 _good_values = [[1], range(2)]
766 _good_values = [[1], range(2)]
767 _bad_values = [10, [1,'a'], 'a', (1,2), [], range(3)]
767 _bad_values = [10, [1,'a'], 'a', (1,2), [], range(3)]
768
768
769 class TupleTrait(HasTraits):
769 class TupleTrait(HasTraits):
770
770
771 value = Tuple(Int)
771 value = Tuple(Int)
772
772
773 class TestTupleTrait(TraitTestBase):
773 class TestTupleTrait(TraitTestBase):
774
774
775 obj = TupleTrait()
775 obj = TupleTrait()
776
776
777 _default_value = None
777 _default_value = None
778 _good_values = [(1,), None,(0,)]
778 _good_values = [(1,), None,(0,)]
779 _bad_values = [10, (1,2), [1],('a'), ()]
779 _bad_values = [10, (1,2), [1],('a'), ()]
780
780
781 def test_invalid_args(self):
781 def test_invalid_args(self):
782 self.assertRaises(TypeError, Tuple, 5)
782 self.assertRaises(TypeError, Tuple, 5)
783 self.assertRaises(TypeError, Tuple, default_value='hello')
783 self.assertRaises(TypeError, Tuple, default_value='hello')
784 t = Tuple(Int, CStr, default_value=(1,5))
784 t = Tuple(Int, CBytes, default_value=(1,5))
785
785
786 class LooseTupleTrait(HasTraits):
786 class LooseTupleTrait(HasTraits):
787
787
788 value = Tuple((1,2,3))
788 value = Tuple((1,2,3))
789
789
790 class TestLooseTupleTrait(TraitTestBase):
790 class TestLooseTupleTrait(TraitTestBase):
791
791
792 obj = LooseTupleTrait()
792 obj = LooseTupleTrait()
793
793
794 _default_value = (1,2,3)
794 _default_value = (1,2,3)
795 _good_values = [(1,), None, (0,), tuple(range(5)), tuple('hello'), ('a',5), ()]
795 _good_values = [(1,), None, (0,), tuple(range(5)), tuple('hello'), ('a',5), ()]
796 _bad_values = [10, 'hello', [1], []]
796 _bad_values = [10, 'hello', [1], []]
797
797
798 def test_invalid_args(self):
798 def test_invalid_args(self):
799 self.assertRaises(TypeError, Tuple, 5)
799 self.assertRaises(TypeError, Tuple, 5)
800 self.assertRaises(TypeError, Tuple, default_value='hello')
800 self.assertRaises(TypeError, Tuple, default_value='hello')
801 t = Tuple(Int, CStr, default_value=(1,5))
801 t = Tuple(Int, CBytes, default_value=(1,5))
802
802
803
803
804 class MultiTupleTrait(HasTraits):
804 class MultiTupleTrait(HasTraits):
805
805
806 value = Tuple(Int, Str, default_value=[99,'bottles'])
806 value = Tuple(Int, Bytes, default_value=[99,'bottles'])
807
807
808 class TestMultiTuple(TraitTestBase):
808 class TestMultiTuple(TraitTestBase):
809
809
810 obj = MultiTupleTrait()
810 obj = MultiTupleTrait()
811
811
812 _default_value = (99,'bottles')
812 _default_value = (99,'bottles')
813 _good_values = [(1,'a'), (2,'b')]
813 _good_values = [(1,'a'), (2,'b')]
814 _bad_values = ((),10, 'a', (1,'a',3), ('a',1))
814 _bad_values = ((),10, 'a', (1,'a',3), ('a',1))
@@ -1,1355 +1,1352 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 A lightweight Traits like module.
4 A lightweight Traits like module.
5
5
6 This is designed to provide a lightweight, simple, pure Python version of
6 This is designed to provide a lightweight, simple, pure Python version of
7 many of the capabilities of enthought.traits. This includes:
7 many of the capabilities of enthought.traits. This includes:
8
8
9 * Validation
9 * Validation
10 * Type specification with defaults
10 * Type specification with defaults
11 * Static and dynamic notification
11 * Static and dynamic notification
12 * Basic predefined types
12 * Basic predefined types
13 * An API that is similar to enthought.traits
13 * An API that is similar to enthought.traits
14
14
15 We don't support:
15 We don't support:
16
16
17 * Delegation
17 * Delegation
18 * Automatic GUI generation
18 * Automatic GUI generation
19 * A full set of trait types. Most importantly, we don't provide container
19 * A full set of trait types. Most importantly, we don't provide container
20 traits (list, dict, tuple) that can trigger notifications if their
20 traits (list, dict, tuple) that can trigger notifications if their
21 contents change.
21 contents change.
22 * API compatibility with enthought.traits
22 * API compatibility with enthought.traits
23
23
24 There are also some important difference in our design:
24 There are also some important difference in our design:
25
25
26 * enthought.traits does not validate default values. We do.
26 * enthought.traits does not validate default values. We do.
27
27
28 We choose to create this module because we need these capabilities, but
28 We choose to create this module because we need these capabilities, but
29 we need them to be pure Python so they work in all Python implementations,
29 we need them to be pure Python so they work in all Python implementations,
30 including Jython and IronPython.
30 including Jython and IronPython.
31
31
32 Authors:
32 Authors:
33
33
34 * Brian Granger
34 * Brian Granger
35 * Enthought, Inc. Some of the code in this file comes from enthought.traits
35 * Enthought, Inc. Some of the code in this file comes from enthought.traits
36 and is licensed under the BSD license. Also, many of the ideas also come
36 and is licensed under the BSD license. Also, many of the ideas also come
37 from enthought.traits even though our implementation is very different.
37 from enthought.traits even though our implementation is very different.
38 """
38 """
39
39
40 #-----------------------------------------------------------------------------
40 #-----------------------------------------------------------------------------
41 # Copyright (C) 2008-2009 The IPython Development Team
41 # Copyright (C) 2008-2009 The IPython Development Team
42 #
42 #
43 # Distributed under the terms of the BSD License. The full license is in
43 # Distributed under the terms of the BSD License. The full license is in
44 # the file COPYING, distributed as part of this software.
44 # the file COPYING, distributed as part of this software.
45 #-----------------------------------------------------------------------------
45 #-----------------------------------------------------------------------------
46
46
47 #-----------------------------------------------------------------------------
47 #-----------------------------------------------------------------------------
48 # Imports
48 # Imports
49 #-----------------------------------------------------------------------------
49 #-----------------------------------------------------------------------------
50
50
51
51
52 import inspect
52 import inspect
53 import sys
53 import sys
54 import types
54 import types
55 from types import (
55 from types import (
56 InstanceType, ClassType, FunctionType,
56 InstanceType, ClassType, FunctionType,
57 ListType, TupleType
57 ListType, TupleType
58 )
58 )
59 from .importstring import import_item
59 from .importstring import import_item
60
60
61 ClassTypes = (ClassType, type)
61 ClassTypes = (ClassType, type)
62
62
63 SequenceTypes = (ListType, TupleType, set, frozenset)
63 SequenceTypes = (ListType, TupleType, set, frozenset)
64
64
65 #-----------------------------------------------------------------------------
65 #-----------------------------------------------------------------------------
66 # Basic classes
66 # Basic classes
67 #-----------------------------------------------------------------------------
67 #-----------------------------------------------------------------------------
68
68
69
69
70 class NoDefaultSpecified ( object ): pass
70 class NoDefaultSpecified ( object ): pass
71 NoDefaultSpecified = NoDefaultSpecified()
71 NoDefaultSpecified = NoDefaultSpecified()
72
72
73
73
74 class Undefined ( object ): pass
74 class Undefined ( object ): pass
75 Undefined = Undefined()
75 Undefined = Undefined()
76
76
77 class TraitError(Exception):
77 class TraitError(Exception):
78 pass
78 pass
79
79
80 #-----------------------------------------------------------------------------
80 #-----------------------------------------------------------------------------
81 # Utilities
81 # Utilities
82 #-----------------------------------------------------------------------------
82 #-----------------------------------------------------------------------------
83
83
84
84
85 def class_of ( object ):
85 def class_of ( object ):
86 """ Returns a string containing the class name of an object with the
86 """ Returns a string containing the class name of an object with the
87 correct indefinite article ('a' or 'an') preceding it (e.g., 'an Image',
87 correct indefinite article ('a' or 'an') preceding it (e.g., 'an Image',
88 'a PlotValue').
88 'a PlotValue').
89 """
89 """
90 if isinstance( object, basestring ):
90 if isinstance( object, basestring ):
91 return add_article( object )
91 return add_article( object )
92
92
93 return add_article( object.__class__.__name__ )
93 return add_article( object.__class__.__name__ )
94
94
95
95
96 def add_article ( name ):
96 def add_article ( name ):
97 """ Returns a string containing the correct indefinite article ('a' or 'an')
97 """ Returns a string containing the correct indefinite article ('a' or 'an')
98 prefixed to the specified string.
98 prefixed to the specified string.
99 """
99 """
100 if name[:1].lower() in 'aeiou':
100 if name[:1].lower() in 'aeiou':
101 return 'an ' + name
101 return 'an ' + name
102
102
103 return 'a ' + name
103 return 'a ' + name
104
104
105
105
106 def repr_type(obj):
106 def repr_type(obj):
107 """ Return a string representation of a value and its type for readable
107 """ Return a string representation of a value and its type for readable
108 error messages.
108 error messages.
109 """
109 """
110 the_type = type(obj)
110 the_type = type(obj)
111 if the_type is InstanceType:
111 if the_type is InstanceType:
112 # Old-style class.
112 # Old-style class.
113 the_type = obj.__class__
113 the_type = obj.__class__
114 msg = '%r %r' % (obj, the_type)
114 msg = '%r %r' % (obj, the_type)
115 return msg
115 return msg
116
116
117
117
118 def parse_notifier_name(name):
118 def parse_notifier_name(name):
119 """Convert the name argument to a list of names.
119 """Convert the name argument to a list of names.
120
120
121 Examples
121 Examples
122 --------
122 --------
123
123
124 >>> parse_notifier_name('a')
124 >>> parse_notifier_name('a')
125 ['a']
125 ['a']
126 >>> parse_notifier_name(['a','b'])
126 >>> parse_notifier_name(['a','b'])
127 ['a', 'b']
127 ['a', 'b']
128 >>> parse_notifier_name(None)
128 >>> parse_notifier_name(None)
129 ['anytrait']
129 ['anytrait']
130 """
130 """
131 if isinstance(name, str):
131 if isinstance(name, str):
132 return [name]
132 return [name]
133 elif name is None:
133 elif name is None:
134 return ['anytrait']
134 return ['anytrait']
135 elif isinstance(name, (list, tuple)):
135 elif isinstance(name, (list, tuple)):
136 for n in name:
136 for n in name:
137 assert isinstance(n, str), "names must be strings"
137 assert isinstance(n, str), "names must be strings"
138 return name
138 return name
139
139
140
140
141 class _SimpleTest:
141 class _SimpleTest:
142 def __init__ ( self, value ): self.value = value
142 def __init__ ( self, value ): self.value = value
143 def __call__ ( self, test ):
143 def __call__ ( self, test ):
144 return test == self.value
144 return test == self.value
145 def __repr__(self):
145 def __repr__(self):
146 return "<SimpleTest(%r)" % self.value
146 return "<SimpleTest(%r)" % self.value
147 def __str__(self):
147 def __str__(self):
148 return self.__repr__()
148 return self.__repr__()
149
149
150
150
151 def getmembers(object, predicate=None):
151 def getmembers(object, predicate=None):
152 """A safe version of inspect.getmembers that handles missing attributes.
152 """A safe version of inspect.getmembers that handles missing attributes.
153
153
154 This is useful when there are descriptor based attributes that for
154 This is useful when there are descriptor based attributes that for
155 some reason raise AttributeError even though they exist. This happens
155 some reason raise AttributeError even though they exist. This happens
156 in zope.inteface with the __provides__ attribute.
156 in zope.inteface with the __provides__ attribute.
157 """
157 """
158 results = []
158 results = []
159 for key in dir(object):
159 for key in dir(object):
160 try:
160 try:
161 value = getattr(object, key)
161 value = getattr(object, key)
162 except AttributeError:
162 except AttributeError:
163 pass
163 pass
164 else:
164 else:
165 if not predicate or predicate(value):
165 if not predicate or predicate(value):
166 results.append((key, value))
166 results.append((key, value))
167 results.sort()
167 results.sort()
168 return results
168 return results
169
169
170
170
171 #-----------------------------------------------------------------------------
171 #-----------------------------------------------------------------------------
172 # Base TraitType for all traits
172 # Base TraitType for all traits
173 #-----------------------------------------------------------------------------
173 #-----------------------------------------------------------------------------
174
174
175
175
176 class TraitType(object):
176 class TraitType(object):
177 """A base class for all trait descriptors.
177 """A base class for all trait descriptors.
178
178
179 Notes
179 Notes
180 -----
180 -----
181 Our implementation of traits is based on Python's descriptor
181 Our implementation of traits is based on Python's descriptor
182 prototol. This class is the base class for all such descriptors. The
182 prototol. This class is the base class for all such descriptors. The
183 only magic we use is a custom metaclass for the main :class:`HasTraits`
183 only magic we use is a custom metaclass for the main :class:`HasTraits`
184 class that does the following:
184 class that does the following:
185
185
186 1. Sets the :attr:`name` attribute of every :class:`TraitType`
186 1. Sets the :attr:`name` attribute of every :class:`TraitType`
187 instance in the class dict to the name of the attribute.
187 instance in the class dict to the name of the attribute.
188 2. Sets the :attr:`this_class` attribute of every :class:`TraitType`
188 2. Sets the :attr:`this_class` attribute of every :class:`TraitType`
189 instance in the class dict to the *class* that declared the trait.
189 instance in the class dict to the *class* that declared the trait.
190 This is used by the :class:`This` trait to allow subclasses to
190 This is used by the :class:`This` trait to allow subclasses to
191 accept superclasses for :class:`This` values.
191 accept superclasses for :class:`This` values.
192 """
192 """
193
193
194
194
195 metadata = {}
195 metadata = {}
196 default_value = Undefined
196 default_value = Undefined
197 info_text = 'any value'
197 info_text = 'any value'
198
198
199 def __init__(self, default_value=NoDefaultSpecified, **metadata):
199 def __init__(self, default_value=NoDefaultSpecified, **metadata):
200 """Create a TraitType.
200 """Create a TraitType.
201 """
201 """
202 if default_value is not NoDefaultSpecified:
202 if default_value is not NoDefaultSpecified:
203 self.default_value = default_value
203 self.default_value = default_value
204
204
205 if len(metadata) > 0:
205 if len(metadata) > 0:
206 if len(self.metadata) > 0:
206 if len(self.metadata) > 0:
207 self._metadata = self.metadata.copy()
207 self._metadata = self.metadata.copy()
208 self._metadata.update(metadata)
208 self._metadata.update(metadata)
209 else:
209 else:
210 self._metadata = metadata
210 self._metadata = metadata
211 else:
211 else:
212 self._metadata = self.metadata
212 self._metadata = self.metadata
213
213
214 self.init()
214 self.init()
215
215
216 def init(self):
216 def init(self):
217 pass
217 pass
218
218
219 def get_default_value(self):
219 def get_default_value(self):
220 """Create a new instance of the default value."""
220 """Create a new instance of the default value."""
221 return self.default_value
221 return self.default_value
222
222
223 def instance_init(self, obj):
223 def instance_init(self, obj):
224 """This is called by :meth:`HasTraits.__new__` to finish init'ing.
224 """This is called by :meth:`HasTraits.__new__` to finish init'ing.
225
225
226 Some stages of initialization must be delayed until the parent
226 Some stages of initialization must be delayed until the parent
227 :class:`HasTraits` instance has been created. This method is
227 :class:`HasTraits` instance has been created. This method is
228 called in :meth:`HasTraits.__new__` after the instance has been
228 called in :meth:`HasTraits.__new__` after the instance has been
229 created.
229 created.
230
230
231 This method trigger the creation and validation of default values
231 This method trigger the creation and validation of default values
232 and also things like the resolution of str given class names in
232 and also things like the resolution of str given class names in
233 :class:`Type` and :class`Instance`.
233 :class:`Type` and :class`Instance`.
234
234
235 Parameters
235 Parameters
236 ----------
236 ----------
237 obj : :class:`HasTraits` instance
237 obj : :class:`HasTraits` instance
238 The parent :class:`HasTraits` instance that has just been
238 The parent :class:`HasTraits` instance that has just been
239 created.
239 created.
240 """
240 """
241 self.set_default_value(obj)
241 self.set_default_value(obj)
242
242
243 def set_default_value(self, obj):
243 def set_default_value(self, obj):
244 """Set the default value on a per instance basis.
244 """Set the default value on a per instance basis.
245
245
246 This method is called by :meth:`instance_init` to create and
246 This method is called by :meth:`instance_init` to create and
247 validate the default value. The creation and validation of
247 validate the default value. The creation and validation of
248 default values must be delayed until the parent :class:`HasTraits`
248 default values must be delayed until the parent :class:`HasTraits`
249 class has been instantiated.
249 class has been instantiated.
250 """
250 """
251 # Check for a deferred initializer defined in the same class as the
251 # Check for a deferred initializer defined in the same class as the
252 # trait declaration or above.
252 # trait declaration or above.
253 mro = type(obj).mro()
253 mro = type(obj).mro()
254 meth_name = '_%s_default' % self.name
254 meth_name = '_%s_default' % self.name
255 for cls in mro[:mro.index(self.this_class)+1]:
255 for cls in mro[:mro.index(self.this_class)+1]:
256 if meth_name in cls.__dict__:
256 if meth_name in cls.__dict__:
257 break
257 break
258 else:
258 else:
259 # We didn't find one. Do static initialization.
259 # We didn't find one. Do static initialization.
260 dv = self.get_default_value()
260 dv = self.get_default_value()
261 newdv = self._validate(obj, dv)
261 newdv = self._validate(obj, dv)
262 obj._trait_values[self.name] = newdv
262 obj._trait_values[self.name] = newdv
263 return
263 return
264 # Complete the dynamic initialization.
264 # Complete the dynamic initialization.
265 obj._trait_dyn_inits[self.name] = cls.__dict__[meth_name]
265 obj._trait_dyn_inits[self.name] = cls.__dict__[meth_name]
266
266
267 def __get__(self, obj, cls=None):
267 def __get__(self, obj, cls=None):
268 """Get the value of the trait by self.name for the instance.
268 """Get the value of the trait by self.name for the instance.
269
269
270 Default values are instantiated when :meth:`HasTraits.__new__`
270 Default values are instantiated when :meth:`HasTraits.__new__`
271 is called. Thus by the time this method gets called either the
271 is called. Thus by the time this method gets called either the
272 default value or a user defined value (they called :meth:`__set__`)
272 default value or a user defined value (they called :meth:`__set__`)
273 is in the :class:`HasTraits` instance.
273 is in the :class:`HasTraits` instance.
274 """
274 """
275 if obj is None:
275 if obj is None:
276 return self
276 return self
277 else:
277 else:
278 try:
278 try:
279 value = obj._trait_values[self.name]
279 value = obj._trait_values[self.name]
280 except KeyError:
280 except KeyError:
281 # Check for a dynamic initializer.
281 # Check for a dynamic initializer.
282 if self.name in obj._trait_dyn_inits:
282 if self.name in obj._trait_dyn_inits:
283 value = obj._trait_dyn_inits[self.name](obj)
283 value = obj._trait_dyn_inits[self.name](obj)
284 # FIXME: Do we really validate here?
284 # FIXME: Do we really validate here?
285 value = self._validate(obj, value)
285 value = self._validate(obj, value)
286 obj._trait_values[self.name] = value
286 obj._trait_values[self.name] = value
287 return value
287 return value
288 else:
288 else:
289 raise TraitError('Unexpected error in TraitType: '
289 raise TraitError('Unexpected error in TraitType: '
290 'both default value and dynamic initializer are '
290 'both default value and dynamic initializer are '
291 'absent.')
291 'absent.')
292 except Exception:
292 except Exception:
293 # HasTraits should call set_default_value to populate
293 # HasTraits should call set_default_value to populate
294 # this. So this should never be reached.
294 # this. So this should never be reached.
295 raise TraitError('Unexpected error in TraitType: '
295 raise TraitError('Unexpected error in TraitType: '
296 'default value not set properly')
296 'default value not set properly')
297 else:
297 else:
298 return value
298 return value
299
299
300 def __set__(self, obj, value):
300 def __set__(self, obj, value):
301 new_value = self._validate(obj, value)
301 new_value = self._validate(obj, value)
302 old_value = self.__get__(obj)
302 old_value = self.__get__(obj)
303 if old_value != new_value:
303 if old_value != new_value:
304 obj._trait_values[self.name] = new_value
304 obj._trait_values[self.name] = new_value
305 obj._notify_trait(self.name, old_value, new_value)
305 obj._notify_trait(self.name, old_value, new_value)
306
306
307 def _validate(self, obj, value):
307 def _validate(self, obj, value):
308 if hasattr(self, 'validate'):
308 if hasattr(self, 'validate'):
309 return self.validate(obj, value)
309 return self.validate(obj, value)
310 elif hasattr(self, 'is_valid_for'):
310 elif hasattr(self, 'is_valid_for'):
311 valid = self.is_valid_for(value)
311 valid = self.is_valid_for(value)
312 if valid:
312 if valid:
313 return value
313 return value
314 else:
314 else:
315 raise TraitError('invalid value for type: %r' % value)
315 raise TraitError('invalid value for type: %r' % value)
316 elif hasattr(self, 'value_for'):
316 elif hasattr(self, 'value_for'):
317 return self.value_for(value)
317 return self.value_for(value)
318 else:
318 else:
319 return value
319 return value
320
320
321 def info(self):
321 def info(self):
322 return self.info_text
322 return self.info_text
323
323
324 def error(self, obj, value):
324 def error(self, obj, value):
325 if obj is not None:
325 if obj is not None:
326 e = "The '%s' trait of %s instance must be %s, but a value of %s was specified." \
326 e = "The '%s' trait of %s instance must be %s, but a value of %s was specified." \
327 % (self.name, class_of(obj),
327 % (self.name, class_of(obj),
328 self.info(), repr_type(value))
328 self.info(), repr_type(value))
329 else:
329 else:
330 e = "The '%s' trait must be %s, but a value of %r was specified." \
330 e = "The '%s' trait must be %s, but a value of %r was specified." \
331 % (self.name, self.info(), repr_type(value))
331 % (self.name, self.info(), repr_type(value))
332 raise TraitError(e)
332 raise TraitError(e)
333
333
334 def get_metadata(self, key):
334 def get_metadata(self, key):
335 return getattr(self, '_metadata', {}).get(key, None)
335 return getattr(self, '_metadata', {}).get(key, None)
336
336
337 def set_metadata(self, key, value):
337 def set_metadata(self, key, value):
338 getattr(self, '_metadata', {})[key] = value
338 getattr(self, '_metadata', {})[key] = value
339
339
340
340
341 #-----------------------------------------------------------------------------
341 #-----------------------------------------------------------------------------
342 # The HasTraits implementation
342 # The HasTraits implementation
343 #-----------------------------------------------------------------------------
343 #-----------------------------------------------------------------------------
344
344
345
345
346 class MetaHasTraits(type):
346 class MetaHasTraits(type):
347 """A metaclass for HasTraits.
347 """A metaclass for HasTraits.
348
348
349 This metaclass makes sure that any TraitType class attributes are
349 This metaclass makes sure that any TraitType class attributes are
350 instantiated and sets their name attribute.
350 instantiated and sets their name attribute.
351 """
351 """
352
352
353 def __new__(mcls, name, bases, classdict):
353 def __new__(mcls, name, bases, classdict):
354 """Create the HasTraits class.
354 """Create the HasTraits class.
355
355
356 This instantiates all TraitTypes in the class dict and sets their
356 This instantiates all TraitTypes in the class dict and sets their
357 :attr:`name` attribute.
357 :attr:`name` attribute.
358 """
358 """
359 # print "MetaHasTraitlets (mcls, name): ", mcls, name
359 # print "MetaHasTraitlets (mcls, name): ", mcls, name
360 # print "MetaHasTraitlets (bases): ", bases
360 # print "MetaHasTraitlets (bases): ", bases
361 # print "MetaHasTraitlets (classdict): ", classdict
361 # print "MetaHasTraitlets (classdict): ", classdict
362 for k,v in classdict.iteritems():
362 for k,v in classdict.iteritems():
363 if isinstance(v, TraitType):
363 if isinstance(v, TraitType):
364 v.name = k
364 v.name = k
365 elif inspect.isclass(v):
365 elif inspect.isclass(v):
366 if issubclass(v, TraitType):
366 if issubclass(v, TraitType):
367 vinst = v()
367 vinst = v()
368 vinst.name = k
368 vinst.name = k
369 classdict[k] = vinst
369 classdict[k] = vinst
370 return super(MetaHasTraits, mcls).__new__(mcls, name, bases, classdict)
370 return super(MetaHasTraits, mcls).__new__(mcls, name, bases, classdict)
371
371
372 def __init__(cls, name, bases, classdict):
372 def __init__(cls, name, bases, classdict):
373 """Finish initializing the HasTraits class.
373 """Finish initializing the HasTraits class.
374
374
375 This sets the :attr:`this_class` attribute of each TraitType in the
375 This sets the :attr:`this_class` attribute of each TraitType in the
376 class dict to the newly created class ``cls``.
376 class dict to the newly created class ``cls``.
377 """
377 """
378 for k, v in classdict.iteritems():
378 for k, v in classdict.iteritems():
379 if isinstance(v, TraitType):
379 if isinstance(v, TraitType):
380 v.this_class = cls
380 v.this_class = cls
381 super(MetaHasTraits, cls).__init__(name, bases, classdict)
381 super(MetaHasTraits, cls).__init__(name, bases, classdict)
382
382
383 class HasTraits(object):
383 class HasTraits(object):
384
384
385 __metaclass__ = MetaHasTraits
385 __metaclass__ = MetaHasTraits
386
386
387 def __new__(cls, **kw):
387 def __new__(cls, **kw):
388 # This is needed because in Python 2.6 object.__new__ only accepts
388 # This is needed because in Python 2.6 object.__new__ only accepts
389 # the cls argument.
389 # the cls argument.
390 new_meth = super(HasTraits, cls).__new__
390 new_meth = super(HasTraits, cls).__new__
391 if new_meth is object.__new__:
391 if new_meth is object.__new__:
392 inst = new_meth(cls)
392 inst = new_meth(cls)
393 else:
393 else:
394 inst = new_meth(cls, **kw)
394 inst = new_meth(cls, **kw)
395 inst._trait_values = {}
395 inst._trait_values = {}
396 inst._trait_notifiers = {}
396 inst._trait_notifiers = {}
397 inst._trait_dyn_inits = {}
397 inst._trait_dyn_inits = {}
398 # Here we tell all the TraitType instances to set their default
398 # Here we tell all the TraitType instances to set their default
399 # values on the instance.
399 # values on the instance.
400 for key in dir(cls):
400 for key in dir(cls):
401 # Some descriptors raise AttributeError like zope.interface's
401 # Some descriptors raise AttributeError like zope.interface's
402 # __provides__ attributes even though they exist. This causes
402 # __provides__ attributes even though they exist. This causes
403 # AttributeErrors even though they are listed in dir(cls).
403 # AttributeErrors even though they are listed in dir(cls).
404 try:
404 try:
405 value = getattr(cls, key)
405 value = getattr(cls, key)
406 except AttributeError:
406 except AttributeError:
407 pass
407 pass
408 else:
408 else:
409 if isinstance(value, TraitType):
409 if isinstance(value, TraitType):
410 value.instance_init(inst)
410 value.instance_init(inst)
411
411
412 return inst
412 return inst
413
413
414 def __init__(self, **kw):
414 def __init__(self, **kw):
415 # Allow trait values to be set using keyword arguments.
415 # Allow trait values to be set using keyword arguments.
416 # We need to use setattr for this to trigger validation and
416 # We need to use setattr for this to trigger validation and
417 # notifications.
417 # notifications.
418 for key, value in kw.iteritems():
418 for key, value in kw.iteritems():
419 setattr(self, key, value)
419 setattr(self, key, value)
420
420
421 def _notify_trait(self, name, old_value, new_value):
421 def _notify_trait(self, name, old_value, new_value):
422
422
423 # First dynamic ones
423 # First dynamic ones
424 callables = self._trait_notifiers.get(name,[])
424 callables = self._trait_notifiers.get(name,[])
425 more_callables = self._trait_notifiers.get('anytrait',[])
425 more_callables = self._trait_notifiers.get('anytrait',[])
426 callables.extend(more_callables)
426 callables.extend(more_callables)
427
427
428 # Now static ones
428 # Now static ones
429 try:
429 try:
430 cb = getattr(self, '_%s_changed' % name)
430 cb = getattr(self, '_%s_changed' % name)
431 except:
431 except:
432 pass
432 pass
433 else:
433 else:
434 callables.append(cb)
434 callables.append(cb)
435
435
436 # Call them all now
436 # Call them all now
437 for c in callables:
437 for c in callables:
438 # Traits catches and logs errors here. I allow them to raise
438 # Traits catches and logs errors here. I allow them to raise
439 if callable(c):
439 if callable(c):
440 argspec = inspect.getargspec(c)
440 argspec = inspect.getargspec(c)
441 nargs = len(argspec[0])
441 nargs = len(argspec[0])
442 # Bound methods have an additional 'self' argument
442 # Bound methods have an additional 'self' argument
443 # I don't know how to treat unbound methods, but they
443 # I don't know how to treat unbound methods, but they
444 # can't really be used for callbacks.
444 # can't really be used for callbacks.
445 if isinstance(c, types.MethodType):
445 if isinstance(c, types.MethodType):
446 offset = -1
446 offset = -1
447 else:
447 else:
448 offset = 0
448 offset = 0
449 if nargs + offset == 0:
449 if nargs + offset == 0:
450 c()
450 c()
451 elif nargs + offset == 1:
451 elif nargs + offset == 1:
452 c(name)
452 c(name)
453 elif nargs + offset == 2:
453 elif nargs + offset == 2:
454 c(name, new_value)
454 c(name, new_value)
455 elif nargs + offset == 3:
455 elif nargs + offset == 3:
456 c(name, old_value, new_value)
456 c(name, old_value, new_value)
457 else:
457 else:
458 raise TraitError('a trait changed callback '
458 raise TraitError('a trait changed callback '
459 'must have 0-3 arguments.')
459 'must have 0-3 arguments.')
460 else:
460 else:
461 raise TraitError('a trait changed callback '
461 raise TraitError('a trait changed callback '
462 'must be callable.')
462 'must be callable.')
463
463
464
464
465 def _add_notifiers(self, handler, name):
465 def _add_notifiers(self, handler, name):
466 if not self._trait_notifiers.has_key(name):
466 if not self._trait_notifiers.has_key(name):
467 nlist = []
467 nlist = []
468 self._trait_notifiers[name] = nlist
468 self._trait_notifiers[name] = nlist
469 else:
469 else:
470 nlist = self._trait_notifiers[name]
470 nlist = self._trait_notifiers[name]
471 if handler not in nlist:
471 if handler not in nlist:
472 nlist.append(handler)
472 nlist.append(handler)
473
473
474 def _remove_notifiers(self, handler, name):
474 def _remove_notifiers(self, handler, name):
475 if self._trait_notifiers.has_key(name):
475 if self._trait_notifiers.has_key(name):
476 nlist = self._trait_notifiers[name]
476 nlist = self._trait_notifiers[name]
477 try:
477 try:
478 index = nlist.index(handler)
478 index = nlist.index(handler)
479 except ValueError:
479 except ValueError:
480 pass
480 pass
481 else:
481 else:
482 del nlist[index]
482 del nlist[index]
483
483
484 def on_trait_change(self, handler, name=None, remove=False):
484 def on_trait_change(self, handler, name=None, remove=False):
485 """Setup a handler to be called when a trait changes.
485 """Setup a handler to be called when a trait changes.
486
486
487 This is used to setup dynamic notifications of trait changes.
487 This is used to setup dynamic notifications of trait changes.
488
488
489 Static handlers can be created by creating methods on a HasTraits
489 Static handlers can be created by creating methods on a HasTraits
490 subclass with the naming convention '_[traitname]_changed'. Thus,
490 subclass with the naming convention '_[traitname]_changed'. Thus,
491 to create static handler for the trait 'a', create the method
491 to create static handler for the trait 'a', create the method
492 _a_changed(self, name, old, new) (fewer arguments can be used, see
492 _a_changed(self, name, old, new) (fewer arguments can be used, see
493 below).
493 below).
494
494
495 Parameters
495 Parameters
496 ----------
496 ----------
497 handler : callable
497 handler : callable
498 A callable that is called when a trait changes. Its
498 A callable that is called when a trait changes. Its
499 signature can be handler(), handler(name), handler(name, new)
499 signature can be handler(), handler(name), handler(name, new)
500 or handler(name, old, new).
500 or handler(name, old, new).
501 name : list, str, None
501 name : list, str, None
502 If None, the handler will apply to all traits. If a list
502 If None, the handler will apply to all traits. If a list
503 of str, handler will apply to all names in the list. If a
503 of str, handler will apply to all names in the list. If a
504 str, the handler will apply just to that name.
504 str, the handler will apply just to that name.
505 remove : bool
505 remove : bool
506 If False (the default), then install the handler. If True
506 If False (the default), then install the handler. If True
507 then unintall it.
507 then unintall it.
508 """
508 """
509 if remove:
509 if remove:
510 names = parse_notifier_name(name)
510 names = parse_notifier_name(name)
511 for n in names:
511 for n in names:
512 self._remove_notifiers(handler, n)
512 self._remove_notifiers(handler, n)
513 else:
513 else:
514 names = parse_notifier_name(name)
514 names = parse_notifier_name(name)
515 for n in names:
515 for n in names:
516 self._add_notifiers(handler, n)
516 self._add_notifiers(handler, n)
517
517
518 @classmethod
518 @classmethod
519 def class_trait_names(cls, **metadata):
519 def class_trait_names(cls, **metadata):
520 """Get a list of all the names of this classes traits.
520 """Get a list of all the names of this classes traits.
521
521
522 This method is just like the :meth:`trait_names` method, but is unbound.
522 This method is just like the :meth:`trait_names` method, but is unbound.
523 """
523 """
524 return cls.class_traits(**metadata).keys()
524 return cls.class_traits(**metadata).keys()
525
525
526 @classmethod
526 @classmethod
527 def class_traits(cls, **metadata):
527 def class_traits(cls, **metadata):
528 """Get a list of all the traits of this class.
528 """Get a list of all the traits of this class.
529
529
530 This method is just like the :meth:`traits` method, but is unbound.
530 This method is just like the :meth:`traits` method, but is unbound.
531
531
532 The TraitTypes returned don't know anything about the values
532 The TraitTypes returned don't know anything about the values
533 that the various HasTrait's instances are holding.
533 that the various HasTrait's instances are holding.
534
534
535 This follows the same algorithm as traits does and does not allow
535 This follows the same algorithm as traits does and does not allow
536 for any simple way of specifying merely that a metadata name
536 for any simple way of specifying merely that a metadata name
537 exists, but has any value. This is because get_metadata returns
537 exists, but has any value. This is because get_metadata returns
538 None if a metadata key doesn't exist.
538 None if a metadata key doesn't exist.
539 """
539 """
540 traits = dict([memb for memb in getmembers(cls) if \
540 traits = dict([memb for memb in getmembers(cls) if \
541 isinstance(memb[1], TraitType)])
541 isinstance(memb[1], TraitType)])
542
542
543 if len(metadata) == 0:
543 if len(metadata) == 0:
544 return traits
544 return traits
545
545
546 for meta_name, meta_eval in metadata.items():
546 for meta_name, meta_eval in metadata.items():
547 if type(meta_eval) is not FunctionType:
547 if type(meta_eval) is not FunctionType:
548 metadata[meta_name] = _SimpleTest(meta_eval)
548 metadata[meta_name] = _SimpleTest(meta_eval)
549
549
550 result = {}
550 result = {}
551 for name, trait in traits.items():
551 for name, trait in traits.items():
552 for meta_name, meta_eval in metadata.items():
552 for meta_name, meta_eval in metadata.items():
553 if not meta_eval(trait.get_metadata(meta_name)):
553 if not meta_eval(trait.get_metadata(meta_name)):
554 break
554 break
555 else:
555 else:
556 result[name] = trait
556 result[name] = trait
557
557
558 return result
558 return result
559
559
560 def trait_names(self, **metadata):
560 def trait_names(self, **metadata):
561 """Get a list of all the names of this classes traits."""
561 """Get a list of all the names of this classes traits."""
562 return self.traits(**metadata).keys()
562 return self.traits(**metadata).keys()
563
563
564 def traits(self, **metadata):
564 def traits(self, **metadata):
565 """Get a list of all the traits of this class.
565 """Get a list of all the traits of this class.
566
566
567 The TraitTypes returned don't know anything about the values
567 The TraitTypes returned don't know anything about the values
568 that the various HasTrait's instances are holding.
568 that the various HasTrait's instances are holding.
569
569
570 This follows the same algorithm as traits does and does not allow
570 This follows the same algorithm as traits does and does not allow
571 for any simple way of specifying merely that a metadata name
571 for any simple way of specifying merely that a metadata name
572 exists, but has any value. This is because get_metadata returns
572 exists, but has any value. This is because get_metadata returns
573 None if a metadata key doesn't exist.
573 None if a metadata key doesn't exist.
574 """
574 """
575 traits = dict([memb for memb in getmembers(self.__class__) if \
575 traits = dict([memb for memb in getmembers(self.__class__) if \
576 isinstance(memb[1], TraitType)])
576 isinstance(memb[1], TraitType)])
577
577
578 if len(metadata) == 0:
578 if len(metadata) == 0:
579 return traits
579 return traits
580
580
581 for meta_name, meta_eval in metadata.items():
581 for meta_name, meta_eval in metadata.items():
582 if type(meta_eval) is not FunctionType:
582 if type(meta_eval) is not FunctionType:
583 metadata[meta_name] = _SimpleTest(meta_eval)
583 metadata[meta_name] = _SimpleTest(meta_eval)
584
584
585 result = {}
585 result = {}
586 for name, trait in traits.items():
586 for name, trait in traits.items():
587 for meta_name, meta_eval in metadata.items():
587 for meta_name, meta_eval in metadata.items():
588 if not meta_eval(trait.get_metadata(meta_name)):
588 if not meta_eval(trait.get_metadata(meta_name)):
589 break
589 break
590 else:
590 else:
591 result[name] = trait
591 result[name] = trait
592
592
593 return result
593 return result
594
594
595 def trait_metadata(self, traitname, key):
595 def trait_metadata(self, traitname, key):
596 """Get metadata values for trait by key."""
596 """Get metadata values for trait by key."""
597 try:
597 try:
598 trait = getattr(self.__class__, traitname)
598 trait = getattr(self.__class__, traitname)
599 except AttributeError:
599 except AttributeError:
600 raise TraitError("Class %s does not have a trait named %s" %
600 raise TraitError("Class %s does not have a trait named %s" %
601 (self.__class__.__name__, traitname))
601 (self.__class__.__name__, traitname))
602 else:
602 else:
603 return trait.get_metadata(key)
603 return trait.get_metadata(key)
604
604
605 #-----------------------------------------------------------------------------
605 #-----------------------------------------------------------------------------
606 # Actual TraitTypes implementations/subclasses
606 # Actual TraitTypes implementations/subclasses
607 #-----------------------------------------------------------------------------
607 #-----------------------------------------------------------------------------
608
608
609 #-----------------------------------------------------------------------------
609 #-----------------------------------------------------------------------------
610 # TraitTypes subclasses for handling classes and instances of classes
610 # TraitTypes subclasses for handling classes and instances of classes
611 #-----------------------------------------------------------------------------
611 #-----------------------------------------------------------------------------
612
612
613
613
614 class ClassBasedTraitType(TraitType):
614 class ClassBasedTraitType(TraitType):
615 """A trait with error reporting for Type, Instance and This."""
615 """A trait with error reporting for Type, Instance and This."""
616
616
617 def error(self, obj, value):
617 def error(self, obj, value):
618 kind = type(value)
618 kind = type(value)
619 if kind is InstanceType:
619 if kind is InstanceType:
620 msg = 'class %s' % value.__class__.__name__
620 msg = 'class %s' % value.__class__.__name__
621 else:
621 else:
622 msg = '%s (i.e. %s)' % ( str( kind )[1:-1], repr( value ) )
622 msg = '%s (i.e. %s)' % ( str( kind )[1:-1], repr( value ) )
623
623
624 if obj is not None:
624 if obj is not None:
625 e = "The '%s' trait of %s instance must be %s, but a value of %s was specified." \
625 e = "The '%s' trait of %s instance must be %s, but a value of %s was specified." \
626 % (self.name, class_of(obj),
626 % (self.name, class_of(obj),
627 self.info(), msg)
627 self.info(), msg)
628 else:
628 else:
629 e = "The '%s' trait must be %s, but a value of %r was specified." \
629 e = "The '%s' trait must be %s, but a value of %r was specified." \
630 % (self.name, self.info(), msg)
630 % (self.name, self.info(), msg)
631
631
632 raise TraitError(e)
632 raise TraitError(e)
633
633
634
634
635 class Type(ClassBasedTraitType):
635 class Type(ClassBasedTraitType):
636 """A trait whose value must be a subclass of a specified class."""
636 """A trait whose value must be a subclass of a specified class."""
637
637
638 def __init__ (self, default_value=None, klass=None, allow_none=True, **metadata ):
638 def __init__ (self, default_value=None, klass=None, allow_none=True, **metadata ):
639 """Construct a Type trait
639 """Construct a Type trait
640
640
641 A Type trait specifies that its values must be subclasses of
641 A Type trait specifies that its values must be subclasses of
642 a particular class.
642 a particular class.
643
643
644 If only ``default_value`` is given, it is used for the ``klass`` as
644 If only ``default_value`` is given, it is used for the ``klass`` as
645 well.
645 well.
646
646
647 Parameters
647 Parameters
648 ----------
648 ----------
649 default_value : class, str or None
649 default_value : class, str or None
650 The default value must be a subclass of klass. If an str,
650 The default value must be a subclass of klass. If an str,
651 the str must be a fully specified class name, like 'foo.bar.Bah'.
651 the str must be a fully specified class name, like 'foo.bar.Bah'.
652 The string is resolved into real class, when the parent
652 The string is resolved into real class, when the parent
653 :class:`HasTraits` class is instantiated.
653 :class:`HasTraits` class is instantiated.
654 klass : class, str, None
654 klass : class, str, None
655 Values of this trait must be a subclass of klass. The klass
655 Values of this trait must be a subclass of klass. The klass
656 may be specified in a string like: 'foo.bar.MyClass'.
656 may be specified in a string like: 'foo.bar.MyClass'.
657 The string is resolved into real class, when the parent
657 The string is resolved into real class, when the parent
658 :class:`HasTraits` class is instantiated.
658 :class:`HasTraits` class is instantiated.
659 allow_none : boolean
659 allow_none : boolean
660 Indicates whether None is allowed as an assignable value. Even if
660 Indicates whether None is allowed as an assignable value. Even if
661 ``False``, the default value may be ``None``.
661 ``False``, the default value may be ``None``.
662 """
662 """
663 if default_value is None:
663 if default_value is None:
664 if klass is None:
664 if klass is None:
665 klass = object
665 klass = object
666 elif klass is None:
666 elif klass is None:
667 klass = default_value
667 klass = default_value
668
668
669 if not (inspect.isclass(klass) or isinstance(klass, basestring)):
669 if not (inspect.isclass(klass) or isinstance(klass, basestring)):
670 raise TraitError("A Type trait must specify a class.")
670 raise TraitError("A Type trait must specify a class.")
671
671
672 self.klass = klass
672 self.klass = klass
673 self._allow_none = allow_none
673 self._allow_none = allow_none
674
674
675 super(Type, self).__init__(default_value, **metadata)
675 super(Type, self).__init__(default_value, **metadata)
676
676
677 def validate(self, obj, value):
677 def validate(self, obj, value):
678 """Validates that the value is a valid object instance."""
678 """Validates that the value is a valid object instance."""
679 try:
679 try:
680 if issubclass(value, self.klass):
680 if issubclass(value, self.klass):
681 return value
681 return value
682 except:
682 except:
683 if (value is None) and (self._allow_none):
683 if (value is None) and (self._allow_none):
684 return value
684 return value
685
685
686 self.error(obj, value)
686 self.error(obj, value)
687
687
688 def info(self):
688 def info(self):
689 """ Returns a description of the trait."""
689 """ Returns a description of the trait."""
690 if isinstance(self.klass, basestring):
690 if isinstance(self.klass, basestring):
691 klass = self.klass
691 klass = self.klass
692 else:
692 else:
693 klass = self.klass.__name__
693 klass = self.klass.__name__
694 result = 'a subclass of ' + klass
694 result = 'a subclass of ' + klass
695 if self._allow_none:
695 if self._allow_none:
696 return result + ' or None'
696 return result + ' or None'
697 return result
697 return result
698
698
699 def instance_init(self, obj):
699 def instance_init(self, obj):
700 self._resolve_classes()
700 self._resolve_classes()
701 super(Type, self).instance_init(obj)
701 super(Type, self).instance_init(obj)
702
702
703 def _resolve_classes(self):
703 def _resolve_classes(self):
704 if isinstance(self.klass, basestring):
704 if isinstance(self.klass, basestring):
705 self.klass = import_item(self.klass)
705 self.klass = import_item(self.klass)
706 if isinstance(self.default_value, basestring):
706 if isinstance(self.default_value, basestring):
707 self.default_value = import_item(self.default_value)
707 self.default_value = import_item(self.default_value)
708
708
709 def get_default_value(self):
709 def get_default_value(self):
710 return self.default_value
710 return self.default_value
711
711
712
712
713 class DefaultValueGenerator(object):
713 class DefaultValueGenerator(object):
714 """A class for generating new default value instances."""
714 """A class for generating new default value instances."""
715
715
716 def __init__(self, *args, **kw):
716 def __init__(self, *args, **kw):
717 self.args = args
717 self.args = args
718 self.kw = kw
718 self.kw = kw
719
719
720 def generate(self, klass):
720 def generate(self, klass):
721 return klass(*self.args, **self.kw)
721 return klass(*self.args, **self.kw)
722
722
723
723
724 class Instance(ClassBasedTraitType):
724 class Instance(ClassBasedTraitType):
725 """A trait whose value must be an instance of a specified class.
725 """A trait whose value must be an instance of a specified class.
726
726
727 The value can also be an instance of a subclass of the specified class.
727 The value can also be an instance of a subclass of the specified class.
728 """
728 """
729
729
730 def __init__(self, klass=None, args=None, kw=None,
730 def __init__(self, klass=None, args=None, kw=None,
731 allow_none=True, **metadata ):
731 allow_none=True, **metadata ):
732 """Construct an Instance trait.
732 """Construct an Instance trait.
733
733
734 This trait allows values that are instances of a particular
734 This trait allows values that are instances of a particular
735 class or its sublclasses. Our implementation is quite different
735 class or its sublclasses. Our implementation is quite different
736 from that of enthough.traits as we don't allow instances to be used
736 from that of enthough.traits as we don't allow instances to be used
737 for klass and we handle the ``args`` and ``kw`` arguments differently.
737 for klass and we handle the ``args`` and ``kw`` arguments differently.
738
738
739 Parameters
739 Parameters
740 ----------
740 ----------
741 klass : class, str
741 klass : class, str
742 The class that forms the basis for the trait. Class names
742 The class that forms the basis for the trait. Class names
743 can also be specified as strings, like 'foo.bar.Bar'.
743 can also be specified as strings, like 'foo.bar.Bar'.
744 args : tuple
744 args : tuple
745 Positional arguments for generating the default value.
745 Positional arguments for generating the default value.
746 kw : dict
746 kw : dict
747 Keyword arguments for generating the default value.
747 Keyword arguments for generating the default value.
748 allow_none : bool
748 allow_none : bool
749 Indicates whether None is allowed as a value.
749 Indicates whether None is allowed as a value.
750
750
751 Default Value
751 Default Value
752 -------------
752 -------------
753 If both ``args`` and ``kw`` are None, then the default value is None.
753 If both ``args`` and ``kw`` are None, then the default value is None.
754 If ``args`` is a tuple and ``kw`` is a dict, then the default is
754 If ``args`` is a tuple and ``kw`` is a dict, then the default is
755 created as ``klass(*args, **kw)``. If either ``args`` or ``kw`` is
755 created as ``klass(*args, **kw)``. If either ``args`` or ``kw`` is
756 not (but not both), None is replace by ``()`` or ``{}``.
756 not (but not both), None is replace by ``()`` or ``{}``.
757 """
757 """
758
758
759 self._allow_none = allow_none
759 self._allow_none = allow_none
760
760
761 if (klass is None) or (not (inspect.isclass(klass) or isinstance(klass, basestring))):
761 if (klass is None) or (not (inspect.isclass(klass) or isinstance(klass, basestring))):
762 raise TraitError('The klass argument must be a class'
762 raise TraitError('The klass argument must be a class'
763 ' you gave: %r' % klass)
763 ' you gave: %r' % klass)
764 self.klass = klass
764 self.klass = klass
765
765
766 # self.klass is a class, so handle default_value
766 # self.klass is a class, so handle default_value
767 if args is None and kw is None:
767 if args is None and kw is None:
768 default_value = None
768 default_value = None
769 else:
769 else:
770 if args is None:
770 if args is None:
771 # kw is not None
771 # kw is not None
772 args = ()
772 args = ()
773 elif kw is None:
773 elif kw is None:
774 # args is not None
774 # args is not None
775 kw = {}
775 kw = {}
776
776
777 if not isinstance(kw, dict):
777 if not isinstance(kw, dict):
778 raise TraitError("The 'kw' argument must be a dict or None.")
778 raise TraitError("The 'kw' argument must be a dict or None.")
779 if not isinstance(args, tuple):
779 if not isinstance(args, tuple):
780 raise TraitError("The 'args' argument must be a tuple or None.")
780 raise TraitError("The 'args' argument must be a tuple or None.")
781
781
782 default_value = DefaultValueGenerator(*args, **kw)
782 default_value = DefaultValueGenerator(*args, **kw)
783
783
784 super(Instance, self).__init__(default_value, **metadata)
784 super(Instance, self).__init__(default_value, **metadata)
785
785
786 def validate(self, obj, value):
786 def validate(self, obj, value):
787 if value is None:
787 if value is None:
788 if self._allow_none:
788 if self._allow_none:
789 return value
789 return value
790 self.error(obj, value)
790 self.error(obj, value)
791
791
792 if isinstance(value, self.klass):
792 if isinstance(value, self.klass):
793 return value
793 return value
794 else:
794 else:
795 self.error(obj, value)
795 self.error(obj, value)
796
796
797 def info(self):
797 def info(self):
798 if isinstance(self.klass, basestring):
798 if isinstance(self.klass, basestring):
799 klass = self.klass
799 klass = self.klass
800 else:
800 else:
801 klass = self.klass.__name__
801 klass = self.klass.__name__
802 result = class_of(klass)
802 result = class_of(klass)
803 if self._allow_none:
803 if self._allow_none:
804 return result + ' or None'
804 return result + ' or None'
805
805
806 return result
806 return result
807
807
808 def instance_init(self, obj):
808 def instance_init(self, obj):
809 self._resolve_classes()
809 self._resolve_classes()
810 super(Instance, self).instance_init(obj)
810 super(Instance, self).instance_init(obj)
811
811
812 def _resolve_classes(self):
812 def _resolve_classes(self):
813 if isinstance(self.klass, basestring):
813 if isinstance(self.klass, basestring):
814 self.klass = import_item(self.klass)
814 self.klass = import_item(self.klass)
815
815
816 def get_default_value(self):
816 def get_default_value(self):
817 """Instantiate a default value instance.
817 """Instantiate a default value instance.
818
818
819 This is called when the containing HasTraits classes'
819 This is called when the containing HasTraits classes'
820 :meth:`__new__` method is called to ensure that a unique instance
820 :meth:`__new__` method is called to ensure that a unique instance
821 is created for each HasTraits instance.
821 is created for each HasTraits instance.
822 """
822 """
823 dv = self.default_value
823 dv = self.default_value
824 if isinstance(dv, DefaultValueGenerator):
824 if isinstance(dv, DefaultValueGenerator):
825 return dv.generate(self.klass)
825 return dv.generate(self.klass)
826 else:
826 else:
827 return dv
827 return dv
828
828
829
829
830 class This(ClassBasedTraitType):
830 class This(ClassBasedTraitType):
831 """A trait for instances of the class containing this trait.
831 """A trait for instances of the class containing this trait.
832
832
833 Because how how and when class bodies are executed, the ``This``
833 Because how how and when class bodies are executed, the ``This``
834 trait can only have a default value of None. This, and because we
834 trait can only have a default value of None. This, and because we
835 always validate default values, ``allow_none`` is *always* true.
835 always validate default values, ``allow_none`` is *always* true.
836 """
836 """
837
837
838 info_text = 'an instance of the same type as the receiver or None'
838 info_text = 'an instance of the same type as the receiver or None'
839
839
840 def __init__(self, **metadata):
840 def __init__(self, **metadata):
841 super(This, self).__init__(None, **metadata)
841 super(This, self).__init__(None, **metadata)
842
842
843 def validate(self, obj, value):
843 def validate(self, obj, value):
844 # What if value is a superclass of obj.__class__? This is
844 # What if value is a superclass of obj.__class__? This is
845 # complicated if it was the superclass that defined the This
845 # complicated if it was the superclass that defined the This
846 # trait.
846 # trait.
847 if isinstance(value, self.this_class) or (value is None):
847 if isinstance(value, self.this_class) or (value is None):
848 return value
848 return value
849 else:
849 else:
850 self.error(obj, value)
850 self.error(obj, value)
851
851
852
852
853 #-----------------------------------------------------------------------------
853 #-----------------------------------------------------------------------------
854 # Basic TraitTypes implementations/subclasses
854 # Basic TraitTypes implementations/subclasses
855 #-----------------------------------------------------------------------------
855 #-----------------------------------------------------------------------------
856
856
857
857
858 class Any(TraitType):
858 class Any(TraitType):
859 default_value = None
859 default_value = None
860 info_text = 'any value'
860 info_text = 'any value'
861
861
862
862
863 class Int(TraitType):
863 class Int(TraitType):
864 """A integer trait."""
864 """A integer trait."""
865
865
866 default_value = 0
866 default_value = 0
867 info_text = 'an integer'
867 info_text = 'an integer'
868
868
869 def validate(self, obj, value):
869 def validate(self, obj, value):
870 if isinstance(value, int):
870 if isinstance(value, int):
871 return value
871 return value
872 self.error(obj, value)
872 self.error(obj, value)
873
873
874 class CInt(Int):
874 class CInt(Int):
875 """A casting version of the int trait."""
875 """A casting version of the int trait."""
876
876
877 def validate(self, obj, value):
877 def validate(self, obj, value):
878 try:
878 try:
879 return int(value)
879 return int(value)
880 except:
880 except:
881 self.error(obj, value)
881 self.error(obj, value)
882
882
883
883
884 class Long(TraitType):
884 class Long(TraitType):
885 """A long integer trait."""
885 """A long integer trait."""
886
886
887 default_value = 0L
887 default_value = 0L
888 info_text = 'a long'
888 info_text = 'a long'
889
889
890 def validate(self, obj, value):
890 def validate(self, obj, value):
891 if isinstance(value, long):
891 if isinstance(value, long):
892 return value
892 return value
893 if isinstance(value, int):
893 if isinstance(value, int):
894 return long(value)
894 return long(value)
895 self.error(obj, value)
895 self.error(obj, value)
896
896
897
897
898 class CLong(Long):
898 class CLong(Long):
899 """A casting version of the long integer trait."""
899 """A casting version of the long integer trait."""
900
900
901 def validate(self, obj, value):
901 def validate(self, obj, value):
902 try:
902 try:
903 return long(value)
903 return long(value)
904 except:
904 except:
905 self.error(obj, value)
905 self.error(obj, value)
906
906
907
907
908 class Float(TraitType):
908 class Float(TraitType):
909 """A float trait."""
909 """A float trait."""
910
910
911 default_value = 0.0
911 default_value = 0.0
912 info_text = 'a float'
912 info_text = 'a float'
913
913
914 def validate(self, obj, value):
914 def validate(self, obj, value):
915 if isinstance(value, float):
915 if isinstance(value, float):
916 return value
916 return value
917 if isinstance(value, int):
917 if isinstance(value, int):
918 return float(value)
918 return float(value)
919 self.error(obj, value)
919 self.error(obj, value)
920
920
921
921
922 class CFloat(Float):
922 class CFloat(Float):
923 """A casting version of the float trait."""
923 """A casting version of the float trait."""
924
924
925 def validate(self, obj, value):
925 def validate(self, obj, value):
926 try:
926 try:
927 return float(value)
927 return float(value)
928 except:
928 except:
929 self.error(obj, value)
929 self.error(obj, value)
930
930
931 class Complex(TraitType):
931 class Complex(TraitType):
932 """A trait for complex numbers."""
932 """A trait for complex numbers."""
933
933
934 default_value = 0.0 + 0.0j
934 default_value = 0.0 + 0.0j
935 info_text = 'a complex number'
935 info_text = 'a complex number'
936
936
937 def validate(self, obj, value):
937 def validate(self, obj, value):
938 if isinstance(value, complex):
938 if isinstance(value, complex):
939 return value
939 return value
940 if isinstance(value, (float, int)):
940 if isinstance(value, (float, int)):
941 return complex(value)
941 return complex(value)
942 self.error(obj, value)
942 self.error(obj, value)
943
943
944
944
945 class CComplex(Complex):
945 class CComplex(Complex):
946 """A casting version of the complex number trait."""
946 """A casting version of the complex number trait."""
947
947
948 def validate (self, obj, value):
948 def validate (self, obj, value):
949 try:
949 try:
950 return complex(value)
950 return complex(value)
951 except:
951 except:
952 self.error(obj, value)
952 self.error(obj, value)
953
953
954
954 # We should always be explicit about whether we're using bytes or unicode, both
955 # for Python 3 conversion and for reliable unicode behaviour on Python 2. So
956 # we don't have a Str type.
955 class Bytes(TraitType):
957 class Bytes(TraitType):
956 """A trait for strings."""
958 """A trait for strings."""
957
959
958 default_value = ''
960 default_value = ''
959 info_text = 'a string'
961 info_text = 'a string'
960
962
961 def validate(self, obj, value):
963 def validate(self, obj, value):
962 if isinstance(value, bytes):
964 if isinstance(value, bytes):
963 return value
965 return value
964 self.error(obj, value)
966 self.error(obj, value)
965
967
966
968
967 class CBytes(Bytes):
969 class CBytes(Bytes):
968 """A casting version of the string trait."""
970 """A casting version of the string trait."""
969
971
970 def validate(self, obj, value):
972 def validate(self, obj, value):
971 try:
973 try:
972 return bytes(value)
974 return bytes(value)
973 except:
975 except:
974 self.error(obj, value)
976 self.error(obj, value)
975
977
976
978
977 class Unicode(TraitType):
979 class Unicode(TraitType):
978 """A trait for unicode strings."""
980 """A trait for unicode strings."""
979
981
980 default_value = u''
982 default_value = u''
981 info_text = 'a unicode string'
983 info_text = 'a unicode string'
982
984
983 def validate(self, obj, value):
985 def validate(self, obj, value):
984 if isinstance(value, unicode):
986 if isinstance(value, unicode):
985 return value
987 return value
986 if isinstance(value, bytes):
988 if isinstance(value, bytes):
987 return unicode(value)
989 return unicode(value)
988 self.error(obj, value)
990 self.error(obj, value)
989
991
990
992
991 class CUnicode(Unicode):
993 class CUnicode(Unicode):
992 """A casting version of the unicode trait."""
994 """A casting version of the unicode trait."""
993
995
994 def validate(self, obj, value):
996 def validate(self, obj, value):
995 try:
997 try:
996 return unicode(value)
998 return unicode(value)
997 except:
999 except:
998 self.error(obj, value)
1000 self.error(obj, value)
999
1000 if sys.version_info[0] < 3:
1001 Str, CStr = Bytes, CBytes
1002 else:
1003 Str, CStr = Unicode, CUnicode
1004
1001
1005
1002
1006 class Bool(TraitType):
1003 class Bool(TraitType):
1007 """A boolean (True, False) trait."""
1004 """A boolean (True, False) trait."""
1008
1005
1009 default_value = False
1006 default_value = False
1010 info_text = 'a boolean'
1007 info_text = 'a boolean'
1011
1008
1012 def validate(self, obj, value):
1009 def validate(self, obj, value):
1013 if isinstance(value, bool):
1010 if isinstance(value, bool):
1014 return value
1011 return value
1015 self.error(obj, value)
1012 self.error(obj, value)
1016
1013
1017
1014
1018 class CBool(Bool):
1015 class CBool(Bool):
1019 """A casting version of the boolean trait."""
1016 """A casting version of the boolean trait."""
1020
1017
1021 def validate(self, obj, value):
1018 def validate(self, obj, value):
1022 try:
1019 try:
1023 return bool(value)
1020 return bool(value)
1024 except:
1021 except:
1025 self.error(obj, value)
1022 self.error(obj, value)
1026
1023
1027
1024
1028 class Enum(TraitType):
1025 class Enum(TraitType):
1029 """An enum that whose value must be in a given sequence."""
1026 """An enum that whose value must be in a given sequence."""
1030
1027
1031 def __init__(self, values, default_value=None, allow_none=True, **metadata):
1028 def __init__(self, values, default_value=None, allow_none=True, **metadata):
1032 self.values = values
1029 self.values = values
1033 self._allow_none = allow_none
1030 self._allow_none = allow_none
1034 super(Enum, self).__init__(default_value, **metadata)
1031 super(Enum, self).__init__(default_value, **metadata)
1035
1032
1036 def validate(self, obj, value):
1033 def validate(self, obj, value):
1037 if value is None:
1034 if value is None:
1038 if self._allow_none:
1035 if self._allow_none:
1039 return value
1036 return value
1040
1037
1041 if value in self.values:
1038 if value in self.values:
1042 return value
1039 return value
1043 self.error(obj, value)
1040 self.error(obj, value)
1044
1041
1045 def info(self):
1042 def info(self):
1046 """ Returns a description of the trait."""
1043 """ Returns a description of the trait."""
1047 result = 'any of ' + repr(self.values)
1044 result = 'any of ' + repr(self.values)
1048 if self._allow_none:
1045 if self._allow_none:
1049 return result + ' or None'
1046 return result + ' or None'
1050 return result
1047 return result
1051
1048
1052 class CaselessStrEnum(Enum):
1049 class CaselessStrEnum(Enum):
1053 """An enum of strings that are caseless in validate."""
1050 """An enum of strings that are caseless in validate."""
1054
1051
1055 def validate(self, obj, value):
1052 def validate(self, obj, value):
1056 if value is None:
1053 if value is None:
1057 if self._allow_none:
1054 if self._allow_none:
1058 return value
1055 return value
1059
1056
1060 if not isinstance(value, str):
1057 if not isinstance(value, str):
1061 self.error(obj, value)
1058 self.error(obj, value)
1062
1059
1063 for v in self.values:
1060 for v in self.values:
1064 if v.lower() == value.lower():
1061 if v.lower() == value.lower():
1065 return v
1062 return v
1066 self.error(obj, value)
1063 self.error(obj, value)
1067
1064
1068 class Container(Instance):
1065 class Container(Instance):
1069 """An instance of a container (list, set, etc.)
1066 """An instance of a container (list, set, etc.)
1070
1067
1071 To be subclassed by overriding klass.
1068 To be subclassed by overriding klass.
1072 """
1069 """
1073 klass = None
1070 klass = None
1074 _valid_defaults = SequenceTypes
1071 _valid_defaults = SequenceTypes
1075 _trait = None
1072 _trait = None
1076
1073
1077 def __init__(self, trait=None, default_value=None, allow_none=True,
1074 def __init__(self, trait=None, default_value=None, allow_none=True,
1078 **metadata):
1075 **metadata):
1079 """Create a container trait type from a list, set, or tuple.
1076 """Create a container trait type from a list, set, or tuple.
1080
1077
1081 The default value is created by doing ``List(default_value)``,
1078 The default value is created by doing ``List(default_value)``,
1082 which creates a copy of the ``default_value``.
1079 which creates a copy of the ``default_value``.
1083
1080
1084 ``trait`` can be specified, which restricts the type of elements
1081 ``trait`` can be specified, which restricts the type of elements
1085 in the container to that TraitType.
1082 in the container to that TraitType.
1086
1083
1087 If only one arg is given and it is not a Trait, it is taken as
1084 If only one arg is given and it is not a Trait, it is taken as
1088 ``default_value``:
1085 ``default_value``:
1089
1086
1090 ``c = List([1,2,3])``
1087 ``c = List([1,2,3])``
1091
1088
1092 Parameters
1089 Parameters
1093 ----------
1090 ----------
1094
1091
1095 trait : TraitType [ optional ]
1092 trait : TraitType [ optional ]
1096 the type for restricting the contents of the Container. If unspecified,
1093 the type for restricting the contents of the Container. If unspecified,
1097 types are not checked.
1094 types are not checked.
1098
1095
1099 default_value : SequenceType [ optional ]
1096 default_value : SequenceType [ optional ]
1100 The default value for the Trait. Must be list/tuple/set, and
1097 The default value for the Trait. Must be list/tuple/set, and
1101 will be cast to the container type.
1098 will be cast to the container type.
1102
1099
1103 allow_none : Bool [ default True ]
1100 allow_none : Bool [ default True ]
1104 Whether to allow the value to be None
1101 Whether to allow the value to be None
1105
1102
1106 **metadata : any
1103 **metadata : any
1107 further keys for extensions to the Trait (e.g. config)
1104 further keys for extensions to the Trait (e.g. config)
1108
1105
1109 """
1106 """
1110 istrait = lambda t: isinstance(t, type) and issubclass(t, TraitType)
1107 istrait = lambda t: isinstance(t, type) and issubclass(t, TraitType)
1111
1108
1112 # allow List([values]):
1109 # allow List([values]):
1113 if default_value is None and not istrait(trait):
1110 if default_value is None and not istrait(trait):
1114 default_value = trait
1111 default_value = trait
1115 trait = None
1112 trait = None
1116
1113
1117 if default_value is None:
1114 if default_value is None:
1118 args = ()
1115 args = ()
1119 elif isinstance(default_value, self._valid_defaults):
1116 elif isinstance(default_value, self._valid_defaults):
1120 args = (default_value,)
1117 args = (default_value,)
1121 else:
1118 else:
1122 raise TypeError('default value of %s was %s' %(self.__class__.__name__, default_value))
1119 raise TypeError('default value of %s was %s' %(self.__class__.__name__, default_value))
1123
1120
1124 if istrait(trait):
1121 if istrait(trait):
1125 self._trait = trait()
1122 self._trait = trait()
1126 self._trait.name = 'element'
1123 self._trait.name = 'element'
1127 elif trait is not None:
1124 elif trait is not None:
1128 raise TypeError("`trait` must be a Trait or None, got %s"%repr_type(trait))
1125 raise TypeError("`trait` must be a Trait or None, got %s"%repr_type(trait))
1129
1126
1130 super(Container,self).__init__(klass=self.klass, args=args,
1127 super(Container,self).__init__(klass=self.klass, args=args,
1131 allow_none=allow_none, **metadata)
1128 allow_none=allow_none, **metadata)
1132
1129
1133 def element_error(self, obj, element, validator):
1130 def element_error(self, obj, element, validator):
1134 e = "Element of the '%s' trait of %s instance must be %s, but a value of %s was specified." \
1131 e = "Element of the '%s' trait of %s instance must be %s, but a value of %s was specified." \
1135 % (self.name, class_of(obj), validator.info(), repr_type(element))
1132 % (self.name, class_of(obj), validator.info(), repr_type(element))
1136 raise TraitError(e)
1133 raise TraitError(e)
1137
1134
1138 def validate(self, obj, value):
1135 def validate(self, obj, value):
1139 value = super(Container, self).validate(obj, value)
1136 value = super(Container, self).validate(obj, value)
1140 if value is None:
1137 if value is None:
1141 return value
1138 return value
1142
1139
1143 value = self.validate_elements(obj, value)
1140 value = self.validate_elements(obj, value)
1144
1141
1145 return value
1142 return value
1146
1143
1147 def validate_elements(self, obj, value):
1144 def validate_elements(self, obj, value):
1148 validated = []
1145 validated = []
1149 if self._trait is None or isinstance(self._trait, Any):
1146 if self._trait is None or isinstance(self._trait, Any):
1150 return value
1147 return value
1151 for v in value:
1148 for v in value:
1152 try:
1149 try:
1153 v = self._trait.validate(obj, v)
1150 v = self._trait.validate(obj, v)
1154 except TraitError:
1151 except TraitError:
1155 self.element_error(obj, v, self._trait)
1152 self.element_error(obj, v, self._trait)
1156 else:
1153 else:
1157 validated.append(v)
1154 validated.append(v)
1158 return self.klass(validated)
1155 return self.klass(validated)
1159
1156
1160
1157
1161 class List(Container):
1158 class List(Container):
1162 """An instance of a Python list."""
1159 """An instance of a Python list."""
1163 klass = list
1160 klass = list
1164
1161
1165 def __init__(self, trait=None, default_value=None, minlen=0, maxlen=sys.maxint,
1162 def __init__(self, trait=None, default_value=None, minlen=0, maxlen=sys.maxint,
1166 allow_none=True, **metadata):
1163 allow_none=True, **metadata):
1167 """Create a List trait type from a list, set, or tuple.
1164 """Create a List trait type from a list, set, or tuple.
1168
1165
1169 The default value is created by doing ``List(default_value)``,
1166 The default value is created by doing ``List(default_value)``,
1170 which creates a copy of the ``default_value``.
1167 which creates a copy of the ``default_value``.
1171
1168
1172 ``trait`` can be specified, which restricts the type of elements
1169 ``trait`` can be specified, which restricts the type of elements
1173 in the container to that TraitType.
1170 in the container to that TraitType.
1174
1171
1175 If only one arg is given and it is not a Trait, it is taken as
1172 If only one arg is given and it is not a Trait, it is taken as
1176 ``default_value``:
1173 ``default_value``:
1177
1174
1178 ``c = List([1,2,3])``
1175 ``c = List([1,2,3])``
1179
1176
1180 Parameters
1177 Parameters
1181 ----------
1178 ----------
1182
1179
1183 trait : TraitType [ optional ]
1180 trait : TraitType [ optional ]
1184 the type for restricting the contents of the Container. If unspecified,
1181 the type for restricting the contents of the Container. If unspecified,
1185 types are not checked.
1182 types are not checked.
1186
1183
1187 default_value : SequenceType [ optional ]
1184 default_value : SequenceType [ optional ]
1188 The default value for the Trait. Must be list/tuple/set, and
1185 The default value for the Trait. Must be list/tuple/set, and
1189 will be cast to the container type.
1186 will be cast to the container type.
1190
1187
1191 minlen : Int [ default 0 ]
1188 minlen : Int [ default 0 ]
1192 The minimum length of the input list
1189 The minimum length of the input list
1193
1190
1194 maxlen : Int [ default sys.maxint ]
1191 maxlen : Int [ default sys.maxint ]
1195 The maximum length of the input list
1192 The maximum length of the input list
1196
1193
1197 allow_none : Bool [ default True ]
1194 allow_none : Bool [ default True ]
1198 Whether to allow the value to be None
1195 Whether to allow the value to be None
1199
1196
1200 **metadata : any
1197 **metadata : any
1201 further keys for extensions to the Trait (e.g. config)
1198 further keys for extensions to the Trait (e.g. config)
1202
1199
1203 """
1200 """
1204 self._minlen = minlen
1201 self._minlen = minlen
1205 self._maxlen = maxlen
1202 self._maxlen = maxlen
1206 super(List, self).__init__(trait=trait, default_value=default_value,
1203 super(List, self).__init__(trait=trait, default_value=default_value,
1207 allow_none=allow_none, **metadata)
1204 allow_none=allow_none, **metadata)
1208
1205
1209 def length_error(self, obj, value):
1206 def length_error(self, obj, value):
1210 e = "The '%s' trait of %s instance must be of length %i <= L <= %i, but a value of %s was specified." \
1207 e = "The '%s' trait of %s instance must be of length %i <= L <= %i, but a value of %s was specified." \
1211 % (self.name, class_of(obj), self._minlen, self._maxlen, value)
1208 % (self.name, class_of(obj), self._minlen, self._maxlen, value)
1212 raise TraitError(e)
1209 raise TraitError(e)
1213
1210
1214 def validate_elements(self, obj, value):
1211 def validate_elements(self, obj, value):
1215 length = len(value)
1212 length = len(value)
1216 if length < self._minlen or length > self._maxlen:
1213 if length < self._minlen or length > self._maxlen:
1217 self.length_error(obj, value)
1214 self.length_error(obj, value)
1218
1215
1219 return super(List, self).validate_elements(obj, value)
1216 return super(List, self).validate_elements(obj, value)
1220
1217
1221
1218
1222 class Set(Container):
1219 class Set(Container):
1223 """An instance of a Python set."""
1220 """An instance of a Python set."""
1224 klass = set
1221 klass = set
1225
1222
1226 class Tuple(Container):
1223 class Tuple(Container):
1227 """An instance of a Python tuple."""
1224 """An instance of a Python tuple."""
1228 klass = tuple
1225 klass = tuple
1229
1226
1230 def __init__(self, *traits, **metadata):
1227 def __init__(self, *traits, **metadata):
1231 """Tuple(*traits, default_value=None, allow_none=True, **medatata)
1228 """Tuple(*traits, default_value=None, allow_none=True, **medatata)
1232
1229
1233 Create a tuple from a list, set, or tuple.
1230 Create a tuple from a list, set, or tuple.
1234
1231
1235 Create a fixed-type tuple with Traits:
1232 Create a fixed-type tuple with Traits:
1236
1233
1237 ``t = Tuple(Int, Str, CStr)``
1234 ``t = Tuple(Int, Str, CStr)``
1238
1235
1239 would be length 3, with Int,Str,CStr for each element.
1236 would be length 3, with Int,Str,CStr for each element.
1240
1237
1241 If only one arg is given and it is not a Trait, it is taken as
1238 If only one arg is given and it is not a Trait, it is taken as
1242 default_value:
1239 default_value:
1243
1240
1244 ``t = Tuple((1,2,3))``
1241 ``t = Tuple((1,2,3))``
1245
1242
1246 Otherwise, ``default_value`` *must* be specified by keyword.
1243 Otherwise, ``default_value`` *must* be specified by keyword.
1247
1244
1248 Parameters
1245 Parameters
1249 ----------
1246 ----------
1250
1247
1251 *traits : TraitTypes [ optional ]
1248 *traits : TraitTypes [ optional ]
1252 the tsype for restricting the contents of the Tuple. If unspecified,
1249 the tsype for restricting the contents of the Tuple. If unspecified,
1253 types are not checked. If specified, then each positional argument
1250 types are not checked. If specified, then each positional argument
1254 corresponds to an element of the tuple. Tuples defined with traits
1251 corresponds to an element of the tuple. Tuples defined with traits
1255 are of fixed length.
1252 are of fixed length.
1256
1253
1257 default_value : SequenceType [ optional ]
1254 default_value : SequenceType [ optional ]
1258 The default value for the Tuple. Must be list/tuple/set, and
1255 The default value for the Tuple. Must be list/tuple/set, and
1259 will be cast to a tuple. If `traits` are specified, the
1256 will be cast to a tuple. If `traits` are specified, the
1260 `default_value` must conform to the shape and type they specify.
1257 `default_value` must conform to the shape and type they specify.
1261
1258
1262 allow_none : Bool [ default True ]
1259 allow_none : Bool [ default True ]
1263 Whether to allow the value to be None
1260 Whether to allow the value to be None
1264
1261
1265 **metadata : any
1262 **metadata : any
1266 further keys for extensions to the Trait (e.g. config)
1263 further keys for extensions to the Trait (e.g. config)
1267
1264
1268 """
1265 """
1269 default_value = metadata.pop('default_value', None)
1266 default_value = metadata.pop('default_value', None)
1270 allow_none = metadata.pop('allow_none', True)
1267 allow_none = metadata.pop('allow_none', True)
1271
1268
1272 istrait = lambda t: isinstance(t, type) and issubclass(t, TraitType)
1269 istrait = lambda t: isinstance(t, type) and issubclass(t, TraitType)
1273
1270
1274 # allow Tuple((values,)):
1271 # allow Tuple((values,)):
1275 if len(traits) == 1 and default_value is None and not istrait(traits[0]):
1272 if len(traits) == 1 and default_value is None and not istrait(traits[0]):
1276 default_value = traits[0]
1273 default_value = traits[0]
1277 traits = ()
1274 traits = ()
1278
1275
1279 if default_value is None:
1276 if default_value is None:
1280 args = ()
1277 args = ()
1281 elif isinstance(default_value, self._valid_defaults):
1278 elif isinstance(default_value, self._valid_defaults):
1282 args = (default_value,)
1279 args = (default_value,)
1283 else:
1280 else:
1284 raise TypeError('default value of %s was %s' %(self.__class__.__name__, default_value))
1281 raise TypeError('default value of %s was %s' %(self.__class__.__name__, default_value))
1285
1282
1286 self._traits = []
1283 self._traits = []
1287 for trait in traits:
1284 for trait in traits:
1288 t = trait()
1285 t = trait()
1289 t.name = 'element'
1286 t.name = 'element'
1290 self._traits.append(t)
1287 self._traits.append(t)
1291
1288
1292 if self._traits and default_value is None:
1289 if self._traits and default_value is None:
1293 # don't allow default to be an empty container if length is specified
1290 # don't allow default to be an empty container if length is specified
1294 args = None
1291 args = None
1295 super(Container,self).__init__(klass=self.klass, args=args,
1292 super(Container,self).__init__(klass=self.klass, args=args,
1296 allow_none=allow_none, **metadata)
1293 allow_none=allow_none, **metadata)
1297
1294
1298 def validate_elements(self, obj, value):
1295 def validate_elements(self, obj, value):
1299 if not self._traits:
1296 if not self._traits:
1300 # nothing to validate
1297 # nothing to validate
1301 return value
1298 return value
1302 if len(value) != len(self._traits):
1299 if len(value) != len(self._traits):
1303 e = "The '%s' trait of %s instance requires %i elements, but a value of %s was specified." \
1300 e = "The '%s' trait of %s instance requires %i elements, but a value of %s was specified." \
1304 % (self.name, class_of(obj), len(self._traits), repr_type(value))
1301 % (self.name, class_of(obj), len(self._traits), repr_type(value))
1305 raise TraitError(e)
1302 raise TraitError(e)
1306
1303
1307 validated = []
1304 validated = []
1308 for t,v in zip(self._traits, value):
1305 for t,v in zip(self._traits, value):
1309 try:
1306 try:
1310 v = t.validate(obj, v)
1307 v = t.validate(obj, v)
1311 except TraitError:
1308 except TraitError:
1312 self.element_error(obj, v, t)
1309 self.element_error(obj, v, t)
1313 else:
1310 else:
1314 validated.append(v)
1311 validated.append(v)
1315 return tuple(validated)
1312 return tuple(validated)
1316
1313
1317
1314
1318 class Dict(Instance):
1315 class Dict(Instance):
1319 """An instance of a Python dict."""
1316 """An instance of a Python dict."""
1320
1317
1321 def __init__(self, default_value=None, allow_none=True, **metadata):
1318 def __init__(self, default_value=None, allow_none=True, **metadata):
1322 """Create a dict trait type from a dict.
1319 """Create a dict trait type from a dict.
1323
1320
1324 The default value is created by doing ``dict(default_value)``,
1321 The default value is created by doing ``dict(default_value)``,
1325 which creates a copy of the ``default_value``.
1322 which creates a copy of the ``default_value``.
1326 """
1323 """
1327 if default_value is None:
1324 if default_value is None:
1328 args = ((),)
1325 args = ((),)
1329 elif isinstance(default_value, dict):
1326 elif isinstance(default_value, dict):
1330 args = (default_value,)
1327 args = (default_value,)
1331 elif isinstance(default_value, SequenceTypes):
1328 elif isinstance(default_value, SequenceTypes):
1332 args = (default_value,)
1329 args = (default_value,)
1333 else:
1330 else:
1334 raise TypeError('default value of Dict was %s' % default_value)
1331 raise TypeError('default value of Dict was %s' % default_value)
1335
1332
1336 super(Dict,self).__init__(klass=dict, args=args,
1333 super(Dict,self).__init__(klass=dict, args=args,
1337 allow_none=allow_none, **metadata)
1334 allow_none=allow_none, **metadata)
1338
1335
1339 class TCPAddress(TraitType):
1336 class TCPAddress(TraitType):
1340 """A trait for an (ip, port) tuple.
1337 """A trait for an (ip, port) tuple.
1341
1338
1342 This allows for both IPv4 IP addresses as well as hostnames.
1339 This allows for both IPv4 IP addresses as well as hostnames.
1343 """
1340 """
1344
1341
1345 default_value = ('127.0.0.1', 0)
1342 default_value = ('127.0.0.1', 0)
1346 info_text = 'an (ip, port) tuple'
1343 info_text = 'an (ip, port) tuple'
1347
1344
1348 def validate(self, obj, value):
1345 def validate(self, obj, value):
1349 if isinstance(value, tuple):
1346 if isinstance(value, tuple):
1350 if len(value) == 2:
1347 if len(value) == 2:
1351 if isinstance(value[0], basestring) and isinstance(value[1], int):
1348 if isinstance(value[0], basestring) and isinstance(value[1], int):
1352 port = value[1]
1349 port = value[1]
1353 if port >= 0 and port <= 65535:
1350 if port >= 0 and port <= 65535:
1354 return value
1351 return value
1355 self.error(obj, value)
1352 self.error(obj, value)
General Comments 0
You need to be logged in to leave comments. Login now