##// END OF EJS Templates
- Bug fixes in Demo code to support demos with IPython syntax...
fperez -
Show More
@@ -1,3068 +1,3072 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Magic functions for InteractiveShell.
2 """Magic functions for InteractiveShell.
3
3
4 $Id: Magic.py 1981 2006-12-12 21:51:54Z vivainio $"""
4 $Id: Magic.py 2036 2007-01-27 07:30:22Z fperez $"""
5
5
6 #*****************************************************************************
6 #*****************************************************************************
7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
8 # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
8 # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
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 # Modules and globals
15 # Modules and globals
16
16
17 from IPython import Release
17 from IPython import Release
18 __author__ = '%s <%s>\n%s <%s>' % \
18 __author__ = '%s <%s>\n%s <%s>' % \
19 ( Release.authors['Janko'] + Release.authors['Fernando'] )
19 ( Release.authors['Janko'] + Release.authors['Fernando'] )
20 __license__ = Release.license
20 __license__ = Release.license
21
21
22 # Python standard modules
22 # Python standard modules
23 import __builtin__
23 import __builtin__
24 import bdb
24 import bdb
25 import inspect
25 import inspect
26 import os
26 import os
27 import pdb
27 import pdb
28 import pydoc
28 import pydoc
29 import sys
29 import sys
30 import re
30 import re
31 import tempfile
31 import tempfile
32 import time
32 import time
33 import cPickle as pickle
33 import cPickle as pickle
34 import textwrap
34 import textwrap
35 from cStringIO import StringIO
35 from cStringIO import StringIO
36 from getopt import getopt,GetoptError
36 from getopt import getopt,GetoptError
37 from pprint import pprint, pformat
37 from pprint import pprint, pformat
38
38
39 # cProfile was added in Python2.5
39 # cProfile was added in Python2.5
40 try:
40 try:
41 import cProfile as profile
41 import cProfile as profile
42 import pstats
42 import pstats
43 except ImportError:
43 except ImportError:
44 # profile isn't bundled by default in Debian for license reasons
44 # profile isn't bundled by default in Debian for license reasons
45 try:
45 try:
46 import profile,pstats
46 import profile,pstats
47 except ImportError:
47 except ImportError:
48 profile = pstats = None
48 profile = pstats = None
49
49
50 # Homebrewed
50 # Homebrewed
51 import IPython
51 import IPython
52 from IPython import Debugger, OInspect, wildcard
52 from IPython import Debugger, OInspect, wildcard
53 from IPython.FakeModule import FakeModule
53 from IPython.FakeModule import FakeModule
54 from IPython.Itpl import Itpl, itpl, printpl,itplns
54 from IPython.Itpl import Itpl, itpl, printpl,itplns
55 from IPython.PyColorize import Parser
55 from IPython.PyColorize import Parser
56 from IPython.ipstruct import Struct
56 from IPython.ipstruct import Struct
57 from IPython.macro import Macro
57 from IPython.macro import Macro
58 from IPython.genutils import *
58 from IPython.genutils import *
59 from IPython import platutils
59 from IPython import platutils
60
60
61 #***************************************************************************
61 #***************************************************************************
62 # Utility functions
62 # Utility functions
63 def on_off(tag):
63 def on_off(tag):
64 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
64 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
65 return ['OFF','ON'][tag]
65 return ['OFF','ON'][tag]
66
66
67 class Bunch: pass
67 class Bunch: pass
68
68
69 #***************************************************************************
69 #***************************************************************************
70 # Main class implementing Magic functionality
70 # Main class implementing Magic functionality
71 class Magic:
71 class Magic:
72 """Magic functions for InteractiveShell.
72 """Magic functions for InteractiveShell.
73
73
74 Shell functions which can be reached as %function_name. All magic
74 Shell functions which can be reached as %function_name. All magic
75 functions should accept a string, which they can parse for their own
75 functions should accept a string, which they can parse for their own
76 needs. This can make some functions easier to type, eg `%cd ../`
76 needs. This can make some functions easier to type, eg `%cd ../`
77 vs. `%cd("../")`
77 vs. `%cd("../")`
78
78
79 ALL definitions MUST begin with the prefix magic_. The user won't need it
79 ALL definitions MUST begin with the prefix magic_. The user won't need it
80 at the command line, but it is is needed in the definition. """
80 at the command line, but it is is needed in the definition. """
81
81
82 # class globals
82 # class globals
83 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
83 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
84 'Automagic is ON, % prefix NOT needed for magic functions.']
84 'Automagic is ON, % prefix NOT needed for magic functions.']
85
85
86 #......................................................................
86 #......................................................................
87 # some utility functions
87 # some utility functions
88
88
89 def __init__(self,shell):
89 def __init__(self,shell):
90
90
91 self.options_table = {}
91 self.options_table = {}
92 if profile is None:
92 if profile is None:
93 self.magic_prun = self.profile_missing_notice
93 self.magic_prun = self.profile_missing_notice
94 self.shell = shell
94 self.shell = shell
95
95
96 # namespace for holding state we may need
96 # namespace for holding state we may need
97 self._magic_state = Bunch()
97 self._magic_state = Bunch()
98
98
99 def profile_missing_notice(self, *args, **kwargs):
99 def profile_missing_notice(self, *args, **kwargs):
100 error("""\
100 error("""\
101 The profile module could not be found. If you are a Debian user,
101 The profile module could not be found. If you are a Debian user,
102 it has been removed from the standard Debian package because of its non-free
102 it has been removed from the standard Debian package because of its non-free
103 license. To use profiling, please install"python2.3-profiler" from non-free.""")
103 license. To use profiling, please install"python2.3-profiler" from non-free.""")
104
104
105 def default_option(self,fn,optstr):
105 def default_option(self,fn,optstr):
106 """Make an entry in the options_table for fn, with value optstr"""
106 """Make an entry in the options_table for fn, with value optstr"""
107
107
108 if fn not in self.lsmagic():
108 if fn not in self.lsmagic():
109 error("%s is not a magic function" % fn)
109 error("%s is not a magic function" % fn)
110 self.options_table[fn] = optstr
110 self.options_table[fn] = optstr
111
111
112 def lsmagic(self):
112 def lsmagic(self):
113 """Return a list of currently available magic functions.
113 """Return a list of currently available magic functions.
114
114
115 Gives a list of the bare names after mangling (['ls','cd', ...], not
115 Gives a list of the bare names after mangling (['ls','cd', ...], not
116 ['magic_ls','magic_cd',...]"""
116 ['magic_ls','magic_cd',...]"""
117
117
118 # FIXME. This needs a cleanup, in the way the magics list is built.
118 # FIXME. This needs a cleanup, in the way the magics list is built.
119
119
120 # magics in class definition
120 # magics in class definition
121 class_magic = lambda fn: fn.startswith('magic_') and \
121 class_magic = lambda fn: fn.startswith('magic_') and \
122 callable(Magic.__dict__[fn])
122 callable(Magic.__dict__[fn])
123 # in instance namespace (run-time user additions)
123 # in instance namespace (run-time user additions)
124 inst_magic = lambda fn: fn.startswith('magic_') and \
124 inst_magic = lambda fn: fn.startswith('magic_') and \
125 callable(self.__dict__[fn])
125 callable(self.__dict__[fn])
126 # and bound magics by user (so they can access self):
126 # and bound magics by user (so they can access self):
127 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
127 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
128 callable(self.__class__.__dict__[fn])
128 callable(self.__class__.__dict__[fn])
129 magics = filter(class_magic,Magic.__dict__.keys()) + \
129 magics = filter(class_magic,Magic.__dict__.keys()) + \
130 filter(inst_magic,self.__dict__.keys()) + \
130 filter(inst_magic,self.__dict__.keys()) + \
131 filter(inst_bound_magic,self.__class__.__dict__.keys())
131 filter(inst_bound_magic,self.__class__.__dict__.keys())
132 out = []
132 out = []
133 for fn in magics:
133 for fn in magics:
134 out.append(fn.replace('magic_','',1))
134 out.append(fn.replace('magic_','',1))
135 out.sort()
135 out.sort()
136 return out
136 return out
137
137
138 def extract_input_slices(self,slices,raw=False):
138 def extract_input_slices(self,slices,raw=False):
139 """Return as a string a set of input history slices.
139 """Return as a string a set of input history slices.
140
140
141 Inputs:
141 Inputs:
142
142
143 - slices: the set of slices is given as a list of strings (like
143 - slices: the set of slices is given as a list of strings (like
144 ['1','4:8','9'], since this function is for use by magic functions
144 ['1','4:8','9'], since this function is for use by magic functions
145 which get their arguments as strings.
145 which get their arguments as strings.
146
146
147 Optional inputs:
147 Optional inputs:
148
148
149 - raw(False): by default, the processed input is used. If this is
149 - raw(False): by default, the processed input is used. If this is
150 true, the raw input history is used instead.
150 true, the raw input history is used instead.
151
151
152 Note that slices can be called with two notations:
152 Note that slices can be called with two notations:
153
153
154 N:M -> standard python form, means including items N...(M-1).
154 N:M -> standard python form, means including items N...(M-1).
155
155
156 N-M -> include items N..M (closed endpoint)."""
156 N-M -> include items N..M (closed endpoint)."""
157
157
158 if raw:
158 if raw:
159 hist = self.shell.input_hist_raw
159 hist = self.shell.input_hist_raw
160 else:
160 else:
161 hist = self.shell.input_hist
161 hist = self.shell.input_hist
162
162
163 cmds = []
163 cmds = []
164 for chunk in slices:
164 for chunk in slices:
165 if ':' in chunk:
165 if ':' in chunk:
166 ini,fin = map(int,chunk.split(':'))
166 ini,fin = map(int,chunk.split(':'))
167 elif '-' in chunk:
167 elif '-' in chunk:
168 ini,fin = map(int,chunk.split('-'))
168 ini,fin = map(int,chunk.split('-'))
169 fin += 1
169 fin += 1
170 else:
170 else:
171 ini = int(chunk)
171 ini = int(chunk)
172 fin = ini+1
172 fin = ini+1
173 cmds.append(hist[ini:fin])
173 cmds.append(hist[ini:fin])
174 return cmds
174 return cmds
175
175
176 def _ofind(self, oname, namespaces=None):
176 def _ofind(self, oname, namespaces=None):
177 """Find an object in the available namespaces.
177 """Find an object in the available namespaces.
178
178
179 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
179 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
180
180
181 Has special code to detect magic functions.
181 Has special code to detect magic functions.
182 """
182 """
183
183
184 oname = oname.strip()
184 oname = oname.strip()
185
185
186 alias_ns = None
186 alias_ns = None
187 if namespaces is None:
187 if namespaces is None:
188 # Namespaces to search in:
188 # Namespaces to search in:
189 # Put them in a list. The order is important so that we
189 # Put them in a list. The order is important so that we
190 # find things in the same order that Python finds them.
190 # find things in the same order that Python finds them.
191 namespaces = [ ('Interactive', self.shell.user_ns),
191 namespaces = [ ('Interactive', self.shell.user_ns),
192 ('IPython internal', self.shell.internal_ns),
192 ('IPython internal', self.shell.internal_ns),
193 ('Python builtin', __builtin__.__dict__),
193 ('Python builtin', __builtin__.__dict__),
194 ('Alias', self.shell.alias_table),
194 ('Alias', self.shell.alias_table),
195 ]
195 ]
196 alias_ns = self.shell.alias_table
196 alias_ns = self.shell.alias_table
197
197
198 # initialize results to 'null'
198 # initialize results to 'null'
199 found = 0; obj = None; ospace = None; ds = None;
199 found = 0; obj = None; ospace = None; ds = None;
200 ismagic = 0; isalias = 0; parent = None
200 ismagic = 0; isalias = 0; parent = None
201
201
202 # Look for the given name by splitting it in parts. If the head is
202 # Look for the given name by splitting it in parts. If the head is
203 # found, then we look for all the remaining parts as members, and only
203 # found, then we look for all the remaining parts as members, and only
204 # declare success if we can find them all.
204 # declare success if we can find them all.
205 oname_parts = oname.split('.')
205 oname_parts = oname.split('.')
206 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
206 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
207 for nsname,ns in namespaces:
207 for nsname,ns in namespaces:
208 try:
208 try:
209 obj = ns[oname_head]
209 obj = ns[oname_head]
210 except KeyError:
210 except KeyError:
211 continue
211 continue
212 else:
212 else:
213 for part in oname_rest:
213 for part in oname_rest:
214 try:
214 try:
215 parent = obj
215 parent = obj
216 obj = getattr(obj,part)
216 obj = getattr(obj,part)
217 except:
217 except:
218 # Blanket except b/c some badly implemented objects
218 # Blanket except b/c some badly implemented objects
219 # allow __getattr__ to raise exceptions other than
219 # allow __getattr__ to raise exceptions other than
220 # AttributeError, which then crashes IPython.
220 # AttributeError, which then crashes IPython.
221 break
221 break
222 else:
222 else:
223 # If we finish the for loop (no break), we got all members
223 # If we finish the for loop (no break), we got all members
224 found = 1
224 found = 1
225 ospace = nsname
225 ospace = nsname
226 if ns == alias_ns:
226 if ns == alias_ns:
227 isalias = 1
227 isalias = 1
228 break # namespace loop
228 break # namespace loop
229
229
230 # Try to see if it's magic
230 # Try to see if it's magic
231 if not found:
231 if not found:
232 if oname.startswith(self.shell.ESC_MAGIC):
232 if oname.startswith(self.shell.ESC_MAGIC):
233 oname = oname[1:]
233 oname = oname[1:]
234 obj = getattr(self,'magic_'+oname,None)
234 obj = getattr(self,'magic_'+oname,None)
235 if obj is not None:
235 if obj is not None:
236 found = 1
236 found = 1
237 ospace = 'IPython internal'
237 ospace = 'IPython internal'
238 ismagic = 1
238 ismagic = 1
239
239
240 # Last try: special-case some literals like '', [], {}, etc:
240 # Last try: special-case some literals like '', [], {}, etc:
241 if not found and oname_head in ["''",'""','[]','{}','()']:
241 if not found and oname_head in ["''",'""','[]','{}','()']:
242 obj = eval(oname_head)
242 obj = eval(oname_head)
243 found = 1
243 found = 1
244 ospace = 'Interactive'
244 ospace = 'Interactive'
245
245
246 return {'found':found, 'obj':obj, 'namespace':ospace,
246 return {'found':found, 'obj':obj, 'namespace':ospace,
247 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
247 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
248
248
249 def arg_err(self,func):
249 def arg_err(self,func):
250 """Print docstring if incorrect arguments were passed"""
250 """Print docstring if incorrect arguments were passed"""
251 print 'Error in arguments:'
251 print 'Error in arguments:'
252 print OInspect.getdoc(func)
252 print OInspect.getdoc(func)
253
253
254 def format_latex(self,strng):
254 def format_latex(self,strng):
255 """Format a string for latex inclusion."""
255 """Format a string for latex inclusion."""
256
256
257 # Characters that need to be escaped for latex:
257 # Characters that need to be escaped for latex:
258 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
258 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
259 # Magic command names as headers:
259 # Magic command names as headers:
260 cmd_name_re = re.compile(r'^(%s.*?):' % self.shell.ESC_MAGIC,
260 cmd_name_re = re.compile(r'^(%s.*?):' % self.shell.ESC_MAGIC,
261 re.MULTILINE)
261 re.MULTILINE)
262 # Magic commands
262 # Magic commands
263 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % self.shell.ESC_MAGIC,
263 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % self.shell.ESC_MAGIC,
264 re.MULTILINE)
264 re.MULTILINE)
265 # Paragraph continue
265 # Paragraph continue
266 par_re = re.compile(r'\\$',re.MULTILINE)
266 par_re = re.compile(r'\\$',re.MULTILINE)
267
267
268 # The "\n" symbol
268 # The "\n" symbol
269 newline_re = re.compile(r'\\n')
269 newline_re = re.compile(r'\\n')
270
270
271 # Now build the string for output:
271 # Now build the string for output:
272 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
272 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
273 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
273 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
274 strng)
274 strng)
275 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
275 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
276 strng = par_re.sub(r'\\\\',strng)
276 strng = par_re.sub(r'\\\\',strng)
277 strng = escape_re.sub(r'\\\1',strng)
277 strng = escape_re.sub(r'\\\1',strng)
278 strng = newline_re.sub(r'\\textbackslash{}n',strng)
278 strng = newline_re.sub(r'\\textbackslash{}n',strng)
279 return strng
279 return strng
280
280
281 def format_screen(self,strng):
281 def format_screen(self,strng):
282 """Format a string for screen printing.
282 """Format a string for screen printing.
283
283
284 This removes some latex-type format codes."""
284 This removes some latex-type format codes."""
285 # Paragraph continue
285 # Paragraph continue
286 par_re = re.compile(r'\\$',re.MULTILINE)
286 par_re = re.compile(r'\\$',re.MULTILINE)
287 strng = par_re.sub('',strng)
287 strng = par_re.sub('',strng)
288 return strng
288 return strng
289
289
290 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
290 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
291 """Parse options passed to an argument string.
291 """Parse options passed to an argument string.
292
292
293 The interface is similar to that of getopt(), but it returns back a
293 The interface is similar to that of getopt(), but it returns back a
294 Struct with the options as keys and the stripped argument string still
294 Struct with the options as keys and the stripped argument string still
295 as a string.
295 as a string.
296
296
297 arg_str is quoted as a true sys.argv vector by using shlex.split.
297 arg_str is quoted as a true sys.argv vector by using shlex.split.
298 This allows us to easily expand variables, glob files, quote
298 This allows us to easily expand variables, glob files, quote
299 arguments, etc.
299 arguments, etc.
300
300
301 Options:
301 Options:
302 -mode: default 'string'. If given as 'list', the argument string is
302 -mode: default 'string'. If given as 'list', the argument string is
303 returned as a list (split on whitespace) instead of a string.
303 returned as a list (split on whitespace) instead of a string.
304
304
305 -list_all: put all option values in lists. Normally only options
305 -list_all: put all option values in lists. Normally only options
306 appearing more than once are put in a list.
306 appearing more than once are put in a list.
307
307
308 -posix (True): whether to split the input line in POSIX mode or not,
308 -posix (True): whether to split the input line in POSIX mode or not,
309 as per the conventions outlined in the shlex module from the
309 as per the conventions outlined in the shlex module from the
310 standard library."""
310 standard library."""
311
311
312 # inject default options at the beginning of the input line
312 # inject default options at the beginning of the input line
313 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
313 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
314 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
314 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
315
315
316 mode = kw.get('mode','string')
316 mode = kw.get('mode','string')
317 if mode not in ['string','list']:
317 if mode not in ['string','list']:
318 raise ValueError,'incorrect mode given: %s' % mode
318 raise ValueError,'incorrect mode given: %s' % mode
319 # Get options
319 # Get options
320 list_all = kw.get('list_all',0)
320 list_all = kw.get('list_all',0)
321 posix = kw.get('posix',True)
321 posix = kw.get('posix',True)
322
322
323 # Check if we have more than one argument to warrant extra processing:
323 # Check if we have more than one argument to warrant extra processing:
324 odict = {} # Dictionary with options
324 odict = {} # Dictionary with options
325 args = arg_str.split()
325 args = arg_str.split()
326 if len(args) >= 1:
326 if len(args) >= 1:
327 # If the list of inputs only has 0 or 1 thing in it, there's no
327 # If the list of inputs only has 0 or 1 thing in it, there's no
328 # need to look for options
328 # need to look for options
329 argv = arg_split(arg_str,posix)
329 argv = arg_split(arg_str,posix)
330 # Do regular option processing
330 # Do regular option processing
331 try:
331 try:
332 opts,args = getopt(argv,opt_str,*long_opts)
332 opts,args = getopt(argv,opt_str,*long_opts)
333 except GetoptError,e:
333 except GetoptError,e:
334 raise GetoptError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
334 raise GetoptError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
335 " ".join(long_opts)))
335 " ".join(long_opts)))
336 for o,a in opts:
336 for o,a in opts:
337 if o.startswith('--'):
337 if o.startswith('--'):
338 o = o[2:]
338 o = o[2:]
339 else:
339 else:
340 o = o[1:]
340 o = o[1:]
341 try:
341 try:
342 odict[o].append(a)
342 odict[o].append(a)
343 except AttributeError:
343 except AttributeError:
344 odict[o] = [odict[o],a]
344 odict[o] = [odict[o],a]
345 except KeyError:
345 except KeyError:
346 if list_all:
346 if list_all:
347 odict[o] = [a]
347 odict[o] = [a]
348 else:
348 else:
349 odict[o] = a
349 odict[o] = a
350
350
351 # Prepare opts,args for return
351 # Prepare opts,args for return
352 opts = Struct(odict)
352 opts = Struct(odict)
353 if mode == 'string':
353 if mode == 'string':
354 args = ' '.join(args)
354 args = ' '.join(args)
355
355
356 return opts,args
356 return opts,args
357
357
358 #......................................................................
358 #......................................................................
359 # And now the actual magic functions
359 # And now the actual magic functions
360
360
361 # Functions for IPython shell work (vars,funcs, config, etc)
361 # Functions for IPython shell work (vars,funcs, config, etc)
362 def magic_lsmagic(self, parameter_s = ''):
362 def magic_lsmagic(self, parameter_s = ''):
363 """List currently available magic functions."""
363 """List currently available magic functions."""
364 mesc = self.shell.ESC_MAGIC
364 mesc = self.shell.ESC_MAGIC
365 print 'Available magic functions:\n'+mesc+\
365 print 'Available magic functions:\n'+mesc+\
366 (' '+mesc).join(self.lsmagic())
366 (' '+mesc).join(self.lsmagic())
367 print '\n' + Magic.auto_status[self.shell.rc.automagic]
367 print '\n' + Magic.auto_status[self.shell.rc.automagic]
368 return None
368 return None
369
369
370 def magic_magic(self, parameter_s = ''):
370 def magic_magic(self, parameter_s = ''):
371 """Print information about the magic function system."""
371 """Print information about the magic function system."""
372
372
373 mode = ''
373 mode = ''
374 try:
374 try:
375 if parameter_s.split()[0] == '-latex':
375 if parameter_s.split()[0] == '-latex':
376 mode = 'latex'
376 mode = 'latex'
377 if parameter_s.split()[0] == '-brief':
377 if parameter_s.split()[0] == '-brief':
378 mode = 'brief'
378 mode = 'brief'
379 except:
379 except:
380 pass
380 pass
381
381
382 magic_docs = []
382 magic_docs = []
383 for fname in self.lsmagic():
383 for fname in self.lsmagic():
384 mname = 'magic_' + fname
384 mname = 'magic_' + fname
385 for space in (Magic,self,self.__class__):
385 for space in (Magic,self,self.__class__):
386 try:
386 try:
387 fn = space.__dict__[mname]
387 fn = space.__dict__[mname]
388 except KeyError:
388 except KeyError:
389 pass
389 pass
390 else:
390 else:
391 break
391 break
392 if mode == 'brief':
392 if mode == 'brief':
393 # only first line
393 # only first line
394 fndoc = fn.__doc__.split('\n',1)[0]
394 fndoc = fn.__doc__.split('\n',1)[0]
395 else:
395 else:
396 fndoc = fn.__doc__
396 fndoc = fn.__doc__
397
397
398 magic_docs.append('%s%s:\n\t%s\n' %(self.shell.ESC_MAGIC,
398 magic_docs.append('%s%s:\n\t%s\n' %(self.shell.ESC_MAGIC,
399 fname,fndoc))
399 fname,fndoc))
400 magic_docs = ''.join(magic_docs)
400 magic_docs = ''.join(magic_docs)
401
401
402 if mode == 'latex':
402 if mode == 'latex':
403 print self.format_latex(magic_docs)
403 print self.format_latex(magic_docs)
404 return
404 return
405 else:
405 else:
406 magic_docs = self.format_screen(magic_docs)
406 magic_docs = self.format_screen(magic_docs)
407 if mode == 'brief':
407 if mode == 'brief':
408 return magic_docs
408 return magic_docs
409
409
410 outmsg = """
410 outmsg = """
411 IPython's 'magic' functions
411 IPython's 'magic' functions
412 ===========================
412 ===========================
413
413
414 The magic function system provides a series of functions which allow you to
414 The magic function system provides a series of functions which allow you to
415 control the behavior of IPython itself, plus a lot of system-type
415 control the behavior of IPython itself, plus a lot of system-type
416 features. All these functions are prefixed with a % character, but parameters
416 features. All these functions are prefixed with a % character, but parameters
417 are given without parentheses or quotes.
417 are given without parentheses or quotes.
418
418
419 NOTE: If you have 'automagic' enabled (via the command line option or with the
419 NOTE: If you have 'automagic' enabled (via the command line option or with the
420 %automagic function), you don't need to type in the % explicitly. By default,
420 %automagic function), you don't need to type in the % explicitly. By default,
421 IPython ships with automagic on, so you should only rarely need the % escape.
421 IPython ships with automagic on, so you should only rarely need the % escape.
422
422
423 Example: typing '%cd mydir' (without the quotes) changes you working directory
423 Example: typing '%cd mydir' (without the quotes) changes you working directory
424 to 'mydir', if it exists.
424 to 'mydir', if it exists.
425
425
426 You can define your own magic functions to extend the system. See the supplied
426 You can define your own magic functions to extend the system. See the supplied
427 ipythonrc and example-magic.py files for details (in your ipython
427 ipythonrc and example-magic.py files for details (in your ipython
428 configuration directory, typically $HOME/.ipython/).
428 configuration directory, typically $HOME/.ipython/).
429
429
430 You can also define your own aliased names for magic functions. In your
430 You can also define your own aliased names for magic functions. In your
431 ipythonrc file, placing a line like:
431 ipythonrc file, placing a line like:
432
432
433 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
433 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
434
434
435 will define %pf as a new name for %profile.
435 will define %pf as a new name for %profile.
436
436
437 You can also call magics in code using the ipmagic() function, which IPython
437 You can also call magics in code using the ipmagic() function, which IPython
438 automatically adds to the builtin namespace. Type 'ipmagic?' for details.
438 automatically adds to the builtin namespace. Type 'ipmagic?' for details.
439
439
440 For a list of the available magic functions, use %lsmagic. For a description
440 For a list of the available magic functions, use %lsmagic. For a description
441 of any of them, type %magic_name?, e.g. '%cd?'.
441 of any of them, type %magic_name?, e.g. '%cd?'.
442
442
443 Currently the magic system has the following functions:\n"""
443 Currently the magic system has the following functions:\n"""
444
444
445 mesc = self.shell.ESC_MAGIC
445 mesc = self.shell.ESC_MAGIC
446 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
446 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
447 "\n\n%s%s\n\n%s" % (outmsg,
447 "\n\n%s%s\n\n%s" % (outmsg,
448 magic_docs,mesc,mesc,
448 magic_docs,mesc,mesc,
449 (' '+mesc).join(self.lsmagic()),
449 (' '+mesc).join(self.lsmagic()),
450 Magic.auto_status[self.shell.rc.automagic] ) )
450 Magic.auto_status[self.shell.rc.automagic] ) )
451
451
452 page(outmsg,screen_lines=self.shell.rc.screen_length)
452 page(outmsg,screen_lines=self.shell.rc.screen_length)
453
453
454 def magic_automagic(self, parameter_s = ''):
454 def magic_automagic(self, parameter_s = ''):
455 """Make magic functions callable without having to type the initial %.
455 """Make magic functions callable without having to type the initial %.
456
456
457 Toggles on/off (when off, you must call it as %automagic, of
457 Toggles on/off (when off, you must call it as %automagic, of
458 course). Note that magic functions have lowest priority, so if there's
458 course). Note that magic functions have lowest priority, so if there's
459 a variable whose name collides with that of a magic fn, automagic
459 a variable whose name collides with that of a magic fn, automagic
460 won't work for that function (you get the variable instead). However,
460 won't work for that function (you get the variable instead). However,
461 if you delete the variable (del var), the previously shadowed magic
461 if you delete the variable (del var), the previously shadowed magic
462 function becomes visible to automagic again."""
462 function becomes visible to automagic again."""
463
463
464 rc = self.shell.rc
464 rc = self.shell.rc
465 rc.automagic = not rc.automagic
465 rc.automagic = not rc.automagic
466 print '\n' + Magic.auto_status[rc.automagic]
466 print '\n' + Magic.auto_status[rc.automagic]
467
467
468 def magic_autocall(self, parameter_s = ''):
468 def magic_autocall(self, parameter_s = ''):
469 """Make functions callable without having to type parentheses.
469 """Make functions callable without having to type parentheses.
470
470
471 Usage:
471 Usage:
472
472
473 %autocall [mode]
473 %autocall [mode]
474
474
475 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
475 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
476 value is toggled on and off (remembering the previous state)."""
476 value is toggled on and off (remembering the previous state)."""
477
477
478 rc = self.shell.rc
478 rc = self.shell.rc
479
479
480 if parameter_s:
480 if parameter_s:
481 arg = int(parameter_s)
481 arg = int(parameter_s)
482 else:
482 else:
483 arg = 'toggle'
483 arg = 'toggle'
484
484
485 if not arg in (0,1,2,'toggle'):
485 if not arg in (0,1,2,'toggle'):
486 error('Valid modes: (0->Off, 1->Smart, 2->Full')
486 error('Valid modes: (0->Off, 1->Smart, 2->Full')
487 return
487 return
488
488
489 if arg in (0,1,2):
489 if arg in (0,1,2):
490 rc.autocall = arg
490 rc.autocall = arg
491 else: # toggle
491 else: # toggle
492 if rc.autocall:
492 if rc.autocall:
493 self._magic_state.autocall_save = rc.autocall
493 self._magic_state.autocall_save = rc.autocall
494 rc.autocall = 0
494 rc.autocall = 0
495 else:
495 else:
496 try:
496 try:
497 rc.autocall = self._magic_state.autocall_save
497 rc.autocall = self._magic_state.autocall_save
498 except AttributeError:
498 except AttributeError:
499 rc.autocall = self._magic_state.autocall_save = 1
499 rc.autocall = self._magic_state.autocall_save = 1
500
500
501 print "Automatic calling is:",['OFF','Smart','Full'][rc.autocall]
501 print "Automatic calling is:",['OFF','Smart','Full'][rc.autocall]
502
502
503 def magic_autoindent(self, parameter_s = ''):
503 def magic_autoindent(self, parameter_s = ''):
504 """Toggle autoindent on/off (if available)."""
504 """Toggle autoindent on/off (if available)."""
505
505
506 self.shell.set_autoindent()
506 self.shell.set_autoindent()
507 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
507 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
508
508
509 def magic_system_verbose(self, parameter_s = ''):
509 def magic_system_verbose(self, parameter_s = ''):
510 """Set verbose printing of system calls.
510 """Set verbose printing of system calls.
511
511
512 If called without an argument, act as a toggle"""
512 If called without an argument, act as a toggle"""
513
513
514 if parameter_s:
514 if parameter_s:
515 val = bool(eval(parameter_s))
515 val = bool(eval(parameter_s))
516 else:
516 else:
517 val = None
517 val = None
518
518
519 self.shell.rc_set_toggle('system_verbose',val)
519 self.shell.rc_set_toggle('system_verbose',val)
520 print "System verbose printing is:",\
520 print "System verbose printing is:",\
521 ['OFF','ON'][self.shell.rc.system_verbose]
521 ['OFF','ON'][self.shell.rc.system_verbose]
522
522
523 def magic_history(self, parameter_s = ''):
523 def magic_history(self, parameter_s = ''):
524 """Print input history (_i<n> variables), with most recent last.
524 """Print input history (_i<n> variables), with most recent last.
525
525
526 %history -> print at most 40 inputs (some may be multi-line)\\
526 %history -> print at most 40 inputs (some may be multi-line)\\
527 %history n -> print at most n inputs\\
527 %history n -> print at most n inputs\\
528 %history n1 n2 -> print inputs between n1 and n2 (n2 not included)\\
528 %history n1 n2 -> print inputs between n1 and n2 (n2 not included)\\
529
529
530 Each input's number <n> is shown, and is accessible as the
530 Each input's number <n> is shown, and is accessible as the
531 automatically generated variable _i<n>. Multi-line statements are
531 automatically generated variable _i<n>. Multi-line statements are
532 printed starting at a new line for easy copy/paste.
532 printed starting at a new line for easy copy/paste.
533
533
534
534
535 Options:
535 Options:
536
536
537 -n: do NOT print line numbers. This is useful if you want to get a
537 -n: do NOT print line numbers. This is useful if you want to get a
538 printout of many lines which can be directly pasted into a text
538 printout of many lines which can be directly pasted into a text
539 editor.
539 editor.
540
540
541 This feature is only available if numbered prompts are in use.
541 This feature is only available if numbered prompts are in use.
542
542
543 -r: print the 'raw' history. IPython filters your input and
543 -r: print the 'raw' history. IPython filters your input and
544 converts it all into valid Python source before executing it (things
544 converts it all into valid Python source before executing it (things
545 like magics or aliases are turned into function calls, for
545 like magics or aliases are turned into function calls, for
546 example). With this option, you'll see the unfiltered history
546 example). With this option, you'll see the unfiltered history
547 instead of the filtered version: '%cd /' will be seen as '%cd /'
547 instead of the filtered version: '%cd /' will be seen as '%cd /'
548 instead of '_ip.magic("%cd /")'.
548 instead of '_ip.magic("%cd /")'.
549 """
549 """
550
550
551 shell = self.shell
551 shell = self.shell
552 if not shell.outputcache.do_full_cache:
552 if not shell.outputcache.do_full_cache:
553 print 'This feature is only available if numbered prompts are in use.'
553 print 'This feature is only available if numbered prompts are in use.'
554 return
554 return
555 opts,args = self.parse_options(parameter_s,'nr',mode='list')
555 opts,args = self.parse_options(parameter_s,'nr',mode='list')
556
556
557 if opts.has_key('r'):
557 if opts.has_key('r'):
558 input_hist = shell.input_hist_raw
558 input_hist = shell.input_hist_raw
559 else:
559 else:
560 input_hist = shell.input_hist
560 input_hist = shell.input_hist
561
561
562 default_length = 40
562 default_length = 40
563 if len(args) == 0:
563 if len(args) == 0:
564 final = len(input_hist)
564 final = len(input_hist)
565 init = max(1,final-default_length)
565 init = max(1,final-default_length)
566 elif len(args) == 1:
566 elif len(args) == 1:
567 final = len(input_hist)
567 final = len(input_hist)
568 init = max(1,final-int(args[0]))
568 init = max(1,final-int(args[0]))
569 elif len(args) == 2:
569 elif len(args) == 2:
570 init,final = map(int,args)
570 init,final = map(int,args)
571 else:
571 else:
572 warn('%hist takes 0, 1 or 2 arguments separated by spaces.')
572 warn('%hist takes 0, 1 or 2 arguments separated by spaces.')
573 print self.magic_hist.__doc__
573 print self.magic_hist.__doc__
574 return
574 return
575 width = len(str(final))
575 width = len(str(final))
576 line_sep = ['','\n']
576 line_sep = ['','\n']
577 print_nums = not opts.has_key('n')
577 print_nums = not opts.has_key('n')
578 for in_num in range(init,final):
578 for in_num in range(init,final):
579 inline = input_hist[in_num]
579 inline = input_hist[in_num]
580 multiline = int(inline.count('\n') > 1)
580 multiline = int(inline.count('\n') > 1)
581 if print_nums:
581 if print_nums:
582 print '%s:%s' % (str(in_num).ljust(width),line_sep[multiline]),
582 print '%s:%s' % (str(in_num).ljust(width),line_sep[multiline]),
583 print inline,
583 print inline,
584
584
585 def magic_hist(self, parameter_s=''):
585 def magic_hist(self, parameter_s=''):
586 """Alternate name for %history."""
586 """Alternate name for %history."""
587 return self.magic_history(parameter_s)
587 return self.magic_history(parameter_s)
588
588
589 def magic_p(self, parameter_s=''):
589 def magic_p(self, parameter_s=''):
590 """Just a short alias for Python's 'print'."""
590 """Just a short alias for Python's 'print'."""
591 exec 'print ' + parameter_s in self.shell.user_ns
591 exec 'print ' + parameter_s in self.shell.user_ns
592
592
593 def magic_r(self, parameter_s=''):
593 def magic_r(self, parameter_s=''):
594 """Repeat previous input.
594 """Repeat previous input.
595
595
596 If given an argument, repeats the previous command which starts with
596 If given an argument, repeats the previous command which starts with
597 the same string, otherwise it just repeats the previous input.
597 the same string, otherwise it just repeats the previous input.
598
598
599 Shell escaped commands (with ! as first character) are not recognized
599 Shell escaped commands (with ! as first character) are not recognized
600 by this system, only pure python code and magic commands.
600 by this system, only pure python code and magic commands.
601 """
601 """
602
602
603 start = parameter_s.strip()
603 start = parameter_s.strip()
604 esc_magic = self.shell.ESC_MAGIC
604 esc_magic = self.shell.ESC_MAGIC
605 # Identify magic commands even if automagic is on (which means
605 # Identify magic commands even if automagic is on (which means
606 # the in-memory version is different from that typed by the user).
606 # the in-memory version is different from that typed by the user).
607 if self.shell.rc.automagic:
607 if self.shell.rc.automagic:
608 start_magic = esc_magic+start
608 start_magic = esc_magic+start
609 else:
609 else:
610 start_magic = start
610 start_magic = start
611 # Look through the input history in reverse
611 # Look through the input history in reverse
612 for n in range(len(self.shell.input_hist)-2,0,-1):
612 for n in range(len(self.shell.input_hist)-2,0,-1):
613 input = self.shell.input_hist[n]
613 input = self.shell.input_hist[n]
614 # skip plain 'r' lines so we don't recurse to infinity
614 # skip plain 'r' lines so we don't recurse to infinity
615 if input != '_ip.magic("r")\n' and \
615 if input != '_ip.magic("r")\n' and \
616 (input.startswith(start) or input.startswith(start_magic)):
616 (input.startswith(start) or input.startswith(start_magic)):
617 #print 'match',`input` # dbg
617 #print 'match',`input` # dbg
618 print 'Executing:',input,
618 print 'Executing:',input,
619 self.shell.runlines(input)
619 self.shell.runlines(input)
620 return
620 return
621 print 'No previous input matching `%s` found.' % start
621 print 'No previous input matching `%s` found.' % start
622
622
623 def magic_page(self, parameter_s=''):
623 def magic_page(self, parameter_s=''):
624 """Pretty print the object and display it through a pager.
624 """Pretty print the object and display it through a pager.
625
625
626 %page [options] OBJECT
626 %page [options] OBJECT
627
627
628 If no object is given, use _ (last output).
628 If no object is given, use _ (last output).
629
629
630 Options:
630 Options:
631
631
632 -r: page str(object), don't pretty-print it."""
632 -r: page str(object), don't pretty-print it."""
633
633
634 # After a function contributed by Olivier Aubert, slightly modified.
634 # After a function contributed by Olivier Aubert, slightly modified.
635
635
636 # Process options/args
636 # Process options/args
637 opts,args = self.parse_options(parameter_s,'r')
637 opts,args = self.parse_options(parameter_s,'r')
638 raw = 'r' in opts
638 raw = 'r' in opts
639
639
640 oname = args and args or '_'
640 oname = args and args or '_'
641 info = self._ofind(oname)
641 info = self._ofind(oname)
642 if info['found']:
642 if info['found']:
643 txt = (raw and str or pformat)( info['obj'] )
643 txt = (raw and str or pformat)( info['obj'] )
644 page(txt)
644 page(txt)
645 else:
645 else:
646 print 'Object `%s` not found' % oname
646 print 'Object `%s` not found' % oname
647
647
648 def magic_profile(self, parameter_s=''):
648 def magic_profile(self, parameter_s=''):
649 """Print your currently active IPyhton profile."""
649 """Print your currently active IPyhton profile."""
650 if self.shell.rc.profile:
650 if self.shell.rc.profile:
651 printpl('Current IPython profile: $self.shell.rc.profile.')
651 printpl('Current IPython profile: $self.shell.rc.profile.')
652 else:
652 else:
653 print 'No profile active.'
653 print 'No profile active.'
654
654
655 def _inspect(self,meth,oname,namespaces=None,**kw):
655 def _inspect(self,meth,oname,namespaces=None,**kw):
656 """Generic interface to the inspector system.
656 """Generic interface to the inspector system.
657
657
658 This function is meant to be called by pdef, pdoc & friends."""
658 This function is meant to be called by pdef, pdoc & friends."""
659
659
660 oname = oname.strip()
660 oname = oname.strip()
661 info = Struct(self._ofind(oname, namespaces))
661 info = Struct(self._ofind(oname, namespaces))
662
662
663 if info.found:
663 if info.found:
664 # Get the docstring of the class property if it exists.
664 # Get the docstring of the class property if it exists.
665 path = oname.split('.')
665 path = oname.split('.')
666 root = '.'.join(path[:-1])
666 root = '.'.join(path[:-1])
667 if info.parent is not None:
667 if info.parent is not None:
668 try:
668 try:
669 target = getattr(info.parent, '__class__')
669 target = getattr(info.parent, '__class__')
670 # The object belongs to a class instance.
670 # The object belongs to a class instance.
671 try:
671 try:
672 target = getattr(target, path[-1])
672 target = getattr(target, path[-1])
673 # The class defines the object.
673 # The class defines the object.
674 if isinstance(target, property):
674 if isinstance(target, property):
675 oname = root + '.__class__.' + path[-1]
675 oname = root + '.__class__.' + path[-1]
676 info = Struct(self._ofind(oname))
676 info = Struct(self._ofind(oname))
677 except AttributeError: pass
677 except AttributeError: pass
678 except AttributeError: pass
678 except AttributeError: pass
679
679
680 pmethod = getattr(self.shell.inspector,meth)
680 pmethod = getattr(self.shell.inspector,meth)
681 formatter = info.ismagic and self.format_screen or None
681 formatter = info.ismagic and self.format_screen or None
682 if meth == 'pdoc':
682 if meth == 'pdoc':
683 pmethod(info.obj,oname,formatter)
683 pmethod(info.obj,oname,formatter)
684 elif meth == 'pinfo':
684 elif meth == 'pinfo':
685 pmethod(info.obj,oname,formatter,info,**kw)
685 pmethod(info.obj,oname,formatter,info,**kw)
686 else:
686 else:
687 pmethod(info.obj,oname)
687 pmethod(info.obj,oname)
688 else:
688 else:
689 print 'Object `%s` not found.' % oname
689 print 'Object `%s` not found.' % oname
690 return 'not found' # so callers can take other action
690 return 'not found' # so callers can take other action
691
691
692 def magic_pdef(self, parameter_s='', namespaces=None):
692 def magic_pdef(self, parameter_s='', namespaces=None):
693 """Print the definition header for any callable object.
693 """Print the definition header for any callable object.
694
694
695 If the object is a class, print the constructor information."""
695 If the object is a class, print the constructor information."""
696 self._inspect('pdef',parameter_s, namespaces)
696 self._inspect('pdef',parameter_s, namespaces)
697
697
698 def magic_pdoc(self, parameter_s='', namespaces=None):
698 def magic_pdoc(self, parameter_s='', namespaces=None):
699 """Print the docstring for an object.
699 """Print the docstring for an object.
700
700
701 If the given object is a class, it will print both the class and the
701 If the given object is a class, it will print both the class and the
702 constructor docstrings."""
702 constructor docstrings."""
703 self._inspect('pdoc',parameter_s, namespaces)
703 self._inspect('pdoc',parameter_s, namespaces)
704
704
705 def magic_psource(self, parameter_s='', namespaces=None):
705 def magic_psource(self, parameter_s='', namespaces=None):
706 """Print (or run through pager) the source code for an object."""
706 """Print (or run through pager) the source code for an object."""
707 self._inspect('psource',parameter_s, namespaces)
707 self._inspect('psource',parameter_s, namespaces)
708
708
709 def magic_pfile(self, parameter_s=''):
709 def magic_pfile(self, parameter_s=''):
710 """Print (or run through pager) the file where an object is defined.
710 """Print (or run through pager) the file where an object is defined.
711
711
712 The file opens at the line where the object definition begins. IPython
712 The file opens at the line where the object definition begins. IPython
713 will honor the environment variable PAGER if set, and otherwise will
713 will honor the environment variable PAGER if set, and otherwise will
714 do its best to print the file in a convenient form.
714 do its best to print the file in a convenient form.
715
715
716 If the given argument is not an object currently defined, IPython will
716 If the given argument is not an object currently defined, IPython will
717 try to interpret it as a filename (automatically adding a .py extension
717 try to interpret it as a filename (automatically adding a .py extension
718 if needed). You can thus use %pfile as a syntax highlighting code
718 if needed). You can thus use %pfile as a syntax highlighting code
719 viewer."""
719 viewer."""
720
720
721 # first interpret argument as an object name
721 # first interpret argument as an object name
722 out = self._inspect('pfile',parameter_s)
722 out = self._inspect('pfile',parameter_s)
723 # if not, try the input as a filename
723 # if not, try the input as a filename
724 if out == 'not found':
724 if out == 'not found':
725 try:
725 try:
726 filename = get_py_filename(parameter_s)
726 filename = get_py_filename(parameter_s)
727 except IOError,msg:
727 except IOError,msg:
728 print msg
728 print msg
729 return
729 return
730 page(self.shell.inspector.format(file(filename).read()))
730 page(self.shell.inspector.format(file(filename).read()))
731
731
732 def magic_pinfo(self, parameter_s='', namespaces=None):
732 def magic_pinfo(self, parameter_s='', namespaces=None):
733 """Provide detailed information about an object.
733 """Provide detailed information about an object.
734
734
735 '%pinfo object' is just a synonym for object? or ?object."""
735 '%pinfo object' is just a synonym for object? or ?object."""
736
736
737 #print 'pinfo par: <%s>' % parameter_s # dbg
737 #print 'pinfo par: <%s>' % parameter_s # dbg
738
738
739 # detail_level: 0 -> obj? , 1 -> obj??
739 # detail_level: 0 -> obj? , 1 -> obj??
740 detail_level = 0
740 detail_level = 0
741 # We need to detect if we got called as 'pinfo pinfo foo', which can
741 # We need to detect if we got called as 'pinfo pinfo foo', which can
742 # happen if the user types 'pinfo foo?' at the cmd line.
742 # happen if the user types 'pinfo foo?' at the cmd line.
743 pinfo,qmark1,oname,qmark2 = \
743 pinfo,qmark1,oname,qmark2 = \
744 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
744 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
745 if pinfo or qmark1 or qmark2:
745 if pinfo or qmark1 or qmark2:
746 detail_level = 1
746 detail_level = 1
747 if "*" in oname:
747 if "*" in oname:
748 self.magic_psearch(oname)
748 self.magic_psearch(oname)
749 else:
749 else:
750 self._inspect('pinfo', oname, detail_level=detail_level,
750 self._inspect('pinfo', oname, detail_level=detail_level,
751 namespaces=namespaces)
751 namespaces=namespaces)
752
752
753 def magic_psearch(self, parameter_s=''):
753 def magic_psearch(self, parameter_s=''):
754 """Search for object in namespaces by wildcard.
754 """Search for object in namespaces by wildcard.
755
755
756 %psearch [options] PATTERN [OBJECT TYPE]
756 %psearch [options] PATTERN [OBJECT TYPE]
757
757
758 Note: ? can be used as a synonym for %psearch, at the beginning or at
758 Note: ? can be used as a synonym for %psearch, at the beginning or at
759 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
759 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
760 rest of the command line must be unchanged (options come first), so
760 rest of the command line must be unchanged (options come first), so
761 for example the following forms are equivalent
761 for example the following forms are equivalent
762
762
763 %psearch -i a* function
763 %psearch -i a* function
764 -i a* function?
764 -i a* function?
765 ?-i a* function
765 ?-i a* function
766
766
767 Arguments:
767 Arguments:
768
768
769 PATTERN
769 PATTERN
770
770
771 where PATTERN is a string containing * as a wildcard similar to its
771 where PATTERN is a string containing * as a wildcard similar to its
772 use in a shell. The pattern is matched in all namespaces on the
772 use in a shell. The pattern is matched in all namespaces on the
773 search path. By default objects starting with a single _ are not
773 search path. By default objects starting with a single _ are not
774 matched, many IPython generated objects have a single
774 matched, many IPython generated objects have a single
775 underscore. The default is case insensitive matching. Matching is
775 underscore. The default is case insensitive matching. Matching is
776 also done on the attributes of objects and not only on the objects
776 also done on the attributes of objects and not only on the objects
777 in a module.
777 in a module.
778
778
779 [OBJECT TYPE]
779 [OBJECT TYPE]
780
780
781 Is the name of a python type from the types module. The name is
781 Is the name of a python type from the types module. The name is
782 given in lowercase without the ending type, ex. StringType is
782 given in lowercase without the ending type, ex. StringType is
783 written string. By adding a type here only objects matching the
783 written string. By adding a type here only objects matching the
784 given type are matched. Using all here makes the pattern match all
784 given type are matched. Using all here makes the pattern match all
785 types (this is the default).
785 types (this is the default).
786
786
787 Options:
787 Options:
788
788
789 -a: makes the pattern match even objects whose names start with a
789 -a: makes the pattern match even objects whose names start with a
790 single underscore. These names are normally ommitted from the
790 single underscore. These names are normally ommitted from the
791 search.
791 search.
792
792
793 -i/-c: make the pattern case insensitive/sensitive. If neither of
793 -i/-c: make the pattern case insensitive/sensitive. If neither of
794 these options is given, the default is read from your ipythonrc
794 these options is given, the default is read from your ipythonrc
795 file. The option name which sets this value is
795 file. The option name which sets this value is
796 'wildcards_case_sensitive'. If this option is not specified in your
796 'wildcards_case_sensitive'. If this option is not specified in your
797 ipythonrc file, IPython's internal default is to do a case sensitive
797 ipythonrc file, IPython's internal default is to do a case sensitive
798 search.
798 search.
799
799
800 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
800 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
801 specifiy can be searched in any of the following namespaces:
801 specifiy can be searched in any of the following namespaces:
802 'builtin', 'user', 'user_global','internal', 'alias', where
802 'builtin', 'user', 'user_global','internal', 'alias', where
803 'builtin' and 'user' are the search defaults. Note that you should
803 'builtin' and 'user' are the search defaults. Note that you should
804 not use quotes when specifying namespaces.
804 not use quotes when specifying namespaces.
805
805
806 'Builtin' contains the python module builtin, 'user' contains all
806 'Builtin' contains the python module builtin, 'user' contains all
807 user data, 'alias' only contain the shell aliases and no python
807 user data, 'alias' only contain the shell aliases and no python
808 objects, 'internal' contains objects used by IPython. The
808 objects, 'internal' contains objects used by IPython. The
809 'user_global' namespace is only used by embedded IPython instances,
809 'user_global' namespace is only used by embedded IPython instances,
810 and it contains module-level globals. You can add namespaces to the
810 and it contains module-level globals. You can add namespaces to the
811 search with -s or exclude them with -e (these options can be given
811 search with -s or exclude them with -e (these options can be given
812 more than once).
812 more than once).
813
813
814 Examples:
814 Examples:
815
815
816 %psearch a* -> objects beginning with an a
816 %psearch a* -> objects beginning with an a
817 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
817 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
818 %psearch a* function -> all functions beginning with an a
818 %psearch a* function -> all functions beginning with an a
819 %psearch re.e* -> objects beginning with an e in module re
819 %psearch re.e* -> objects beginning with an e in module re
820 %psearch r*.e* -> objects that start with e in modules starting in r
820 %psearch r*.e* -> objects that start with e in modules starting in r
821 %psearch r*.* string -> all strings in modules beginning with r
821 %psearch r*.* string -> all strings in modules beginning with r
822
822
823 Case sensitve search:
823 Case sensitve search:
824
824
825 %psearch -c a* list all object beginning with lower case a
825 %psearch -c a* list all object beginning with lower case a
826
826
827 Show objects beginning with a single _:
827 Show objects beginning with a single _:
828
828
829 %psearch -a _* list objects beginning with a single underscore"""
829 %psearch -a _* list objects beginning with a single underscore"""
830
830
831 # default namespaces to be searched
831 # default namespaces to be searched
832 def_search = ['user','builtin']
832 def_search = ['user','builtin']
833
833
834 # Process options/args
834 # Process options/args
835 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
835 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
836 opt = opts.get
836 opt = opts.get
837 shell = self.shell
837 shell = self.shell
838 psearch = shell.inspector.psearch
838 psearch = shell.inspector.psearch
839
839
840 # select case options
840 # select case options
841 if opts.has_key('i'):
841 if opts.has_key('i'):
842 ignore_case = True
842 ignore_case = True
843 elif opts.has_key('c'):
843 elif opts.has_key('c'):
844 ignore_case = False
844 ignore_case = False
845 else:
845 else:
846 ignore_case = not shell.rc.wildcards_case_sensitive
846 ignore_case = not shell.rc.wildcards_case_sensitive
847
847
848 # Build list of namespaces to search from user options
848 # Build list of namespaces to search from user options
849 def_search.extend(opt('s',[]))
849 def_search.extend(opt('s',[]))
850 ns_exclude = ns_exclude=opt('e',[])
850 ns_exclude = ns_exclude=opt('e',[])
851 ns_search = [nm for nm in def_search if nm not in ns_exclude]
851 ns_search = [nm for nm in def_search if nm not in ns_exclude]
852
852
853 # Call the actual search
853 # Call the actual search
854 try:
854 try:
855 psearch(args,shell.ns_table,ns_search,
855 psearch(args,shell.ns_table,ns_search,
856 show_all=opt('a'),ignore_case=ignore_case)
856 show_all=opt('a'),ignore_case=ignore_case)
857 except:
857 except:
858 shell.showtraceback()
858 shell.showtraceback()
859
859
860 def magic_who_ls(self, parameter_s=''):
860 def magic_who_ls(self, parameter_s=''):
861 """Return a sorted list of all interactive variables.
861 """Return a sorted list of all interactive variables.
862
862
863 If arguments are given, only variables of types matching these
863 If arguments are given, only variables of types matching these
864 arguments are returned."""
864 arguments are returned."""
865
865
866 user_ns = self.shell.user_ns
866 user_ns = self.shell.user_ns
867 internal_ns = self.shell.internal_ns
867 internal_ns = self.shell.internal_ns
868 user_config_ns = self.shell.user_config_ns
868 user_config_ns = self.shell.user_config_ns
869 out = []
869 out = []
870 typelist = parameter_s.split()
870 typelist = parameter_s.split()
871
871
872 for i in user_ns:
872 for i in user_ns:
873 if not (i.startswith('_') or i.startswith('_i')) \
873 if not (i.startswith('_') or i.startswith('_i')) \
874 and not (i in internal_ns or i in user_config_ns):
874 and not (i in internal_ns or i in user_config_ns):
875 if typelist:
875 if typelist:
876 if type(user_ns[i]).__name__ in typelist:
876 if type(user_ns[i]).__name__ in typelist:
877 out.append(i)
877 out.append(i)
878 else:
878 else:
879 out.append(i)
879 out.append(i)
880 out.sort()
880 out.sort()
881 return out
881 return out
882
882
883 def magic_who(self, parameter_s=''):
883 def magic_who(self, parameter_s=''):
884 """Print all interactive variables, with some minimal formatting.
884 """Print all interactive variables, with some minimal formatting.
885
885
886 If any arguments are given, only variables whose type matches one of
886 If any arguments are given, only variables whose type matches one of
887 these are printed. For example:
887 these are printed. For example:
888
888
889 %who function str
889 %who function str
890
890
891 will only list functions and strings, excluding all other types of
891 will only list functions and strings, excluding all other types of
892 variables. To find the proper type names, simply use type(var) at a
892 variables. To find the proper type names, simply use type(var) at a
893 command line to see how python prints type names. For example:
893 command line to see how python prints type names. For example:
894
894
895 In [1]: type('hello')\\
895 In [1]: type('hello')\\
896 Out[1]: <type 'str'>
896 Out[1]: <type 'str'>
897
897
898 indicates that the type name for strings is 'str'.
898 indicates that the type name for strings is 'str'.
899
899
900 %who always excludes executed names loaded through your configuration
900 %who always excludes executed names loaded through your configuration
901 file and things which are internal to IPython.
901 file and things which are internal to IPython.
902
902
903 This is deliberate, as typically you may load many modules and the
903 This is deliberate, as typically you may load many modules and the
904 purpose of %who is to show you only what you've manually defined."""
904 purpose of %who is to show you only what you've manually defined."""
905
905
906 varlist = self.magic_who_ls(parameter_s)
906 varlist = self.magic_who_ls(parameter_s)
907 if not varlist:
907 if not varlist:
908 print 'Interactive namespace is empty.'
908 print 'Interactive namespace is empty.'
909 return
909 return
910
910
911 # if we have variables, move on...
911 # if we have variables, move on...
912
912
913 # stupid flushing problem: when prompts have no separators, stdout is
913 # stupid flushing problem: when prompts have no separators, stdout is
914 # getting lost. I'm starting to think this is a python bug. I'm having
914 # getting lost. I'm starting to think this is a python bug. I'm having
915 # to force a flush with a print because even a sys.stdout.flush
915 # to force a flush with a print because even a sys.stdout.flush
916 # doesn't seem to do anything!
916 # doesn't seem to do anything!
917
917
918 count = 0
918 count = 0
919 for i in varlist:
919 for i in varlist:
920 print i+'\t',
920 print i+'\t',
921 count += 1
921 count += 1
922 if count > 8:
922 if count > 8:
923 count = 0
923 count = 0
924 print
924 print
925 sys.stdout.flush() # FIXME. Why the hell isn't this flushing???
925 sys.stdout.flush() # FIXME. Why the hell isn't this flushing???
926
926
927 print # well, this does force a flush at the expense of an extra \n
927 print # well, this does force a flush at the expense of an extra \n
928
928
929 def magic_whos(self, parameter_s=''):
929 def magic_whos(self, parameter_s=''):
930 """Like %who, but gives some extra information about each variable.
930 """Like %who, but gives some extra information about each variable.
931
931
932 The same type filtering of %who can be applied here.
932 The same type filtering of %who can be applied here.
933
933
934 For all variables, the type is printed. Additionally it prints:
934 For all variables, the type is printed. Additionally it prints:
935
935
936 - For {},[],(): their length.
936 - For {},[],(): their length.
937
937
938 - For Numeric arrays, a summary with shape, number of elements,
938 - For Numeric arrays, a summary with shape, number of elements,
939 typecode and size in memory.
939 typecode and size in memory.
940
940
941 - Everything else: a string representation, snipping their middle if
941 - Everything else: a string representation, snipping their middle if
942 too long."""
942 too long."""
943
943
944 varnames = self.magic_who_ls(parameter_s)
944 varnames = self.magic_who_ls(parameter_s)
945 if not varnames:
945 if not varnames:
946 print 'Interactive namespace is empty.'
946 print 'Interactive namespace is empty.'
947 return
947 return
948
948
949 # if we have variables, move on...
949 # if we have variables, move on...
950
950
951 # for these types, show len() instead of data:
951 # for these types, show len() instead of data:
952 seq_types = [types.DictType,types.ListType,types.TupleType]
952 seq_types = [types.DictType,types.ListType,types.TupleType]
953
953
954 # for Numeric arrays, display summary info
954 # for Numeric arrays, display summary info
955 try:
955 try:
956 import Numeric
956 import Numeric
957 except ImportError:
957 except ImportError:
958 array_type = None
958 array_type = None
959 else:
959 else:
960 array_type = Numeric.ArrayType.__name__
960 array_type = Numeric.ArrayType.__name__
961
961
962 # Find all variable names and types so we can figure out column sizes
962 # Find all variable names and types so we can figure out column sizes
963
963
964 def get_vars(i):
964 def get_vars(i):
965 return self.shell.user_ns[i]
965 return self.shell.user_ns[i]
966
966
967 # some types are well known and can be shorter
967 # some types are well known and can be shorter
968 abbrevs = {'IPython.macro.Macro' : 'Macro'}
968 abbrevs = {'IPython.macro.Macro' : 'Macro'}
969 def type_name(v):
969 def type_name(v):
970 tn = type(v).__name__
970 tn = type(v).__name__
971 return abbrevs.get(tn,tn)
971 return abbrevs.get(tn,tn)
972
972
973 varlist = map(get_vars,varnames)
973 varlist = map(get_vars,varnames)
974
974
975 typelist = []
975 typelist = []
976 for vv in varlist:
976 for vv in varlist:
977 tt = type_name(vv)
977 tt = type_name(vv)
978
978
979 if tt=='instance':
979 if tt=='instance':
980 typelist.append( abbrevs.get(str(vv.__class__),str(vv.__class__)))
980 typelist.append( abbrevs.get(str(vv.__class__),str(vv.__class__)))
981 else:
981 else:
982 typelist.append(tt)
982 typelist.append(tt)
983
983
984 # column labels and # of spaces as separator
984 # column labels and # of spaces as separator
985 varlabel = 'Variable'
985 varlabel = 'Variable'
986 typelabel = 'Type'
986 typelabel = 'Type'
987 datalabel = 'Data/Info'
987 datalabel = 'Data/Info'
988 colsep = 3
988 colsep = 3
989 # variable format strings
989 # variable format strings
990 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
990 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
991 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
991 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
992 aformat = "%s: %s elems, type `%s`, %s bytes"
992 aformat = "%s: %s elems, type `%s`, %s bytes"
993 # find the size of the columns to format the output nicely
993 # find the size of the columns to format the output nicely
994 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
994 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
995 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
995 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
996 # table header
996 # table header
997 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
997 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
998 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
998 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
999 # and the table itself
999 # and the table itself
1000 kb = 1024
1000 kb = 1024
1001 Mb = 1048576 # kb**2
1001 Mb = 1048576 # kb**2
1002 for vname,var,vtype in zip(varnames,varlist,typelist):
1002 for vname,var,vtype in zip(varnames,varlist,typelist):
1003 print itpl(vformat),
1003 print itpl(vformat),
1004 if vtype in seq_types:
1004 if vtype in seq_types:
1005 print len(var)
1005 print len(var)
1006 elif vtype==array_type:
1006 elif vtype==array_type:
1007 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
1007 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
1008 vsize = Numeric.size(var)
1008 vsize = Numeric.size(var)
1009 vbytes = vsize*var.itemsize()
1009 vbytes = vsize*var.itemsize()
1010 if vbytes < 100000:
1010 if vbytes < 100000:
1011 print aformat % (vshape,vsize,var.typecode(),vbytes)
1011 print aformat % (vshape,vsize,var.typecode(),vbytes)
1012 else:
1012 else:
1013 print aformat % (vshape,vsize,var.typecode(),vbytes),
1013 print aformat % (vshape,vsize,var.typecode(),vbytes),
1014 if vbytes < Mb:
1014 if vbytes < Mb:
1015 print '(%s kb)' % (vbytes/kb,)
1015 print '(%s kb)' % (vbytes/kb,)
1016 else:
1016 else:
1017 print '(%s Mb)' % (vbytes/Mb,)
1017 print '(%s Mb)' % (vbytes/Mb,)
1018 else:
1018 else:
1019 vstr = str(var).replace('\n','\\n')
1019 vstr = str(var).replace('\n','\\n')
1020 if len(vstr) < 50:
1020 if len(vstr) < 50:
1021 print vstr
1021 print vstr
1022 else:
1022 else:
1023 printpl(vfmt_short)
1023 printpl(vfmt_short)
1024
1024
1025 def magic_reset(self, parameter_s=''):
1025 def magic_reset(self, parameter_s=''):
1026 """Resets the namespace by removing all names defined by the user.
1026 """Resets the namespace by removing all names defined by the user.
1027
1027
1028 Input/Output history are left around in case you need them."""
1028 Input/Output history are left around in case you need them."""
1029
1029
1030 ans = self.shell.ask_yes_no(
1030 ans = self.shell.ask_yes_no(
1031 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1031 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1032 if not ans:
1032 if not ans:
1033 print 'Nothing done.'
1033 print 'Nothing done.'
1034 return
1034 return
1035 user_ns = self.shell.user_ns
1035 user_ns = self.shell.user_ns
1036 for i in self.magic_who_ls():
1036 for i in self.magic_who_ls():
1037 del(user_ns[i])
1037 del(user_ns[i])
1038
1038
1039 def magic_logstart(self,parameter_s=''):
1039 def magic_logstart(self,parameter_s=''):
1040 """Start logging anywhere in a session.
1040 """Start logging anywhere in a session.
1041
1041
1042 %logstart [-o|-r|-t] [log_name [log_mode]]
1042 %logstart [-o|-r|-t] [log_name [log_mode]]
1043
1043
1044 If no name is given, it defaults to a file named 'ipython_log.py' in your
1044 If no name is given, it defaults to a file named 'ipython_log.py' in your
1045 current directory, in 'rotate' mode (see below).
1045 current directory, in 'rotate' mode (see below).
1046
1046
1047 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1047 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1048 history up to that point and then continues logging.
1048 history up to that point and then continues logging.
1049
1049
1050 %logstart takes a second optional parameter: logging mode. This can be one
1050 %logstart takes a second optional parameter: logging mode. This can be one
1051 of (note that the modes are given unquoted):\\
1051 of (note that the modes are given unquoted):\\
1052 append: well, that says it.\\
1052 append: well, that says it.\\
1053 backup: rename (if exists) to name~ and start name.\\
1053 backup: rename (if exists) to name~ and start name.\\
1054 global: single logfile in your home dir, appended to.\\
1054 global: single logfile in your home dir, appended to.\\
1055 over : overwrite existing log.\\
1055 over : overwrite existing log.\\
1056 rotate: create rotating logs name.1~, name.2~, etc.
1056 rotate: create rotating logs name.1~, name.2~, etc.
1057
1057
1058 Options:
1058 Options:
1059
1059
1060 -o: log also IPython's output. In this mode, all commands which
1060 -o: log also IPython's output. In this mode, all commands which
1061 generate an Out[NN] prompt are recorded to the logfile, right after
1061 generate an Out[NN] prompt are recorded to the logfile, right after
1062 their corresponding input line. The output lines are always
1062 their corresponding input line. The output lines are always
1063 prepended with a '#[Out]# ' marker, so that the log remains valid
1063 prepended with a '#[Out]# ' marker, so that the log remains valid
1064 Python code.
1064 Python code.
1065
1065
1066 Since this marker is always the same, filtering only the output from
1066 Since this marker is always the same, filtering only the output from
1067 a log is very easy, using for example a simple awk call:
1067 a log is very easy, using for example a simple awk call:
1068
1068
1069 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1069 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1070
1070
1071 -r: log 'raw' input. Normally, IPython's logs contain the processed
1071 -r: log 'raw' input. Normally, IPython's logs contain the processed
1072 input, so that user lines are logged in their final form, converted
1072 input, so that user lines are logged in their final form, converted
1073 into valid Python. For example, %Exit is logged as
1073 into valid Python. For example, %Exit is logged as
1074 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1074 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1075 exactly as typed, with no transformations applied.
1075 exactly as typed, with no transformations applied.
1076
1076
1077 -t: put timestamps before each input line logged (these are put in
1077 -t: put timestamps before each input line logged (these are put in
1078 comments)."""
1078 comments)."""
1079
1079
1080 opts,par = self.parse_options(parameter_s,'ort')
1080 opts,par = self.parse_options(parameter_s,'ort')
1081 log_output = 'o' in opts
1081 log_output = 'o' in opts
1082 log_raw_input = 'r' in opts
1082 log_raw_input = 'r' in opts
1083 timestamp = 't' in opts
1083 timestamp = 't' in opts
1084
1084
1085 rc = self.shell.rc
1085 rc = self.shell.rc
1086 logger = self.shell.logger
1086 logger = self.shell.logger
1087
1087
1088 # if no args are given, the defaults set in the logger constructor by
1088 # if no args are given, the defaults set in the logger constructor by
1089 # ipytohn remain valid
1089 # ipytohn remain valid
1090 if par:
1090 if par:
1091 try:
1091 try:
1092 logfname,logmode = par.split()
1092 logfname,logmode = par.split()
1093 except:
1093 except:
1094 logfname = par
1094 logfname = par
1095 logmode = 'backup'
1095 logmode = 'backup'
1096 else:
1096 else:
1097 logfname = logger.logfname
1097 logfname = logger.logfname
1098 logmode = logger.logmode
1098 logmode = logger.logmode
1099 # put logfname into rc struct as if it had been called on the command
1099 # put logfname into rc struct as if it had been called on the command
1100 # line, so it ends up saved in the log header Save it in case we need
1100 # line, so it ends up saved in the log header Save it in case we need
1101 # to restore it...
1101 # to restore it...
1102 old_logfile = rc.opts.get('logfile','')
1102 old_logfile = rc.opts.get('logfile','')
1103 if logfname:
1103 if logfname:
1104 logfname = os.path.expanduser(logfname)
1104 logfname = os.path.expanduser(logfname)
1105 rc.opts.logfile = logfname
1105 rc.opts.logfile = logfname
1106 loghead = self.shell.loghead_tpl % (rc.opts,rc.args)
1106 loghead = self.shell.loghead_tpl % (rc.opts,rc.args)
1107 try:
1107 try:
1108 started = logger.logstart(logfname,loghead,logmode,
1108 started = logger.logstart(logfname,loghead,logmode,
1109 log_output,timestamp,log_raw_input)
1109 log_output,timestamp,log_raw_input)
1110 except:
1110 except:
1111 rc.opts.logfile = old_logfile
1111 rc.opts.logfile = old_logfile
1112 warn("Couldn't start log: %s" % sys.exc_info()[1])
1112 warn("Couldn't start log: %s" % sys.exc_info()[1])
1113 else:
1113 else:
1114 # log input history up to this point, optionally interleaving
1114 # log input history up to this point, optionally interleaving
1115 # output if requested
1115 # output if requested
1116
1116
1117 if timestamp:
1117 if timestamp:
1118 # disable timestamping for the previous history, since we've
1118 # disable timestamping for the previous history, since we've
1119 # lost those already (no time machine here).
1119 # lost those already (no time machine here).
1120 logger.timestamp = False
1120 logger.timestamp = False
1121
1121
1122 if log_raw_input:
1122 if log_raw_input:
1123 input_hist = self.shell.input_hist_raw
1123 input_hist = self.shell.input_hist_raw
1124 else:
1124 else:
1125 input_hist = self.shell.input_hist
1125 input_hist = self.shell.input_hist
1126
1126
1127 if log_output:
1127 if log_output:
1128 log_write = logger.log_write
1128 log_write = logger.log_write
1129 output_hist = self.shell.output_hist
1129 output_hist = self.shell.output_hist
1130 for n in range(1,len(input_hist)-1):
1130 for n in range(1,len(input_hist)-1):
1131 log_write(input_hist[n].rstrip())
1131 log_write(input_hist[n].rstrip())
1132 if n in output_hist:
1132 if n in output_hist:
1133 log_write(repr(output_hist[n]),'output')
1133 log_write(repr(output_hist[n]),'output')
1134 else:
1134 else:
1135 logger.log_write(input_hist[1:])
1135 logger.log_write(input_hist[1:])
1136 if timestamp:
1136 if timestamp:
1137 # re-enable timestamping
1137 # re-enable timestamping
1138 logger.timestamp = True
1138 logger.timestamp = True
1139
1139
1140 print ('Activating auto-logging. '
1140 print ('Activating auto-logging. '
1141 'Current session state plus future input saved.')
1141 'Current session state plus future input saved.')
1142 logger.logstate()
1142 logger.logstate()
1143
1143
1144 def magic_logoff(self,parameter_s=''):
1144 def magic_logoff(self,parameter_s=''):
1145 """Temporarily stop logging.
1145 """Temporarily stop logging.
1146
1146
1147 You must have previously started logging."""
1147 You must have previously started logging."""
1148 self.shell.logger.switch_log(0)
1148 self.shell.logger.switch_log(0)
1149
1149
1150 def magic_logon(self,parameter_s=''):
1150 def magic_logon(self,parameter_s=''):
1151 """Restart logging.
1151 """Restart logging.
1152
1152
1153 This function is for restarting logging which you've temporarily
1153 This function is for restarting logging which you've temporarily
1154 stopped with %logoff. For starting logging for the first time, you
1154 stopped with %logoff. For starting logging for the first time, you
1155 must use the %logstart function, which allows you to specify an
1155 must use the %logstart function, which allows you to specify an
1156 optional log filename."""
1156 optional log filename."""
1157
1157
1158 self.shell.logger.switch_log(1)
1158 self.shell.logger.switch_log(1)
1159
1159
1160 def magic_logstate(self,parameter_s=''):
1160 def magic_logstate(self,parameter_s=''):
1161 """Print the status of the logging system."""
1161 """Print the status of the logging system."""
1162
1162
1163 self.shell.logger.logstate()
1163 self.shell.logger.logstate()
1164
1164
1165 def magic_pdb(self, parameter_s=''):
1165 def magic_pdb(self, parameter_s=''):
1166 """Control the automatic calling of the pdb interactive debugger.
1166 """Control the automatic calling of the pdb interactive debugger.
1167
1167
1168 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1168 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1169 argument it works as a toggle.
1169 argument it works as a toggle.
1170
1170
1171 When an exception is triggered, IPython can optionally call the
1171 When an exception is triggered, IPython can optionally call the
1172 interactive pdb debugger after the traceback printout. %pdb toggles
1172 interactive pdb debugger after the traceback printout. %pdb toggles
1173 this feature on and off.
1173 this feature on and off.
1174
1174
1175 The initial state of this feature is set in your ipythonrc
1175 The initial state of this feature is set in your ipythonrc
1176 configuration file (the variable is called 'pdb').
1176 configuration file (the variable is called 'pdb').
1177
1177
1178 If you want to just activate the debugger AFTER an exception has fired,
1178 If you want to just activate the debugger AFTER an exception has fired,
1179 without having to type '%pdb on' and rerunning your code, you can use
1179 without having to type '%pdb on' and rerunning your code, you can use
1180 the %debug magic."""
1180 the %debug magic."""
1181
1181
1182 par = parameter_s.strip().lower()
1182 par = parameter_s.strip().lower()
1183
1183
1184 if par:
1184 if par:
1185 try:
1185 try:
1186 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1186 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1187 except KeyError:
1187 except KeyError:
1188 print ('Incorrect argument. Use on/1, off/0, '
1188 print ('Incorrect argument. Use on/1, off/0, '
1189 'or nothing for a toggle.')
1189 'or nothing for a toggle.')
1190 return
1190 return
1191 else:
1191 else:
1192 # toggle
1192 # toggle
1193 new_pdb = not self.shell.call_pdb
1193 new_pdb = not self.shell.call_pdb
1194
1194
1195 # set on the shell
1195 # set on the shell
1196 self.shell.call_pdb = new_pdb
1196 self.shell.call_pdb = new_pdb
1197 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1197 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1198
1198
1199 def magic_debug(self, parameter_s=''):
1199 def magic_debug(self, parameter_s=''):
1200 """Activate the interactive debugger in post-mortem mode.
1200 """Activate the interactive debugger in post-mortem mode.
1201
1201
1202 If an exception has just occurred, this lets you inspect its stack
1202 If an exception has just occurred, this lets you inspect its stack
1203 frames interactively. Note that this will always work only on the last
1203 frames interactively. Note that this will always work only on the last
1204 traceback that occurred, so you must call this quickly after an
1204 traceback that occurred, so you must call this quickly after an
1205 exception that you wish to inspect has fired, because if another one
1205 exception that you wish to inspect has fired, because if another one
1206 occurs, it clobbers the previous one.
1206 occurs, it clobbers the previous one.
1207
1207
1208 If you want IPython to automatically do this on every exception, see
1208 If you want IPython to automatically do this on every exception, see
1209 the %pdb magic for more details.
1209 the %pdb magic for more details.
1210 """
1210 """
1211
1211
1212 self.shell.debugger(force=True)
1212 self.shell.debugger(force=True)
1213
1213
1214 def magic_prun(self, parameter_s ='',user_mode=1,
1214 def magic_prun(self, parameter_s ='',user_mode=1,
1215 opts=None,arg_lst=None,prog_ns=None):
1215 opts=None,arg_lst=None,prog_ns=None):
1216
1216
1217 """Run a statement through the python code profiler.
1217 """Run a statement through the python code profiler.
1218
1218
1219 Usage:\\
1219 Usage:\\
1220 %prun [options] statement
1220 %prun [options] statement
1221
1221
1222 The given statement (which doesn't require quote marks) is run via the
1222 The given statement (which doesn't require quote marks) is run via the
1223 python profiler in a manner similar to the profile.run() function.
1223 python profiler in a manner similar to the profile.run() function.
1224 Namespaces are internally managed to work correctly; profile.run
1224 Namespaces are internally managed to work correctly; profile.run
1225 cannot be used in IPython because it makes certain assumptions about
1225 cannot be used in IPython because it makes certain assumptions about
1226 namespaces which do not hold under IPython.
1226 namespaces which do not hold under IPython.
1227
1227
1228 Options:
1228 Options:
1229
1229
1230 -l <limit>: you can place restrictions on what or how much of the
1230 -l <limit>: you can place restrictions on what or how much of the
1231 profile gets printed. The limit value can be:
1231 profile gets printed. The limit value can be:
1232
1232
1233 * A string: only information for function names containing this string
1233 * A string: only information for function names containing this string
1234 is printed.
1234 is printed.
1235
1235
1236 * An integer: only these many lines are printed.
1236 * An integer: only these many lines are printed.
1237
1237
1238 * A float (between 0 and 1): this fraction of the report is printed
1238 * A float (between 0 and 1): this fraction of the report is printed
1239 (for example, use a limit of 0.4 to see the topmost 40% only).
1239 (for example, use a limit of 0.4 to see the topmost 40% only).
1240
1240
1241 You can combine several limits with repeated use of the option. For
1241 You can combine several limits with repeated use of the option. For
1242 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1242 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1243 information about class constructors.
1243 information about class constructors.
1244
1244
1245 -r: return the pstats.Stats object generated by the profiling. This
1245 -r: return the pstats.Stats object generated by the profiling. This
1246 object has all the information about the profile in it, and you can
1246 object has all the information about the profile in it, and you can
1247 later use it for further analysis or in other functions.
1247 later use it for further analysis or in other functions.
1248
1248
1249 -s <key>: sort profile by given key. You can provide more than one key
1249 -s <key>: sort profile by given key. You can provide more than one key
1250 by using the option several times: '-s key1 -s key2 -s key3...'. The
1250 by using the option several times: '-s key1 -s key2 -s key3...'. The
1251 default sorting key is 'time'.
1251 default sorting key is 'time'.
1252
1252
1253 The following is copied verbatim from the profile documentation
1253 The following is copied verbatim from the profile documentation
1254 referenced below:
1254 referenced below:
1255
1255
1256 When more than one key is provided, additional keys are used as
1256 When more than one key is provided, additional keys are used as
1257 secondary criteria when the there is equality in all keys selected
1257 secondary criteria when the there is equality in all keys selected
1258 before them.
1258 before them.
1259
1259
1260 Abbreviations can be used for any key names, as long as the
1260 Abbreviations can be used for any key names, as long as the
1261 abbreviation is unambiguous. The following are the keys currently
1261 abbreviation is unambiguous. The following are the keys currently
1262 defined:
1262 defined:
1263
1263
1264 Valid Arg Meaning\\
1264 Valid Arg Meaning\\
1265 "calls" call count\\
1265 "calls" call count\\
1266 "cumulative" cumulative time\\
1266 "cumulative" cumulative time\\
1267 "file" file name\\
1267 "file" file name\\
1268 "module" file name\\
1268 "module" file name\\
1269 "pcalls" primitive call count\\
1269 "pcalls" primitive call count\\
1270 "line" line number\\
1270 "line" line number\\
1271 "name" function name\\
1271 "name" function name\\
1272 "nfl" name/file/line\\
1272 "nfl" name/file/line\\
1273 "stdname" standard name\\
1273 "stdname" standard name\\
1274 "time" internal time
1274 "time" internal time
1275
1275
1276 Note that all sorts on statistics are in descending order (placing
1276 Note that all sorts on statistics are in descending order (placing
1277 most time consuming items first), where as name, file, and line number
1277 most time consuming items first), where as name, file, and line number
1278 searches are in ascending order (i.e., alphabetical). The subtle
1278 searches are in ascending order (i.e., alphabetical). The subtle
1279 distinction between "nfl" and "stdname" is that the standard name is a
1279 distinction between "nfl" and "stdname" is that the standard name is a
1280 sort of the name as printed, which means that the embedded line
1280 sort of the name as printed, which means that the embedded line
1281 numbers get compared in an odd way. For example, lines 3, 20, and 40
1281 numbers get compared in an odd way. For example, lines 3, 20, and 40
1282 would (if the file names were the same) appear in the string order
1282 would (if the file names were the same) appear in the string order
1283 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1283 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1284 line numbers. In fact, sort_stats("nfl") is the same as
1284 line numbers. In fact, sort_stats("nfl") is the same as
1285 sort_stats("name", "file", "line").
1285 sort_stats("name", "file", "line").
1286
1286
1287 -T <filename>: save profile results as shown on screen to a text
1287 -T <filename>: save profile results as shown on screen to a text
1288 file. The profile is still shown on screen.
1288 file. The profile is still shown on screen.
1289
1289
1290 -D <filename>: save (via dump_stats) profile statistics to given
1290 -D <filename>: save (via dump_stats) profile statistics to given
1291 filename. This data is in a format understod by the pstats module, and
1291 filename. This data is in a format understod by the pstats module, and
1292 is generated by a call to the dump_stats() method of profile
1292 is generated by a call to the dump_stats() method of profile
1293 objects. The profile is still shown on screen.
1293 objects. The profile is still shown on screen.
1294
1294
1295 If you want to run complete programs under the profiler's control, use
1295 If you want to run complete programs under the profiler's control, use
1296 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1296 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1297 contains profiler specific options as described here.
1297 contains profiler specific options as described here.
1298
1298
1299 You can read the complete documentation for the profile module with:\\
1299 You can read the complete documentation for the profile module with:\\
1300 In [1]: import profile; profile.help() """
1300 In [1]: import profile; profile.help() """
1301
1301
1302 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1302 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1303 # protect user quote marks
1303 # protect user quote marks
1304 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1304 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1305
1305
1306 if user_mode: # regular user call
1306 if user_mode: # regular user call
1307 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1307 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1308 list_all=1)
1308 list_all=1)
1309 namespace = self.shell.user_ns
1309 namespace = self.shell.user_ns
1310 else: # called to run a program by %run -p
1310 else: # called to run a program by %run -p
1311 try:
1311 try:
1312 filename = get_py_filename(arg_lst[0])
1312 filename = get_py_filename(arg_lst[0])
1313 except IOError,msg:
1313 except IOError,msg:
1314 error(msg)
1314 error(msg)
1315 return
1315 return
1316
1316
1317 arg_str = 'execfile(filename,prog_ns)'
1317 arg_str = 'execfile(filename,prog_ns)'
1318 namespace = locals()
1318 namespace = locals()
1319
1319
1320 opts.merge(opts_def)
1320 opts.merge(opts_def)
1321
1321
1322 prof = profile.Profile()
1322 prof = profile.Profile()
1323 try:
1323 try:
1324 prof = prof.runctx(arg_str,namespace,namespace)
1324 prof = prof.runctx(arg_str,namespace,namespace)
1325 sys_exit = ''
1325 sys_exit = ''
1326 except SystemExit:
1326 except SystemExit:
1327 sys_exit = """*** SystemExit exception caught in code being profiled."""
1327 sys_exit = """*** SystemExit exception caught in code being profiled."""
1328
1328
1329 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1329 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1330
1330
1331 lims = opts.l
1331 lims = opts.l
1332 if lims:
1332 if lims:
1333 lims = [] # rebuild lims with ints/floats/strings
1333 lims = [] # rebuild lims with ints/floats/strings
1334 for lim in opts.l:
1334 for lim in opts.l:
1335 try:
1335 try:
1336 lims.append(int(lim))
1336 lims.append(int(lim))
1337 except ValueError:
1337 except ValueError:
1338 try:
1338 try:
1339 lims.append(float(lim))
1339 lims.append(float(lim))
1340 except ValueError:
1340 except ValueError:
1341 lims.append(lim)
1341 lims.append(lim)
1342
1342
1343 # trap output
1343 # trap output
1344 sys_stdout = sys.stdout
1344 sys_stdout = sys.stdout
1345 stdout_trap = StringIO()
1345 stdout_trap = StringIO()
1346 try:
1346 try:
1347 sys.stdout = stdout_trap
1347 sys.stdout = stdout_trap
1348 stats.print_stats(*lims)
1348 stats.print_stats(*lims)
1349 finally:
1349 finally:
1350 sys.stdout = sys_stdout
1350 sys.stdout = sys_stdout
1351 output = stdout_trap.getvalue()
1351 output = stdout_trap.getvalue()
1352 output = output.rstrip()
1352 output = output.rstrip()
1353
1353
1354 page(output,screen_lines=self.shell.rc.screen_length)
1354 page(output,screen_lines=self.shell.rc.screen_length)
1355 print sys_exit,
1355 print sys_exit,
1356
1356
1357 dump_file = opts.D[0]
1357 dump_file = opts.D[0]
1358 text_file = opts.T[0]
1358 text_file = opts.T[0]
1359 if dump_file:
1359 if dump_file:
1360 prof.dump_stats(dump_file)
1360 prof.dump_stats(dump_file)
1361 print '\n*** Profile stats marshalled to file',\
1361 print '\n*** Profile stats marshalled to file',\
1362 `dump_file`+'.',sys_exit
1362 `dump_file`+'.',sys_exit
1363 if text_file:
1363 if text_file:
1364 file(text_file,'w').write(output)
1364 file(text_file,'w').write(output)
1365 print '\n*** Profile printout saved to text file',\
1365 print '\n*** Profile printout saved to text file',\
1366 `text_file`+'.',sys_exit
1366 `text_file`+'.',sys_exit
1367
1367
1368 if opts.has_key('r'):
1368 if opts.has_key('r'):
1369 return stats
1369 return stats
1370 else:
1370 else:
1371 return None
1371 return None
1372
1372
1373 def magic_run(self, parameter_s ='',runner=None):
1373 def magic_run(self, parameter_s ='',runner=None):
1374 """Run the named file inside IPython as a program.
1374 """Run the named file inside IPython as a program.
1375
1375
1376 Usage:\\
1376 Usage:\\
1377 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1377 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1378
1378
1379 Parameters after the filename are passed as command-line arguments to
1379 Parameters after the filename are passed as command-line arguments to
1380 the program (put in sys.argv). Then, control returns to IPython's
1380 the program (put in sys.argv). Then, control returns to IPython's
1381 prompt.
1381 prompt.
1382
1382
1383 This is similar to running at a system prompt:\\
1383 This is similar to running at a system prompt:\\
1384 $ python file args\\
1384 $ python file args\\
1385 but with the advantage of giving you IPython's tracebacks, and of
1385 but with the advantage of giving you IPython's tracebacks, and of
1386 loading all variables into your interactive namespace for further use
1386 loading all variables into your interactive namespace for further use
1387 (unless -p is used, see below).
1387 (unless -p is used, see below).
1388
1388
1389 The file is executed in a namespace initially consisting only of
1389 The file is executed in a namespace initially consisting only of
1390 __name__=='__main__' and sys.argv constructed as indicated. It thus
1390 __name__=='__main__' and sys.argv constructed as indicated. It thus
1391 sees its environment as if it were being run as a stand-alone
1391 sees its environment as if it were being run as a stand-alone
1392 program. But after execution, the IPython interactive namespace gets
1392 program. But after execution, the IPython interactive namespace gets
1393 updated with all variables defined in the program (except for __name__
1393 updated with all variables defined in the program (except for __name__
1394 and sys.argv). This allows for very convenient loading of code for
1394 and sys.argv). This allows for very convenient loading of code for
1395 interactive work, while giving each program a 'clean sheet' to run in.
1395 interactive work, while giving each program a 'clean sheet' to run in.
1396
1396
1397 Options:
1397 Options:
1398
1398
1399 -n: __name__ is NOT set to '__main__', but to the running file's name
1399 -n: __name__ is NOT set to '__main__', but to the running file's name
1400 without extension (as python does under import). This allows running
1400 without extension (as python does under import). This allows running
1401 scripts and reloading the definitions in them without calling code
1401 scripts and reloading the definitions in them without calling code
1402 protected by an ' if __name__ == "__main__" ' clause.
1402 protected by an ' if __name__ == "__main__" ' clause.
1403
1403
1404 -i: run the file in IPython's namespace instead of an empty one. This
1404 -i: run the file in IPython's namespace instead of an empty one. This
1405 is useful if you are experimenting with code written in a text editor
1405 is useful if you are experimenting with code written in a text editor
1406 which depends on variables defined interactively.
1406 which depends on variables defined interactively.
1407
1407
1408 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1408 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1409 being run. This is particularly useful if IPython is being used to
1409 being run. This is particularly useful if IPython is being used to
1410 run unittests, which always exit with a sys.exit() call. In such
1410 run unittests, which always exit with a sys.exit() call. In such
1411 cases you are interested in the output of the test results, not in
1411 cases you are interested in the output of the test results, not in
1412 seeing a traceback of the unittest module.
1412 seeing a traceback of the unittest module.
1413
1413
1414 -t: print timing information at the end of the run. IPython will give
1414 -t: print timing information at the end of the run. IPython will give
1415 you an estimated CPU time consumption for your script, which under
1415 you an estimated CPU time consumption for your script, which under
1416 Unix uses the resource module to avoid the wraparound problems of
1416 Unix uses the resource module to avoid the wraparound problems of
1417 time.clock(). Under Unix, an estimate of time spent on system tasks
1417 time.clock(). Under Unix, an estimate of time spent on system tasks
1418 is also given (for Windows platforms this is reported as 0.0).
1418 is also given (for Windows platforms this is reported as 0.0).
1419
1419
1420 If -t is given, an additional -N<N> option can be given, where <N>
1420 If -t is given, an additional -N<N> option can be given, where <N>
1421 must be an integer indicating how many times you want the script to
1421 must be an integer indicating how many times you want the script to
1422 run. The final timing report will include total and per run results.
1422 run. The final timing report will include total and per run results.
1423
1423
1424 For example (testing the script uniq_stable.py):
1424 For example (testing the script uniq_stable.py):
1425
1425
1426 In [1]: run -t uniq_stable
1426 In [1]: run -t uniq_stable
1427
1427
1428 IPython CPU timings (estimated):\\
1428 IPython CPU timings (estimated):\\
1429 User : 0.19597 s.\\
1429 User : 0.19597 s.\\
1430 System: 0.0 s.\\
1430 System: 0.0 s.\\
1431
1431
1432 In [2]: run -t -N5 uniq_stable
1432 In [2]: run -t -N5 uniq_stable
1433
1433
1434 IPython CPU timings (estimated):\\
1434 IPython CPU timings (estimated):\\
1435 Total runs performed: 5\\
1435 Total runs performed: 5\\
1436 Times : Total Per run\\
1436 Times : Total Per run\\
1437 User : 0.910862 s, 0.1821724 s.\\
1437 User : 0.910862 s, 0.1821724 s.\\
1438 System: 0.0 s, 0.0 s.
1438 System: 0.0 s, 0.0 s.
1439
1439
1440 -d: run your program under the control of pdb, the Python debugger.
1440 -d: run your program under the control of pdb, the Python debugger.
1441 This allows you to execute your program step by step, watch variables,
1441 This allows you to execute your program step by step, watch variables,
1442 etc. Internally, what IPython does is similar to calling:
1442 etc. Internally, what IPython does is similar to calling:
1443
1443
1444 pdb.run('execfile("YOURFILENAME")')
1444 pdb.run('execfile("YOURFILENAME")')
1445
1445
1446 with a breakpoint set on line 1 of your file. You can change the line
1446 with a breakpoint set on line 1 of your file. You can change the line
1447 number for this automatic breakpoint to be <N> by using the -bN option
1447 number for this automatic breakpoint to be <N> by using the -bN option
1448 (where N must be an integer). For example:
1448 (where N must be an integer). For example:
1449
1449
1450 %run -d -b40 myscript
1450 %run -d -b40 myscript
1451
1451
1452 will set the first breakpoint at line 40 in myscript.py. Note that
1452 will set the first breakpoint at line 40 in myscript.py. Note that
1453 the first breakpoint must be set on a line which actually does
1453 the first breakpoint must be set on a line which actually does
1454 something (not a comment or docstring) for it to stop execution.
1454 something (not a comment or docstring) for it to stop execution.
1455
1455
1456 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1456 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1457 first enter 'c' (without qoutes) to start execution up to the first
1457 first enter 'c' (without qoutes) to start execution up to the first
1458 breakpoint.
1458 breakpoint.
1459
1459
1460 Entering 'help' gives information about the use of the debugger. You
1460 Entering 'help' gives information about the use of the debugger. You
1461 can easily see pdb's full documentation with "import pdb;pdb.help()"
1461 can easily see pdb's full documentation with "import pdb;pdb.help()"
1462 at a prompt.
1462 at a prompt.
1463
1463
1464 -p: run program under the control of the Python profiler module (which
1464 -p: run program under the control of the Python profiler module (which
1465 prints a detailed report of execution times, function calls, etc).
1465 prints a detailed report of execution times, function calls, etc).
1466
1466
1467 You can pass other options after -p which affect the behavior of the
1467 You can pass other options after -p which affect the behavior of the
1468 profiler itself. See the docs for %prun for details.
1468 profiler itself. See the docs for %prun for details.
1469
1469
1470 In this mode, the program's variables do NOT propagate back to the
1470 In this mode, the program's variables do NOT propagate back to the
1471 IPython interactive namespace (because they remain in the namespace
1471 IPython interactive namespace (because they remain in the namespace
1472 where the profiler executes them).
1472 where the profiler executes them).
1473
1473
1474 Internally this triggers a call to %prun, see its documentation for
1474 Internally this triggers a call to %prun, see its documentation for
1475 details on the options available specifically for profiling.
1475 details on the options available specifically for profiling.
1476
1476
1477 There is one special usage for which the text above doesn't apply:
1477 There is one special usage for which the text above doesn't apply:
1478 if the filename ends with .ipy, the file is run as ipython script,
1478 if the filename ends with .ipy, the file is run as ipython script,
1479 just as if the commands were written on IPython prompt.
1479 just as if the commands were written on IPython prompt.
1480 """
1480 """
1481
1481
1482 # get arguments and set sys.argv for program to be run.
1482 # get arguments and set sys.argv for program to be run.
1483 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1483 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1484 mode='list',list_all=1)
1484 mode='list',list_all=1)
1485
1485
1486 try:
1486 try:
1487 filename = get_py_filename(arg_lst[0])
1487 filename = get_py_filename(arg_lst[0])
1488 except IndexError:
1488 except IndexError:
1489 warn('you must provide at least a filename.')
1489 warn('you must provide at least a filename.')
1490 print '\n%run:\n',OInspect.getdoc(self.magic_run)
1490 print '\n%run:\n',OInspect.getdoc(self.magic_run)
1491 return
1491 return
1492 except IOError,msg:
1492 except IOError,msg:
1493 error(msg)
1493 error(msg)
1494 return
1494 return
1495
1495
1496 if filename.lower().endswith('.ipy'):
1496 if filename.lower().endswith('.ipy'):
1497 self.api.runlines(open(filename).read())
1497 self.api.runlines(open(filename).read())
1498 return
1498 return
1499
1499
1500 # Control the response to exit() calls made by the script being run
1500 # Control the response to exit() calls made by the script being run
1501 exit_ignore = opts.has_key('e')
1501 exit_ignore = opts.has_key('e')
1502
1502
1503 # Make sure that the running script gets a proper sys.argv as if it
1503 # Make sure that the running script gets a proper sys.argv as if it
1504 # were run from a system shell.
1504 # were run from a system shell.
1505 save_argv = sys.argv # save it for later restoring
1505 save_argv = sys.argv # save it for later restoring
1506 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1506 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1507
1507
1508 if opts.has_key('i'):
1508 if opts.has_key('i'):
1509 prog_ns = self.shell.user_ns
1509 prog_ns = self.shell.user_ns
1510 __name__save = self.shell.user_ns['__name__']
1510 __name__save = self.shell.user_ns['__name__']
1511 prog_ns['__name__'] = '__main__'
1511 prog_ns['__name__'] = '__main__'
1512 else:
1512 else:
1513 if opts.has_key('n'):
1513 if opts.has_key('n'):
1514 name = os.path.splitext(os.path.basename(filename))[0]
1514 name = os.path.splitext(os.path.basename(filename))[0]
1515 else:
1515 else:
1516 name = '__main__'
1516 name = '__main__'
1517 prog_ns = {'__name__':name}
1517 prog_ns = {'__name__':name}
1518
1518
1519 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1519 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1520 # set the __file__ global in the script's namespace
1520 # set the __file__ global in the script's namespace
1521 prog_ns['__file__'] = filename
1521 prog_ns['__file__'] = filename
1522
1522
1523 # pickle fix. See iplib for an explanation. But we need to make sure
1523 # pickle fix. See iplib for an explanation. But we need to make sure
1524 # that, if we overwrite __main__, we replace it at the end
1524 # that, if we overwrite __main__, we replace it at the end
1525 if prog_ns['__name__'] == '__main__':
1525 if prog_ns['__name__'] == '__main__':
1526 restore_main = sys.modules['__main__']
1526 restore_main = sys.modules['__main__']
1527 else:
1527 else:
1528 restore_main = False
1528 restore_main = False
1529
1529
1530 sys.modules[prog_ns['__name__']] = FakeModule(prog_ns)
1530 sys.modules[prog_ns['__name__']] = FakeModule(prog_ns)
1531
1531
1532 stats = None
1532 stats = None
1533 try:
1533 try:
1534 if self.shell.has_readline:
1534 if self.shell.has_readline:
1535 self.shell.savehist()
1535 self.shell.savehist()
1536
1536
1537 if opts.has_key('p'):
1537 if opts.has_key('p'):
1538 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1538 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1539 else:
1539 else:
1540 if opts.has_key('d'):
1540 if opts.has_key('d'):
1541 deb = Debugger.Pdb(self.shell.rc.colors)
1541 deb = Debugger.Pdb(self.shell.rc.colors)
1542 # reset Breakpoint state, which is moronically kept
1542 # reset Breakpoint state, which is moronically kept
1543 # in a class
1543 # in a class
1544 bdb.Breakpoint.next = 1
1544 bdb.Breakpoint.next = 1
1545 bdb.Breakpoint.bplist = {}
1545 bdb.Breakpoint.bplist = {}
1546 bdb.Breakpoint.bpbynumber = [None]
1546 bdb.Breakpoint.bpbynumber = [None]
1547 # Set an initial breakpoint to stop execution
1547 # Set an initial breakpoint to stop execution
1548 maxtries = 10
1548 maxtries = 10
1549 bp = int(opts.get('b',[1])[0])
1549 bp = int(opts.get('b',[1])[0])
1550 checkline = deb.checkline(filename,bp)
1550 checkline = deb.checkline(filename,bp)
1551 if not checkline:
1551 if not checkline:
1552 for bp in range(bp+1,bp+maxtries+1):
1552 for bp in range(bp+1,bp+maxtries+1):
1553 if deb.checkline(filename,bp):
1553 if deb.checkline(filename,bp):
1554 break
1554 break
1555 else:
1555 else:
1556 msg = ("\nI failed to find a valid line to set "
1556 msg = ("\nI failed to find a valid line to set "
1557 "a breakpoint\n"
1557 "a breakpoint\n"
1558 "after trying up to line: %s.\n"
1558 "after trying up to line: %s.\n"
1559 "Please set a valid breakpoint manually "
1559 "Please set a valid breakpoint manually "
1560 "with the -b option." % bp)
1560 "with the -b option." % bp)
1561 error(msg)
1561 error(msg)
1562 return
1562 return
1563 # if we find a good linenumber, set the breakpoint
1563 # if we find a good linenumber, set the breakpoint
1564 deb.do_break('%s:%s' % (filename,bp))
1564 deb.do_break('%s:%s' % (filename,bp))
1565 # Start file run
1565 # Start file run
1566 print "NOTE: Enter 'c' at the",
1566 print "NOTE: Enter 'c' at the",
1567 print "%s prompt to start your script." % deb.prompt
1567 print "%s prompt to start your script." % deb.prompt
1568 try:
1568 try:
1569 deb.run('execfile("%s")' % filename,prog_ns)
1569 deb.run('execfile("%s")' % filename,prog_ns)
1570
1570
1571 except:
1571 except:
1572 etype, value, tb = sys.exc_info()
1572 etype, value, tb = sys.exc_info()
1573 # Skip three frames in the traceback: the %run one,
1573 # Skip three frames in the traceback: the %run one,
1574 # one inside bdb.py, and the command-line typed by the
1574 # one inside bdb.py, and the command-line typed by the
1575 # user (run by exec in pdb itself).
1575 # user (run by exec in pdb itself).
1576 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1576 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1577 else:
1577 else:
1578 if runner is None:
1578 if runner is None:
1579 runner = self.shell.safe_execfile
1579 runner = self.shell.safe_execfile
1580 if opts.has_key('t'):
1580 if opts.has_key('t'):
1581 try:
1581 try:
1582 nruns = int(opts['N'][0])
1582 nruns = int(opts['N'][0])
1583 if nruns < 1:
1583 if nruns < 1:
1584 error('Number of runs must be >=1')
1584 error('Number of runs must be >=1')
1585 return
1585 return
1586 except (KeyError):
1586 except (KeyError):
1587 nruns = 1
1587 nruns = 1
1588 if nruns == 1:
1588 if nruns == 1:
1589 t0 = clock2()
1589 t0 = clock2()
1590 runner(filename,prog_ns,prog_ns,
1590 runner(filename,prog_ns,prog_ns,
1591 exit_ignore=exit_ignore)
1591 exit_ignore=exit_ignore)
1592 t1 = clock2()
1592 t1 = clock2()
1593 t_usr = t1[0]-t0[0]
1593 t_usr = t1[0]-t0[0]
1594 t_sys = t1[1]-t1[1]
1594 t_sys = t1[1]-t1[1]
1595 print "\nIPython CPU timings (estimated):"
1595 print "\nIPython CPU timings (estimated):"
1596 print " User : %10s s." % t_usr
1596 print " User : %10s s." % t_usr
1597 print " System: %10s s." % t_sys
1597 print " System: %10s s." % t_sys
1598 else:
1598 else:
1599 runs = range(nruns)
1599 runs = range(nruns)
1600 t0 = clock2()
1600 t0 = clock2()
1601 for nr in runs:
1601 for nr in runs:
1602 runner(filename,prog_ns,prog_ns,
1602 runner(filename,prog_ns,prog_ns,
1603 exit_ignore=exit_ignore)
1603 exit_ignore=exit_ignore)
1604 t1 = clock2()
1604 t1 = clock2()
1605 t_usr = t1[0]-t0[0]
1605 t_usr = t1[0]-t0[0]
1606 t_sys = t1[1]-t1[1]
1606 t_sys = t1[1]-t1[1]
1607 print "\nIPython CPU timings (estimated):"
1607 print "\nIPython CPU timings (estimated):"
1608 print "Total runs performed:",nruns
1608 print "Total runs performed:",nruns
1609 print " Times : %10s %10s" % ('Total','Per run')
1609 print " Times : %10s %10s" % ('Total','Per run')
1610 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1610 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1611 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1611 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1612
1612
1613 else:
1613 else:
1614 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1614 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1615 if opts.has_key('i'):
1615 if opts.has_key('i'):
1616 self.shell.user_ns['__name__'] = __name__save
1616 self.shell.user_ns['__name__'] = __name__save
1617 else:
1617 else:
1618 # update IPython interactive namespace
1618 # update IPython interactive namespace
1619 del prog_ns['__name__']
1619 del prog_ns['__name__']
1620 self.shell.user_ns.update(prog_ns)
1620 self.shell.user_ns.update(prog_ns)
1621 finally:
1621 finally:
1622 sys.argv = save_argv
1622 sys.argv = save_argv
1623 if restore_main:
1623 if restore_main:
1624 sys.modules['__main__'] = restore_main
1624 sys.modules['__main__'] = restore_main
1625 if self.shell.has_readline:
1625 if self.shell.has_readline:
1626 self.shell.readline.read_history_file(self.shell.histfile)
1626 self.shell.readline.read_history_file(self.shell.histfile)
1627
1627
1628 return stats
1628 return stats
1629
1629
1630 def magic_runlog(self, parameter_s =''):
1630 def magic_runlog(self, parameter_s =''):
1631 """Run files as logs.
1631 """Run files as logs.
1632
1632
1633 Usage:\\
1633 Usage:\\
1634 %runlog file1 file2 ...
1634 %runlog file1 file2 ...
1635
1635
1636 Run the named files (treating them as log files) in sequence inside
1636 Run the named files (treating them as log files) in sequence inside
1637 the interpreter, and return to the prompt. This is much slower than
1637 the interpreter, and return to the prompt. This is much slower than
1638 %run because each line is executed in a try/except block, but it
1638 %run because each line is executed in a try/except block, but it
1639 allows running files with syntax errors in them.
1639 allows running files with syntax errors in them.
1640
1640
1641 Normally IPython will guess when a file is one of its own logfiles, so
1641 Normally IPython will guess when a file is one of its own logfiles, so
1642 you can typically use %run even for logs. This shorthand allows you to
1642 you can typically use %run even for logs. This shorthand allows you to
1643 force any file to be treated as a log file."""
1643 force any file to be treated as a log file."""
1644
1644
1645 for f in parameter_s.split():
1645 for f in parameter_s.split():
1646 self.shell.safe_execfile(f,self.shell.user_ns,
1646 self.shell.safe_execfile(f,self.shell.user_ns,
1647 self.shell.user_ns,islog=1)
1647 self.shell.user_ns,islog=1)
1648
1648
1649 def magic_timeit(self, parameter_s =''):
1649 def magic_timeit(self, parameter_s =''):
1650 """Time execution of a Python statement or expression
1650 """Time execution of a Python statement or expression
1651
1651
1652 Usage:\\
1652 Usage:\\
1653 %timeit [-n<N> -r<R> [-t|-c]] statement
1653 %timeit [-n<N> -r<R> [-t|-c]] statement
1654
1654
1655 Time execution of a Python statement or expression using the timeit
1655 Time execution of a Python statement or expression using the timeit
1656 module.
1656 module.
1657
1657
1658 Options:
1658 Options:
1659 -n<N>: execute the given statement <N> times in a loop. If this value
1659 -n<N>: execute the given statement <N> times in a loop. If this value
1660 is not given, a fitting value is chosen.
1660 is not given, a fitting value is chosen.
1661
1661
1662 -r<R>: repeat the loop iteration <R> times and take the best result.
1662 -r<R>: repeat the loop iteration <R> times and take the best result.
1663 Default: 3
1663 Default: 3
1664
1664
1665 -t: use time.time to measure the time, which is the default on Unix.
1665 -t: use time.time to measure the time, which is the default on Unix.
1666 This function measures wall time.
1666 This function measures wall time.
1667
1667
1668 -c: use time.clock to measure the time, which is the default on
1668 -c: use time.clock to measure the time, which is the default on
1669 Windows and measures wall time. On Unix, resource.getrusage is used
1669 Windows and measures wall time. On Unix, resource.getrusage is used
1670 instead and returns the CPU user time.
1670 instead and returns the CPU user time.
1671
1671
1672 -p<P>: use a precision of <P> digits to display the timing result.
1672 -p<P>: use a precision of <P> digits to display the timing result.
1673 Default: 3
1673 Default: 3
1674
1674
1675
1675
1676 Examples:\\
1676 Examples:\\
1677 In [1]: %timeit pass
1677 In [1]: %timeit pass
1678 10000000 loops, best of 3: 53.3 ns per loop
1678 10000000 loops, best of 3: 53.3 ns per loop
1679
1679
1680 In [2]: u = None
1680 In [2]: u = None
1681
1681
1682 In [3]: %timeit u is None
1682 In [3]: %timeit u is None
1683 10000000 loops, best of 3: 184 ns per loop
1683 10000000 loops, best of 3: 184 ns per loop
1684
1684
1685 In [4]: %timeit -r 4 u == None
1685 In [4]: %timeit -r 4 u == None
1686 1000000 loops, best of 4: 242 ns per loop
1686 1000000 loops, best of 4: 242 ns per loop
1687
1687
1688 In [5]: import time
1688 In [5]: import time
1689
1689
1690 In [6]: %timeit -n1 time.sleep(2)
1690 In [6]: %timeit -n1 time.sleep(2)
1691 1 loops, best of 3: 2 s per loop
1691 1 loops, best of 3: 2 s per loop
1692
1692
1693
1693
1694 The times reported by %timeit will be slightly higher than those
1694 The times reported by %timeit will be slightly higher than those
1695 reported by the timeit.py script when variables are accessed. This is
1695 reported by the timeit.py script when variables are accessed. This is
1696 due to the fact that %timeit executes the statement in the namespace
1696 due to the fact that %timeit executes the statement in the namespace
1697 of the shell, compared with timeit.py, which uses a single setup
1697 of the shell, compared with timeit.py, which uses a single setup
1698 statement to import function or create variables. Generally, the bias
1698 statement to import function or create variables. Generally, the bias
1699 does not matter as long as results from timeit.py are not mixed with
1699 does not matter as long as results from timeit.py are not mixed with
1700 those from %timeit."""
1700 those from %timeit."""
1701
1701
1702 import timeit
1702 import timeit
1703 import math
1703 import math
1704
1704
1705 units = ["s", "ms", "\xc2\xb5s", "ns"]
1705 units = ["s", "ms", "\xc2\xb5s", "ns"]
1706 scaling = [1, 1e3, 1e6, 1e9]
1706 scaling = [1, 1e3, 1e6, 1e9]
1707
1707
1708 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1708 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1709 posix=False)
1709 posix=False)
1710 if stmt == "":
1710 if stmt == "":
1711 return
1711 return
1712 timefunc = timeit.default_timer
1712 timefunc = timeit.default_timer
1713 number = int(getattr(opts, "n", 0))
1713 number = int(getattr(opts, "n", 0))
1714 repeat = int(getattr(opts, "r", timeit.default_repeat))
1714 repeat = int(getattr(opts, "r", timeit.default_repeat))
1715 precision = int(getattr(opts, "p", 3))
1715 precision = int(getattr(opts, "p", 3))
1716 if hasattr(opts, "t"):
1716 if hasattr(opts, "t"):
1717 timefunc = time.time
1717 timefunc = time.time
1718 if hasattr(opts, "c"):
1718 if hasattr(opts, "c"):
1719 timefunc = clock
1719 timefunc = clock
1720
1720
1721 timer = timeit.Timer(timer=timefunc)
1721 timer = timeit.Timer(timer=timefunc)
1722 # this code has tight coupling to the inner workings of timeit.Timer,
1722 # this code has tight coupling to the inner workings of timeit.Timer,
1723 # but is there a better way to achieve that the code stmt has access
1723 # but is there a better way to achieve that the code stmt has access
1724 # to the shell namespace?
1724 # to the shell namespace?
1725
1725
1726 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1726 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1727 'setup': "pass"}
1727 'setup': "pass"}
1728 code = compile(src, "<magic-timeit>", "exec")
1728 code = compile(src, "<magic-timeit>", "exec")
1729 ns = {}
1729 ns = {}
1730 exec code in self.shell.user_ns, ns
1730 exec code in self.shell.user_ns, ns
1731 timer.inner = ns["inner"]
1731 timer.inner = ns["inner"]
1732
1732
1733 if number == 0:
1733 if number == 0:
1734 # determine number so that 0.2 <= total time < 2.0
1734 # determine number so that 0.2 <= total time < 2.0
1735 number = 1
1735 number = 1
1736 for i in range(1, 10):
1736 for i in range(1, 10):
1737 number *= 10
1737 number *= 10
1738 if timer.timeit(number) >= 0.2:
1738 if timer.timeit(number) >= 0.2:
1739 break
1739 break
1740
1740
1741 best = min(timer.repeat(repeat, number)) / number
1741 best = min(timer.repeat(repeat, number)) / number
1742
1742
1743 if best > 0.0:
1743 if best > 0.0:
1744 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1744 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1745 else:
1745 else:
1746 order = 3
1746 order = 3
1747 print "%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1747 print "%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1748 precision,
1748 precision,
1749 best * scaling[order],
1749 best * scaling[order],
1750 units[order])
1750 units[order])
1751
1751
1752 def magic_time(self,parameter_s = ''):
1752 def magic_time(self,parameter_s = ''):
1753 """Time execution of a Python statement or expression.
1753 """Time execution of a Python statement or expression.
1754
1754
1755 The CPU and wall clock times are printed, and the value of the
1755 The CPU and wall clock times are printed, and the value of the
1756 expression (if any) is returned. Note that under Win32, system time
1756 expression (if any) is returned. Note that under Win32, system time
1757 is always reported as 0, since it can not be measured.
1757 is always reported as 0, since it can not be measured.
1758
1758
1759 This function provides very basic timing functionality. In Python
1759 This function provides very basic timing functionality. In Python
1760 2.3, the timeit module offers more control and sophistication, so this
1760 2.3, the timeit module offers more control and sophistication, so this
1761 could be rewritten to use it (patches welcome).
1761 could be rewritten to use it (patches welcome).
1762
1762
1763 Some examples:
1763 Some examples:
1764
1764
1765 In [1]: time 2**128
1765 In [1]: time 2**128
1766 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1766 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1767 Wall time: 0.00
1767 Wall time: 0.00
1768 Out[1]: 340282366920938463463374607431768211456L
1768 Out[1]: 340282366920938463463374607431768211456L
1769
1769
1770 In [2]: n = 1000000
1770 In [2]: n = 1000000
1771
1771
1772 In [3]: time sum(range(n))
1772 In [3]: time sum(range(n))
1773 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1773 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1774 Wall time: 1.37
1774 Wall time: 1.37
1775 Out[3]: 499999500000L
1775 Out[3]: 499999500000L
1776
1776
1777 In [4]: time print 'hello world'
1777 In [4]: time print 'hello world'
1778 hello world
1778 hello world
1779 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1779 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1780 Wall time: 0.00
1780 Wall time: 0.00
1781 """
1781 """
1782
1782
1783 # fail immediately if the given expression can't be compiled
1783 # fail immediately if the given expression can't be compiled
1784 try:
1784 try:
1785 mode = 'eval'
1785 mode = 'eval'
1786 code = compile(parameter_s,'<timed eval>',mode)
1786 code = compile(parameter_s,'<timed eval>',mode)
1787 except SyntaxError:
1787 except SyntaxError:
1788 mode = 'exec'
1788 mode = 'exec'
1789 code = compile(parameter_s,'<timed exec>',mode)
1789 code = compile(parameter_s,'<timed exec>',mode)
1790 # skew measurement as little as possible
1790 # skew measurement as little as possible
1791 glob = self.shell.user_ns
1791 glob = self.shell.user_ns
1792 clk = clock2
1792 clk = clock2
1793 wtime = time.time
1793 wtime = time.time
1794 # time execution
1794 # time execution
1795 wall_st = wtime()
1795 wall_st = wtime()
1796 if mode=='eval':
1796 if mode=='eval':
1797 st = clk()
1797 st = clk()
1798 out = eval(code,glob)
1798 out = eval(code,glob)
1799 end = clk()
1799 end = clk()
1800 else:
1800 else:
1801 st = clk()
1801 st = clk()
1802 exec code in glob
1802 exec code in glob
1803 end = clk()
1803 end = clk()
1804 out = None
1804 out = None
1805 wall_end = wtime()
1805 wall_end = wtime()
1806 # Compute actual times and report
1806 # Compute actual times and report
1807 wall_time = wall_end-wall_st
1807 wall_time = wall_end-wall_st
1808 cpu_user = end[0]-st[0]
1808 cpu_user = end[0]-st[0]
1809 cpu_sys = end[1]-st[1]
1809 cpu_sys = end[1]-st[1]
1810 cpu_tot = cpu_user+cpu_sys
1810 cpu_tot = cpu_user+cpu_sys
1811 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1811 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1812 (cpu_user,cpu_sys,cpu_tot)
1812 (cpu_user,cpu_sys,cpu_tot)
1813 print "Wall time: %.2f" % wall_time
1813 print "Wall time: %.2f" % wall_time
1814 return out
1814 return out
1815
1815
1816 def magic_macro(self,parameter_s = ''):
1816 def magic_macro(self,parameter_s = ''):
1817 """Define a set of input lines as a macro for future re-execution.
1817 """Define a set of input lines as a macro for future re-execution.
1818
1818
1819 Usage:\\
1819 Usage:\\
1820 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1820 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1821
1821
1822 Options:
1822 Options:
1823
1823
1824 -r: use 'raw' input. By default, the 'processed' history is used,
1824 -r: use 'raw' input. By default, the 'processed' history is used,
1825 so that magics are loaded in their transformed version to valid
1825 so that magics are loaded in their transformed version to valid
1826 Python. If this option is given, the raw input as typed as the
1826 Python. If this option is given, the raw input as typed as the
1827 command line is used instead.
1827 command line is used instead.
1828
1828
1829 This will define a global variable called `name` which is a string
1829 This will define a global variable called `name` which is a string
1830 made of joining the slices and lines you specify (n1,n2,... numbers
1830 made of joining the slices and lines you specify (n1,n2,... numbers
1831 above) from your input history into a single string. This variable
1831 above) from your input history into a single string. This variable
1832 acts like an automatic function which re-executes those lines as if
1832 acts like an automatic function which re-executes those lines as if
1833 you had typed them. You just type 'name' at the prompt and the code
1833 you had typed them. You just type 'name' at the prompt and the code
1834 executes.
1834 executes.
1835
1835
1836 The notation for indicating number ranges is: n1-n2 means 'use line
1836 The notation for indicating number ranges is: n1-n2 means 'use line
1837 numbers n1,...n2' (the endpoint is included). That is, '5-7' means
1837 numbers n1,...n2' (the endpoint is included). That is, '5-7' means
1838 using the lines numbered 5,6 and 7.
1838 using the lines numbered 5,6 and 7.
1839
1839
1840 Note: as a 'hidden' feature, you can also use traditional python slice
1840 Note: as a 'hidden' feature, you can also use traditional python slice
1841 notation, where N:M means numbers N through M-1.
1841 notation, where N:M means numbers N through M-1.
1842
1842
1843 For example, if your history contains (%hist prints it):
1843 For example, if your history contains (%hist prints it):
1844
1844
1845 44: x=1\\
1845 44: x=1\\
1846 45: y=3\\
1846 45: y=3\\
1847 46: z=x+y\\
1847 46: z=x+y\\
1848 47: print x\\
1848 47: print x\\
1849 48: a=5\\
1849 48: a=5\\
1850 49: print 'x',x,'y',y\\
1850 49: print 'x',x,'y',y\\
1851
1851
1852 you can create a macro with lines 44 through 47 (included) and line 49
1852 you can create a macro with lines 44 through 47 (included) and line 49
1853 called my_macro with:
1853 called my_macro with:
1854
1854
1855 In [51]: %macro my_macro 44-47 49
1855 In [51]: %macro my_macro 44-47 49
1856
1856
1857 Now, typing `my_macro` (without quotes) will re-execute all this code
1857 Now, typing `my_macro` (without quotes) will re-execute all this code
1858 in one pass.
1858 in one pass.
1859
1859
1860 You don't need to give the line-numbers in order, and any given line
1860 You don't need to give the line-numbers in order, and any given line
1861 number can appear multiple times. You can assemble macros with any
1861 number can appear multiple times. You can assemble macros with any
1862 lines from your input history in any order.
1862 lines from your input history in any order.
1863
1863
1864 The macro is a simple object which holds its value in an attribute,
1864 The macro is a simple object which holds its value in an attribute,
1865 but IPython's display system checks for macros and executes them as
1865 but IPython's display system checks for macros and executes them as
1866 code instead of printing them when you type their name.
1866 code instead of printing them when you type their name.
1867
1867
1868 You can view a macro's contents by explicitly printing it with:
1868 You can view a macro's contents by explicitly printing it with:
1869
1869
1870 'print macro_name'.
1870 'print macro_name'.
1871
1871
1872 For one-off cases which DON'T contain magic function calls in them you
1872 For one-off cases which DON'T contain magic function calls in them you
1873 can obtain similar results by explicitly executing slices from your
1873 can obtain similar results by explicitly executing slices from your
1874 input history with:
1874 input history with:
1875
1875
1876 In [60]: exec In[44:48]+In[49]"""
1876 In [60]: exec In[44:48]+In[49]"""
1877
1877
1878 opts,args = self.parse_options(parameter_s,'r',mode='list')
1878 opts,args = self.parse_options(parameter_s,'r',mode='list')
1879 name,ranges = args[0], args[1:]
1879 name,ranges = args[0], args[1:]
1880 #print 'rng',ranges # dbg
1880 #print 'rng',ranges # dbg
1881 lines = self.extract_input_slices(ranges,opts.has_key('r'))
1881 lines = self.extract_input_slices(ranges,opts.has_key('r'))
1882 macro = Macro(lines)
1882 macro = Macro(lines)
1883 self.shell.user_ns.update({name:macro})
1883 self.shell.user_ns.update({name:macro})
1884 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
1884 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
1885 print 'Macro contents:'
1885 print 'Macro contents:'
1886 print macro,
1886 print macro,
1887
1887
1888 def magic_save(self,parameter_s = ''):
1888 def magic_save(self,parameter_s = ''):
1889 """Save a set of lines to a given filename.
1889 """Save a set of lines to a given filename.
1890
1890
1891 Usage:\\
1891 Usage:\\
1892 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
1892 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
1893
1893
1894 Options:
1894 Options:
1895
1895
1896 -r: use 'raw' input. By default, the 'processed' history is used,
1896 -r: use 'raw' input. By default, the 'processed' history is used,
1897 so that magics are loaded in their transformed version to valid
1897 so that magics are loaded in their transformed version to valid
1898 Python. If this option is given, the raw input as typed as the
1898 Python. If this option is given, the raw input as typed as the
1899 command line is used instead.
1899 command line is used instead.
1900
1900
1901 This function uses the same syntax as %macro for line extraction, but
1901 This function uses the same syntax as %macro for line extraction, but
1902 instead of creating a macro it saves the resulting string to the
1902 instead of creating a macro it saves the resulting string to the
1903 filename you specify.
1903 filename you specify.
1904
1904
1905 It adds a '.py' extension to the file if you don't do so yourself, and
1905 It adds a '.py' extension to the file if you don't do so yourself, and
1906 it asks for confirmation before overwriting existing files."""
1906 it asks for confirmation before overwriting existing files."""
1907
1907
1908 opts,args = self.parse_options(parameter_s,'r',mode='list')
1908 opts,args = self.parse_options(parameter_s,'r',mode='list')
1909 fname,ranges = args[0], args[1:]
1909 fname,ranges = args[0], args[1:]
1910 if not fname.endswith('.py'):
1910 if not fname.endswith('.py'):
1911 fname += '.py'
1911 fname += '.py'
1912 if os.path.isfile(fname):
1912 if os.path.isfile(fname):
1913 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
1913 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
1914 if ans.lower() not in ['y','yes']:
1914 if ans.lower() not in ['y','yes']:
1915 print 'Operation cancelled.'
1915 print 'Operation cancelled.'
1916 return
1916 return
1917 cmds = ''.join(self.extract_input_slices(ranges,opts.has_key('r')))
1917 cmds = ''.join(self.extract_input_slices(ranges,opts.has_key('r')))
1918 f = file(fname,'w')
1918 f = file(fname,'w')
1919 f.write(cmds)
1919 f.write(cmds)
1920 f.close()
1920 f.close()
1921 print 'The following commands were written to file `%s`:' % fname
1921 print 'The following commands were written to file `%s`:' % fname
1922 print cmds
1922 print cmds
1923
1923
1924 def _edit_macro(self,mname,macro):
1924 def _edit_macro(self,mname,macro):
1925 """open an editor with the macro data in a file"""
1925 """open an editor with the macro data in a file"""
1926 filename = self.shell.mktempfile(macro.value)
1926 filename = self.shell.mktempfile(macro.value)
1927 self.shell.hooks.editor(filename)
1927 self.shell.hooks.editor(filename)
1928
1928
1929 # and make a new macro object, to replace the old one
1929 # and make a new macro object, to replace the old one
1930 mfile = open(filename)
1930 mfile = open(filename)
1931 mvalue = mfile.read()
1931 mvalue = mfile.read()
1932 mfile.close()
1932 mfile.close()
1933 self.shell.user_ns[mname] = Macro(mvalue)
1933 self.shell.user_ns[mname] = Macro(mvalue)
1934
1934
1935 def magic_ed(self,parameter_s=''):
1935 def magic_ed(self,parameter_s=''):
1936 """Alias to %edit."""
1936 """Alias to %edit."""
1937 return self.magic_edit(parameter_s)
1937 return self.magic_edit(parameter_s)
1938
1938
1939 def magic_edit(self,parameter_s='',last_call=['','']):
1939 def magic_edit(self,parameter_s='',last_call=['','']):
1940 """Bring up an editor and execute the resulting code.
1940 """Bring up an editor and execute the resulting code.
1941
1941
1942 Usage:
1942 Usage:
1943 %edit [options] [args]
1943 %edit [options] [args]
1944
1944
1945 %edit runs IPython's editor hook. The default version of this hook is
1945 %edit runs IPython's editor hook. The default version of this hook is
1946 set to call the __IPYTHON__.rc.editor command. This is read from your
1946 set to call the __IPYTHON__.rc.editor command. This is read from your
1947 environment variable $EDITOR. If this isn't found, it will default to
1947 environment variable $EDITOR. If this isn't found, it will default to
1948 vi under Linux/Unix and to notepad under Windows. See the end of this
1948 vi under Linux/Unix and to notepad under Windows. See the end of this
1949 docstring for how to change the editor hook.
1949 docstring for how to change the editor hook.
1950
1950
1951 You can also set the value of this editor via the command line option
1951 You can also set the value of this editor via the command line option
1952 '-editor' or in your ipythonrc file. This is useful if you wish to use
1952 '-editor' or in your ipythonrc file. This is useful if you wish to use
1953 specifically for IPython an editor different from your typical default
1953 specifically for IPython an editor different from your typical default
1954 (and for Windows users who typically don't set environment variables).
1954 (and for Windows users who typically don't set environment variables).
1955
1955
1956 This command allows you to conveniently edit multi-line code right in
1956 This command allows you to conveniently edit multi-line code right in
1957 your IPython session.
1957 your IPython session.
1958
1958
1959 If called without arguments, %edit opens up an empty editor with a
1959 If called without arguments, %edit opens up an empty editor with a
1960 temporary file and will execute the contents of this file when you
1960 temporary file and will execute the contents of this file when you
1961 close it (don't forget to save it!).
1961 close it (don't forget to save it!).
1962
1962
1963
1963
1964 Options:
1964 Options:
1965
1965
1966 -n <number>: open the editor at a specified line number. By default,
1966 -n <number>: open the editor at a specified line number. By default,
1967 the IPython editor hook uses the unix syntax 'editor +N filename', but
1967 the IPython editor hook uses the unix syntax 'editor +N filename', but
1968 you can configure this by providing your own modified hook if your
1968 you can configure this by providing your own modified hook if your
1969 favorite editor supports line-number specifications with a different
1969 favorite editor supports line-number specifications with a different
1970 syntax.
1970 syntax.
1971
1971
1972 -p: this will call the editor with the same data as the previous time
1972 -p: this will call the editor with the same data as the previous time
1973 it was used, regardless of how long ago (in your current session) it
1973 it was used, regardless of how long ago (in your current session) it
1974 was.
1974 was.
1975
1975
1976 -r: use 'raw' input. This option only applies to input taken from the
1976 -r: use 'raw' input. This option only applies to input taken from the
1977 user's history. By default, the 'processed' history is used, so that
1977 user's history. By default, the 'processed' history is used, so that
1978 magics are loaded in their transformed version to valid Python. If
1978 magics are loaded in their transformed version to valid Python. If
1979 this option is given, the raw input as typed as the command line is
1979 this option is given, the raw input as typed as the command line is
1980 used instead. When you exit the editor, it will be executed by
1980 used instead. When you exit the editor, it will be executed by
1981 IPython's own processor.
1981 IPython's own processor.
1982
1982
1983 -x: do not execute the edited code immediately upon exit. This is
1983 -x: do not execute the edited code immediately upon exit. This is
1984 mainly useful if you are editing programs which need to be called with
1984 mainly useful if you are editing programs which need to be called with
1985 command line arguments, which you can then do using %run.
1985 command line arguments, which you can then do using %run.
1986
1986
1987
1987
1988 Arguments:
1988 Arguments:
1989
1989
1990 If arguments are given, the following possibilites exist:
1990 If arguments are given, the following possibilites exist:
1991
1991
1992 - The arguments are numbers or pairs of colon-separated numbers (like
1992 - The arguments are numbers or pairs of colon-separated numbers (like
1993 1 4:8 9). These are interpreted as lines of previous input to be
1993 1 4:8 9). These are interpreted as lines of previous input to be
1994 loaded into the editor. The syntax is the same of the %macro command.
1994 loaded into the editor. The syntax is the same of the %macro command.
1995
1995
1996 - If the argument doesn't start with a number, it is evaluated as a
1996 - If the argument doesn't start with a number, it is evaluated as a
1997 variable and its contents loaded into the editor. You can thus edit
1997 variable and its contents loaded into the editor. You can thus edit
1998 any string which contains python code (including the result of
1998 any string which contains python code (including the result of
1999 previous edits).
1999 previous edits).
2000
2000
2001 - If the argument is the name of an object (other than a string),
2001 - If the argument is the name of an object (other than a string),
2002 IPython will try to locate the file where it was defined and open the
2002 IPython will try to locate the file where it was defined and open the
2003 editor at the point where it is defined. You can use `%edit function`
2003 editor at the point where it is defined. You can use `%edit function`
2004 to load an editor exactly at the point where 'function' is defined,
2004 to load an editor exactly at the point where 'function' is defined,
2005 edit it and have the file be executed automatically.
2005 edit it and have the file be executed automatically.
2006
2006
2007 If the object is a macro (see %macro for details), this opens up your
2007 If the object is a macro (see %macro for details), this opens up your
2008 specified editor with a temporary file containing the macro's data.
2008 specified editor with a temporary file containing the macro's data.
2009 Upon exit, the macro is reloaded with the contents of the file.
2009 Upon exit, the macro is reloaded with the contents of the file.
2010
2010
2011 Note: opening at an exact line is only supported under Unix, and some
2011 Note: opening at an exact line is only supported under Unix, and some
2012 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2012 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2013 '+NUMBER' parameter necessary for this feature. Good editors like
2013 '+NUMBER' parameter necessary for this feature. Good editors like
2014 (X)Emacs, vi, jed, pico and joe all do.
2014 (X)Emacs, vi, jed, pico and joe all do.
2015
2015
2016 - If the argument is not found as a variable, IPython will look for a
2016 - If the argument is not found as a variable, IPython will look for a
2017 file with that name (adding .py if necessary) and load it into the
2017 file with that name (adding .py if necessary) and load it into the
2018 editor. It will execute its contents with execfile() when you exit,
2018 editor. It will execute its contents with execfile() when you exit,
2019 loading any code in the file into your interactive namespace.
2019 loading any code in the file into your interactive namespace.
2020
2020
2021 After executing your code, %edit will return as output the code you
2021 After executing your code, %edit will return as output the code you
2022 typed in the editor (except when it was an existing file). This way
2022 typed in the editor (except when it was an existing file). This way
2023 you can reload the code in further invocations of %edit as a variable,
2023 you can reload the code in further invocations of %edit as a variable,
2024 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2024 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2025 the output.
2025 the output.
2026
2026
2027 Note that %edit is also available through the alias %ed.
2027 Note that %edit is also available through the alias %ed.
2028
2028
2029 This is an example of creating a simple function inside the editor and
2029 This is an example of creating a simple function inside the editor and
2030 then modifying it. First, start up the editor:
2030 then modifying it. First, start up the editor:
2031
2031
2032 In [1]: ed\\
2032 In [1]: ed\\
2033 Editing... done. Executing edited code...\\
2033 Editing... done. Executing edited code...\\
2034 Out[1]: 'def foo():\\n print "foo() was defined in an editing session"\\n'
2034 Out[1]: 'def foo():\\n print "foo() was defined in an editing session"\\n'
2035
2035
2036 We can then call the function foo():
2036 We can then call the function foo():
2037
2037
2038 In [2]: foo()\\
2038 In [2]: foo()\\
2039 foo() was defined in an editing session
2039 foo() was defined in an editing session
2040
2040
2041 Now we edit foo. IPython automatically loads the editor with the
2041 Now we edit foo. IPython automatically loads the editor with the
2042 (temporary) file where foo() was previously defined:
2042 (temporary) file where foo() was previously defined:
2043
2043
2044 In [3]: ed foo\\
2044 In [3]: ed foo\\
2045 Editing... done. Executing edited code...
2045 Editing... done. Executing edited code...
2046
2046
2047 And if we call foo() again we get the modified version:
2047 And if we call foo() again we get the modified version:
2048
2048
2049 In [4]: foo()\\
2049 In [4]: foo()\\
2050 foo() has now been changed!
2050 foo() has now been changed!
2051
2051
2052 Here is an example of how to edit a code snippet successive
2052 Here is an example of how to edit a code snippet successive
2053 times. First we call the editor:
2053 times. First we call the editor:
2054
2054
2055 In [8]: ed\\
2055 In [8]: ed\\
2056 Editing... done. Executing edited code...\\
2056 Editing... done. Executing edited code...\\
2057 hello\\
2057 hello\\
2058 Out[8]: "print 'hello'\\n"
2058 Out[8]: "print 'hello'\\n"
2059
2059
2060 Now we call it again with the previous output (stored in _):
2060 Now we call it again with the previous output (stored in _):
2061
2061
2062 In [9]: ed _\\
2062 In [9]: ed _\\
2063 Editing... done. Executing edited code...\\
2063 Editing... done. Executing edited code...\\
2064 hello world\\
2064 hello world\\
2065 Out[9]: "print 'hello world'\\n"
2065 Out[9]: "print 'hello world'\\n"
2066
2066
2067 Now we call it with the output #8 (stored in _8, also as Out[8]):
2067 Now we call it with the output #8 (stored in _8, also as Out[8]):
2068
2068
2069 In [10]: ed _8\\
2069 In [10]: ed _8\\
2070 Editing... done. Executing edited code...\\
2070 Editing... done. Executing edited code...\\
2071 hello again\\
2071 hello again\\
2072 Out[10]: "print 'hello again'\\n"
2072 Out[10]: "print 'hello again'\\n"
2073
2073
2074
2074
2075 Changing the default editor hook:
2075 Changing the default editor hook:
2076
2076
2077 If you wish to write your own editor hook, you can put it in a
2077 If you wish to write your own editor hook, you can put it in a
2078 configuration file which you load at startup time. The default hook
2078 configuration file which you load at startup time. The default hook
2079 is defined in the IPython.hooks module, and you can use that as a
2079 is defined in the IPython.hooks module, and you can use that as a
2080 starting example for further modifications. That file also has
2080 starting example for further modifications. That file also has
2081 general instructions on how to set a new hook for use once you've
2081 general instructions on how to set a new hook for use once you've
2082 defined it."""
2082 defined it."""
2083
2083
2084 # FIXME: This function has become a convoluted mess. It needs a
2084 # FIXME: This function has become a convoluted mess. It needs a
2085 # ground-up rewrite with clean, simple logic.
2085 # ground-up rewrite with clean, simple logic.
2086
2086
2087 def make_filename(arg):
2087 def make_filename(arg):
2088 "Make a filename from the given args"
2088 "Make a filename from the given args"
2089 try:
2089 try:
2090 filename = get_py_filename(arg)
2090 filename = get_py_filename(arg)
2091 except IOError:
2091 except IOError:
2092 if args.endswith('.py'):
2092 if args.endswith('.py'):
2093 filename = arg
2093 filename = arg
2094 else:
2094 else:
2095 filename = None
2095 filename = None
2096 return filename
2096 return filename
2097
2097
2098 # custom exceptions
2098 # custom exceptions
2099 class DataIsObject(Exception): pass
2099 class DataIsObject(Exception): pass
2100
2100
2101 opts,args = self.parse_options(parameter_s,'prxn:')
2101 opts,args = self.parse_options(parameter_s,'prxn:')
2102 # Set a few locals from the options for convenience:
2102 # Set a few locals from the options for convenience:
2103 opts_p = opts.has_key('p')
2103 opts_p = opts.has_key('p')
2104 opts_r = opts.has_key('r')
2104 opts_r = opts.has_key('r')
2105
2105
2106 # Default line number value
2106 # Default line number value
2107 lineno = opts.get('n',None)
2107 lineno = opts.get('n',None)
2108
2108
2109 if opts_p:
2109 if opts_p:
2110 args = '_%s' % last_call[0]
2110 args = '_%s' % last_call[0]
2111 if not self.shell.user_ns.has_key(args):
2111 if not self.shell.user_ns.has_key(args):
2112 args = last_call[1]
2112 args = last_call[1]
2113
2113
2114 # use last_call to remember the state of the previous call, but don't
2114 # use last_call to remember the state of the previous call, but don't
2115 # let it be clobbered by successive '-p' calls.
2115 # let it be clobbered by successive '-p' calls.
2116 try:
2116 try:
2117 last_call[0] = self.shell.outputcache.prompt_count
2117 last_call[0] = self.shell.outputcache.prompt_count
2118 if not opts_p:
2118 if not opts_p:
2119 last_call[1] = parameter_s
2119 last_call[1] = parameter_s
2120 except:
2120 except:
2121 pass
2121 pass
2122
2122
2123 # by default this is done with temp files, except when the given
2123 # by default this is done with temp files, except when the given
2124 # arg is a filename
2124 # arg is a filename
2125 use_temp = 1
2125 use_temp = 1
2126
2126
2127 if re.match(r'\d',args):
2127 if re.match(r'\d',args):
2128 # Mode where user specifies ranges of lines, like in %macro.
2128 # Mode where user specifies ranges of lines, like in %macro.
2129 # This means that you can't edit files whose names begin with
2129 # This means that you can't edit files whose names begin with
2130 # numbers this way. Tough.
2130 # numbers this way. Tough.
2131 ranges = args.split()
2131 ranges = args.split()
2132 data = ''.join(self.extract_input_slices(ranges,opts_r))
2132 data = ''.join(self.extract_input_slices(ranges,opts_r))
2133 elif args.endswith('.py'):
2133 elif args.endswith('.py'):
2134 filename = make_filename(args)
2134 filename = make_filename(args)
2135 data = ''
2135 data = ''
2136 use_temp = 0
2136 use_temp = 0
2137 elif args:
2137 elif args:
2138 try:
2138 try:
2139 # Load the parameter given as a variable. If not a string,
2139 # Load the parameter given as a variable. If not a string,
2140 # process it as an object instead (below)
2140 # process it as an object instead (below)
2141
2141
2142 #print '*** args',args,'type',type(args) # dbg
2142 #print '*** args',args,'type',type(args) # dbg
2143 data = eval(args,self.shell.user_ns)
2143 data = eval(args,self.shell.user_ns)
2144 if not type(data) in StringTypes:
2144 if not type(data) in StringTypes:
2145 raise DataIsObject
2145 raise DataIsObject
2146
2146
2147 except (NameError,SyntaxError):
2147 except (NameError,SyntaxError):
2148 # given argument is not a variable, try as a filename
2148 # given argument is not a variable, try as a filename
2149 filename = make_filename(args)
2149 filename = make_filename(args)
2150 if filename is None:
2150 if filename is None:
2151 warn("Argument given (%s) can't be found as a variable "
2151 warn("Argument given (%s) can't be found as a variable "
2152 "or as a filename." % args)
2152 "or as a filename." % args)
2153 return
2153 return
2154
2154
2155 data = ''
2155 data = ''
2156 use_temp = 0
2156 use_temp = 0
2157 except DataIsObject:
2157 except DataIsObject:
2158
2158
2159 # macros have a special edit function
2159 # macros have a special edit function
2160 if isinstance(data,Macro):
2160 if isinstance(data,Macro):
2161 self._edit_macro(args,data)
2161 self._edit_macro(args,data)
2162 return
2162 return
2163
2163
2164 # For objects, try to edit the file where they are defined
2164 # For objects, try to edit the file where they are defined
2165 try:
2165 try:
2166 filename = inspect.getabsfile(data)
2166 filename = inspect.getabsfile(data)
2167 datafile = 1
2167 datafile = 1
2168 except TypeError:
2168 except TypeError:
2169 filename = make_filename(args)
2169 filename = make_filename(args)
2170 datafile = 1
2170 datafile = 1
2171 warn('Could not find file where `%s` is defined.\n'
2171 warn('Could not find file where `%s` is defined.\n'
2172 'Opening a file named `%s`' % (args,filename))
2172 'Opening a file named `%s`' % (args,filename))
2173 # Now, make sure we can actually read the source (if it was in
2173 # Now, make sure we can actually read the source (if it was in
2174 # a temp file it's gone by now).
2174 # a temp file it's gone by now).
2175 if datafile:
2175 if datafile:
2176 try:
2176 try:
2177 if lineno is None:
2177 if lineno is None:
2178 lineno = inspect.getsourcelines(data)[1]
2178 lineno = inspect.getsourcelines(data)[1]
2179 except IOError:
2179 except IOError:
2180 filename = make_filename(args)
2180 filename = make_filename(args)
2181 if filename is None:
2181 if filename is None:
2182 warn('The file `%s` where `%s` was defined cannot '
2182 warn('The file `%s` where `%s` was defined cannot '
2183 'be read.' % (filename,data))
2183 'be read.' % (filename,data))
2184 return
2184 return
2185 use_temp = 0
2185 use_temp = 0
2186 else:
2186 else:
2187 data = ''
2187 data = ''
2188
2188
2189 if use_temp:
2189 if use_temp:
2190 filename = self.shell.mktempfile(data)
2190 filename = self.shell.mktempfile(data)
2191 print 'IPython will make a temporary file named:',filename
2191 print 'IPython will make a temporary file named:',filename
2192
2192
2193 # do actual editing here
2193 # do actual editing here
2194 print 'Editing...',
2194 print 'Editing...',
2195 sys.stdout.flush()
2195 sys.stdout.flush()
2196 self.shell.hooks.editor(filename,lineno)
2196 self.shell.hooks.editor(filename,lineno)
2197 if opts.has_key('x'): # -x prevents actual execution
2197 if opts.has_key('x'): # -x prevents actual execution
2198 print
2198 print
2199 else:
2199 else:
2200 print 'done. Executing edited code...'
2200 print 'done. Executing edited code...'
2201 if opts_r:
2201 if opts_r:
2202 self.shell.runlines(file_read(filename))
2202 self.shell.runlines(file_read(filename))
2203 else:
2203 else:
2204 self.shell.safe_execfile(filename,self.shell.user_ns)
2204 self.shell.safe_execfile(filename,self.shell.user_ns)
2205 if use_temp:
2205 if use_temp:
2206 try:
2206 try:
2207 return open(filename).read()
2207 return open(filename).read()
2208 except IOError,msg:
2208 except IOError,msg:
2209 if msg.filename == filename:
2209 if msg.filename == filename:
2210 warn('File not found. Did you forget to save?')
2210 warn('File not found. Did you forget to save?')
2211 return
2211 return
2212 else:
2212 else:
2213 self.shell.showtraceback()
2213 self.shell.showtraceback()
2214
2214
2215 def magic_xmode(self,parameter_s = ''):
2215 def magic_xmode(self,parameter_s = ''):
2216 """Switch modes for the exception handlers.
2216 """Switch modes for the exception handlers.
2217
2217
2218 Valid modes: Plain, Context and Verbose.
2218 Valid modes: Plain, Context and Verbose.
2219
2219
2220 If called without arguments, acts as a toggle."""
2220 If called without arguments, acts as a toggle."""
2221
2221
2222 def xmode_switch_err(name):
2222 def xmode_switch_err(name):
2223 warn('Error changing %s exception modes.\n%s' %
2223 warn('Error changing %s exception modes.\n%s' %
2224 (name,sys.exc_info()[1]))
2224 (name,sys.exc_info()[1]))
2225
2225
2226 shell = self.shell
2226 shell = self.shell
2227 new_mode = parameter_s.strip().capitalize()
2227 new_mode = parameter_s.strip().capitalize()
2228 try:
2228 try:
2229 shell.InteractiveTB.set_mode(mode=new_mode)
2229 shell.InteractiveTB.set_mode(mode=new_mode)
2230 print 'Exception reporting mode:',shell.InteractiveTB.mode
2230 print 'Exception reporting mode:',shell.InteractiveTB.mode
2231 except:
2231 except:
2232 xmode_switch_err('user')
2232 xmode_switch_err('user')
2233
2233
2234 # threaded shells use a special handler in sys.excepthook
2234 # threaded shells use a special handler in sys.excepthook
2235 if shell.isthreaded:
2235 if shell.isthreaded:
2236 try:
2236 try:
2237 shell.sys_excepthook.set_mode(mode=new_mode)
2237 shell.sys_excepthook.set_mode(mode=new_mode)
2238 except:
2238 except:
2239 xmode_switch_err('threaded')
2239 xmode_switch_err('threaded')
2240
2240
2241 def magic_colors(self,parameter_s = ''):
2241 def magic_colors(self,parameter_s = ''):
2242 """Switch color scheme for prompts, info system and exception handlers.
2242 """Switch color scheme for prompts, info system and exception handlers.
2243
2243
2244 Currently implemented schemes: NoColor, Linux, LightBG.
2244 Currently implemented schemes: NoColor, Linux, LightBG.
2245
2245
2246 Color scheme names are not case-sensitive."""
2246 Color scheme names are not case-sensitive."""
2247
2247
2248 def color_switch_err(name):
2248 def color_switch_err(name):
2249 warn('Error changing %s color schemes.\n%s' %
2249 warn('Error changing %s color schemes.\n%s' %
2250 (name,sys.exc_info()[1]))
2250 (name,sys.exc_info()[1]))
2251
2251
2252
2252
2253 new_scheme = parameter_s.strip()
2253 new_scheme = parameter_s.strip()
2254 if not new_scheme:
2254 if not new_scheme:
2255 print 'You must specify a color scheme.'
2255 print 'You must specify a color scheme.'
2256 return
2256 return
2257 import IPython.rlineimpl as readline
2257 import IPython.rlineimpl as readline
2258 if not readline.have_readline:
2258 if not readline.have_readline:
2259 msg = """\
2259 msg = """\
2260 Proper color support under MS Windows requires the pyreadline library.
2260 Proper color support under MS Windows requires the pyreadline library.
2261 You can find it at:
2261 You can find it at:
2262 http://ipython.scipy.org/moin/PyReadline/Intro
2262 http://ipython.scipy.org/moin/PyReadline/Intro
2263 Gary's readline needs the ctypes module, from:
2263 Gary's readline needs the ctypes module, from:
2264 http://starship.python.net/crew/theller/ctypes
2264 http://starship.python.net/crew/theller/ctypes
2265 (Note that ctypes is already part of Python versions 2.5 and newer).
2265 (Note that ctypes is already part of Python versions 2.5 and newer).
2266
2266
2267 Defaulting color scheme to 'NoColor'"""
2267 Defaulting color scheme to 'NoColor'"""
2268 new_scheme = 'NoColor'
2268 new_scheme = 'NoColor'
2269 warn(msg)
2269 warn(msg)
2270 # local shortcut
2270 # local shortcut
2271 shell = self.shell
2271 shell = self.shell
2272
2272
2273 # Set prompt colors
2273 # Set prompt colors
2274 try:
2274 try:
2275 shell.outputcache.set_colors(new_scheme)
2275 shell.outputcache.set_colors(new_scheme)
2276 except:
2276 except:
2277 color_switch_err('prompt')
2277 color_switch_err('prompt')
2278 else:
2278 else:
2279 shell.rc.colors = \
2279 shell.rc.colors = \
2280 shell.outputcache.color_table.active_scheme_name
2280 shell.outputcache.color_table.active_scheme_name
2281 # Set exception colors
2281 # Set exception colors
2282 try:
2282 try:
2283 shell.InteractiveTB.set_colors(scheme = new_scheme)
2283 shell.InteractiveTB.set_colors(scheme = new_scheme)
2284 shell.SyntaxTB.set_colors(scheme = new_scheme)
2284 shell.SyntaxTB.set_colors(scheme = new_scheme)
2285 except:
2285 except:
2286 color_switch_err('exception')
2286 color_switch_err('exception')
2287
2287
2288 # threaded shells use a verbose traceback in sys.excepthook
2288 # threaded shells use a verbose traceback in sys.excepthook
2289 if shell.isthreaded:
2289 if shell.isthreaded:
2290 try:
2290 try:
2291 shell.sys_excepthook.set_colors(scheme=new_scheme)
2291 shell.sys_excepthook.set_colors(scheme=new_scheme)
2292 except:
2292 except:
2293 color_switch_err('system exception handler')
2293 color_switch_err('system exception handler')
2294
2294
2295 # Set info (for 'object?') colors
2295 # Set info (for 'object?') colors
2296 if shell.rc.color_info:
2296 if shell.rc.color_info:
2297 try:
2297 try:
2298 shell.inspector.set_active_scheme(new_scheme)
2298 shell.inspector.set_active_scheme(new_scheme)
2299 except:
2299 except:
2300 color_switch_err('object inspector')
2300 color_switch_err('object inspector')
2301 else:
2301 else:
2302 shell.inspector.set_active_scheme('NoColor')
2302 shell.inspector.set_active_scheme('NoColor')
2303
2303
2304 def magic_color_info(self,parameter_s = ''):
2304 def magic_color_info(self,parameter_s = ''):
2305 """Toggle color_info.
2305 """Toggle color_info.
2306
2306
2307 The color_info configuration parameter controls whether colors are
2307 The color_info configuration parameter controls whether colors are
2308 used for displaying object details (by things like %psource, %pfile or
2308 used for displaying object details (by things like %psource, %pfile or
2309 the '?' system). This function toggles this value with each call.
2309 the '?' system). This function toggles this value with each call.
2310
2310
2311 Note that unless you have a fairly recent pager (less works better
2311 Note that unless you have a fairly recent pager (less works better
2312 than more) in your system, using colored object information displays
2312 than more) in your system, using colored object information displays
2313 will not work properly. Test it and see."""
2313 will not work properly. Test it and see."""
2314
2314
2315 self.shell.rc.color_info = 1 - self.shell.rc.color_info
2315 self.shell.rc.color_info = 1 - self.shell.rc.color_info
2316 self.magic_colors(self.shell.rc.colors)
2316 self.magic_colors(self.shell.rc.colors)
2317 print 'Object introspection functions have now coloring:',
2317 print 'Object introspection functions have now coloring:',
2318 print ['OFF','ON'][self.shell.rc.color_info]
2318 print ['OFF','ON'][self.shell.rc.color_info]
2319
2319
2320 def magic_Pprint(self, parameter_s=''):
2320 def magic_Pprint(self, parameter_s=''):
2321 """Toggle pretty printing on/off."""
2321 """Toggle pretty printing on/off."""
2322
2322
2323 self.shell.rc.pprint = 1 - self.shell.rc.pprint
2323 self.shell.rc.pprint = 1 - self.shell.rc.pprint
2324 print 'Pretty printing has been turned', \
2324 print 'Pretty printing has been turned', \
2325 ['OFF','ON'][self.shell.rc.pprint]
2325 ['OFF','ON'][self.shell.rc.pprint]
2326
2326
2327 def magic_exit(self, parameter_s=''):
2327 def magic_exit(self, parameter_s=''):
2328 """Exit IPython, confirming if configured to do so.
2328 """Exit IPython, confirming if configured to do so.
2329
2329
2330 You can configure whether IPython asks for confirmation upon exit by
2330 You can configure whether IPython asks for confirmation upon exit by
2331 setting the confirm_exit flag in the ipythonrc file."""
2331 setting the confirm_exit flag in the ipythonrc file."""
2332
2332
2333 self.shell.exit()
2333 self.shell.exit()
2334
2334
2335 def magic_quit(self, parameter_s=''):
2335 def magic_quit(self, parameter_s=''):
2336 """Exit IPython, confirming if configured to do so (like %exit)"""
2336 """Exit IPython, confirming if configured to do so (like %exit)"""
2337
2337
2338 self.shell.exit()
2338 self.shell.exit()
2339
2339
2340 def magic_Exit(self, parameter_s=''):
2340 def magic_Exit(self, parameter_s=''):
2341 """Exit IPython without confirmation."""
2341 """Exit IPython without confirmation."""
2342
2342
2343 self.shell.exit_now = True
2343 self.shell.exit_now = True
2344
2344
2345 def magic_Quit(self, parameter_s=''):
2345 def magic_Quit(self, parameter_s=''):
2346 """Exit IPython without confirmation (like %Exit)."""
2346 """Exit IPython without confirmation (like %Exit)."""
2347
2347
2348 self.shell.exit_now = True
2348 self.shell.exit_now = True
2349
2349
2350 #......................................................................
2350 #......................................................................
2351 # Functions to implement unix shell-type things
2351 # Functions to implement unix shell-type things
2352
2352
2353 def magic_alias(self, parameter_s = ''):
2353 def magic_alias(self, parameter_s = ''):
2354 """Define an alias for a system command.
2354 """Define an alias for a system command.
2355
2355
2356 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2356 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2357
2357
2358 Then, typing 'alias_name params' will execute the system command 'cmd
2358 Then, typing 'alias_name params' will execute the system command 'cmd
2359 params' (from your underlying operating system).
2359 params' (from your underlying operating system).
2360
2360
2361 Aliases have lower precedence than magic functions and Python normal
2361 Aliases have lower precedence than magic functions and Python normal
2362 variables, so if 'foo' is both a Python variable and an alias, the
2362 variables, so if 'foo' is both a Python variable and an alias, the
2363 alias can not be executed until 'del foo' removes the Python variable.
2363 alias can not be executed until 'del foo' removes the Python variable.
2364
2364
2365 You can use the %l specifier in an alias definition to represent the
2365 You can use the %l specifier in an alias definition to represent the
2366 whole line when the alias is called. For example:
2366 whole line when the alias is called. For example:
2367
2367
2368 In [2]: alias all echo "Input in brackets: <%l>"\\
2368 In [2]: alias all echo "Input in brackets: <%l>"\\
2369 In [3]: all hello world\\
2369 In [3]: all hello world\\
2370 Input in brackets: <hello world>
2370 Input in brackets: <hello world>
2371
2371
2372 You can also define aliases with parameters using %s specifiers (one
2372 You can also define aliases with parameters using %s specifiers (one
2373 per parameter):
2373 per parameter):
2374
2374
2375 In [1]: alias parts echo first %s second %s\\
2375 In [1]: alias parts echo first %s second %s\\
2376 In [2]: %parts A B\\
2376 In [2]: %parts A B\\
2377 first A second B\\
2377 first A second B\\
2378 In [3]: %parts A\\
2378 In [3]: %parts A\\
2379 Incorrect number of arguments: 2 expected.\\
2379 Incorrect number of arguments: 2 expected.\\
2380 parts is an alias to: 'echo first %s second %s'
2380 parts is an alias to: 'echo first %s second %s'
2381
2381
2382 Note that %l and %s are mutually exclusive. You can only use one or
2382 Note that %l and %s are mutually exclusive. You can only use one or
2383 the other in your aliases.
2383 the other in your aliases.
2384
2384
2385 Aliases expand Python variables just like system calls using ! or !!
2385 Aliases expand Python variables just like system calls using ! or !!
2386 do: all expressions prefixed with '$' get expanded. For details of
2386 do: all expressions prefixed with '$' get expanded. For details of
2387 the semantic rules, see PEP-215:
2387 the semantic rules, see PEP-215:
2388 http://www.python.org/peps/pep-0215.html. This is the library used by
2388 http://www.python.org/peps/pep-0215.html. This is the library used by
2389 IPython for variable expansion. If you want to access a true shell
2389 IPython for variable expansion. If you want to access a true shell
2390 variable, an extra $ is necessary to prevent its expansion by IPython:
2390 variable, an extra $ is necessary to prevent its expansion by IPython:
2391
2391
2392 In [6]: alias show echo\\
2392 In [6]: alias show echo\\
2393 In [7]: PATH='A Python string'\\
2393 In [7]: PATH='A Python string'\\
2394 In [8]: show $PATH\\
2394 In [8]: show $PATH\\
2395 A Python string\\
2395 A Python string\\
2396 In [9]: show $$PATH\\
2396 In [9]: show $$PATH\\
2397 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2397 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2398
2398
2399 You can use the alias facility to acess all of $PATH. See the %rehash
2399 You can use the alias facility to acess all of $PATH. See the %rehash
2400 and %rehashx functions, which automatically create aliases for the
2400 and %rehashx functions, which automatically create aliases for the
2401 contents of your $PATH.
2401 contents of your $PATH.
2402
2402
2403 If called with no parameters, %alias prints the current alias table."""
2403 If called with no parameters, %alias prints the current alias table."""
2404
2404
2405 par = parameter_s.strip()
2405 par = parameter_s.strip()
2406 if not par:
2406 if not par:
2407 stored = self.db.get('stored_aliases', {} )
2407 stored = self.db.get('stored_aliases', {} )
2408 atab = self.shell.alias_table
2408 atab = self.shell.alias_table
2409 aliases = atab.keys()
2409 aliases = atab.keys()
2410 aliases.sort()
2410 aliases.sort()
2411 res = []
2411 res = []
2412 showlast = []
2412 showlast = []
2413 for alias in aliases:
2413 for alias in aliases:
2414 tgt = atab[alias][1]
2414 tgt = atab[alias][1]
2415 # 'interesting' aliases
2415 # 'interesting' aliases
2416 if (alias in stored or
2416 if (alias in stored or
2417 alias != os.path.splitext(tgt)[0] or
2417 alias != os.path.splitext(tgt)[0] or
2418 ' ' in tgt):
2418 ' ' in tgt):
2419 showlast.append((alias, tgt))
2419 showlast.append((alias, tgt))
2420 else:
2420 else:
2421 res.append((alias, tgt ))
2421 res.append((alias, tgt ))
2422
2422
2423 # show most interesting aliases last
2423 # show most interesting aliases last
2424 res.extend(showlast)
2424 res.extend(showlast)
2425 print "Total number of aliases:",len(aliases)
2425 print "Total number of aliases:",len(aliases)
2426 return res
2426 return res
2427 try:
2427 try:
2428 alias,cmd = par.split(None,1)
2428 alias,cmd = par.split(None,1)
2429 except:
2429 except:
2430 print OInspect.getdoc(self.magic_alias)
2430 print OInspect.getdoc(self.magic_alias)
2431 else:
2431 else:
2432 nargs = cmd.count('%s')
2432 nargs = cmd.count('%s')
2433 if nargs>0 and cmd.find('%l')>=0:
2433 if nargs>0 and cmd.find('%l')>=0:
2434 error('The %s and %l specifiers are mutually exclusive '
2434 error('The %s and %l specifiers are mutually exclusive '
2435 'in alias definitions.')
2435 'in alias definitions.')
2436 else: # all looks OK
2436 else: # all looks OK
2437 self.shell.alias_table[alias] = (nargs,cmd)
2437 self.shell.alias_table[alias] = (nargs,cmd)
2438 self.shell.alias_table_validate(verbose=0)
2438 self.shell.alias_table_validate(verbose=0)
2439 # end magic_alias
2439 # end magic_alias
2440
2440
2441 def magic_unalias(self, parameter_s = ''):
2441 def magic_unalias(self, parameter_s = ''):
2442 """Remove an alias"""
2442 """Remove an alias"""
2443
2443
2444 aname = parameter_s.strip()
2444 aname = parameter_s.strip()
2445 if aname in self.shell.alias_table:
2445 if aname in self.shell.alias_table:
2446 del self.shell.alias_table[aname]
2446 del self.shell.alias_table[aname]
2447 stored = self.db.get('stored_aliases', {} )
2447 stored = self.db.get('stored_aliases', {} )
2448 if aname in stored:
2448 if aname in stored:
2449 print "Removing %stored alias",aname
2449 print "Removing %stored alias",aname
2450 del stored[aname]
2450 del stored[aname]
2451 self.db['stored_aliases'] = stored
2451 self.db['stored_aliases'] = stored
2452
2452
2453 def magic_rehash(self, parameter_s = ''):
2453 def magic_rehash(self, parameter_s = ''):
2454 """Update the alias table with all entries in $PATH.
2454 """Update the alias table with all entries in $PATH.
2455
2455
2456 This version does no checks on execute permissions or whether the
2456 This version does no checks on execute permissions or whether the
2457 contents of $PATH are truly files (instead of directories or something
2457 contents of $PATH are truly files (instead of directories or something
2458 else). For such a safer (but slower) version, use %rehashx."""
2458 else). For such a safer (but slower) version, use %rehashx."""
2459
2459
2460 # This function (and rehashx) manipulate the alias_table directly
2460 # This function (and rehashx) manipulate the alias_table directly
2461 # rather than calling magic_alias, for speed reasons. A rehash on a
2461 # rather than calling magic_alias, for speed reasons. A rehash on a
2462 # typical Linux box involves several thousand entries, so efficiency
2462 # typical Linux box involves several thousand entries, so efficiency
2463 # here is a top concern.
2463 # here is a top concern.
2464
2464
2465 path = filter(os.path.isdir,os.environ['PATH'].split(os.pathsep))
2465 path = filter(os.path.isdir,os.environ['PATH'].split(os.pathsep))
2466 alias_table = self.shell.alias_table
2466 alias_table = self.shell.alias_table
2467 for pdir in path:
2467 for pdir in path:
2468 for ff in os.listdir(pdir):
2468 for ff in os.listdir(pdir):
2469 # each entry in the alias table must be (N,name), where
2469 # each entry in the alias table must be (N,name), where
2470 # N is the number of positional arguments of the alias.
2470 # N is the number of positional arguments of the alias.
2471 alias_table[ff] = (0,ff)
2471 alias_table[ff] = (0,ff)
2472 # Make sure the alias table doesn't contain keywords or builtins
2472 # Make sure the alias table doesn't contain keywords or builtins
2473 self.shell.alias_table_validate()
2473 self.shell.alias_table_validate()
2474 # Call again init_auto_alias() so we get 'rm -i' and other modified
2474 # Call again init_auto_alias() so we get 'rm -i' and other modified
2475 # aliases since %rehash will probably clobber them
2475 # aliases since %rehash will probably clobber them
2476 self.shell.init_auto_alias()
2476 self.shell.init_auto_alias()
2477
2477
2478 def magic_rehashx(self, parameter_s = ''):
2478 def magic_rehashx(self, parameter_s = ''):
2479 """Update the alias table with all executable files in $PATH.
2479 """Update the alias table with all executable files in $PATH.
2480
2480
2481 This version explicitly checks that every entry in $PATH is a file
2481 This version explicitly checks that every entry in $PATH is a file
2482 with execute access (os.X_OK), so it is much slower than %rehash.
2482 with execute access (os.X_OK), so it is much slower than %rehash.
2483
2483
2484 Under Windows, it checks executability as a match agains a
2484 Under Windows, it checks executability as a match agains a
2485 '|'-separated string of extensions, stored in the IPython config
2485 '|'-separated string of extensions, stored in the IPython config
2486 variable win_exec_ext. This defaults to 'exe|com|bat'. """
2486 variable win_exec_ext. This defaults to 'exe|com|bat'. """
2487
2487
2488 path = [os.path.abspath(os.path.expanduser(p)) for p in
2488 path = [os.path.abspath(os.path.expanduser(p)) for p in
2489 os.environ['PATH'].split(os.pathsep)]
2489 os.environ['PATH'].split(os.pathsep)]
2490 path = filter(os.path.isdir,path)
2490 path = filter(os.path.isdir,path)
2491
2491
2492 alias_table = self.shell.alias_table
2492 alias_table = self.shell.alias_table
2493 syscmdlist = []
2493 syscmdlist = []
2494 if os.name == 'posix':
2494 if os.name == 'posix':
2495 isexec = lambda fname:os.path.isfile(fname) and \
2495 isexec = lambda fname:os.path.isfile(fname) and \
2496 os.access(fname,os.X_OK)
2496 os.access(fname,os.X_OK)
2497 else:
2497 else:
2498
2498
2499 try:
2499 try:
2500 winext = os.environ['pathext'].replace(';','|').replace('.','')
2500 winext = os.environ['pathext'].replace(';','|').replace('.','')
2501 except KeyError:
2501 except KeyError:
2502 winext = 'exe|com|bat|py'
2502 winext = 'exe|com|bat|py'
2503 if 'py' not in winext:
2503 if 'py' not in winext:
2504 winext += '|py'
2504 winext += '|py'
2505 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2505 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2506 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2506 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2507 savedir = os.getcwd()
2507 savedir = os.getcwd()
2508 try:
2508 try:
2509 # write the whole loop for posix/Windows so we don't have an if in
2509 # write the whole loop for posix/Windows so we don't have an if in
2510 # the innermost part
2510 # the innermost part
2511 if os.name == 'posix':
2511 if os.name == 'posix':
2512 for pdir in path:
2512 for pdir in path:
2513 os.chdir(pdir)
2513 os.chdir(pdir)
2514 for ff in os.listdir(pdir):
2514 for ff in os.listdir(pdir):
2515 if isexec(ff) and ff not in self.shell.no_alias:
2515 if isexec(ff) and ff not in self.shell.no_alias:
2516 # each entry in the alias table must be (N,name),
2516 # each entry in the alias table must be (N,name),
2517 # where N is the number of positional arguments of the
2517 # where N is the number of positional arguments of the
2518 # alias.
2518 # alias.
2519 alias_table[ff] = (0,ff)
2519 alias_table[ff] = (0,ff)
2520 syscmdlist.append(ff)
2520 syscmdlist.append(ff)
2521 else:
2521 else:
2522 for pdir in path:
2522 for pdir in path:
2523 os.chdir(pdir)
2523 os.chdir(pdir)
2524 for ff in os.listdir(pdir):
2524 for ff in os.listdir(pdir):
2525 base, ext = os.path.splitext(ff)
2525 base, ext = os.path.splitext(ff)
2526 if isexec(ff) and base not in self.shell.no_alias:
2526 if isexec(ff) and base not in self.shell.no_alias:
2527 if ext.lower() == '.exe':
2527 if ext.lower() == '.exe':
2528 ff = base
2528 ff = base
2529 alias_table[base] = (0,ff)
2529 alias_table[base] = (0,ff)
2530 syscmdlist.append(ff)
2530 syscmdlist.append(ff)
2531 # Make sure the alias table doesn't contain keywords or builtins
2531 # Make sure the alias table doesn't contain keywords or builtins
2532 self.shell.alias_table_validate()
2532 self.shell.alias_table_validate()
2533 # Call again init_auto_alias() so we get 'rm -i' and other
2533 # Call again init_auto_alias() so we get 'rm -i' and other
2534 # modified aliases since %rehashx will probably clobber them
2534 # modified aliases since %rehashx will probably clobber them
2535 self.shell.init_auto_alias()
2535 self.shell.init_auto_alias()
2536 db = self.getapi().db
2536 db = self.getapi().db
2537 db['syscmdlist'] = syscmdlist
2537 db['syscmdlist'] = syscmdlist
2538 finally:
2538 finally:
2539 os.chdir(savedir)
2539 os.chdir(savedir)
2540
2540
2541 def magic_pwd(self, parameter_s = ''):
2541 def magic_pwd(self, parameter_s = ''):
2542 """Return the current working directory path."""
2542 """Return the current working directory path."""
2543 return os.getcwd()
2543 return os.getcwd()
2544
2544
2545 def magic_cd(self, parameter_s=''):
2545 def magic_cd(self, parameter_s=''):
2546 """Change the current working directory.
2546 """Change the current working directory.
2547
2547
2548 This command automatically maintains an internal list of directories
2548 This command automatically maintains an internal list of directories
2549 you visit during your IPython session, in the variable _dh. The
2549 you visit during your IPython session, in the variable _dh. The
2550 command %dhist shows this history nicely formatted. You can also
2550 command %dhist shows this history nicely formatted. You can also
2551 do 'cd -<tab>' to see directory history conveniently.
2551 do 'cd -<tab>' to see directory history conveniently.
2552
2552
2553 Usage:
2553 Usage:
2554
2554
2555 cd 'dir': changes to directory 'dir'.
2555 cd 'dir': changes to directory 'dir'.
2556
2556
2557 cd -: changes to the last visited directory.
2557 cd -: changes to the last visited directory.
2558
2558
2559 cd -<n>: changes to the n-th directory in the directory history.
2559 cd -<n>: changes to the n-th directory in the directory history.
2560
2560
2561 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2561 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2562 (note: cd <bookmark_name> is enough if there is no
2562 (note: cd <bookmark_name> is enough if there is no
2563 directory <bookmark_name>, but a bookmark with the name exists.)
2563 directory <bookmark_name>, but a bookmark with the name exists.)
2564 'cd -b <tab>' allows you to tab-complete bookmark names.
2564 'cd -b <tab>' allows you to tab-complete bookmark names.
2565
2565
2566 Options:
2566 Options:
2567
2567
2568 -q: quiet. Do not print the working directory after the cd command is
2568 -q: quiet. Do not print the working directory after the cd command is
2569 executed. By default IPython's cd command does print this directory,
2569 executed. By default IPython's cd command does print this directory,
2570 since the default prompts do not display path information.
2570 since the default prompts do not display path information.
2571
2571
2572 Note that !cd doesn't work for this purpose because the shell where
2572 Note that !cd doesn't work for this purpose because the shell where
2573 !command runs is immediately discarded after executing 'command'."""
2573 !command runs is immediately discarded after executing 'command'."""
2574
2574
2575 parameter_s = parameter_s.strip()
2575 parameter_s = parameter_s.strip()
2576 #bkms = self.shell.persist.get("bookmarks",{})
2576 #bkms = self.shell.persist.get("bookmarks",{})
2577
2577
2578 numcd = re.match(r'(-)(\d+)$',parameter_s)
2578 numcd = re.match(r'(-)(\d+)$',parameter_s)
2579 # jump in directory history by number
2579 # jump in directory history by number
2580 if numcd:
2580 if numcd:
2581 nn = int(numcd.group(2))
2581 nn = int(numcd.group(2))
2582 try:
2582 try:
2583 ps = self.shell.user_ns['_dh'][nn]
2583 ps = self.shell.user_ns['_dh'][nn]
2584 except IndexError:
2584 except IndexError:
2585 print 'The requested directory does not exist in history.'
2585 print 'The requested directory does not exist in history.'
2586 return
2586 return
2587 else:
2587 else:
2588 opts = {}
2588 opts = {}
2589 else:
2589 else:
2590 #turn all non-space-escaping backslashes to slashes,
2590 #turn all non-space-escaping backslashes to slashes,
2591 # for c:\windows\directory\names\
2591 # for c:\windows\directory\names\
2592 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2592 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2593 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2593 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2594 # jump to previous
2594 # jump to previous
2595 if ps == '-':
2595 if ps == '-':
2596 try:
2596 try:
2597 ps = self.shell.user_ns['_dh'][-2]
2597 ps = self.shell.user_ns['_dh'][-2]
2598 except IndexError:
2598 except IndexError:
2599 print 'No previous directory to change to.'
2599 print 'No previous directory to change to.'
2600 return
2600 return
2601 # jump to bookmark if needed
2601 # jump to bookmark if needed
2602 else:
2602 else:
2603 if not os.path.isdir(ps) or opts.has_key('b'):
2603 if not os.path.isdir(ps) or opts.has_key('b'):
2604 bkms = self.db.get('bookmarks', {})
2604 bkms = self.db.get('bookmarks', {})
2605
2605
2606 if bkms.has_key(ps):
2606 if bkms.has_key(ps):
2607 target = bkms[ps]
2607 target = bkms[ps]
2608 print '(bookmark:%s) -> %s' % (ps,target)
2608 print '(bookmark:%s) -> %s' % (ps,target)
2609 ps = target
2609 ps = target
2610 else:
2610 else:
2611 if opts.has_key('b'):
2611 if opts.has_key('b'):
2612 error("Bookmark '%s' not found. "
2612 error("Bookmark '%s' not found. "
2613 "Use '%%bookmark -l' to see your bookmarks." % ps)
2613 "Use '%%bookmark -l' to see your bookmarks." % ps)
2614 return
2614 return
2615
2615
2616 # at this point ps should point to the target dir
2616 # at this point ps should point to the target dir
2617 if ps:
2617 if ps:
2618 try:
2618 try:
2619 os.chdir(os.path.expanduser(ps))
2619 os.chdir(os.path.expanduser(ps))
2620 ttitle = ("IPy:" + (
2620 if self.shell.rc.term_title:
2621 os.getcwd() == '/' and '/' or os.path.basename(os.getcwd())))
2621 #print 'set term title:',self.shell.rc.term_title # dbg
2622 platutils.set_term_title(ttitle)
2622 ttitle = ("IPy:" + (
2623 os.getcwd() == '/' and '/' or \
2624 os.path.basename(os.getcwd())))
2625 platutils.set_term_title(ttitle)
2623 except OSError:
2626 except OSError:
2624 print sys.exc_info()[1]
2627 print sys.exc_info()[1]
2625 else:
2628 else:
2626 self.shell.user_ns['_dh'].append(os.getcwd())
2629 self.shell.user_ns['_dh'].append(os.getcwd())
2627 else:
2630 else:
2628 os.chdir(self.shell.home_dir)
2631 os.chdir(self.shell.home_dir)
2629 platutils.set_term_title("IPy:~")
2632 if self.shell.rc.term_title:
2633 platutils.set_term_title("IPy:~")
2630 self.shell.user_ns['_dh'].append(os.getcwd())
2634 self.shell.user_ns['_dh'].append(os.getcwd())
2631 if not 'q' in opts:
2635 if not 'q' in opts:
2632 print self.shell.user_ns['_dh'][-1]
2636 print self.shell.user_ns['_dh'][-1]
2633
2637
2634 def magic_dhist(self, parameter_s=''):
2638 def magic_dhist(self, parameter_s=''):
2635 """Print your history of visited directories.
2639 """Print your history of visited directories.
2636
2640
2637 %dhist -> print full history\\
2641 %dhist -> print full history\\
2638 %dhist n -> print last n entries only\\
2642 %dhist n -> print last n entries only\\
2639 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2643 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2640
2644
2641 This history is automatically maintained by the %cd command, and
2645 This history is automatically maintained by the %cd command, and
2642 always available as the global list variable _dh. You can use %cd -<n>
2646 always available as the global list variable _dh. You can use %cd -<n>
2643 to go to directory number <n>."""
2647 to go to directory number <n>."""
2644
2648
2645 dh = self.shell.user_ns['_dh']
2649 dh = self.shell.user_ns['_dh']
2646 if parameter_s:
2650 if parameter_s:
2647 try:
2651 try:
2648 args = map(int,parameter_s.split())
2652 args = map(int,parameter_s.split())
2649 except:
2653 except:
2650 self.arg_err(Magic.magic_dhist)
2654 self.arg_err(Magic.magic_dhist)
2651 return
2655 return
2652 if len(args) == 1:
2656 if len(args) == 1:
2653 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2657 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2654 elif len(args) == 2:
2658 elif len(args) == 2:
2655 ini,fin = args
2659 ini,fin = args
2656 else:
2660 else:
2657 self.arg_err(Magic.magic_dhist)
2661 self.arg_err(Magic.magic_dhist)
2658 return
2662 return
2659 else:
2663 else:
2660 ini,fin = 0,len(dh)
2664 ini,fin = 0,len(dh)
2661 nlprint(dh,
2665 nlprint(dh,
2662 header = 'Directory history (kept in _dh)',
2666 header = 'Directory history (kept in _dh)',
2663 start=ini,stop=fin)
2667 start=ini,stop=fin)
2664
2668
2665 def magic_env(self, parameter_s=''):
2669 def magic_env(self, parameter_s=''):
2666 """List environment variables."""
2670 """List environment variables."""
2667
2671
2668 return os.environ.data
2672 return os.environ.data
2669
2673
2670 def magic_pushd(self, parameter_s=''):
2674 def magic_pushd(self, parameter_s=''):
2671 """Place the current dir on stack and change directory.
2675 """Place the current dir on stack and change directory.
2672
2676
2673 Usage:\\
2677 Usage:\\
2674 %pushd ['dirname']
2678 %pushd ['dirname']
2675
2679
2676 %pushd with no arguments does a %pushd to your home directory.
2680 %pushd with no arguments does a %pushd to your home directory.
2677 """
2681 """
2678 if parameter_s == '': parameter_s = '~'
2682 if parameter_s == '': parameter_s = '~'
2679 dir_s = self.shell.dir_stack
2683 dir_s = self.shell.dir_stack
2680 if len(dir_s)>0 and os.path.expanduser(parameter_s) != \
2684 if len(dir_s)>0 and os.path.expanduser(parameter_s) != \
2681 os.path.expanduser(self.shell.dir_stack[0]):
2685 os.path.expanduser(self.shell.dir_stack[0]):
2682 try:
2686 try:
2683 self.magic_cd(parameter_s)
2687 self.magic_cd(parameter_s)
2684 dir_s.insert(0,os.getcwd().replace(self.home_dir,'~'))
2688 dir_s.insert(0,os.getcwd().replace(self.home_dir,'~'))
2685 self.magic_dirs()
2689 self.magic_dirs()
2686 except:
2690 except:
2687 print 'Invalid directory'
2691 print 'Invalid directory'
2688 else:
2692 else:
2689 print 'You are already there!'
2693 print 'You are already there!'
2690
2694
2691 def magic_popd(self, parameter_s=''):
2695 def magic_popd(self, parameter_s=''):
2692 """Change to directory popped off the top of the stack.
2696 """Change to directory popped off the top of the stack.
2693 """
2697 """
2694 if len (self.shell.dir_stack) > 1:
2698 if len (self.shell.dir_stack) > 1:
2695 self.shell.dir_stack.pop(0)
2699 self.shell.dir_stack.pop(0)
2696 self.magic_cd(self.shell.dir_stack[0])
2700 self.magic_cd(self.shell.dir_stack[0])
2697 print self.shell.dir_stack[0]
2701 print self.shell.dir_stack[0]
2698 else:
2702 else:
2699 print "You can't remove the starting directory from the stack:",\
2703 print "You can't remove the starting directory from the stack:",\
2700 self.shell.dir_stack
2704 self.shell.dir_stack
2701
2705
2702 def magic_dirs(self, parameter_s=''):
2706 def magic_dirs(self, parameter_s=''):
2703 """Return the current directory stack."""
2707 """Return the current directory stack."""
2704
2708
2705 return self.shell.dir_stack[:]
2709 return self.shell.dir_stack[:]
2706
2710
2707 def magic_sc(self, parameter_s=''):
2711 def magic_sc(self, parameter_s=''):
2708 """Shell capture - execute a shell command and capture its output.
2712 """Shell capture - execute a shell command and capture its output.
2709
2713
2710 DEPRECATED. Suboptimal, retained for backwards compatibility.
2714 DEPRECATED. Suboptimal, retained for backwards compatibility.
2711
2715
2712 You should use the form 'var = !command' instead. Example:
2716 You should use the form 'var = !command' instead. Example:
2713
2717
2714 "%sc -l myfiles = ls ~" should now be written as
2718 "%sc -l myfiles = ls ~" should now be written as
2715
2719
2716 "myfiles = !ls ~"
2720 "myfiles = !ls ~"
2717
2721
2718 myfiles.s, myfiles.l and myfiles.n still apply as documented
2722 myfiles.s, myfiles.l and myfiles.n still apply as documented
2719 below.
2723 below.
2720
2724
2721 --
2725 --
2722 %sc [options] varname=command
2726 %sc [options] varname=command
2723
2727
2724 IPython will run the given command using commands.getoutput(), and
2728 IPython will run the given command using commands.getoutput(), and
2725 will then update the user's interactive namespace with a variable
2729 will then update the user's interactive namespace with a variable
2726 called varname, containing the value of the call. Your command can
2730 called varname, containing the value of the call. Your command can
2727 contain shell wildcards, pipes, etc.
2731 contain shell wildcards, pipes, etc.
2728
2732
2729 The '=' sign in the syntax is mandatory, and the variable name you
2733 The '=' sign in the syntax is mandatory, and the variable name you
2730 supply must follow Python's standard conventions for valid names.
2734 supply must follow Python's standard conventions for valid names.
2731
2735
2732 (A special format without variable name exists for internal use)
2736 (A special format without variable name exists for internal use)
2733
2737
2734 Options:
2738 Options:
2735
2739
2736 -l: list output. Split the output on newlines into a list before
2740 -l: list output. Split the output on newlines into a list before
2737 assigning it to the given variable. By default the output is stored
2741 assigning it to the given variable. By default the output is stored
2738 as a single string.
2742 as a single string.
2739
2743
2740 -v: verbose. Print the contents of the variable.
2744 -v: verbose. Print the contents of the variable.
2741
2745
2742 In most cases you should not need to split as a list, because the
2746 In most cases you should not need to split as a list, because the
2743 returned value is a special type of string which can automatically
2747 returned value is a special type of string which can automatically
2744 provide its contents either as a list (split on newlines) or as a
2748 provide its contents either as a list (split on newlines) or as a
2745 space-separated string. These are convenient, respectively, either
2749 space-separated string. These are convenient, respectively, either
2746 for sequential processing or to be passed to a shell command.
2750 for sequential processing or to be passed to a shell command.
2747
2751
2748 For example:
2752 For example:
2749
2753
2750 # Capture into variable a
2754 # Capture into variable a
2751 In [9]: sc a=ls *py
2755 In [9]: sc a=ls *py
2752
2756
2753 # a is a string with embedded newlines
2757 # a is a string with embedded newlines
2754 In [10]: a
2758 In [10]: a
2755 Out[10]: 'setup.py\nwin32_manual_post_install.py'
2759 Out[10]: 'setup.py\nwin32_manual_post_install.py'
2756
2760
2757 # which can be seen as a list:
2761 # which can be seen as a list:
2758 In [11]: a.l
2762 In [11]: a.l
2759 Out[11]: ['setup.py', 'win32_manual_post_install.py']
2763 Out[11]: ['setup.py', 'win32_manual_post_install.py']
2760
2764
2761 # or as a whitespace-separated string:
2765 # or as a whitespace-separated string:
2762 In [12]: a.s
2766 In [12]: a.s
2763 Out[12]: 'setup.py win32_manual_post_install.py'
2767 Out[12]: 'setup.py win32_manual_post_install.py'
2764
2768
2765 # a.s is useful to pass as a single command line:
2769 # a.s is useful to pass as a single command line:
2766 In [13]: !wc -l $a.s
2770 In [13]: !wc -l $a.s
2767 146 setup.py
2771 146 setup.py
2768 130 win32_manual_post_install.py
2772 130 win32_manual_post_install.py
2769 276 total
2773 276 total
2770
2774
2771 # while the list form is useful to loop over:
2775 # while the list form is useful to loop over:
2772 In [14]: for f in a.l:
2776 In [14]: for f in a.l:
2773 ....: !wc -l $f
2777 ....: !wc -l $f
2774 ....:
2778 ....:
2775 146 setup.py
2779 146 setup.py
2776 130 win32_manual_post_install.py
2780 130 win32_manual_post_install.py
2777
2781
2778 Similiarly, the lists returned by the -l option are also special, in
2782 Similiarly, the lists returned by the -l option are also special, in
2779 the sense that you can equally invoke the .s attribute on them to
2783 the sense that you can equally invoke the .s attribute on them to
2780 automatically get a whitespace-separated string from their contents:
2784 automatically get a whitespace-separated string from their contents:
2781
2785
2782 In [1]: sc -l b=ls *py
2786 In [1]: sc -l b=ls *py
2783
2787
2784 In [2]: b
2788 In [2]: b
2785 Out[2]: ['setup.py', 'win32_manual_post_install.py']
2789 Out[2]: ['setup.py', 'win32_manual_post_install.py']
2786
2790
2787 In [3]: b.s
2791 In [3]: b.s
2788 Out[3]: 'setup.py win32_manual_post_install.py'
2792 Out[3]: 'setup.py win32_manual_post_install.py'
2789
2793
2790 In summary, both the lists and strings used for ouptut capture have
2794 In summary, both the lists and strings used for ouptut capture have
2791 the following special attributes:
2795 the following special attributes:
2792
2796
2793 .l (or .list) : value as list.
2797 .l (or .list) : value as list.
2794 .n (or .nlstr): value as newline-separated string.
2798 .n (or .nlstr): value as newline-separated string.
2795 .s (or .spstr): value as space-separated string.
2799 .s (or .spstr): value as space-separated string.
2796 """
2800 """
2797
2801
2798 opts,args = self.parse_options(parameter_s,'lv')
2802 opts,args = self.parse_options(parameter_s,'lv')
2799 # Try to get a variable name and command to run
2803 # Try to get a variable name and command to run
2800 try:
2804 try:
2801 # the variable name must be obtained from the parse_options
2805 # the variable name must be obtained from the parse_options
2802 # output, which uses shlex.split to strip options out.
2806 # output, which uses shlex.split to strip options out.
2803 var,_ = args.split('=',1)
2807 var,_ = args.split('=',1)
2804 var = var.strip()
2808 var = var.strip()
2805 # But the the command has to be extracted from the original input
2809 # But the the command has to be extracted from the original input
2806 # parameter_s, not on what parse_options returns, to avoid the
2810 # parameter_s, not on what parse_options returns, to avoid the
2807 # quote stripping which shlex.split performs on it.
2811 # quote stripping which shlex.split performs on it.
2808 _,cmd = parameter_s.split('=',1)
2812 _,cmd = parameter_s.split('=',1)
2809 except ValueError:
2813 except ValueError:
2810 var,cmd = '',''
2814 var,cmd = '',''
2811 # If all looks ok, proceed
2815 # If all looks ok, proceed
2812 out,err = self.shell.getoutputerror(cmd)
2816 out,err = self.shell.getoutputerror(cmd)
2813 if err:
2817 if err:
2814 print >> Term.cerr,err
2818 print >> Term.cerr,err
2815 if opts.has_key('l'):
2819 if opts.has_key('l'):
2816 out = SList(out.split('\n'))
2820 out = SList(out.split('\n'))
2817 else:
2821 else:
2818 out = LSString(out)
2822 out = LSString(out)
2819 if opts.has_key('v'):
2823 if opts.has_key('v'):
2820 print '%s ==\n%s' % (var,pformat(out))
2824 print '%s ==\n%s' % (var,pformat(out))
2821 if var:
2825 if var:
2822 self.shell.user_ns.update({var:out})
2826 self.shell.user_ns.update({var:out})
2823 else:
2827 else:
2824 return out
2828 return out
2825
2829
2826 def magic_sx(self, parameter_s=''):
2830 def magic_sx(self, parameter_s=''):
2827 """Shell execute - run a shell command and capture its output.
2831 """Shell execute - run a shell command and capture its output.
2828
2832
2829 %sx command
2833 %sx command
2830
2834
2831 IPython will run the given command using commands.getoutput(), and
2835 IPython will run the given command using commands.getoutput(), and
2832 return the result formatted as a list (split on '\\n'). Since the
2836 return the result formatted as a list (split on '\\n'). Since the
2833 output is _returned_, it will be stored in ipython's regular output
2837 output is _returned_, it will be stored in ipython's regular output
2834 cache Out[N] and in the '_N' automatic variables.
2838 cache Out[N] and in the '_N' automatic variables.
2835
2839
2836 Notes:
2840 Notes:
2837
2841
2838 1) If an input line begins with '!!', then %sx is automatically
2842 1) If an input line begins with '!!', then %sx is automatically
2839 invoked. That is, while:
2843 invoked. That is, while:
2840 !ls
2844 !ls
2841 causes ipython to simply issue system('ls'), typing
2845 causes ipython to simply issue system('ls'), typing
2842 !!ls
2846 !!ls
2843 is a shorthand equivalent to:
2847 is a shorthand equivalent to:
2844 %sx ls
2848 %sx ls
2845
2849
2846 2) %sx differs from %sc in that %sx automatically splits into a list,
2850 2) %sx differs from %sc in that %sx automatically splits into a list,
2847 like '%sc -l'. The reason for this is to make it as easy as possible
2851 like '%sc -l'. The reason for this is to make it as easy as possible
2848 to process line-oriented shell output via further python commands.
2852 to process line-oriented shell output via further python commands.
2849 %sc is meant to provide much finer control, but requires more
2853 %sc is meant to provide much finer control, but requires more
2850 typing.
2854 typing.
2851
2855
2852 3) Just like %sc -l, this is a list with special attributes:
2856 3) Just like %sc -l, this is a list with special attributes:
2853
2857
2854 .l (or .list) : value as list.
2858 .l (or .list) : value as list.
2855 .n (or .nlstr): value as newline-separated string.
2859 .n (or .nlstr): value as newline-separated string.
2856 .s (or .spstr): value as whitespace-separated string.
2860 .s (or .spstr): value as whitespace-separated string.
2857
2861
2858 This is very useful when trying to use such lists as arguments to
2862 This is very useful when trying to use such lists as arguments to
2859 system commands."""
2863 system commands."""
2860
2864
2861 if parameter_s:
2865 if parameter_s:
2862 out,err = self.shell.getoutputerror(parameter_s)
2866 out,err = self.shell.getoutputerror(parameter_s)
2863 if err:
2867 if err:
2864 print >> Term.cerr,err
2868 print >> Term.cerr,err
2865 return SList(out.split('\n'))
2869 return SList(out.split('\n'))
2866
2870
2867 def magic_bg(self, parameter_s=''):
2871 def magic_bg(self, parameter_s=''):
2868 """Run a job in the background, in a separate thread.
2872 """Run a job in the background, in a separate thread.
2869
2873
2870 For example,
2874 For example,
2871
2875
2872 %bg myfunc(x,y,z=1)
2876 %bg myfunc(x,y,z=1)
2873
2877
2874 will execute 'myfunc(x,y,z=1)' in a background thread. As soon as the
2878 will execute 'myfunc(x,y,z=1)' in a background thread. As soon as the
2875 execution starts, a message will be printed indicating the job
2879 execution starts, a message will be printed indicating the job
2876 number. If your job number is 5, you can use
2880 number. If your job number is 5, you can use
2877
2881
2878 myvar = jobs.result(5) or myvar = jobs[5].result
2882 myvar = jobs.result(5) or myvar = jobs[5].result
2879
2883
2880 to assign this result to variable 'myvar'.
2884 to assign this result to variable 'myvar'.
2881
2885
2882 IPython has a job manager, accessible via the 'jobs' object. You can
2886 IPython has a job manager, accessible via the 'jobs' object. You can
2883 type jobs? to get more information about it, and use jobs.<TAB> to see
2887 type jobs? to get more information about it, and use jobs.<TAB> to see
2884 its attributes. All attributes not starting with an underscore are
2888 its attributes. All attributes not starting with an underscore are
2885 meant for public use.
2889 meant for public use.
2886
2890
2887 In particular, look at the jobs.new() method, which is used to create
2891 In particular, look at the jobs.new() method, which is used to create
2888 new jobs. This magic %bg function is just a convenience wrapper
2892 new jobs. This magic %bg function is just a convenience wrapper
2889 around jobs.new(), for expression-based jobs. If you want to create a
2893 around jobs.new(), for expression-based jobs. If you want to create a
2890 new job with an explicit function object and arguments, you must call
2894 new job with an explicit function object and arguments, you must call
2891 jobs.new() directly.
2895 jobs.new() directly.
2892
2896
2893 The jobs.new docstring also describes in detail several important
2897 The jobs.new docstring also describes in detail several important
2894 caveats associated with a thread-based model for background job
2898 caveats associated with a thread-based model for background job
2895 execution. Type jobs.new? for details.
2899 execution. Type jobs.new? for details.
2896
2900
2897 You can check the status of all jobs with jobs.status().
2901 You can check the status of all jobs with jobs.status().
2898
2902
2899 The jobs variable is set by IPython into the Python builtin namespace.
2903 The jobs variable is set by IPython into the Python builtin namespace.
2900 If you ever declare a variable named 'jobs', you will shadow this
2904 If you ever declare a variable named 'jobs', you will shadow this
2901 name. You can either delete your global jobs variable to regain
2905 name. You can either delete your global jobs variable to regain
2902 access to the job manager, or make a new name and assign it manually
2906 access to the job manager, or make a new name and assign it manually
2903 to the manager (stored in IPython's namespace). For example, to
2907 to the manager (stored in IPython's namespace). For example, to
2904 assign the job manager to the Jobs name, use:
2908 assign the job manager to the Jobs name, use:
2905
2909
2906 Jobs = __builtins__.jobs"""
2910 Jobs = __builtins__.jobs"""
2907
2911
2908 self.shell.jobs.new(parameter_s,self.shell.user_ns)
2912 self.shell.jobs.new(parameter_s,self.shell.user_ns)
2909
2913
2910
2914
2911 def magic_bookmark(self, parameter_s=''):
2915 def magic_bookmark(self, parameter_s=''):
2912 """Manage IPython's bookmark system.
2916 """Manage IPython's bookmark system.
2913
2917
2914 %bookmark <name> - set bookmark to current dir
2918 %bookmark <name> - set bookmark to current dir
2915 %bookmark <name> <dir> - set bookmark to <dir>
2919 %bookmark <name> <dir> - set bookmark to <dir>
2916 %bookmark -l - list all bookmarks
2920 %bookmark -l - list all bookmarks
2917 %bookmark -d <name> - remove bookmark
2921 %bookmark -d <name> - remove bookmark
2918 %bookmark -r - remove all bookmarks
2922 %bookmark -r - remove all bookmarks
2919
2923
2920 You can later on access a bookmarked folder with:
2924 You can later on access a bookmarked folder with:
2921 %cd -b <name>
2925 %cd -b <name>
2922 or simply '%cd <name>' if there is no directory called <name> AND
2926 or simply '%cd <name>' if there is no directory called <name> AND
2923 there is such a bookmark defined.
2927 there is such a bookmark defined.
2924
2928
2925 Your bookmarks persist through IPython sessions, but they are
2929 Your bookmarks persist through IPython sessions, but they are
2926 associated with each profile."""
2930 associated with each profile."""
2927
2931
2928 opts,args = self.parse_options(parameter_s,'drl',mode='list')
2932 opts,args = self.parse_options(parameter_s,'drl',mode='list')
2929 if len(args) > 2:
2933 if len(args) > 2:
2930 error('You can only give at most two arguments')
2934 error('You can only give at most two arguments')
2931 return
2935 return
2932
2936
2933 bkms = self.db.get('bookmarks',{})
2937 bkms = self.db.get('bookmarks',{})
2934
2938
2935 if opts.has_key('d'):
2939 if opts.has_key('d'):
2936 try:
2940 try:
2937 todel = args[0]
2941 todel = args[0]
2938 except IndexError:
2942 except IndexError:
2939 error('You must provide a bookmark to delete')
2943 error('You must provide a bookmark to delete')
2940 else:
2944 else:
2941 try:
2945 try:
2942 del bkms[todel]
2946 del bkms[todel]
2943 except:
2947 except:
2944 error("Can't delete bookmark '%s'" % todel)
2948 error("Can't delete bookmark '%s'" % todel)
2945 elif opts.has_key('r'):
2949 elif opts.has_key('r'):
2946 bkms = {}
2950 bkms = {}
2947 elif opts.has_key('l'):
2951 elif opts.has_key('l'):
2948 bks = bkms.keys()
2952 bks = bkms.keys()
2949 bks.sort()
2953 bks.sort()
2950 if bks:
2954 if bks:
2951 size = max(map(len,bks))
2955 size = max(map(len,bks))
2952 else:
2956 else:
2953 size = 0
2957 size = 0
2954 fmt = '%-'+str(size)+'s -> %s'
2958 fmt = '%-'+str(size)+'s -> %s'
2955 print 'Current bookmarks:'
2959 print 'Current bookmarks:'
2956 for bk in bks:
2960 for bk in bks:
2957 print fmt % (bk,bkms[bk])
2961 print fmt % (bk,bkms[bk])
2958 else:
2962 else:
2959 if not args:
2963 if not args:
2960 error("You must specify the bookmark name")
2964 error("You must specify the bookmark name")
2961 elif len(args)==1:
2965 elif len(args)==1:
2962 bkms[args[0]] = os.getcwd()
2966 bkms[args[0]] = os.getcwd()
2963 elif len(args)==2:
2967 elif len(args)==2:
2964 bkms[args[0]] = args[1]
2968 bkms[args[0]] = args[1]
2965 self.db['bookmarks'] = bkms
2969 self.db['bookmarks'] = bkms
2966
2970
2967 def magic_pycat(self, parameter_s=''):
2971 def magic_pycat(self, parameter_s=''):
2968 """Show a syntax-highlighted file through a pager.
2972 """Show a syntax-highlighted file through a pager.
2969
2973
2970 This magic is similar to the cat utility, but it will assume the file
2974 This magic is similar to the cat utility, but it will assume the file
2971 to be Python source and will show it with syntax highlighting. """
2975 to be Python source and will show it with syntax highlighting. """
2972
2976
2973 try:
2977 try:
2974 filename = get_py_filename(parameter_s)
2978 filename = get_py_filename(parameter_s)
2975 cont = file_read(filename)
2979 cont = file_read(filename)
2976 except IOError:
2980 except IOError:
2977 try:
2981 try:
2978 cont = eval(parameter_s,self.user_ns)
2982 cont = eval(parameter_s,self.user_ns)
2979 except NameError:
2983 except NameError:
2980 cont = None
2984 cont = None
2981 if cont is None:
2985 if cont is None:
2982 print "Error: no such file or variable"
2986 print "Error: no such file or variable"
2983 return
2987 return
2984
2988
2985 page(self.shell.pycolorize(cont),
2989 page(self.shell.pycolorize(cont),
2986 screen_lines=self.shell.rc.screen_length)
2990 screen_lines=self.shell.rc.screen_length)
2987
2991
2988 def magic_cpaste(self, parameter_s=''):
2992 def magic_cpaste(self, parameter_s=''):
2989 """Allows you to paste & execute a pre-formatted code block from clipboard
2993 """Allows you to paste & execute a pre-formatted code block from clipboard
2990
2994
2991 You must terminate the block with '--' (two minus-signs) alone on the
2995 You must terminate the block with '--' (two minus-signs) alone on the
2992 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
2996 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
2993 is the new sentinel for this operation)
2997 is the new sentinel for this operation)
2994
2998
2995 The block is dedented prior to execution to enable execution of
2999 The block is dedented prior to execution to enable execution of
2996 method definitions. '>' characters at the beginning of a line is
3000 method definitions. '>' characters at the beginning of a line is
2997 ignored, to allow pasting directly from e-mails. The executed block
3001 ignored, to allow pasting directly from e-mails. The executed block
2998 is also assigned to variable named 'pasted_block' for later editing
3002 is also assigned to variable named 'pasted_block' for later editing
2999 with '%edit pasted_block'.
3003 with '%edit pasted_block'.
3000
3004
3001 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
3005 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
3002 This assigns the pasted block to variable 'foo' as string, without
3006 This assigns the pasted block to variable 'foo' as string, without
3003 dedenting or executing it.
3007 dedenting or executing it.
3004
3008
3005 Do not be alarmed by garbled output on Windows (it's a readline bug).
3009 Do not be alarmed by garbled output on Windows (it's a readline bug).
3006 Just press enter and type -- (and press enter again) and the block
3010 Just press enter and type -- (and press enter again) and the block
3007 will be what was just pasted.
3011 will be what was just pasted.
3008
3012
3009 IPython statements (magics, shell escapes) are not supported (yet).
3013 IPython statements (magics, shell escapes) are not supported (yet).
3010 """
3014 """
3011 opts,args = self.parse_options(parameter_s,'s:',mode='string')
3015 opts,args = self.parse_options(parameter_s,'s:',mode='string')
3012 par = args.strip()
3016 par = args.strip()
3013 sentinel = opts.get('s','--')
3017 sentinel = opts.get('s','--')
3014
3018
3015 from IPython import iplib
3019 from IPython import iplib
3016 lines = []
3020 lines = []
3017 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3021 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3018 while 1:
3022 while 1:
3019 l = iplib.raw_input_original(':')
3023 l = iplib.raw_input_original(':')
3020 if l ==sentinel:
3024 if l ==sentinel:
3021 break
3025 break
3022 lines.append(l.lstrip('>'))
3026 lines.append(l.lstrip('>'))
3023 block = "\n".join(lines) + '\n'
3027 block = "\n".join(lines) + '\n'
3024 #print "block:\n",block
3028 #print "block:\n",block
3025 if not par:
3029 if not par:
3026 b = textwrap.dedent(block)
3030 b = textwrap.dedent(block)
3027 exec b in self.user_ns
3031 exec b in self.user_ns
3028 self.user_ns['pasted_block'] = b
3032 self.user_ns['pasted_block'] = b
3029 else:
3033 else:
3030 self.user_ns[par] = block
3034 self.user_ns[par] = block
3031 print "Block assigned to '%s'" % par
3035 print "Block assigned to '%s'" % par
3032
3036
3033 def magic_quickref(self,arg):
3037 def magic_quickref(self,arg):
3034 """ Show a quick reference sheet """
3038 """ Show a quick reference sheet """
3035 import IPython.usage
3039 import IPython.usage
3036 qr = IPython.usage.quick_reference + self.magic_magic('-brief')
3040 qr = IPython.usage.quick_reference + self.magic_magic('-brief')
3037
3041
3038 page(qr)
3042 page(qr)
3039
3043
3040 def magic_upgrade(self,arg):
3044 def magic_upgrade(self,arg):
3041 """ Upgrade your IPython installation
3045 """ Upgrade your IPython installation
3042
3046
3043 This will copy the config files that don't yet exist in your
3047 This will copy the config files that don't yet exist in your
3044 ipython dir from the system config dir. Use this after upgrading
3048 ipython dir from the system config dir. Use this after upgrading
3045 IPython if you don't wish to delete your .ipython dir.
3049 IPython if you don't wish to delete your .ipython dir.
3046
3050
3047 Call with -nolegacy to get rid of ipythonrc* files (recommended for
3051 Call with -nolegacy to get rid of ipythonrc* files (recommended for
3048 new users)
3052 new users)
3049
3053
3050 """
3054 """
3051 ip = self.getapi()
3055 ip = self.getapi()
3052 ipinstallation = path(IPython.__file__).dirname()
3056 ipinstallation = path(IPython.__file__).dirname()
3053 upgrade_script = '%s "%s"' % (sys.executable,ipinstallation / 'upgrade_dir.py')
3057 upgrade_script = '%s "%s"' % (sys.executable,ipinstallation / 'upgrade_dir.py')
3054 src_config = ipinstallation / 'UserConfig'
3058 src_config = ipinstallation / 'UserConfig'
3055 userdir = path(ip.options.ipythondir)
3059 userdir = path(ip.options.ipythondir)
3056 cmd = '%s "%s" "%s"' % (upgrade_script, src_config, userdir)
3060 cmd = '%s "%s" "%s"' % (upgrade_script, src_config, userdir)
3057 print ">",cmd
3061 print ">",cmd
3058 shell(cmd)
3062 shell(cmd)
3059 if arg == '-nolegacy':
3063 if arg == '-nolegacy':
3060 legacy = userdir.files('ipythonrc*')
3064 legacy = userdir.files('ipythonrc*')
3061 print "Nuking legacy files:",legacy
3065 print "Nuking legacy files:",legacy
3062
3066
3063 [p.remove() for p in legacy]
3067 [p.remove() for p in legacy]
3064 suffix = (sys.platform == 'win32' and '.ini' or '')
3068 suffix = (sys.platform == 'win32' and '.ini' or '')
3065 (userdir / ('ipythonrc' + suffix)).write_text('# Empty, see ipy_user_conf.py\n')
3069 (userdir / ('ipythonrc' + suffix)).write_text('# Empty, see ipy_user_conf.py\n')
3066
3070
3067
3071
3068 # end Magic
3072 # end Magic
@@ -1,419 +1,467 b''
1 """Module for interactive demos using IPython.
1 """Module for interactive demos using IPython.
2
2
3 This module implements a few classes for running Python scripts interactively
3 This module implements a few classes for running Python scripts interactively
4 in IPython for demonstrations. With very simple markup (a few tags in
4 in IPython for demonstrations. With very simple markup (a few tags in
5 comments), you can control points where the script stops executing and returns
5 comments), you can control points where the script stops executing and returns
6 control to IPython.
6 control to IPython.
7
7
8
9 Provided classes
10 ================
11
8 The classes are (see their docstrings for further details):
12 The classes are (see their docstrings for further details):
9
13
10 - Demo: pure python demos
14 - Demo: pure python demos
11
15
12 - IPythonDemo: demos with input to be processed by IPython as if it had been
16 - IPythonDemo: demos with input to be processed by IPython as if it had been
13 typed interactively (so magics work, as well as any other special syntax you
17 typed interactively (so magics work, as well as any other special syntax you
14 may have added via input prefilters).
18 may have added via input prefilters).
15
19
16 - LineDemo: single-line version of the Demo class. These demos are executed
20 - LineDemo: single-line version of the Demo class. These demos are executed
17 one line at a time, and require no markup.
21 one line at a time, and require no markup.
18
22
19 - IPythonLineDemo: IPython version of the LineDemo class (the demo is
23 - IPythonLineDemo: IPython version of the LineDemo class (the demo is
20 executed a line at a time, but processed via IPython).
24 executed a line at a time, but processed via IPython).
21
25
22
26
27 Subclassing
28 ===========
29
30 The classes here all include a few methods meant to make customization by
31 subclassing more convenient. Their docstrings below have some more details:
32
33 - marquee(): generates a marquee to provide visible on-screen markers at each
34 block start and end.
35
36 - pre_cmd(): run right before the execution of each block.
37
38 - pre_cmd(): run right after the execution of each block. If the block
39 raises an exception, this is NOT called.
40
41
42 Operation
43 =========
44
23 The file is run in its own empty namespace (though you can pass it a string of
45 The file is run in its own empty namespace (though you can pass it a string of
24 arguments as if in a command line environment, and it will see those as
46 arguments as if in a command line environment, and it will see those as
25 sys.argv). But at each stop, the global IPython namespace is updated with the
47 sys.argv). But at each stop, the global IPython namespace is updated with the
26 current internal demo namespace, so you can work interactively with the data
48 current internal demo namespace, so you can work interactively with the data
27 accumulated so far.
49 accumulated so far.
28
50
29 By default, each block of code is printed (with syntax highlighting) before
51 By default, each block of code is printed (with syntax highlighting) before
30 executing it and you have to confirm execution. This is intended to show the
52 executing it and you have to confirm execution. This is intended to show the
31 code to an audience first so you can discuss it, and only proceed with
53 code to an audience first so you can discuss it, and only proceed with
32 execution once you agree. There are a few tags which allow you to modify this
54 execution once you agree. There are a few tags which allow you to modify this
33 behavior.
55 behavior.
34
56
35 The supported tags are:
57 The supported tags are:
36
58
37 # <demo> --- stop ---
59 # <demo> --- stop ---
38
60
39 Defines block boundaries, the points where IPython stops execution of the
61 Defines block boundaries, the points where IPython stops execution of the
40 file and returns to the interactive prompt.
62 file and returns to the interactive prompt.
41
63
42 # <demo> silent
64 # <demo> silent
43
65
44 Make a block execute silently (and hence automatically). Typically used in
66 Make a block execute silently (and hence automatically). Typically used in
45 cases where you have some boilerplate or initialization code which you need
67 cases where you have some boilerplate or initialization code which you need
46 executed but do not want to be seen in the demo.
68 executed but do not want to be seen in the demo.
47
69
48 # <demo> auto
70 # <demo> auto
49
71
50 Make a block execute automatically, but still being printed. Useful for
72 Make a block execute automatically, but still being printed. Useful for
51 simple code which does not warrant discussion, since it avoids the extra
73 simple code which does not warrant discussion, since it avoids the extra
52 manual confirmation.
74 manual confirmation.
53
75
54 # <demo> auto_all
76 # <demo> auto_all
55
77
56 This tag can _only_ be in the first block, and if given it overrides the
78 This tag can _only_ be in the first block, and if given it overrides the
57 individual auto tags to make the whole demo fully automatic (no block asks
79 individual auto tags to make the whole demo fully automatic (no block asks
58 for confirmation). It can also be given at creation time (or the attribute
80 for confirmation). It can also be given at creation time (or the attribute
59 set later) to override what's in the file.
81 set later) to override what's in the file.
60
82
61 While _any_ python file can be run as a Demo instance, if there are no stop
83 While _any_ python file can be run as a Demo instance, if there are no stop
62 tags the whole file will run in a single block (no different that calling
84 tags the whole file will run in a single block (no different that calling
63 first %pycat and then %run). The minimal markup to make this useful is to
85 first %pycat and then %run). The minimal markup to make this useful is to
64 place a set of stop tags; the other tags are only there to let you fine-tune
86 place a set of stop tags; the other tags are only there to let you fine-tune
65 the execution.
87 the execution.
66
88
67 This is probably best explained with the simple example file below. You can
89 This is probably best explained with the simple example file below. You can
68 copy this into a file named ex_demo.py, and try running it via:
90 copy this into a file named ex_demo.py, and try running it via:
69
91
70 from IPython.demo import Demo
92 from IPython.demo import Demo
71 d = Demo('ex_demo.py')
93 d = Demo('ex_demo.py')
72 d() <--- Call the d object (omit the parens if you have autocall set to 2).
94 d() <--- Call the d object (omit the parens if you have autocall set to 2).
73
95
74 Each time you call the demo object, it runs the next block. The demo object
96 Each time you call the demo object, it runs the next block. The demo object
75 has a few useful methods for navigation, like again(), edit(), jump(), seek()
97 has a few useful methods for navigation, like again(), edit(), jump(), seek()
76 and back(). It can be reset for a new run via reset() or reloaded from disk
98 and back(). It can be reset for a new run via reset() or reloaded from disk
77 (in case you've edited the source) via reload(). See their docstrings below.
99 (in case you've edited the source) via reload(). See their docstrings below.
78
100
101
102 Example
103 =======
104
105 The following is a very simple example of a valid demo file.
106
79 #################### EXAMPLE DEMO <ex_demo.py> ###############################
107 #################### EXAMPLE DEMO <ex_demo.py> ###############################
80 '''A simple interactive demo to illustrate the use of IPython's Demo class.'''
108 '''A simple interactive demo to illustrate the use of IPython's Demo class.'''
81
109
82 print 'Hello, welcome to an interactive IPython demo.'
110 print 'Hello, welcome to an interactive IPython demo.'
83
111
84 # The mark below defines a block boundary, which is a point where IPython will
112 # The mark below defines a block boundary, which is a point where IPython will
85 # stop execution and return to the interactive prompt.
113 # stop execution and return to the interactive prompt.
86 # Note that in actual interactive execution,
114 # Note that in actual interactive execution,
87 # <demo> --- stop ---
115 # <demo> --- stop ---
88
116
89 x = 1
117 x = 1
90 y = 2
118 y = 2
91
119
92 # <demo> --- stop ---
120 # <demo> --- stop ---
93
121
94 # the mark below makes this block as silent
122 # the mark below makes this block as silent
95 # <demo> silent
123 # <demo> silent
96
124
97 print 'This is a silent block, which gets executed but not printed.'
125 print 'This is a silent block, which gets executed but not printed.'
98
126
99 # <demo> --- stop ---
127 # <demo> --- stop ---
100 # <demo> auto
128 # <demo> auto
101 print 'This is an automatic block.'
129 print 'This is an automatic block.'
102 print 'It is executed without asking for confirmation, but printed.'
130 print 'It is executed without asking for confirmation, but printed.'
103 z = x+y
131 z = x+y
104
132
105 print 'z=',x
133 print 'z=',x
106
134
107 # <demo> --- stop ---
135 # <demo> --- stop ---
108 # This is just another normal block.
136 # This is just another normal block.
109 print 'z is now:', z
137 print 'z is now:', z
110
138
111 print 'bye!'
139 print 'bye!'
112 ################### END EXAMPLE DEMO <ex_demo.py> ############################
140 ################### END EXAMPLE DEMO <ex_demo.py> ############################
113 """
141 """
142
114 #*****************************************************************************
143 #*****************************************************************************
115 # Copyright (C) 2005-2006 Fernando Perez. <Fernando.Perez@colorado.edu>
144 # Copyright (C) 2005-2006 Fernando Perez. <Fernando.Perez@colorado.edu>
116 #
145 #
117 # Distributed under the terms of the BSD License. The full license is in
146 # Distributed under the terms of the BSD License. The full license is in
118 # the file COPYING, distributed as part of this software.
147 # the file COPYING, distributed as part of this software.
119 #
148 #
120 #*****************************************************************************
149 #*****************************************************************************
121
150
122 import exceptions
151 import exceptions
123 import os
152 import os
124 import re
153 import re
125 import shlex
154 import shlex
126 import sys
155 import sys
127
156
128 from IPython.PyColorize import Parser
157 from IPython.PyColorize import Parser
129 from IPython.genutils import marquee, file_read, file_readlines
158 from IPython.genutils import marquee, file_read, file_readlines
130
159
131 __all__ = ['Demo','IPythonDemo','LineDemo','IPythonLineDemo','DemoError']
160 __all__ = ['Demo','IPythonDemo','LineDemo','IPythonLineDemo','DemoError']
132
161
133 class DemoError(exceptions.Exception): pass
162 class DemoError(exceptions.Exception): pass
134
163
135 def re_mark(mark):
164 def re_mark(mark):
136 return re.compile(r'^\s*#\s+<demo>\s+%s\s*$' % mark,re.MULTILINE)
165 return re.compile(r'^\s*#\s+<demo>\s+%s\s*$' % mark,re.MULTILINE)
137
166
138 class Demo:
167 class Demo:
139
168
140 re_stop = re_mark('---\s?stop\s?---')
169 re_stop = re_mark('---\s?stop\s?---')
141 re_silent = re_mark('silent')
170 re_silent = re_mark('silent')
142 re_auto = re_mark('auto')
171 re_auto = re_mark('auto')
143 re_auto_all = re_mark('auto_all')
172 re_auto_all = re_mark('auto_all')
144
173
145 def __init__(self,fname,arg_str='',auto_all=None):
174 def __init__(self,fname,arg_str='',auto_all=None):
146 """Make a new demo object. To run the demo, simply call the object.
175 """Make a new demo object. To run the demo, simply call the object.
147
176
148 See the module docstring for full details and an example (you can use
177 See the module docstring for full details and an example (you can use
149 IPython.Demo? in IPython to see it).
178 IPython.Demo? in IPython to see it).
150
179
151 Inputs:
180 Inputs:
152
181
153 - fname = filename.
182 - fname = filename.
154
183
155 Optional inputs:
184 Optional inputs:
156
185
157 - arg_str(''): a string of arguments, internally converted to a list
186 - arg_str(''): a string of arguments, internally converted to a list
158 just like sys.argv, so the demo script can see a similar
187 just like sys.argv, so the demo script can see a similar
159 environment.
188 environment.
160
189
161 - auto_all(None): global flag to run all blocks automatically without
190 - auto_all(None): global flag to run all blocks automatically without
162 confirmation. This attribute overrides the block-level tags and
191 confirmation. This attribute overrides the block-level tags and
163 applies to the whole demo. It is an attribute of the object, and
192 applies to the whole demo. It is an attribute of the object, and
164 can be changed at runtime simply by reassigning it to a boolean
193 can be changed at runtime simply by reassigning it to a boolean
165 value.
194 value.
166 """
195 """
167
196
168 self.fname = fname
197 self.fname = fname
169 self.sys_argv = [fname] + shlex.split(arg_str)
198 self.sys_argv = [fname] + shlex.split(arg_str)
170 self.auto_all = auto_all
199 self.auto_all = auto_all
171
200
172 # get a few things from ipython. While it's a bit ugly design-wise,
201 # get a few things from ipython. While it's a bit ugly design-wise,
173 # it ensures that things like color scheme and the like are always in
202 # it ensures that things like color scheme and the like are always in
174 # sync with the ipython mode being used. This class is only meant to
203 # sync with the ipython mode being used. This class is only meant to
175 # be used inside ipython anyways, so it's OK.
204 # be used inside ipython anyways, so it's OK.
176 self.ip_ns = __IPYTHON__.user_ns
205 self.ip_ns = __IPYTHON__.user_ns
177 self.ip_colorize = __IPYTHON__.pycolorize
206 self.ip_colorize = __IPYTHON__.pycolorize
178 self.ip_showtb = __IPYTHON__.showtraceback
207 self.ip_showtb = __IPYTHON__.showtraceback
179 self.ip_runlines = __IPYTHON__.runlines
208 self.ip_runlines = __IPYTHON__.runlines
180 self.shell = __IPYTHON__
209 self.shell = __IPYTHON__
181
210
182 # load user data and initialize data structures
211 # load user data and initialize data structures
183 self.reload()
212 self.reload()
184
213
185 def reload(self):
214 def reload(self):
186 """Reload source from disk and initialize state."""
215 """Reload source from disk and initialize state."""
187 # read data and parse into blocks
216 # read data and parse into blocks
188 self.src = file_read(self.fname)
217 self.src = file_read(self.fname)
189 src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
218 src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
190 self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
219 self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
191 self._auto = [bool(self.re_auto.findall(b)) for b in src_b]
220 self._auto = [bool(self.re_auto.findall(b)) for b in src_b]
192
221
193 # if auto_all is not given (def. None), we read it from the file
222 # if auto_all is not given (def. None), we read it from the file
194 if self.auto_all is None:
223 if self.auto_all is None:
195 self.auto_all = bool(self.re_auto_all.findall(src_b[0]))
224 self.auto_all = bool(self.re_auto_all.findall(src_b[0]))
196 else:
225 else:
197 self.auto_all = bool(self.auto_all)
226 self.auto_all = bool(self.auto_all)
198
227
199 # Clean the sources from all markup so it doesn't get displayed when
228 # Clean the sources from all markup so it doesn't get displayed when
200 # running the demo
229 # running the demo
201 src_blocks = []
230 src_blocks = []
202 auto_strip = lambda s: self.re_auto.sub('',s)
231 auto_strip = lambda s: self.re_auto.sub('',s)
203 for i,b in enumerate(src_b):
232 for i,b in enumerate(src_b):
204 if self._auto[i]:
233 if self._auto[i]:
205 src_blocks.append(auto_strip(b))
234 src_blocks.append(auto_strip(b))
206 else:
235 else:
207 src_blocks.append(b)
236 src_blocks.append(b)
208 # remove the auto_all marker
237 # remove the auto_all marker
209 src_blocks[0] = self.re_auto_all.sub('',src_blocks[0])
238 src_blocks[0] = self.re_auto_all.sub('',src_blocks[0])
210
239
211 self.nblocks = len(src_blocks)
240 self.nblocks = len(src_blocks)
212 self.src_blocks = src_blocks
241 self.src_blocks = src_blocks
213
242
214 # also build syntax-highlighted source
243 # also build syntax-highlighted source
215 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
244 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
216
245
217 # ensure clean namespace and seek offset
246 # ensure clean namespace and seek offset
218 self.reset()
247 self.reset()
219
248
220 def reset(self):
249 def reset(self):
221 """Reset the namespace and seek pointer to restart the demo"""
250 """Reset the namespace and seek pointer to restart the demo"""
222 self.user_ns = {}
251 self.user_ns = {}
223 self.finished = False
252 self.finished = False
224 self.block_index = 0
253 self.block_index = 0
225
254
226 def _validate_index(self,index):
255 def _validate_index(self,index):
227 if index<0 or index>=self.nblocks:
256 if index<0 or index>=self.nblocks:
228 raise ValueError('invalid block index %s' % index)
257 raise ValueError('invalid block index %s' % index)
229
258
230 def _get_index(self,index):
259 def _get_index(self,index):
231 """Get the current block index, validating and checking status.
260 """Get the current block index, validating and checking status.
232
261
233 Returns None if the demo is finished"""
262 Returns None if the demo is finished"""
234
263
235 if index is None:
264 if index is None:
236 if self.finished:
265 if self.finished:
237 print 'Demo finished. Use reset() if you want to rerun it.'
266 print 'Demo finished. Use reset() if you want to rerun it.'
238 return None
267 return None
239 index = self.block_index
268 index = self.block_index
240 else:
269 else:
241 self._validate_index(index)
270 self._validate_index(index)
242 return index
271 return index
243
272
244 def seek(self,index):
273 def seek(self,index):
245 """Move the current seek pointer to the given block"""
274 """Move the current seek pointer to the given block"""
246 self._validate_index(index)
275 self._validate_index(index)
247 self.block_index = index
276 self.block_index = index
248 self.finished = False
277 self.finished = False
249
278
250 def back(self,num=1):
279 def back(self,num=1):
251 """Move the seek pointer back num blocks (default is 1)."""
280 """Move the seek pointer back num blocks (default is 1)."""
252 self.seek(self.block_index-num)
281 self.seek(self.block_index-num)
253
282
254 def jump(self,num):
283 def jump(self,num):
255 """Jump a given number of blocks relative to the current one."""
284 """Jump a given number of blocks relative to the current one."""
256 self.seek(self.block_index+num)
285 self.seek(self.block_index+num)
257
286
258 def again(self):
287 def again(self):
259 """Move the seek pointer back one block and re-execute."""
288 """Move the seek pointer back one block and re-execute."""
260 self.back(1)
289 self.back(1)
261 self()
290 self()
262
291
263 def edit(self,index=None):
292 def edit(self,index=None):
264 """Edit a block.
293 """Edit a block.
265
294
266 If no number is given, use the last block executed.
295 If no number is given, use the last block executed.
267
296
268 This edits the in-memory copy of the demo, it does NOT modify the
297 This edits the in-memory copy of the demo, it does NOT modify the
269 original source file. If you want to do that, simply open the file in
298 original source file. If you want to do that, simply open the file in
270 an editor and use reload() when you make changes to the file. This
299 an editor and use reload() when you make changes to the file. This
271 method is meant to let you change a block during a demonstration for
300 method is meant to let you change a block during a demonstration for
272 explanatory purposes, without damaging your original script."""
301 explanatory purposes, without damaging your original script."""
273
302
274 index = self._get_index(index)
303 index = self._get_index(index)
275 if index is None:
304 if index is None:
276 return
305 return
277 # decrease the index by one (unless we're at the very beginning), so
306 # decrease the index by one (unless we're at the very beginning), so
278 # that the default demo.edit() call opens up the sblock we've last run
307 # that the default demo.edit() call opens up the sblock we've last run
279 if index>0:
308 if index>0:
280 index -= 1
309 index -= 1
281
310
282 filename = self.shell.mktempfile(self.src_blocks[index])
311 filename = self.shell.mktempfile(self.src_blocks[index])
283 self.shell.hooks.editor(filename,1)
312 self.shell.hooks.editor(filename,1)
284 new_block = file_read(filename)
313 new_block = file_read(filename)
285 # update the source and colored block
314 # update the source and colored block
286 self.src_blocks[index] = new_block
315 self.src_blocks[index] = new_block
287 self.src_blocks_colored[index] = self.ip_colorize(new_block)
316 self.src_blocks_colored[index] = self.ip_colorize(new_block)
288 self.block_index = index
317 self.block_index = index
289 # call to run with the newly edited index
318 # call to run with the newly edited index
290 self()
319 self()
291
320
292 def show(self,index=None):
321 def show(self,index=None):
293 """Show a single block on screen"""
322 """Show a single block on screen"""
294
323
295 index = self._get_index(index)
324 index = self._get_index(index)
296 if index is None:
325 if index is None:
297 return
326 return
298
327
299 print marquee('<%s> block # %s (%s remaining)' %
328 print self.marquee('<%s> block # %s (%s remaining)' %
300 (self.fname,index,self.nblocks-index-1))
329 (self.fname,index,self.nblocks-index-1))
301 print self.src_blocks_colored[index],
330 print self.src_blocks_colored[index],
302 sys.stdout.flush()
331 sys.stdout.flush()
303
332
304 def show_all(self):
333 def show_all(self):
305 """Show entire demo on screen, block by block"""
334 """Show entire demo on screen, block by block"""
306
335
307 fname = self.fname
336 fname = self.fname
308 nblocks = self.nblocks
337 nblocks = self.nblocks
309 silent = self._silent
338 silent = self._silent
339 marquee = self.marquee
310 for index,block in enumerate(self.src_blocks_colored):
340 for index,block in enumerate(self.src_blocks_colored):
311 if silent[index]:
341 if silent[index]:
312 print marquee('<%s> SILENT block # %s (%s remaining)' %
342 print marquee('<%s> SILENT block # %s (%s remaining)' %
313 (fname,index,nblocks-index-1))
343 (fname,index,nblocks-index-1))
314 else:
344 else:
315 print marquee('<%s> block # %s (%s remaining)' %
345 print marquee('<%s> block # %s (%s remaining)' %
316 (fname,index,nblocks-index-1))
346 (fname,index,nblocks-index-1))
317 print block,
347 print block,
318 sys.stdout.flush()
348 sys.stdout.flush()
319
349
320 def runlines(self,source):
350 def runlines(self,source):
321 """Execute a string with one or more lines of code"""
351 """Execute a string with one or more lines of code"""
322
352
323 exec source in self.user_ns
353 exec source in self.user_ns
324
354
325 def __call__(self,index=None):
355 def __call__(self,index=None):
326 """run a block of the demo.
356 """run a block of the demo.
327
357
328 If index is given, it should be an integer >=1 and <= nblocks. This
358 If index is given, it should be an integer >=1 and <= nblocks. This
329 means that the calling convention is one off from typical Python
359 means that the calling convention is one off from typical Python
330 lists. The reason for the inconsistency is that the demo always
360 lists. The reason for the inconsistency is that the demo always
331 prints 'Block n/N, and N is the total, so it would be very odd to use
361 prints 'Block n/N, and N is the total, so it would be very odd to use
332 zero-indexing here."""
362 zero-indexing here."""
333
363
334 index = self._get_index(index)
364 index = self._get_index(index)
335 if index is None:
365 if index is None:
336 return
366 return
337 try:
367 try:
368 marquee = self.marquee
338 next_block = self.src_blocks[index]
369 next_block = self.src_blocks[index]
339 self.block_index += 1
370 self.block_index += 1
340 if self._silent[index]:
371 if self._silent[index]:
341 print marquee('Executing silent block # %s (%s remaining)' %
372 print marquee('Executing silent block # %s (%s remaining)' %
342 (index,self.nblocks-index-1))
373 (index,self.nblocks-index-1))
343 else:
374 else:
344 self.show(index)
375 self.show(index)
345 if self.auto_all or self._auto[index]:
376 if self.auto_all or self._auto[index]:
346 print marquee('output')
377 print marquee('output')
347 else:
378 else:
348 print marquee('Press <q> to quit, <Enter> to execute...'),
379 print marquee('Press <q> to quit, <Enter> to execute...'),
349 ans = raw_input().strip()
380 ans = raw_input().strip()
350 if ans:
381 if ans:
351 print marquee('Block NOT executed')
382 print marquee('Block NOT executed')
352 return
383 return
353 try:
384 try:
354 save_argv = sys.argv
385 save_argv = sys.argv
355 sys.argv = self.sys_argv
386 sys.argv = self.sys_argv
387 self.pre_cmd()
356 self.runlines(next_block)
388 self.runlines(next_block)
389 self.post_cmd()
357 finally:
390 finally:
358 sys.argv = save_argv
391 sys.argv = save_argv
359
392
360 except:
393 except:
361 self.ip_showtb(filename=self.fname)
394 self.ip_showtb(filename=self.fname)
362 else:
395 else:
363 self.ip_ns.update(self.user_ns)
396 self.ip_ns.update(self.user_ns)
364
397
365 if self.block_index == self.nblocks:
398 if self.block_index == self.nblocks:
366 print
399 print
367 print marquee(' END OF DEMO ')
400 print self.marquee(' END OF DEMO ')
368 print marquee('Use reset() if you want to rerun it.')
401 print self.marquee('Use reset() if you want to rerun it.')
369 self.finished = True
402 self.finished = True
370
403
404 # These methods are meant to be overridden by subclasses who may wish to
405 # customize the behavior of of their demos.
406 def marquee(self,txt='',width=78,mark='*'):
407 """Return the input string centered in a 'marquee'."""
408 return marquee(txt,width,mark)
409
410 def pre_cmd(self):
411 """Method called before executing each block."""
412 pass
413
414 def post_cmd(self):
415 """Method called after executing each block."""
416 pass
417
418
371 class IPythonDemo(Demo):
419 class IPythonDemo(Demo):
372 """Class for interactive demos with IPython's input processing applied.
420 """Class for interactive demos with IPython's input processing applied.
373
421
374 This subclasses Demo, but instead of executing each block by the Python
422 This subclasses Demo, but instead of executing each block by the Python
375 interpreter (via exec), it actually calls IPython on it, so that any input
423 interpreter (via exec), it actually calls IPython on it, so that any input
376 filters which may be in place are applied to the input block.
424 filters which may be in place are applied to the input block.
377
425
378 If you have an interactive environment which exposes special input
426 If you have an interactive environment which exposes special input
379 processing, you can use this class instead to write demo scripts which
427 processing, you can use this class instead to write demo scripts which
380 operate exactly as if you had typed them interactively. The default Demo
428 operate exactly as if you had typed them interactively. The default Demo
381 class requires the input to be valid, pure Python code.
429 class requires the input to be valid, pure Python code.
382 """
430 """
383
431
384 def runlines(self,source):
432 def runlines(self,source):
385 """Execute a string with one or more lines of code"""
433 """Execute a string with one or more lines of code"""
386
434
387 self.runlines(source)
435 self.shell.runlines(source)
388
436
389 class LineDemo(Demo):
437 class LineDemo(Demo):
390 """Demo where each line is executed as a separate block.
438 """Demo where each line is executed as a separate block.
391
439
392 The input script should be valid Python code.
440 The input script should be valid Python code.
393
441
394 This class doesn't require any markup at all, and it's meant for simple
442 This class doesn't require any markup at all, and it's meant for simple
395 scripts (with no nesting or any kind of indentation) which consist of
443 scripts (with no nesting or any kind of indentation) which consist of
396 multiple lines of input to be executed, one at a time, as if they had been
444 multiple lines of input to be executed, one at a time, as if they had been
397 typed in the interactive prompt."""
445 typed in the interactive prompt."""
398
446
399 def reload(self):
447 def reload(self):
400 """Reload source from disk and initialize state."""
448 """Reload source from disk and initialize state."""
401 # read data and parse into blocks
449 # read data and parse into blocks
402 src_b = [l for l in file_readlines(self.fname) if l.strip()]
450 src_b = [l for l in file_readlines(self.fname) if l.strip()]
403 nblocks = len(src_b)
451 nblocks = len(src_b)
404 self.src = os.linesep.join(file_readlines(self.fname))
452 self.src = os.linesep.join(file_readlines(self.fname))
405 self._silent = [False]*nblocks
453 self._silent = [False]*nblocks
406 self._auto = [True]*nblocks
454 self._auto = [True]*nblocks
407 self.auto_all = True
455 self.auto_all = True
408 self.nblocks = nblocks
456 self.nblocks = nblocks
409 self.src_blocks = src_b
457 self.src_blocks = src_b
410
458
411 # also build syntax-highlighted source
459 # also build syntax-highlighted source
412 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
460 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
413
461
414 # ensure clean namespace and seek offset
462 # ensure clean namespace and seek offset
415 self.reset()
463 self.reset()
416
464
417 class IPythonLineDemo(IPythonDemo,LineDemo):
465 class IPythonLineDemo(IPythonDemo,LineDemo):
418 """Variant of the LineDemo class whose input is processed by IPython."""
466 """Variant of the LineDemo class whose input is processed by IPython."""
419 pass
467 pass
@@ -1,753 +1,754 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """
2 """
3 IPython -- An enhanced Interactive Python
3 IPython -- An enhanced Interactive Python
4
4
5 Requires Python 2.1 or better.
5 Requires Python 2.1 or better.
6
6
7 This file contains the main make_IPython() starter function.
7 This file contains the main make_IPython() starter function.
8
8
9 $Id: ipmaker.py 2029 2007-01-22 06:35:15Z fperez $"""
9 $Id: ipmaker.py 2036 2007-01-27 07:30:22Z fperez $"""
10
10
11 #*****************************************************************************
11 #*****************************************************************************
12 # Copyright (C) 2001-2006 Fernando Perez. <fperez@colorado.edu>
12 # Copyright (C) 2001-2006 Fernando Perez. <fperez@colorado.edu>
13 #
13 #
14 # Distributed under the terms of the BSD License. The full license is in
14 # Distributed under the terms of the BSD License. The full license is in
15 # the file COPYING, distributed as part of this software.
15 # the file COPYING, distributed as part of this software.
16 #*****************************************************************************
16 #*****************************************************************************
17
17
18 from IPython import Release
18 from IPython import Release
19 __author__ = '%s <%s>' % Release.authors['Fernando']
19 __author__ = '%s <%s>' % Release.authors['Fernando']
20 __license__ = Release.license
20 __license__ = Release.license
21 __version__ = Release.version
21 __version__ = Release.version
22
22
23 credits._Printer__data = """
23 credits._Printer__data = """
24 Python: %s
24 Python: %s
25
25
26 IPython: Fernando Perez, Janko Hauser, Nathan Gray, and many users.
26 IPython: Fernando Perez, Janko Hauser, Nathan Gray, and many users.
27 See http://ipython.scipy.org for more information.""" \
27 See http://ipython.scipy.org for more information.""" \
28 % credits._Printer__data
28 % credits._Printer__data
29
29
30 copyright._Printer__data += """
30 copyright._Printer__data += """
31
31
32 Copyright (c) 2001-2004 Fernando Perez, Janko Hauser, Nathan Gray.
32 Copyright (c) 2001-2004 Fernando Perez, Janko Hauser, Nathan Gray.
33 All Rights Reserved."""
33 All Rights Reserved."""
34
34
35 #****************************************************************************
35 #****************************************************************************
36 # Required modules
36 # Required modules
37
37
38 # From the standard library
38 # From the standard library
39 import __main__
39 import __main__
40 import __builtin__
40 import __builtin__
41 import os
41 import os
42 import re
42 import re
43 import sys
43 import sys
44 import types
44 import types
45 from pprint import pprint,pformat
45 from pprint import pprint,pformat
46
46
47 # Our own
47 # Our own
48 from IPython import DPyGetOpt
48 from IPython import DPyGetOpt
49 from IPython.ipstruct import Struct
49 from IPython.ipstruct import Struct
50 from IPython.OutputTrap import OutputTrap
50 from IPython.OutputTrap import OutputTrap
51 from IPython.ConfigLoader import ConfigLoader
51 from IPython.ConfigLoader import ConfigLoader
52 from IPython.iplib import InteractiveShell
52 from IPython.iplib import InteractiveShell
53 from IPython.usage import cmd_line_usage,interactive_usage
53 from IPython.usage import cmd_line_usage,interactive_usage
54 from IPython.genutils import *
54 from IPython.genutils import *
55
55
56 #-----------------------------------------------------------------------------
56 #-----------------------------------------------------------------------------
57 def make_IPython(argv=None,user_ns=None,user_global_ns=None,debug=1,
57 def make_IPython(argv=None,user_ns=None,user_global_ns=None,debug=1,
58 rc_override=None,shell_class=InteractiveShell,
58 rc_override=None,shell_class=InteractiveShell,
59 embedded=False,**kw):
59 embedded=False,**kw):
60 """This is a dump of IPython into a single function.
60 """This is a dump of IPython into a single function.
61
61
62 Later it will have to be broken up in a sensible manner.
62 Later it will have to be broken up in a sensible manner.
63
63
64 Arguments:
64 Arguments:
65
65
66 - argv: a list similar to sys.argv[1:]. It should NOT contain the desired
66 - argv: a list similar to sys.argv[1:]. It should NOT contain the desired
67 script name, b/c DPyGetOpt strips the first argument only for the real
67 script name, b/c DPyGetOpt strips the first argument only for the real
68 sys.argv.
68 sys.argv.
69
69
70 - user_ns: a dict to be used as the user's namespace."""
70 - user_ns: a dict to be used as the user's namespace."""
71
71
72 #----------------------------------------------------------------------
72 #----------------------------------------------------------------------
73 # Defaults and initialization
73 # Defaults and initialization
74
74
75 # For developer debugging, deactivates crash handler and uses pdb.
75 # For developer debugging, deactivates crash handler and uses pdb.
76 DEVDEBUG = False
76 DEVDEBUG = False
77
77
78 if argv is None:
78 if argv is None:
79 argv = sys.argv
79 argv = sys.argv
80
80
81 # __IP is the main global that lives throughout and represents the whole
81 # __IP is the main global that lives throughout and represents the whole
82 # application. If the user redefines it, all bets are off as to what
82 # application. If the user redefines it, all bets are off as to what
83 # happens.
83 # happens.
84
84
85 # __IP is the name of he global which the caller will have accessible as
85 # __IP is the name of he global which the caller will have accessible as
86 # __IP.name. We set its name via the first parameter passed to
86 # __IP.name. We set its name via the first parameter passed to
87 # InteractiveShell:
87 # InteractiveShell:
88
88
89 IP = shell_class('__IP',user_ns=user_ns,user_global_ns=user_global_ns,
89 IP = shell_class('__IP',user_ns=user_ns,user_global_ns=user_global_ns,
90 embedded=embedded,**kw)
90 embedded=embedded,**kw)
91
91
92 # Put 'help' in the user namespace
92 # Put 'help' in the user namespace
93 from site import _Helper
93 from site import _Helper
94 IP.user_ns['help'] = _Helper()
94 IP.user_ns['help'] = _Helper()
95
95
96
96
97 if DEVDEBUG:
97 if DEVDEBUG:
98 # For developer debugging only (global flag)
98 # For developer debugging only (global flag)
99 from IPython import ultraTB
99 from IPython import ultraTB
100 sys.excepthook = ultraTB.VerboseTB(call_pdb=1)
100 sys.excepthook = ultraTB.VerboseTB(call_pdb=1)
101
101
102 IP.BANNER_PARTS = ['Python %s\n'
102 IP.BANNER_PARTS = ['Python %s\n'
103 'Type "copyright", "credits" or "license" '
103 'Type "copyright", "credits" or "license" '
104 'for more information.\n'
104 'for more information.\n'
105 % (sys.version.split('\n')[0],),
105 % (sys.version.split('\n')[0],),
106 "IPython %s -- An enhanced Interactive Python."
106 "IPython %s -- An enhanced Interactive Python."
107 % (__version__,),
107 % (__version__,),
108 """? -> Introduction to IPython's features.
108 """? -> Introduction to IPython's features.
109 %magic -> Information about IPython's 'magic' % functions.
109 %magic -> Information about IPython's 'magic' % functions.
110 help -> Python's own help system.
110 help -> Python's own help system.
111 object? -> Details about 'object'. ?object also works, ?? prints more.
111 object? -> Details about 'object'. ?object also works, ?? prints more.
112 """ ]
112 """ ]
113
113
114 IP.usage = interactive_usage
114 IP.usage = interactive_usage
115
115
116 # Platform-dependent suffix and directory names. We use _ipython instead
116 # Platform-dependent suffix and directory names. We use _ipython instead
117 # of .ipython under win32 b/c there's software that breaks with .named
117 # of .ipython under win32 b/c there's software that breaks with .named
118 # directories on that platform.
118 # directories on that platform.
119 if os.name == 'posix':
119 if os.name == 'posix':
120 rc_suffix = ''
120 rc_suffix = ''
121 ipdir_def = '.ipython'
121 ipdir_def = '.ipython'
122 else:
122 else:
123 rc_suffix = '.ini'
123 rc_suffix = '.ini'
124 ipdir_def = '_ipython'
124 ipdir_def = '_ipython'
125
125
126 # default directory for configuration
126 # default directory for configuration
127 ipythondir_def = os.path.abspath(os.environ.get('IPYTHONDIR',
127 ipythondir_def = os.path.abspath(os.environ.get('IPYTHONDIR',
128 os.path.join(IP.home_dir,ipdir_def)))
128 os.path.join(IP.home_dir,ipdir_def)))
129
129
130 sys.path.insert(0, '') # add . to sys.path. Fix from Prabhu Ramachandran
130 sys.path.insert(0, '') # add . to sys.path. Fix from Prabhu Ramachandran
131
131
132 # we need the directory where IPython itself is installed
132 # we need the directory where IPython itself is installed
133 import IPython
133 import IPython
134 IPython_dir = os.path.dirname(IPython.__file__)
134 IPython_dir = os.path.dirname(IPython.__file__)
135 del IPython
135 del IPython
136
136
137 #-------------------------------------------------------------------------
137 #-------------------------------------------------------------------------
138 # Command line handling
138 # Command line handling
139
139
140 # Valid command line options (uses DPyGetOpt syntax, like Perl's
140 # Valid command line options (uses DPyGetOpt syntax, like Perl's
141 # GetOpt::Long)
141 # GetOpt::Long)
142
142
143 # Any key not listed here gets deleted even if in the file (like session
143 # Any key not listed here gets deleted even if in the file (like session
144 # or profile). That's deliberate, to maintain the rc namespace clean.
144 # or profile). That's deliberate, to maintain the rc namespace clean.
145
145
146 # Each set of options appears twice: under _conv only the names are
146 # Each set of options appears twice: under _conv only the names are
147 # listed, indicating which type they must be converted to when reading the
147 # listed, indicating which type they must be converted to when reading the
148 # ipythonrc file. And under DPyGetOpt they are listed with the regular
148 # ipythonrc file. And under DPyGetOpt they are listed with the regular
149 # DPyGetOpt syntax (=s,=i,:f,etc).
149 # DPyGetOpt syntax (=s,=i,:f,etc).
150
150
151 # Make sure there's a space before each end of line (they get auto-joined!)
151 # Make sure there's a space before each end of line (they get auto-joined!)
152 cmdline_opts = ('autocall=i autoindent! automagic! banner! cache_size|cs=i '
152 cmdline_opts = ('autocall=i autoindent! automagic! banner! cache_size|cs=i '
153 'c=s classic|cl color_info! colors=s confirm_exit! '
153 'c=s classic|cl color_info! colors=s confirm_exit! '
154 'debug! deep_reload! editor=s log|l messages! nosep '
154 'debug! deep_reload! editor=s log|l messages! nosep '
155 'object_info_string_level=i pdb! '
155 'object_info_string_level=i pdb! '
156 'pprint! prompt_in1|pi1=s prompt_in2|pi2=s prompt_out|po=s '
156 'pprint! prompt_in1|pi1=s prompt_in2|pi2=s prompt_out|po=s '
157 'quick screen_length|sl=i prompts_pad_left=i '
157 'quick screen_length|sl=i prompts_pad_left=i '
158 'logfile|lf=s logplay|lp=s profile|p=s '
158 'logfile|lf=s logplay|lp=s profile|p=s '
159 'readline! readline_merge_completions! '
159 'readline! readline_merge_completions! '
160 'readline_omit__names! '
160 'readline_omit__names! '
161 'rcfile=s separate_in|si=s separate_out|so=s '
161 'rcfile=s separate_in|si=s separate_out|so=s '
162 'separate_out2|so2=s xmode=s wildcards_case_sensitive! '
162 'separate_out2|so2=s xmode=s wildcards_case_sensitive! '
163 'magic_docstrings system_verbose! '
163 'magic_docstrings system_verbose! '
164 'multi_line_specials! '
164 'multi_line_specials! '
165 'wxversion=s '
165 'term_title! wxversion=s '
166 'autoedit_syntax!')
166 'autoedit_syntax!')
167
167
168 # Options that can *only* appear at the cmd line (not in rcfiles).
168 # Options that can *only* appear at the cmd line (not in rcfiles).
169
169
170 # The "ignore" option is a kludge so that Emacs buffers don't crash, since
170 # The "ignore" option is a kludge so that Emacs buffers don't crash, since
171 # the 'C-c !' command in emacs automatically appends a -i option at the end.
171 # the 'C-c !' command in emacs automatically appends a -i option at the end.
172 cmdline_only = ('help ignore|i ipythondir=s Version upgrade '
172 cmdline_only = ('help ignore|i ipythondir=s Version upgrade '
173 'gthread! qthread! q4thread! wthread! pylab! tk!')
173 'gthread! qthread! q4thread! wthread! pylab! tk!')
174
174
175 # Build the actual name list to be used by DPyGetOpt
175 # Build the actual name list to be used by DPyGetOpt
176 opts_names = qw(cmdline_opts) + qw(cmdline_only)
176 opts_names = qw(cmdline_opts) + qw(cmdline_only)
177
177
178 # Set sensible command line defaults.
178 # Set sensible command line defaults.
179 # This should have everything from cmdline_opts and cmdline_only
179 # This should have everything from cmdline_opts and cmdline_only
180 opts_def = Struct(autocall = 1,
180 opts_def = Struct(autocall = 1,
181 autoedit_syntax = 0,
181 autoedit_syntax = 0,
182 autoindent = 0,
182 autoindent = 0,
183 automagic = 1,
183 automagic = 1,
184 banner = 1,
184 banner = 1,
185 cache_size = 1000,
185 cache_size = 1000,
186 c = '',
186 c = '',
187 classic = 0,
187 classic = 0,
188 colors = 'NoColor',
188 colors = 'NoColor',
189 color_info = 0,
189 color_info = 0,
190 confirm_exit = 1,
190 confirm_exit = 1,
191 debug = 0,
191 debug = 0,
192 deep_reload = 0,
192 deep_reload = 0,
193 editor = '0',
193 editor = '0',
194 help = 0,
194 help = 0,
195 ignore = 0,
195 ignore = 0,
196 ipythondir = ipythondir_def,
196 ipythondir = ipythondir_def,
197 log = 0,
197 log = 0,
198 logfile = '',
198 logfile = '',
199 logplay = '',
199 logplay = '',
200 multi_line_specials = 1,
200 multi_line_specials = 1,
201 messages = 1,
201 messages = 1,
202 object_info_string_level = 0,
202 object_info_string_level = 0,
203 nosep = 0,
203 nosep = 0,
204 pdb = 0,
204 pdb = 0,
205 pprint = 0,
205 pprint = 0,
206 profile = '',
206 profile = '',
207 prompt_in1 = 'In [\\#]: ',
207 prompt_in1 = 'In [\\#]: ',
208 prompt_in2 = ' .\\D.: ',
208 prompt_in2 = ' .\\D.: ',
209 prompt_out = 'Out[\\#]: ',
209 prompt_out = 'Out[\\#]: ',
210 prompts_pad_left = 1,
210 prompts_pad_left = 1,
211 quiet = 0,
211 quiet = 0,
212 quick = 0,
212 quick = 0,
213 readline = 1,
213 readline = 1,
214 readline_merge_completions = 1,
214 readline_merge_completions = 1,
215 readline_omit__names = 0,
215 readline_omit__names = 0,
216 rcfile = 'ipythonrc' + rc_suffix,
216 rcfile = 'ipythonrc' + rc_suffix,
217 screen_length = 0,
217 screen_length = 0,
218 separate_in = '\n',
218 separate_in = '\n',
219 separate_out = '\n',
219 separate_out = '\n',
220 separate_out2 = '',
220 separate_out2 = '',
221 system_header = 'IPython system call: ',
221 system_header = 'IPython system call: ',
222 system_verbose = 0,
222 system_verbose = 0,
223 gthread = 0,
223 gthread = 0,
224 qthread = 0,
224 qthread = 0,
225 q4thread = 0,
225 q4thread = 0,
226 wthread = 0,
226 wthread = 0,
227 pylab = 0,
227 pylab = 0,
228 term_title = 1,
228 tk = 0,
229 tk = 0,
229 upgrade = 0,
230 upgrade = 0,
230 Version = 0,
231 Version = 0,
231 xmode = 'Verbose',
232 xmode = 'Verbose',
232 wildcards_case_sensitive = 1,
233 wildcards_case_sensitive = 1,
233 wxversion = '0',
234 wxversion = '0',
234 magic_docstrings = 0, # undocumented, for doc generation
235 magic_docstrings = 0, # undocumented, for doc generation
235 )
236 )
236
237
237 # Things that will *only* appear in rcfiles (not at the command line).
238 # Things that will *only* appear in rcfiles (not at the command line).
238 # Make sure there's a space before each end of line (they get auto-joined!)
239 # Make sure there's a space before each end of line (they get auto-joined!)
239 rcfile_opts = { qwflat: 'include import_mod import_all execfile ',
240 rcfile_opts = { qwflat: 'include import_mod import_all execfile ',
240 qw_lol: 'import_some ',
241 qw_lol: 'import_some ',
241 # for things with embedded whitespace:
242 # for things with embedded whitespace:
242 list_strings:'execute alias readline_parse_and_bind ',
243 list_strings:'execute alias readline_parse_and_bind ',
243 # Regular strings need no conversion:
244 # Regular strings need no conversion:
244 None:'readline_remove_delims ',
245 None:'readline_remove_delims ',
245 }
246 }
246 # Default values for these
247 # Default values for these
247 rc_def = Struct(include = [],
248 rc_def = Struct(include = [],
248 import_mod = [],
249 import_mod = [],
249 import_all = [],
250 import_all = [],
250 import_some = [[]],
251 import_some = [[]],
251 execute = [],
252 execute = [],
252 execfile = [],
253 execfile = [],
253 alias = [],
254 alias = [],
254 readline_parse_and_bind = [],
255 readline_parse_and_bind = [],
255 readline_remove_delims = '',
256 readline_remove_delims = '',
256 )
257 )
257
258
258 # Build the type conversion dictionary from the above tables:
259 # Build the type conversion dictionary from the above tables:
259 typeconv = rcfile_opts.copy()
260 typeconv = rcfile_opts.copy()
260 typeconv.update(optstr2types(cmdline_opts))
261 typeconv.update(optstr2types(cmdline_opts))
261
262
262 # FIXME: the None key appears in both, put that back together by hand. Ugly!
263 # FIXME: the None key appears in both, put that back together by hand. Ugly!
263 typeconv[None] += ' ' + rcfile_opts[None]
264 typeconv[None] += ' ' + rcfile_opts[None]
264
265
265 # Remove quotes at ends of all strings (used to protect spaces)
266 # Remove quotes at ends of all strings (used to protect spaces)
266 typeconv[unquote_ends] = typeconv[None]
267 typeconv[unquote_ends] = typeconv[None]
267 del typeconv[None]
268 del typeconv[None]
268
269
269 # Build the list we'll use to make all config decisions with defaults:
270 # Build the list we'll use to make all config decisions with defaults:
270 opts_all = opts_def.copy()
271 opts_all = opts_def.copy()
271 opts_all.update(rc_def)
272 opts_all.update(rc_def)
272
273
273 # Build conflict resolver for recursive loading of config files:
274 # Build conflict resolver for recursive loading of config files:
274 # - preserve means the outermost file maintains the value, it is not
275 # - preserve means the outermost file maintains the value, it is not
275 # overwritten if an included file has the same key.
276 # overwritten if an included file has the same key.
276 # - add_flip applies + to the two values, so it better make sense to add
277 # - add_flip applies + to the two values, so it better make sense to add
277 # those types of keys. But it flips them first so that things loaded
278 # those types of keys. But it flips them first so that things loaded
278 # deeper in the inclusion chain have lower precedence.
279 # deeper in the inclusion chain have lower precedence.
279 conflict = {'preserve': ' '.join([ typeconv[int],
280 conflict = {'preserve': ' '.join([ typeconv[int],
280 typeconv[unquote_ends] ]),
281 typeconv[unquote_ends] ]),
281 'add_flip': ' '.join([ typeconv[qwflat],
282 'add_flip': ' '.join([ typeconv[qwflat],
282 typeconv[qw_lol],
283 typeconv[qw_lol],
283 typeconv[list_strings] ])
284 typeconv[list_strings] ])
284 }
285 }
285
286
286 # Now actually process the command line
287 # Now actually process the command line
287 getopt = DPyGetOpt.DPyGetOpt()
288 getopt = DPyGetOpt.DPyGetOpt()
288 getopt.setIgnoreCase(0)
289 getopt.setIgnoreCase(0)
289
290
290 getopt.parseConfiguration(opts_names)
291 getopt.parseConfiguration(opts_names)
291
292
292 try:
293 try:
293 getopt.processArguments(argv)
294 getopt.processArguments(argv)
294 except:
295 except:
295 print cmd_line_usage
296 print cmd_line_usage
296 warn('\nError in Arguments: ' + `sys.exc_value`)
297 warn('\nError in Arguments: ' + `sys.exc_value`)
297 sys.exit(1)
298 sys.exit(1)
298
299
299 # convert the options dict to a struct for much lighter syntax later
300 # convert the options dict to a struct for much lighter syntax later
300 opts = Struct(getopt.optionValues)
301 opts = Struct(getopt.optionValues)
301 args = getopt.freeValues
302 args = getopt.freeValues
302
303
303 # this is the struct (which has default values at this point) with which
304 # this is the struct (which has default values at this point) with which
304 # we make all decisions:
305 # we make all decisions:
305 opts_all.update(opts)
306 opts_all.update(opts)
306
307
307 # Options that force an immediate exit
308 # Options that force an immediate exit
308 if opts_all.help:
309 if opts_all.help:
309 page(cmd_line_usage)
310 page(cmd_line_usage)
310 sys.exit()
311 sys.exit()
311
312
312 if opts_all.Version:
313 if opts_all.Version:
313 print __version__
314 print __version__
314 sys.exit()
315 sys.exit()
315
316
316 if opts_all.magic_docstrings:
317 if opts_all.magic_docstrings:
317 IP.magic_magic('-latex')
318 IP.magic_magic('-latex')
318 sys.exit()
319 sys.exit()
319
320
320 # add personal ipythondir to sys.path so that users can put things in
321 # add personal ipythondir to sys.path so that users can put things in
321 # there for customization
322 # there for customization
322 sys.path.append(os.path.abspath(opts_all.ipythondir))
323 sys.path.append(os.path.abspath(opts_all.ipythondir))
323
324
324 # Create user config directory if it doesn't exist. This must be done
325 # Create user config directory if it doesn't exist. This must be done
325 # *after* getting the cmd line options.
326 # *after* getting the cmd line options.
326 if not os.path.isdir(opts_all.ipythondir):
327 if not os.path.isdir(opts_all.ipythondir):
327 IP.user_setup(opts_all.ipythondir,rc_suffix,'install')
328 IP.user_setup(opts_all.ipythondir,rc_suffix,'install')
328
329
329 # upgrade user config files while preserving a copy of the originals
330 # upgrade user config files while preserving a copy of the originals
330 if opts_all.upgrade:
331 if opts_all.upgrade:
331 IP.user_setup(opts_all.ipythondir,rc_suffix,'upgrade')
332 IP.user_setup(opts_all.ipythondir,rc_suffix,'upgrade')
332
333
333 # check mutually exclusive options in the *original* command line
334 # check mutually exclusive options in the *original* command line
334 mutex_opts(opts,[qw('log logfile'),qw('rcfile profile'),
335 mutex_opts(opts,[qw('log logfile'),qw('rcfile profile'),
335 qw('classic profile'),qw('classic rcfile')])
336 qw('classic profile'),qw('classic rcfile')])
336
337
337 #---------------------------------------------------------------------------
338 #---------------------------------------------------------------------------
338 # Log replay
339 # Log replay
339
340
340 # if -logplay, we need to 'become' the other session. That basically means
341 # if -logplay, we need to 'become' the other session. That basically means
341 # replacing the current command line environment with that of the old
342 # replacing the current command line environment with that of the old
342 # session and moving on.
343 # session and moving on.
343
344
344 # this is needed so that later we know we're in session reload mode, as
345 # this is needed so that later we know we're in session reload mode, as
345 # opts_all will get overwritten:
346 # opts_all will get overwritten:
346 load_logplay = 0
347 load_logplay = 0
347
348
348 if opts_all.logplay:
349 if opts_all.logplay:
349 load_logplay = opts_all.logplay
350 load_logplay = opts_all.logplay
350 opts_debug_save = opts_all.debug
351 opts_debug_save = opts_all.debug
351 try:
352 try:
352 logplay = open(opts_all.logplay)
353 logplay = open(opts_all.logplay)
353 except IOError:
354 except IOError:
354 if opts_all.debug: IP.InteractiveTB()
355 if opts_all.debug: IP.InteractiveTB()
355 warn('Could not open logplay file '+`opts_all.logplay`)
356 warn('Could not open logplay file '+`opts_all.logplay`)
356 # restore state as if nothing had happened and move on, but make
357 # restore state as if nothing had happened and move on, but make
357 # sure that later we don't try to actually load the session file
358 # sure that later we don't try to actually load the session file
358 logplay = None
359 logplay = None
359 load_logplay = 0
360 load_logplay = 0
360 del opts_all.logplay
361 del opts_all.logplay
361 else:
362 else:
362 try:
363 try:
363 logplay.readline()
364 logplay.readline()
364 logplay.readline();
365 logplay.readline();
365 # this reloads that session's command line
366 # this reloads that session's command line
366 cmd = logplay.readline()[6:]
367 cmd = logplay.readline()[6:]
367 exec cmd
368 exec cmd
368 # restore the true debug flag given so that the process of
369 # restore the true debug flag given so that the process of
369 # session loading itself can be monitored.
370 # session loading itself can be monitored.
370 opts.debug = opts_debug_save
371 opts.debug = opts_debug_save
371 # save the logplay flag so later we don't overwrite the log
372 # save the logplay flag so later we don't overwrite the log
372 opts.logplay = load_logplay
373 opts.logplay = load_logplay
373 # now we must update our own structure with defaults
374 # now we must update our own structure with defaults
374 opts_all.update(opts)
375 opts_all.update(opts)
375 # now load args
376 # now load args
376 cmd = logplay.readline()[6:]
377 cmd = logplay.readline()[6:]
377 exec cmd
378 exec cmd
378 logplay.close()
379 logplay.close()
379 except:
380 except:
380 logplay.close()
381 logplay.close()
381 if opts_all.debug: IP.InteractiveTB()
382 if opts_all.debug: IP.InteractiveTB()
382 warn("Logplay file lacking full configuration information.\n"
383 warn("Logplay file lacking full configuration information.\n"
383 "I'll try to read it, but some things may not work.")
384 "I'll try to read it, but some things may not work.")
384
385
385 #-------------------------------------------------------------------------
386 #-------------------------------------------------------------------------
386 # set up output traps: catch all output from files, being run, modules
387 # set up output traps: catch all output from files, being run, modules
387 # loaded, etc. Then give it to the user in a clean form at the end.
388 # loaded, etc. Then give it to the user in a clean form at the end.
388
389
389 msg_out = 'Output messages. '
390 msg_out = 'Output messages. '
390 msg_err = 'Error messages. '
391 msg_err = 'Error messages. '
391 msg_sep = '\n'
392 msg_sep = '\n'
392 msg = Struct(config = OutputTrap('Configuration Loader',msg_out,
393 msg = Struct(config = OutputTrap('Configuration Loader',msg_out,
393 msg_err,msg_sep,debug,
394 msg_err,msg_sep,debug,
394 quiet_out=1),
395 quiet_out=1),
395 user_exec = OutputTrap('User File Execution',msg_out,
396 user_exec = OutputTrap('User File Execution',msg_out,
396 msg_err,msg_sep,debug),
397 msg_err,msg_sep,debug),
397 logplay = OutputTrap('Log Loader',msg_out,
398 logplay = OutputTrap('Log Loader',msg_out,
398 msg_err,msg_sep,debug),
399 msg_err,msg_sep,debug),
399 summary = ''
400 summary = ''
400 )
401 )
401
402
402 #-------------------------------------------------------------------------
403 #-------------------------------------------------------------------------
403 # Process user ipythonrc-type configuration files
404 # Process user ipythonrc-type configuration files
404
405
405 # turn on output trapping and log to msg.config
406 # turn on output trapping and log to msg.config
406 # remember that with debug on, trapping is actually disabled
407 # remember that with debug on, trapping is actually disabled
407 msg.config.trap_all()
408 msg.config.trap_all()
408
409
409 # look for rcfile in current or default directory
410 # look for rcfile in current or default directory
410 try:
411 try:
411 opts_all.rcfile = filefind(opts_all.rcfile,opts_all.ipythondir)
412 opts_all.rcfile = filefind(opts_all.rcfile,opts_all.ipythondir)
412 except IOError:
413 except IOError:
413 if opts_all.debug: IP.InteractiveTB()
414 if opts_all.debug: IP.InteractiveTB()
414 warn('Configuration file %s not found. Ignoring request.'
415 warn('Configuration file %s not found. Ignoring request.'
415 % (opts_all.rcfile) )
416 % (opts_all.rcfile) )
416
417
417 # 'profiles' are a shorthand notation for config filenames
418 # 'profiles' are a shorthand notation for config filenames
418 if opts_all.profile:
419 if opts_all.profile:
419
420
420 try:
421 try:
421 opts_all.rcfile = filefind('ipythonrc-' + opts_all.profile
422 opts_all.rcfile = filefind('ipythonrc-' + opts_all.profile
422 + rc_suffix,
423 + rc_suffix,
423 opts_all.ipythondir)
424 opts_all.ipythondir)
424 except IOError:
425 except IOError:
425 if opts_all.debug: IP.InteractiveTB()
426 if opts_all.debug: IP.InteractiveTB()
426 opts.profile = '' # remove profile from options if invalid
427 opts.profile = '' # remove profile from options if invalid
427 # We won't warn anymore, primary method is ipy_profile_PROFNAME
428 # We won't warn anymore, primary method is ipy_profile_PROFNAME
428 # which does trigger a warning.
429 # which does trigger a warning.
429
430
430 # load the config file
431 # load the config file
431 rcfiledata = None
432 rcfiledata = None
432 if opts_all.quick:
433 if opts_all.quick:
433 print 'Launching IPython in quick mode. No config file read.'
434 print 'Launching IPython in quick mode. No config file read.'
434 elif opts_all.rcfile:
435 elif opts_all.rcfile:
435 try:
436 try:
436 cfg_loader = ConfigLoader(conflict)
437 cfg_loader = ConfigLoader(conflict)
437 rcfiledata = cfg_loader.load(opts_all.rcfile,typeconv,
438 rcfiledata = cfg_loader.load(opts_all.rcfile,typeconv,
438 'include',opts_all.ipythondir,
439 'include',opts_all.ipythondir,
439 purge = 1,
440 purge = 1,
440 unique = conflict['preserve'])
441 unique = conflict['preserve'])
441 except:
442 except:
442 IP.InteractiveTB()
443 IP.InteractiveTB()
443 warn('Problems loading configuration file '+
444 warn('Problems loading configuration file '+
444 `opts_all.rcfile`+
445 `opts_all.rcfile`+
445 '\nStarting with default -bare bones- configuration.')
446 '\nStarting with default -bare bones- configuration.')
446 else:
447 else:
447 warn('No valid configuration file found in either currrent directory\n'+
448 warn('No valid configuration file found in either currrent directory\n'+
448 'or in the IPython config. directory: '+`opts_all.ipythondir`+
449 'or in the IPython config. directory: '+`opts_all.ipythondir`+
449 '\nProceeding with internal defaults.')
450 '\nProceeding with internal defaults.')
450
451
451 #------------------------------------------------------------------------
452 #------------------------------------------------------------------------
452 # Set exception handlers in mode requested by user.
453 # Set exception handlers in mode requested by user.
453 otrap = OutputTrap(trap_out=1) # trap messages from magic_xmode
454 otrap = OutputTrap(trap_out=1) # trap messages from magic_xmode
454 IP.magic_xmode(opts_all.xmode)
455 IP.magic_xmode(opts_all.xmode)
455 otrap.release_out()
456 otrap.release_out()
456
457
457 #------------------------------------------------------------------------
458 #------------------------------------------------------------------------
458 # Execute user config
459 # Execute user config
459
460
460 # Create a valid config structure with the right precedence order:
461 # Create a valid config structure with the right precedence order:
461 # defaults < rcfile < command line. This needs to be in the instance, so
462 # defaults < rcfile < command line. This needs to be in the instance, so
462 # that method calls below that rely on it find it.
463 # that method calls below that rely on it find it.
463 IP.rc = rc_def.copy()
464 IP.rc = rc_def.copy()
464
465
465 # Work with a local alias inside this routine to avoid unnecessary
466 # Work with a local alias inside this routine to avoid unnecessary
466 # attribute lookups.
467 # attribute lookups.
467 IP_rc = IP.rc
468 IP_rc = IP.rc
468
469
469 IP_rc.update(opts_def)
470 IP_rc.update(opts_def)
470 if rcfiledata:
471 if rcfiledata:
471 # now we can update
472 # now we can update
472 IP_rc.update(rcfiledata)
473 IP_rc.update(rcfiledata)
473 IP_rc.update(opts)
474 IP_rc.update(opts)
474 IP_rc.update(rc_override)
475 IP_rc.update(rc_override)
475
476
476 # Store the original cmd line for reference:
477 # Store the original cmd line for reference:
477 IP_rc.opts = opts
478 IP_rc.opts = opts
478 IP_rc.args = args
479 IP_rc.args = args
479
480
480 # create a *runtime* Struct like rc for holding parameters which may be
481 # create a *runtime* Struct like rc for holding parameters which may be
481 # created and/or modified by runtime user extensions.
482 # created and/or modified by runtime user extensions.
482 IP.runtime_rc = Struct()
483 IP.runtime_rc = Struct()
483
484
484 # from this point on, all config should be handled through IP_rc,
485 # from this point on, all config should be handled through IP_rc,
485 # opts* shouldn't be used anymore.
486 # opts* shouldn't be used anymore.
486
487
487
488
488 # update IP_rc with some special things that need manual
489 # update IP_rc with some special things that need manual
489 # tweaks. Basically options which affect other options. I guess this
490 # tweaks. Basically options which affect other options. I guess this
490 # should just be written so that options are fully orthogonal and we
491 # should just be written so that options are fully orthogonal and we
491 # wouldn't worry about this stuff!
492 # wouldn't worry about this stuff!
492
493
493 if IP_rc.classic:
494 if IP_rc.classic:
494 IP_rc.quick = 1
495 IP_rc.quick = 1
495 IP_rc.cache_size = 0
496 IP_rc.cache_size = 0
496 IP_rc.pprint = 0
497 IP_rc.pprint = 0
497 IP_rc.prompt_in1 = '>>> '
498 IP_rc.prompt_in1 = '>>> '
498 IP_rc.prompt_in2 = '... '
499 IP_rc.prompt_in2 = '... '
499 IP_rc.prompt_out = ''
500 IP_rc.prompt_out = ''
500 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
501 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
501 IP_rc.colors = 'NoColor'
502 IP_rc.colors = 'NoColor'
502 IP_rc.xmode = 'Plain'
503 IP_rc.xmode = 'Plain'
503
504
504 IP.pre_config_initialization()
505 IP.pre_config_initialization()
505 # configure readline
506 # configure readline
506 # Define the history file for saving commands in between sessions
507 # Define the history file for saving commands in between sessions
507 if IP_rc.profile:
508 if IP_rc.profile:
508 histfname = 'history-%s' % IP_rc.profile
509 histfname = 'history-%s' % IP_rc.profile
509 else:
510 else:
510 histfname = 'history'
511 histfname = 'history'
511 IP.histfile = os.path.join(opts_all.ipythondir,histfname)
512 IP.histfile = os.path.join(opts_all.ipythondir,histfname)
512
513
513 # update exception handlers with rc file status
514 # update exception handlers with rc file status
514 otrap.trap_out() # I don't want these messages ever.
515 otrap.trap_out() # I don't want these messages ever.
515 IP.magic_xmode(IP_rc.xmode)
516 IP.magic_xmode(IP_rc.xmode)
516 otrap.release_out()
517 otrap.release_out()
517
518
518 # activate logging if requested and not reloading a log
519 # activate logging if requested and not reloading a log
519 if IP_rc.logplay:
520 if IP_rc.logplay:
520 IP.magic_logstart(IP_rc.logplay + ' append')
521 IP.magic_logstart(IP_rc.logplay + ' append')
521 elif IP_rc.logfile:
522 elif IP_rc.logfile:
522 IP.magic_logstart(IP_rc.logfile)
523 IP.magic_logstart(IP_rc.logfile)
523 elif IP_rc.log:
524 elif IP_rc.log:
524 IP.magic_logstart()
525 IP.magic_logstart()
525
526
526 # find user editor so that it we don't have to look it up constantly
527 # find user editor so that it we don't have to look it up constantly
527 if IP_rc.editor.strip()=='0':
528 if IP_rc.editor.strip()=='0':
528 try:
529 try:
529 ed = os.environ['EDITOR']
530 ed = os.environ['EDITOR']
530 except KeyError:
531 except KeyError:
531 if os.name == 'posix':
532 if os.name == 'posix':
532 ed = 'vi' # the only one guaranteed to be there!
533 ed = 'vi' # the only one guaranteed to be there!
533 else:
534 else:
534 ed = 'notepad' # same in Windows!
535 ed = 'notepad' # same in Windows!
535 IP_rc.editor = ed
536 IP_rc.editor = ed
536
537
537 # Keep track of whether this is an embedded instance or not (useful for
538 # Keep track of whether this is an embedded instance or not (useful for
538 # post-mortems).
539 # post-mortems).
539 IP_rc.embedded = IP.embedded
540 IP_rc.embedded = IP.embedded
540
541
541 # Recursive reload
542 # Recursive reload
542 try:
543 try:
543 from IPython import deep_reload
544 from IPython import deep_reload
544 if IP_rc.deep_reload:
545 if IP_rc.deep_reload:
545 __builtin__.reload = deep_reload.reload
546 __builtin__.reload = deep_reload.reload
546 else:
547 else:
547 __builtin__.dreload = deep_reload.reload
548 __builtin__.dreload = deep_reload.reload
548 del deep_reload
549 del deep_reload
549 except ImportError:
550 except ImportError:
550 pass
551 pass
551
552
552 # Save the current state of our namespace so that the interactive shell
553 # Save the current state of our namespace so that the interactive shell
553 # can later know which variables have been created by us from config files
554 # can later know which variables have been created by us from config files
554 # and loading. This way, loading a file (in any way) is treated just like
555 # and loading. This way, loading a file (in any way) is treated just like
555 # defining things on the command line, and %who works as expected.
556 # defining things on the command line, and %who works as expected.
556
557
557 # DON'T do anything that affects the namespace beyond this point!
558 # DON'T do anything that affects the namespace beyond this point!
558 IP.internal_ns.update(__main__.__dict__)
559 IP.internal_ns.update(__main__.__dict__)
559
560
560 #IP.internal_ns.update(locals()) # so our stuff doesn't show up in %who
561 #IP.internal_ns.update(locals()) # so our stuff doesn't show up in %who
561
562
562 # Now run through the different sections of the users's config
563 # Now run through the different sections of the users's config
563 if IP_rc.debug:
564 if IP_rc.debug:
564 print 'Trying to execute the following configuration structure:'
565 print 'Trying to execute the following configuration structure:'
565 print '(Things listed first are deeper in the inclusion tree and get'
566 print '(Things listed first are deeper in the inclusion tree and get'
566 print 'loaded first).\n'
567 print 'loaded first).\n'
567 pprint(IP_rc.__dict__)
568 pprint(IP_rc.__dict__)
568
569
569 for mod in IP_rc.import_mod:
570 for mod in IP_rc.import_mod:
570 try:
571 try:
571 exec 'import '+mod in IP.user_ns
572 exec 'import '+mod in IP.user_ns
572 except :
573 except :
573 IP.InteractiveTB()
574 IP.InteractiveTB()
574 import_fail_info(mod)
575 import_fail_info(mod)
575
576
576 for mod_fn in IP_rc.import_some:
577 for mod_fn in IP_rc.import_some:
577 if not mod_fn == []:
578 if not mod_fn == []:
578 mod,fn = mod_fn[0],','.join(mod_fn[1:])
579 mod,fn = mod_fn[0],','.join(mod_fn[1:])
579 try:
580 try:
580 exec 'from '+mod+' import '+fn in IP.user_ns
581 exec 'from '+mod+' import '+fn in IP.user_ns
581 except :
582 except :
582 IP.InteractiveTB()
583 IP.InteractiveTB()
583 import_fail_info(mod,fn)
584 import_fail_info(mod,fn)
584
585
585 for mod in IP_rc.import_all:
586 for mod in IP_rc.import_all:
586 try:
587 try:
587 exec 'from '+mod+' import *' in IP.user_ns
588 exec 'from '+mod+' import *' in IP.user_ns
588 except :
589 except :
589 IP.InteractiveTB()
590 IP.InteractiveTB()
590 import_fail_info(mod)
591 import_fail_info(mod)
591
592
592 for code in IP_rc.execute:
593 for code in IP_rc.execute:
593 try:
594 try:
594 exec code in IP.user_ns
595 exec code in IP.user_ns
595 except:
596 except:
596 IP.InteractiveTB()
597 IP.InteractiveTB()
597 warn('Failure executing code: ' + `code`)
598 warn('Failure executing code: ' + `code`)
598
599
599 # Execute the files the user wants in ipythonrc
600 # Execute the files the user wants in ipythonrc
600 for file in IP_rc.execfile:
601 for file in IP_rc.execfile:
601 try:
602 try:
602 file = filefind(file,sys.path+[IPython_dir])
603 file = filefind(file,sys.path+[IPython_dir])
603 except IOError:
604 except IOError:
604 warn(itpl('File $file not found. Skipping it.'))
605 warn(itpl('File $file not found. Skipping it.'))
605 else:
606 else:
606 IP.safe_execfile(os.path.expanduser(file),IP.user_ns)
607 IP.safe_execfile(os.path.expanduser(file),IP.user_ns)
607
608
608 # finally, try importing ipy_*_conf for final configuration
609 # finally, try importing ipy_*_conf for final configuration
609 try:
610 try:
610 import ipy_system_conf
611 import ipy_system_conf
611 except ImportError:
612 except ImportError:
612 if opts_all.debug: IP.InteractiveTB()
613 if opts_all.debug: IP.InteractiveTB()
613 warn("Could not import 'ipy_system_conf'")
614 warn("Could not import 'ipy_system_conf'")
614 except:
615 except:
615 IP.InteractiveTB()
616 IP.InteractiveTB()
616 import_fail_info('ipy_system_conf')
617 import_fail_info('ipy_system_conf')
617
618
618 if opts_all.profile:
619 if opts_all.profile:
619 profmodname = 'ipy_profile_' + opts_all.profile
620 profmodname = 'ipy_profile_' + opts_all.profile
620 try:
621 try:
621 __import__(profmodname)
622 __import__(profmodname)
622 except ImportError:
623 except ImportError:
623 # only warn if ipythonrc-PROFNAME didn't exist
624 # only warn if ipythonrc-PROFNAME didn't exist
624 if opts.profile =='':
625 if opts.profile =='':
625 warn("Could not start with profile '%s'!\n"
626 warn("Could not start with profile '%s'!\n"
626 "('%s/%s.py' does not exist? run '%%upgrade')" %
627 "('%s/%s.py' does not exist? run '%%upgrade')" %
627 (opts_all.profile, opts_all.ipythondir, profmodname) )
628 (opts_all.profile, opts_all.ipythondir, profmodname) )
628 except:
629 except:
629 print "Error importing",profmodname,"- perhaps you should run %upgrade?"
630 print "Error importing",profmodname,"- perhaps you should run %upgrade?"
630 IP.InteractiveTB()
631 IP.InteractiveTB()
631 import_fail_info(profmodname)
632 import_fail_info(profmodname)
632
633
633 try:
634 try:
634 import ipy_user_conf
635 import ipy_user_conf
635 except ImportError:
636 except ImportError:
636 if opts_all.debug: IP.InteractiveTB()
637 if opts_all.debug: IP.InteractiveTB()
637 warn("Could not import user config!\n "
638 warn("Could not import user config!\n "
638 "('%s/ipy_user_conf.py' does not exist? Please run '%%upgrade')\n"
639 "('%s/ipy_user_conf.py' does not exist? Please run '%%upgrade')\n"
639 % opts_all.ipythondir)
640 % opts_all.ipythondir)
640 except:
641 except:
641 print "Error importing ipy_user_conf - perhaps you should run %upgrade?"
642 print "Error importing ipy_user_conf - perhaps you should run %upgrade?"
642 IP.InteractiveTB()
643 IP.InteractiveTB()
643 import_fail_info("ipy_user_conf")
644 import_fail_info("ipy_user_conf")
644
645
645 # release stdout and stderr and save config log into a global summary
646 # release stdout and stderr and save config log into a global summary
646 msg.config.release_all()
647 msg.config.release_all()
647 if IP_rc.messages:
648 if IP_rc.messages:
648 msg.summary += msg.config.summary_all()
649 msg.summary += msg.config.summary_all()
649
650
650 #------------------------------------------------------------------------
651 #------------------------------------------------------------------------
651 # Setup interactive session
652 # Setup interactive session
652
653
653 # Now we should be fully configured. We can then execute files or load
654 # Now we should be fully configured. We can then execute files or load
654 # things only needed for interactive use. Then we'll open the shell.
655 # things only needed for interactive use. Then we'll open the shell.
655
656
656 # Take a snapshot of the user namespace before opening the shell. That way
657 # Take a snapshot of the user namespace before opening the shell. That way
657 # we'll be able to identify which things were interactively defined and
658 # we'll be able to identify which things were interactively defined and
658 # which were defined through config files.
659 # which were defined through config files.
659 IP.user_config_ns = IP.user_ns.copy()
660 IP.user_config_ns = IP.user_ns.copy()
660
661
661 # Force reading a file as if it were a session log. Slower but safer.
662 # Force reading a file as if it were a session log. Slower but safer.
662 if load_logplay:
663 if load_logplay:
663 print 'Replaying log...'
664 print 'Replaying log...'
664 try:
665 try:
665 if IP_rc.debug:
666 if IP_rc.debug:
666 logplay_quiet = 0
667 logplay_quiet = 0
667 else:
668 else:
668 logplay_quiet = 1
669 logplay_quiet = 1
669
670
670 msg.logplay.trap_all()
671 msg.logplay.trap_all()
671 IP.safe_execfile(load_logplay,IP.user_ns,
672 IP.safe_execfile(load_logplay,IP.user_ns,
672 islog = 1, quiet = logplay_quiet)
673 islog = 1, quiet = logplay_quiet)
673 msg.logplay.release_all()
674 msg.logplay.release_all()
674 if IP_rc.messages:
675 if IP_rc.messages:
675 msg.summary += msg.logplay.summary_all()
676 msg.summary += msg.logplay.summary_all()
676 except:
677 except:
677 warn('Problems replaying logfile %s.' % load_logplay)
678 warn('Problems replaying logfile %s.' % load_logplay)
678 IP.InteractiveTB()
679 IP.InteractiveTB()
679
680
680 # Load remaining files in command line
681 # Load remaining files in command line
681 msg.user_exec.trap_all()
682 msg.user_exec.trap_all()
682
683
683 # Do NOT execute files named in the command line as scripts to be loaded
684 # Do NOT execute files named in the command line as scripts to be loaded
684 # by embedded instances. Doing so has the potential for an infinite
685 # by embedded instances. Doing so has the potential for an infinite
685 # recursion if there are exceptions thrown in the process.
686 # recursion if there are exceptions thrown in the process.
686
687
687 # XXX FIXME: the execution of user files should be moved out to after
688 # XXX FIXME: the execution of user files should be moved out to after
688 # ipython is fully initialized, just as if they were run via %run at the
689 # ipython is fully initialized, just as if they were run via %run at the
689 # ipython prompt. This would also give them the benefit of ipython's
690 # ipython prompt. This would also give them the benefit of ipython's
690 # nice tracebacks.
691 # nice tracebacks.
691
692
692 if (not embedded and IP_rc.args and
693 if (not embedded and IP_rc.args and
693 not IP_rc.args[0].lower().endswith('.ipy')):
694 not IP_rc.args[0].lower().endswith('.ipy')):
694 name_save = IP.user_ns['__name__']
695 name_save = IP.user_ns['__name__']
695 IP.user_ns['__name__'] = '__main__'
696 IP.user_ns['__name__'] = '__main__'
696 # Set our own excepthook in case the user code tries to call it
697 # Set our own excepthook in case the user code tries to call it
697 # directly. This prevents triggering the IPython crash handler.
698 # directly. This prevents triggering the IPython crash handler.
698 old_excepthook,sys.excepthook = sys.excepthook, IP.excepthook
699 old_excepthook,sys.excepthook = sys.excepthook, IP.excepthook
699
700
700 save_argv = sys.argv[1:] # save it for later restoring
701 save_argv = sys.argv[1:] # save it for later restoring
701
702
702 sys.argv = args
703 sys.argv = args
703
704
704 try:
705 try:
705 IP.safe_execfile(args[0], IP.user_ns)
706 IP.safe_execfile(args[0], IP.user_ns)
706 finally:
707 finally:
707 # Reset our crash handler in place
708 # Reset our crash handler in place
708 sys.excepthook = old_excepthook
709 sys.excepthook = old_excepthook
709 sys.argv[:] = save_argv
710 sys.argv[:] = save_argv
710 IP.user_ns['__name__'] = name_save
711 IP.user_ns['__name__'] = name_save
711
712
712 msg.user_exec.release_all()
713 msg.user_exec.release_all()
713
714
714 if IP_rc.messages:
715 if IP_rc.messages:
715 msg.summary += msg.user_exec.summary_all()
716 msg.summary += msg.user_exec.summary_all()
716
717
717 # since we can't specify a null string on the cmd line, 0 is the equivalent:
718 # since we can't specify a null string on the cmd line, 0 is the equivalent:
718 if IP_rc.nosep:
719 if IP_rc.nosep:
719 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
720 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
720 if IP_rc.separate_in == '0': IP_rc.separate_in = ''
721 if IP_rc.separate_in == '0': IP_rc.separate_in = ''
721 if IP_rc.separate_out == '0': IP_rc.separate_out = ''
722 if IP_rc.separate_out == '0': IP_rc.separate_out = ''
722 if IP_rc.separate_out2 == '0': IP_rc.separate_out2 = ''
723 if IP_rc.separate_out2 == '0': IP_rc.separate_out2 = ''
723 IP_rc.separate_in = IP_rc.separate_in.replace('\\n','\n')
724 IP_rc.separate_in = IP_rc.separate_in.replace('\\n','\n')
724 IP_rc.separate_out = IP_rc.separate_out.replace('\\n','\n')
725 IP_rc.separate_out = IP_rc.separate_out.replace('\\n','\n')
725 IP_rc.separate_out2 = IP_rc.separate_out2.replace('\\n','\n')
726 IP_rc.separate_out2 = IP_rc.separate_out2.replace('\\n','\n')
726
727
727 # Determine how many lines at the bottom of the screen are needed for
728 # Determine how many lines at the bottom of the screen are needed for
728 # showing prompts, so we can know wheter long strings are to be printed or
729 # showing prompts, so we can know wheter long strings are to be printed or
729 # paged:
730 # paged:
730 num_lines_bot = IP_rc.separate_in.count('\n')+1
731 num_lines_bot = IP_rc.separate_in.count('\n')+1
731 IP_rc.screen_length = IP_rc.screen_length - num_lines_bot
732 IP_rc.screen_length = IP_rc.screen_length - num_lines_bot
732
733
733 # configure startup banner
734 # configure startup banner
734 if IP_rc.c: # regular python doesn't print the banner with -c
735 if IP_rc.c: # regular python doesn't print the banner with -c
735 IP_rc.banner = 0
736 IP_rc.banner = 0
736 if IP_rc.banner:
737 if IP_rc.banner:
737 BANN_P = IP.BANNER_PARTS
738 BANN_P = IP.BANNER_PARTS
738 else:
739 else:
739 BANN_P = []
740 BANN_P = []
740
741
741 if IP_rc.profile: BANN_P.append('IPython profile: %s\n' % IP_rc.profile)
742 if IP_rc.profile: BANN_P.append('IPython profile: %s\n' % IP_rc.profile)
742
743
743 # add message log (possibly empty)
744 # add message log (possibly empty)
744 if msg.summary: BANN_P.append(msg.summary)
745 if msg.summary: BANN_P.append(msg.summary)
745 # Final banner is a string
746 # Final banner is a string
746 IP.BANNER = '\n'.join(BANN_P)
747 IP.BANNER = '\n'.join(BANN_P)
747
748
748 # Finalize the IPython instance. This assumes the rc structure is fully
749 # Finalize the IPython instance. This assumes the rc structure is fully
749 # in place.
750 # in place.
750 IP.post_config_initialization()
751 IP.post_config_initialization()
751
752
752 return IP
753 return IP
753 #************************ end of file <ipmaker.py> **************************
754 #************************ end of file <ipmaker.py> **************************
@@ -1,314 +1,360 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 """Module for interactively running scripts.
2 """Module for interactively running scripts.
3
3
4 This module implements classes for interactively running scripts written for
4 This module implements classes for interactively running scripts written for
5 any system with a prompt which can be matched by a regexp suitable for
5 any system with a prompt which can be matched by a regexp suitable for
6 pexpect. It can be used to run as if they had been typed up interactively, an
6 pexpect. It can be used to run as if they had been typed up interactively, an
7 arbitrary series of commands for the target system.
7 arbitrary series of commands for the target system.
8
8
9 The module includes classes ready for IPython (with the default prompts),
9 The module includes classes ready for IPython (with the default prompts),
10 plain Python and SAGE, but making a new one is trivial. To see how to use it,
10 plain Python and SAGE, but making a new one is trivial. To see how to use it,
11 simply run the module as a script:
11 simply run the module as a script:
12
12
13 ./irunner.py --help
13 ./irunner.py --help
14
14
15
15
16 This is an extension of Ken Schutte <kschutte-AT-csail.mit.edu>'s script
16 This is an extension of Ken Schutte <kschutte-AT-csail.mit.edu>'s script
17 contributed on the ipython-user list:
17 contributed on the ipython-user list:
18
18
19 http://scipy.net/pipermail/ipython-user/2006-May/001705.html
19 http://scipy.net/pipermail/ipython-user/2006-May/001705.html
20
20
21
21
22 NOTES:
22 NOTES:
23
23
24 - This module requires pexpect, available in most linux distros, or which can
24 - This module requires pexpect, available in most linux distros, or which can
25 be downloaded from
25 be downloaded from
26
26
27 http://pexpect.sourceforge.net
27 http://pexpect.sourceforge.net
28
28
29 - Because pexpect only works under Unix or Windows-Cygwin, this has the same
29 - Because pexpect only works under Unix or Windows-Cygwin, this has the same
30 limitations. This means that it will NOT work under native windows Python.
30 limitations. This means that it will NOT work under native windows Python.
31 """
31 """
32
32
33 # Stdlib imports
33 # Stdlib imports
34 import optparse
34 import optparse
35 import os
35 import os
36 import sys
36 import sys
37
37
38 # Third-party modules.
38 # Third-party modules.
39 import pexpect
39 import pexpect
40
40
41 # Global usage strings, to avoid indentation issues when typing it below.
41 # Global usage strings, to avoid indentation issues when typing it below.
42 USAGE = """
42 USAGE = """
43 Interactive script runner, type: %s
43 Interactive script runner, type: %s
44
44
45 runner [opts] script_name
45 runner [opts] script_name
46 """
46 """
47
47
48 # The generic runner class
48 # The generic runner class
49 class InteractiveRunner(object):
49 class InteractiveRunner(object):
50 """Class to run a sequence of commands through an interactive program."""
50 """Class to run a sequence of commands through an interactive program."""
51
51
52 def __init__(self,program,prompts,args=None):
52 def __init__(self,program,prompts,args=None,out=sys.stdout,echo=True):
53 """Construct a runner.
53 """Construct a runner.
54
54
55 Inputs:
55 Inputs:
56
56
57 - program: command to execute the given program.
57 - program: command to execute the given program.
58
58
59 - prompts: a list of patterns to match as valid prompts, in the
59 - prompts: a list of patterns to match as valid prompts, in the
60 format used by pexpect. This basically means that it can be either
60 format used by pexpect. This basically means that it can be either
61 a string (to be compiled as a regular expression) or a list of such
61 a string (to be compiled as a regular expression) or a list of such
62 (it must be a true list, as pexpect does type checks).
62 (it must be a true list, as pexpect does type checks).
63
63
64 If more than one prompt is given, the first is treated as the main
64 If more than one prompt is given, the first is treated as the main
65 program prompt and the others as 'continuation' prompts, like
65 program prompt and the others as 'continuation' prompts, like
66 python's. This means that blank lines in the input source are
66 python's. This means that blank lines in the input source are
67 ommitted when the first prompt is matched, but are NOT ommitted when
67 ommitted when the first prompt is matched, but are NOT ommitted when
68 the continuation one matches, since this is how python signals the
68 the continuation one matches, since this is how python signals the
69 end of multiline input interactively.
69 end of multiline input interactively.
70
70
71 Optional inputs:
71 Optional inputs:
72
72
73 - args(None): optional list of strings to pass as arguments to the
73 - args(None): optional list of strings to pass as arguments to the
74 child program.
74 child program.
75
75
76 - out(sys.stdout): if given, an output stream to be used when writing
77 output. The only requirement is that it must have a .write() method.
78
76 Public members not parameterized in the constructor:
79 Public members not parameterized in the constructor:
77
80
78 - delaybeforesend(0): Newer versions of pexpect have a delay before
81 - delaybeforesend(0): Newer versions of pexpect have a delay before
79 sending each new input. For our purposes here, it's typically best
82 sending each new input. For our purposes here, it's typically best
80 to just set this to zero, but if you encounter reliability problems
83 to just set this to zero, but if you encounter reliability problems
81 or want an interactive run to pause briefly at each prompt, just
84 or want an interactive run to pause briefly at each prompt, just
82 increase this value (it is measured in seconds). Note that this
85 increase this value (it is measured in seconds). Note that this
83 variable is not honored at all by older versions of pexpect.
86 variable is not honored at all by older versions of pexpect.
84 """
87 """
85
88
86 self.program = program
89 self.program = program
87 self.prompts = prompts
90 self.prompts = prompts
88 if args is None: args = []
91 if args is None: args = []
89 self.args = args
92 self.args = args
93 self.out = out
94 self.echo = echo
90 # Other public members which we don't make as parameters, but which
95 # Other public members which we don't make as parameters, but which
91 # users may occasionally want to tweak
96 # users may occasionally want to tweak
92 self.delaybeforesend = 0
97 self.delaybeforesend = 0
93
98
94 def run_file(self,fname,interact=False):
99 # Create child process and hold on to it so we don't have to re-create
100 # for every single execution call
101 c = self.child = pexpect.spawn(self.program,self.args,timeout=None)
102 c.delaybeforesend = self.delaybeforesend
103 # pexpect hard-codes the terminal size as (24,80) (rows,columns).
104 # This causes problems because any line longer than 80 characters gets
105 # completely overwrapped on the printed outptut (even though
106 # internally the code runs fine). We reset this to 99 rows X 200
107 # columns (arbitrarily chosen), which should avoid problems in all
108 # reasonable cases.
109 c.setwinsize(99,200)
110
111 def close(self):
112 """close child process"""
113
114 self.child.close()
115
116 def run_file(self,fname,interact=False,get_output=False):
95 """Run the given file interactively.
117 """Run the given file interactively.
96
118
97 Inputs:
119 Inputs:
98
120
99 -fname: name of the file to execute.
121 -fname: name of the file to execute.
100
122
101 See the run_source docstring for the meaning of the optional
123 See the run_source docstring for the meaning of the optional
102 arguments."""
124 arguments."""
103
125
104 fobj = open(fname,'r')
126 fobj = open(fname,'r')
105 try:
127 try:
106 self.run_source(fobj,interact)
128 out = self.run_source(fobj,interact,get_output)
107 finally:
129 finally:
108 fobj.close()
130 fobj.close()
131 if get_output:
132 return out
109
133
110 def run_source(self,source,interact=False):
134 def run_source(self,source,interact=False,get_output=False):
111 """Run the given source code interactively.
135 """Run the given source code interactively.
112
136
113 Inputs:
137 Inputs:
114
138
115 - source: a string of code to be executed, or an open file object we
139 - source: a string of code to be executed, or an open file object we
116 can iterate over.
140 can iterate over.
117
141
118 Optional inputs:
142 Optional inputs:
119
143
120 - interact(False): if true, start to interact with the running
144 - interact(False): if true, start to interact with the running
121 program at the end of the script. Otherwise, just exit.
145 program at the end of the script. Otherwise, just exit.
146
147 - get_output(False): if true, capture the output of the child process
148 (filtering the input commands out) and return it as a string.
149
150 Returns:
151 A string containing the process output, but only if requested.
122 """
152 """
123
153
124 # if the source is a string, chop it up in lines so we can iterate
154 # if the source is a string, chop it up in lines so we can iterate
125 # over it just as if it were an open file.
155 # over it just as if it were an open file.
126 if not isinstance(source,file):
156 if not isinstance(source,file):
127 source = source.splitlines(True)
157 source = source.splitlines(True)
128
158
129 # grab the true write method of stdout, in case anything later
159 if self.echo:
130 # reassigns sys.stdout, so that we really are writing to the true
160 # normalize all strings we write to use the native OS line
131 # stdout and not to something else. We also normalize all strings we
161 # separators.
132 # write to use the native OS line separators.
162 linesep = os.linesep
133 linesep = os.linesep
163 stdwrite = self.out.write
134 stdwrite = sys.stdout.write
164 write = lambda s: stdwrite(s.replace('\r\n',linesep))
135 write = lambda s: stdwrite(s.replace('\r\n',linesep))
165 else:
136
166 # Quiet mode, all writes are no-ops
137 c = pexpect.spawn(self.program,self.args,timeout=None)
167 write = lambda s: None
138 c.delaybeforesend = self.delaybeforesend
139
140 # pexpect hard-codes the terminal size as (24,80) (rows,columns).
141 # This causes problems because any line longer than 80 characters gets
142 # completely overwrapped on the printed outptut (even though
143 # internally the code runs fine). We reset this to 99 rows X 200
144 # columns (arbitrarily chosen), which should avoid problems in all
145 # reasonable cases.
146 c.setwinsize(99,200)
147
168
169 c = self.child
148 prompts = c.compile_pattern_list(self.prompts)
170 prompts = c.compile_pattern_list(self.prompts)
149
150 prompt_idx = c.expect_list(prompts)
171 prompt_idx = c.expect_list(prompts)
172
151 # Flag whether the script ends normally or not, to know whether we can
173 # Flag whether the script ends normally or not, to know whether we can
152 # do anything further with the underlying process.
174 # do anything further with the underlying process.
153 end_normal = True
175 end_normal = True
176
177 # If the output was requested, store it in a list for return at the end
178 if get_output:
179 output = []
180 store_output = output.append
181
154 for cmd in source:
182 for cmd in source:
155 # skip blank lines for all matches to the 'main' prompt, while the
183 # skip blank lines for all matches to the 'main' prompt, while the
156 # secondary prompts do not
184 # secondary prompts do not
157 if prompt_idx==0 and \
185 if prompt_idx==0 and \
158 (cmd.isspace() or cmd.lstrip().startswith('#')):
186 (cmd.isspace() or cmd.lstrip().startswith('#')):
159 print cmd,
187 write(cmd)
160 continue
188 continue
161
189
190 #write('AFTER: '+c.after) # dbg
162 write(c.after)
191 write(c.after)
163 c.send(cmd)
192 c.send(cmd)
164 try:
193 try:
165 prompt_idx = c.expect_list(prompts)
194 prompt_idx = c.expect_list(prompts)
166 except pexpect.EOF:
195 except pexpect.EOF:
167 # this will happen if the child dies unexpectedly
196 # this will happen if the child dies unexpectedly
168 write(c.before)
197 write(c.before)
169 end_normal = False
198 end_normal = False
170 break
199 break
200
171 write(c.before)
201 write(c.before)
172
202
203 # With an echoing process, the output we get in c.before contains
204 # the command sent, a newline, and then the actual process output
205 if get_output:
206 store_output(c.before[len(cmd+'\n'):])
207 #write('CMD: <<%s>>' % cmd) # dbg
208 #write('OUTPUT: <<%s>>' % output[-1]) # dbg
209
210 self.out.flush()
173 if end_normal:
211 if end_normal:
174 if interact:
212 if interact:
175 c.send('\n')
213 c.send('\n')
176 print '<< Starting interactive mode >>',
214 print '<< Starting interactive mode >>',
177 try:
215 try:
178 c.interact()
216 c.interact()
179 except OSError:
217 except OSError:
180 # This is what fires when the child stops. Simply print a
218 # This is what fires when the child stops. Simply print a
181 # newline so the system prompt is aligned. The extra
219 # newline so the system prompt is aligned. The extra
182 # space is there to make sure it gets printed, otherwise
220 # space is there to make sure it gets printed, otherwise
183 # OS buffering sometimes just suppresses it.
221 # OS buffering sometimes just suppresses it.
184 write(' \n')
222 write(' \n')
185 sys.stdout.flush()
223 self.out.flush()
186 else:
187 c.close()
188 else:
224 else:
189 if interact:
225 if interact:
190 e="Further interaction is not possible: child process is dead."
226 e="Further interaction is not possible: child process is dead."
191 print >> sys.stderr, e
227 print >> sys.stderr, e
228
229 # Leave the child ready for more input later on, otherwise select just
230 # hangs on the second invocation.
231 c.send('\n')
232
233 # Return any requested output
234 if get_output:
235 return ''.join(output)
192
236
193 def main(self,argv=None):
237 def main(self,argv=None):
194 """Run as a command-line script."""
238 """Run as a command-line script."""
195
239
196 parser = optparse.OptionParser(usage=USAGE % self.__class__.__name__)
240 parser = optparse.OptionParser(usage=USAGE % self.__class__.__name__)
197 newopt = parser.add_option
241 newopt = parser.add_option
198 newopt('-i','--interact',action='store_true',default=False,
242 newopt('-i','--interact',action='store_true',default=False,
199 help='Interact with the program after the script is run.')
243 help='Interact with the program after the script is run.')
200
244
201 opts,args = parser.parse_args(argv)
245 opts,args = parser.parse_args(argv)
202
246
203 if len(args) != 1:
247 if len(args) != 1:
204 print >> sys.stderr,"You must supply exactly one file to run."
248 print >> sys.stderr,"You must supply exactly one file to run."
205 sys.exit(1)
249 sys.exit(1)
206
250
207 self.run_file(args[0],opts.interact)
251 self.run_file(args[0],opts.interact)
208
252
209
253
210 # Specific runners for particular programs
254 # Specific runners for particular programs
211 class IPythonRunner(InteractiveRunner):
255 class IPythonRunner(InteractiveRunner):
212 """Interactive IPython runner.
256 """Interactive IPython runner.
213
257
214 This initalizes IPython in 'nocolor' mode for simplicity. This lets us
258 This initalizes IPython in 'nocolor' mode for simplicity. This lets us
215 avoid having to write a regexp that matches ANSI sequences, though pexpect
259 avoid having to write a regexp that matches ANSI sequences, though pexpect
216 does support them. If anyone contributes patches for ANSI color support,
260 does support them. If anyone contributes patches for ANSI color support,
217 they will be welcome.
261 they will be welcome.
218
262
219 It also sets the prompts manually, since the prompt regexps for
263 It also sets the prompts manually, since the prompt regexps for
220 pexpect need to be matched to the actual prompts, so user-customized
264 pexpect need to be matched to the actual prompts, so user-customized
221 prompts would break this.
265 prompts would break this.
222 """
266 """
223
267
224 def __init__(self,program = 'ipython',args=None):
268 def __init__(self,program = 'ipython',args=None,out=sys.stdout,echo=True):
225 """New runner, optionally passing the ipython command to use."""
269 """New runner, optionally passing the ipython command to use."""
226
270
227 args0 = ['-colors','NoColor',
271 args0 = ['-colors','NoColor',
228 '-pi1','In [\\#]: ',
272 '-pi1','In [\\#]: ',
229 '-pi2',' .\\D.: ']
273 '-pi2',' .\\D.: ',
274 '-noterm_title',
275 '-noautoindent']
230 if args is None: args = args0
276 if args is None: args = args0
231 else: args = args0 + args
277 else: args = args0 + args
232 prompts = [r'In \[\d+\]: ',r' \.*: ']
278 prompts = [r'In \[\d+\]: ',r' \.*: ']
233 InteractiveRunner.__init__(self,program,prompts,args)
279 InteractiveRunner.__init__(self,program,prompts,args,out,echo)
234
280
235
281
236 class PythonRunner(InteractiveRunner):
282 class PythonRunner(InteractiveRunner):
237 """Interactive Python runner."""
283 """Interactive Python runner."""
238
284
239 def __init__(self,program='python',args=None):
285 def __init__(self,program='python',args=None,out=sys.stdout,echo=True):
240 """New runner, optionally passing the python command to use."""
286 """New runner, optionally passing the python command to use."""
241
287
242 prompts = [r'>>> ',r'\.\.\. ']
288 prompts = [r'>>> ',r'\.\.\. ']
243 InteractiveRunner.__init__(self,program,prompts,args)
289 InteractiveRunner.__init__(self,program,prompts,args,out,echo)
244
290
245
291
246 class SAGERunner(InteractiveRunner):
292 class SAGERunner(InteractiveRunner):
247 """Interactive SAGE runner.
293 """Interactive SAGE runner.
248
294
249 WARNING: this runner only works if you manually configure your SAGE copy
295 WARNING: this runner only works if you manually configure your SAGE copy
250 to use 'colors NoColor' in the ipythonrc config file, since currently the
296 to use 'colors NoColor' in the ipythonrc config file, since currently the
251 prompt matching regexp does not identify color sequences."""
297 prompt matching regexp does not identify color sequences."""
252
298
253 def __init__(self,program='sage',args=None):
299 def __init__(self,program='sage',args=None,out=sys.stdout,echo=True):
254 """New runner, optionally passing the sage command to use."""
300 """New runner, optionally passing the sage command to use."""
255
301
256 prompts = ['sage: ',r'\s*\.\.\. ']
302 prompts = ['sage: ',r'\s*\.\.\. ']
257 InteractiveRunner.__init__(self,program,prompts,args)
303 InteractiveRunner.__init__(self,program,prompts,args,out,echo)
258
304
259 # Global usage string, to avoid indentation issues if typed in a function def.
305 # Global usage string, to avoid indentation issues if typed in a function def.
260 MAIN_USAGE = """
306 MAIN_USAGE = """
261 %prog [options] file_to_run
307 %prog [options] file_to_run
262
308
263 This is an interface to the various interactive runners available in this
309 This is an interface to the various interactive runners available in this
264 module. If you want to pass specific options to one of the runners, you need
310 module. If you want to pass specific options to one of the runners, you need
265 to first terminate the main options with a '--', and then provide the runner's
311 to first terminate the main options with a '--', and then provide the runner's
266 options. For example:
312 options. For example:
267
313
268 irunner.py --python -- --help
314 irunner.py --python -- --help
269
315
270 will pass --help to the python runner. Similarly,
316 will pass --help to the python runner. Similarly,
271
317
272 irunner.py --ipython -- --interact script.ipy
318 irunner.py --ipython -- --interact script.ipy
273
319
274 will run the script.ipy file under the IPython runner, and then will start to
320 will run the script.ipy file under the IPython runner, and then will start to
275 interact with IPython at the end of the script (instead of exiting).
321 interact with IPython at the end of the script (instead of exiting).
276
322
277 The already implemented runners are listed below; adding one for a new program
323 The already implemented runners are listed below; adding one for a new program
278 is a trivial task, see the source for examples.
324 is a trivial task, see the source for examples.
279
325
280 WARNING: the SAGE runner only works if you manually configure your SAGE copy
326 WARNING: the SAGE runner only works if you manually configure your SAGE copy
281 to use 'colors NoColor' in the ipythonrc config file, since currently the
327 to use 'colors NoColor' in the ipythonrc config file, since currently the
282 prompt matching regexp does not identify color sequences.
328 prompt matching regexp does not identify color sequences.
283 """
329 """
284
330
285 def main():
331 def main():
286 """Run as a command-line script."""
332 """Run as a command-line script."""
287
333
288 parser = optparse.OptionParser(usage=MAIN_USAGE)
334 parser = optparse.OptionParser(usage=MAIN_USAGE)
289 newopt = parser.add_option
335 newopt = parser.add_option
290 parser.set_defaults(mode='ipython')
336 parser.set_defaults(mode='ipython')
291 newopt('--ipython',action='store_const',dest='mode',const='ipython',
337 newopt('--ipython',action='store_const',dest='mode',const='ipython',
292 help='IPython interactive runner (default).')
338 help='IPython interactive runner (default).')
293 newopt('--python',action='store_const',dest='mode',const='python',
339 newopt('--python',action='store_const',dest='mode',const='python',
294 help='Python interactive runner.')
340 help='Python interactive runner.')
295 newopt('--sage',action='store_const',dest='mode',const='sage',
341 newopt('--sage',action='store_const',dest='mode',const='sage',
296 help='SAGE interactive runner.')
342 help='SAGE interactive runner.')
297
343
298 opts,args = parser.parse_args()
344 opts,args = parser.parse_args()
299 runners = dict(ipython=IPythonRunner,
345 runners = dict(ipython=IPythonRunner,
300 python=PythonRunner,
346 python=PythonRunner,
301 sage=SAGERunner)
347 sage=SAGERunner)
302
348
303 try:
349 try:
304 ext = os.path.splitext(args[0])[-1]
350 ext = os.path.splitext(args[0])[-1]
305 except IndexError:
351 except IndexError:
306 ext = ''
352 ext = ''
307 modes = {'.ipy':'ipython',
353 modes = {'.ipy':'ipython',
308 '.py':'python',
354 '.py':'python',
309 '.sage':'sage'}
355 '.sage':'sage'}
310 mode = modes.get(ext,opts.mode)
356 mode = modes.get(ext,opts.mode)
311 runners[mode]().main(args)
357 runners[mode]().main(args)
312
358
313 if __name__ == '__main__':
359 if __name__ == '__main__':
314 main()
360 main()
@@ -1,6177 +1,6189 b''
1 2007-01-27 Fernando Perez <Fernando.Perez@colorado.edu>
2
3 * IPython/irunner.py (InteractiveRunner.run_source): major updates
4 to irunner to allow it to correctly support real doctesting of
5 out-of-process ipython code.
6
7 * IPython/Magic.py (magic_cd): Make the setting of the terminal
8 title an option (-noterm_title) because it completely breaks
9 doctesting.
10
11 * IPython/demo.py: fix IPythonDemo class that was not actually working.
12
1 2007-01-24 Fernando Perez <Fernando.Perez@colorado.edu>
13 2007-01-24 Fernando Perez <Fernando.Perez@colorado.edu>
2
14
3 * IPython/irunner.py (main): fix small bug where extensions were
15 * IPython/irunner.py (main): fix small bug where extensions were
4 not being correctly recognized.
16 not being correctly recognized.
5
17
6 2007-01-23 Walter Doerwald <walter@livinglogic.de>
18 2007-01-23 Walter Doerwald <walter@livinglogic.de>
7
19
8 * IPython/Extensions/ipipe.py (xiter): Make sure that iterating
20 * IPython/Extensions/ipipe.py (xiter): Make sure that iterating
9 a string containing a single line yields the string itself as the
21 a string containing a single line yields the string itself as the
10 only item.
22 only item.
11
23
12 * IPython/Extensions/ibrowse.py (ibrowse): Avoid entering an
24 * IPython/Extensions/ibrowse.py (ibrowse): Avoid entering an
13 object if it's the same as the one on the last level (This avoids
25 object if it's the same as the one on the last level (This avoids
14 infinite recursion for one line strings).
26 infinite recursion for one line strings).
15
27
16 2007-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
28 2007-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
17
29
18 * IPython/ultraTB.py (AutoFormattedTB.__call__): properly flush
30 * IPython/ultraTB.py (AutoFormattedTB.__call__): properly flush
19 all output streams before printing tracebacks. This ensures that
31 all output streams before printing tracebacks. This ensures that
20 user output doesn't end up interleaved with traceback output.
32 user output doesn't end up interleaved with traceback output.
21
33
22 2007-01-10 Ville Vainio <vivainio@gmail.com>
34 2007-01-10 Ville Vainio <vivainio@gmail.com>
23
35
24 * Extensions/envpersist.py: Turbocharged %env that remembers
36 * Extensions/envpersist.py: Turbocharged %env that remembers
25 env vars across sessions; e.g. "%env PATH+=;/opt/scripts" or
37 env vars across sessions; e.g. "%env PATH+=;/opt/scripts" or
26 "%env VISUAL=jed".
38 "%env VISUAL=jed".
27
39
28 2007-01-05 Fernando Perez <Fernando.Perez@colorado.edu>
40 2007-01-05 Fernando Perez <Fernando.Perez@colorado.edu>
29
41
30 * IPython/iplib.py (showtraceback): ensure that we correctly call
42 * IPython/iplib.py (showtraceback): ensure that we correctly call
31 custom handlers in all cases (some with pdb were slipping through,
43 custom handlers in all cases (some with pdb were slipping through,
32 but I'm not exactly sure why).
44 but I'm not exactly sure why).
33
45
34 * IPython/Debugger.py (Tracer.__init__): added new class to
46 * IPython/Debugger.py (Tracer.__init__): added new class to
35 support set_trace-like usage of IPython's enhanced debugger.
47 support set_trace-like usage of IPython's enhanced debugger.
36
48
37 2006-12-24 Ville Vainio <vivainio@gmail.com>
49 2006-12-24 Ville Vainio <vivainio@gmail.com>
38
50
39 * ipmaker.py: more informative message when ipy_user_conf
51 * ipmaker.py: more informative message when ipy_user_conf
40 import fails (suggest running %upgrade).
52 import fails (suggest running %upgrade).
41
53
42 * tools/run_ipy_in_profiler.py: Utility to see where
54 * tools/run_ipy_in_profiler.py: Utility to see where
43 the time during IPython startup is spent.
55 the time during IPython startup is spent.
44
56
45 2006-12-20 Ville Vainio <vivainio@gmail.com>
57 2006-12-20 Ville Vainio <vivainio@gmail.com>
46
58
47 * 0.7.3 is out - merge all from 0.7.3 branch to trunk
59 * 0.7.3 is out - merge all from 0.7.3 branch to trunk
48
60
49 * ipapi.py: Add new ipapi method, expand_alias.
61 * ipapi.py: Add new ipapi method, expand_alias.
50
62
51 * Release.py: Bump up version to 0.7.4.svn
63 * Release.py: Bump up version to 0.7.4.svn
52
64
53 2006-12-17 Ville Vainio <vivainio@gmail.com>
65 2006-12-17 Ville Vainio <vivainio@gmail.com>
54
66
55 * Extensions/jobctrl.py: Fixed &cmd arg arg...
67 * Extensions/jobctrl.py: Fixed &cmd arg arg...
56 to work properly on posix too
68 to work properly on posix too
57
69
58 * Release.py: Update revnum (version is still just 0.7.3).
70 * Release.py: Update revnum (version is still just 0.7.3).
59
71
60 2006-12-15 Ville Vainio <vivainio@gmail.com>
72 2006-12-15 Ville Vainio <vivainio@gmail.com>
61
73
62 * scripts/ipython_win_post_install: create ipython.py in
74 * scripts/ipython_win_post_install: create ipython.py in
63 prefix + "/scripts".
75 prefix + "/scripts".
64
76
65 * Release.py: Update version to 0.7.3.
77 * Release.py: Update version to 0.7.3.
66
78
67 2006-12-14 Ville Vainio <vivainio@gmail.com>
79 2006-12-14 Ville Vainio <vivainio@gmail.com>
68
80
69 * scripts/ipython_win_post_install: Overwrite old shortcuts
81 * scripts/ipython_win_post_install: Overwrite old shortcuts
70 if they already exist
82 if they already exist
71
83
72 * Release.py: release 0.7.3rc2
84 * Release.py: release 0.7.3rc2
73
85
74 2006-12-13 Ville Vainio <vivainio@gmail.com>
86 2006-12-13 Ville Vainio <vivainio@gmail.com>
75
87
76 * Branch and update Release.py for 0.7.3rc1
88 * Branch and update Release.py for 0.7.3rc1
77
89
78 2006-12-13 Fernando Perez <Fernando.Perez@colorado.edu>
90 2006-12-13 Fernando Perez <Fernando.Perez@colorado.edu>
79
91
80 * IPython/Shell.py (IPShellWX): update for current WX naming
92 * IPython/Shell.py (IPShellWX): update for current WX naming
81 conventions, to avoid a deprecation warning with current WX
93 conventions, to avoid a deprecation warning with current WX
82 versions. Thanks to a report by Danny Shevitz.
94 versions. Thanks to a report by Danny Shevitz.
83
95
84 2006-12-12 Ville Vainio <vivainio@gmail.com>
96 2006-12-12 Ville Vainio <vivainio@gmail.com>
85
97
86 * ipmaker.py: apply david cournapeau's patch to make
98 * ipmaker.py: apply david cournapeau's patch to make
87 import_some work properly even when ipythonrc does
99 import_some work properly even when ipythonrc does
88 import_some on empty list (it was an old bug!).
100 import_some on empty list (it was an old bug!).
89
101
90 * UserConfig/ipy_user_conf.py, UserConfig/ipythonrc:
102 * UserConfig/ipy_user_conf.py, UserConfig/ipythonrc:
91 Add deprecation note to ipythonrc and a url to wiki
103 Add deprecation note to ipythonrc and a url to wiki
92 in ipy_user_conf.py
104 in ipy_user_conf.py
93
105
94
106
95 * Magic.py (%run): %run myscript.ipy now runs myscript.ipy
107 * Magic.py (%run): %run myscript.ipy now runs myscript.ipy
96 as if it was typed on IPython command prompt, i.e.
108 as if it was typed on IPython command prompt, i.e.
97 as IPython script.
109 as IPython script.
98
110
99 * example-magic.py, magic_grepl.py: remove outdated examples
111 * example-magic.py, magic_grepl.py: remove outdated examples
100
112
101 2006-12-11 Fernando Perez <Fernando.Perez@colorado.edu>
113 2006-12-11 Fernando Perez <Fernando.Perez@colorado.edu>
102
114
103 * IPython/iplib.py (debugger): prevent a nasty traceback if %debug
115 * IPython/iplib.py (debugger): prevent a nasty traceback if %debug
104 is called before any exception has occurred.
116 is called before any exception has occurred.
105
117
106 2006-12-08 Ville Vainio <vivainio@gmail.com>
118 2006-12-08 Ville Vainio <vivainio@gmail.com>
107
119
108 * Extensions/ipy_stock_completers.py.py: fix cd completer
120 * Extensions/ipy_stock_completers.py.py: fix cd completer
109 to translate /'s to \'s again.
121 to translate /'s to \'s again.
110
122
111 * completer.py: prevent traceback on file completions w/
123 * completer.py: prevent traceback on file completions w/
112 backslash.
124 backslash.
113
125
114 * Release.py: Update release number to 0.7.3b3 for release
126 * Release.py: Update release number to 0.7.3b3 for release
115
127
116 2006-12-07 Ville Vainio <vivainio@gmail.com>
128 2006-12-07 Ville Vainio <vivainio@gmail.com>
117
129
118 * Extensions/ipy_signals.py: Ignore ctrl+C in IPython process
130 * Extensions/ipy_signals.py: Ignore ctrl+C in IPython process
119 while executing external code. Provides more shell-like behaviour
131 while executing external code. Provides more shell-like behaviour
120 and overall better response to ctrl + C / ctrl + break.
132 and overall better response to ctrl + C / ctrl + break.
121
133
122 * tools/make_tarball.py: new script to create tarball straight from svn
134 * tools/make_tarball.py: new script to create tarball straight from svn
123 (setup.py sdist doesn't work on win32).
135 (setup.py sdist doesn't work on win32).
124
136
125 * Extensions/ipy_stock_completers.py: fix cd completer to give up
137 * Extensions/ipy_stock_completers.py: fix cd completer to give up
126 on dirnames with spaces and use the default completer instead.
138 on dirnames with spaces and use the default completer instead.
127
139
128 * Revision.py: Change version to 0.7.3b2 for release.
140 * Revision.py: Change version to 0.7.3b2 for release.
129
141
130 2006-12-05 Ville Vainio <vivainio@gmail.com>
142 2006-12-05 Ville Vainio <vivainio@gmail.com>
131
143
132 * Magic.py, iplib.py, completer.py: Apply R. Bernstein's
144 * Magic.py, iplib.py, completer.py: Apply R. Bernstein's
133 pydb patch 4 (rm debug printing, py 2.5 checking)
145 pydb patch 4 (rm debug printing, py 2.5 checking)
134
146
135 2006-11-30 Walter Doerwald <walter@livinglogic.de>
147 2006-11-30 Walter Doerwald <walter@livinglogic.de>
136 * IPython/Extensions/ibrowse.py: Add two new commands to ibrowse:
148 * IPython/Extensions/ibrowse.py: Add two new commands to ibrowse:
137 "refresh" (mapped to "r") refreshes the screen by restarting the iterator.
149 "refresh" (mapped to "r") refreshes the screen by restarting the iterator.
138 "refreshfind" (mapped to "R") does the same but tries to go back to the same
150 "refreshfind" (mapped to "R") does the same but tries to go back to the same
139 object the cursor was on before the refresh. The command "markrange" is
151 object the cursor was on before the refresh. The command "markrange" is
140 mapped to "%" now.
152 mapped to "%" now.
141 * IPython/Extensions/ibrowse.py: Make igrpentry and ipwdentry comparable.
153 * IPython/Extensions/ibrowse.py: Make igrpentry and ipwdentry comparable.
142
154
143 2006-11-29 Fernando Perez <Fernando.Perez@colorado.edu>
155 2006-11-29 Fernando Perez <Fernando.Perez@colorado.edu>
144
156
145 * IPython/Magic.py (magic_debug): new %debug magic to activate the
157 * IPython/Magic.py (magic_debug): new %debug magic to activate the
146 interactive debugger on the last traceback, without having to call
158 interactive debugger on the last traceback, without having to call
147 %pdb and rerun your code. Made minor changes in various modules,
159 %pdb and rerun your code. Made minor changes in various modules,
148 should automatically recognize pydb if available.
160 should automatically recognize pydb if available.
149
161
150 2006-11-28 Ville Vainio <vivainio@gmail.com>
162 2006-11-28 Ville Vainio <vivainio@gmail.com>
151
163
152 * completer.py: If the text start with !, show file completions
164 * completer.py: If the text start with !, show file completions
153 properly. This helps when trying to complete command name
165 properly. This helps when trying to complete command name
154 for shell escapes.
166 for shell escapes.
155
167
156 2006-11-27 Ville Vainio <vivainio@gmail.com>
168 2006-11-27 Ville Vainio <vivainio@gmail.com>
157
169
158 * ipy_stock_completers.py: bzr completer submitted by Stefan van
170 * ipy_stock_completers.py: bzr completer submitted by Stefan van
159 der Walt. Clean up svn and hg completers by using a common
171 der Walt. Clean up svn and hg completers by using a common
160 vcs_completer.
172 vcs_completer.
161
173
162 2006-11-26 Ville Vainio <vivainio@gmail.com>
174 2006-11-26 Ville Vainio <vivainio@gmail.com>
163
175
164 * Remove ipconfig and %config; you should use _ip.options structure
176 * Remove ipconfig and %config; you should use _ip.options structure
165 directly instead!
177 directly instead!
166
178
167 * genutils.py: add wrap_deprecated function for deprecating callables
179 * genutils.py: add wrap_deprecated function for deprecating callables
168
180
169 * iplib.py: deprecate ipmagic, ipsystem, ipalias. Use _ip.magic and
181 * iplib.py: deprecate ipmagic, ipsystem, ipalias. Use _ip.magic and
170 _ip.system instead. ipalias is redundant.
182 _ip.system instead. ipalias is redundant.
171
183
172 * Magic.py: %rehashdir no longer aliases 'cmdname' to 'cmdname.exe' on
184 * Magic.py: %rehashdir no longer aliases 'cmdname' to 'cmdname.exe' on
173 win32, but just 'cmdname'. Other extensions (non-'exe') are still made
185 win32, but just 'cmdname'. Other extensions (non-'exe') are still made
174 explicit.
186 explicit.
175
187
176 * ipy_stock_completers.py: 'hg' (mercurial VCS) now has a custom
188 * ipy_stock_completers.py: 'hg' (mercurial VCS) now has a custom
177 completer. Try it by entering 'hg ' and pressing tab.
189 completer. Try it by entering 'hg ' and pressing tab.
178
190
179 * macro.py: Give Macro a useful __repr__ method
191 * macro.py: Give Macro a useful __repr__ method
180
192
181 * Magic.py: %whos abbreviates the typename of Macro for brevity.
193 * Magic.py: %whos abbreviates the typename of Macro for brevity.
182
194
183 2006-11-24 Walter Doerwald <walter@livinglogic.de>
195 2006-11-24 Walter Doerwald <walter@livinglogic.de>
184 * IPython/Extensions/astyle.py: Do a relative import of ipipe, so that
196 * IPython/Extensions/astyle.py: Do a relative import of ipipe, so that
185 we don't get a duplicate ipipe module, where registration of the xrepr
197 we don't get a duplicate ipipe module, where registration of the xrepr
186 implementation for Text is useless.
198 implementation for Text is useless.
187
199
188 * IPython/Extensions/ipipe.py: Fix __xrepr__() implementation for ils.
200 * IPython/Extensions/ipipe.py: Fix __xrepr__() implementation for ils.
189
201
190 * IPython/Extensions/ibrowse.py: Fix keymapping for the enter command.
202 * IPython/Extensions/ibrowse.py: Fix keymapping for the enter command.
191
203
192 2006-11-24 Ville Vainio <vivainio@gmail.com>
204 2006-11-24 Ville Vainio <vivainio@gmail.com>
193
205
194 * Magic.py, manual_base.lyx: Kirill Smelkov patch:
206 * Magic.py, manual_base.lyx: Kirill Smelkov patch:
195 try to use "cProfile" instead of the slower pure python
207 try to use "cProfile" instead of the slower pure python
196 "profile"
208 "profile"
197
209
198 2006-11-23 Ville Vainio <vivainio@gmail.com>
210 2006-11-23 Ville Vainio <vivainio@gmail.com>
199
211
200 * manual_base.lyx: Kirill Smelkov patch: Fix wrong
212 * manual_base.lyx: Kirill Smelkov patch: Fix wrong
201 Qt+IPython+Designer link in documentation.
213 Qt+IPython+Designer link in documentation.
202
214
203 * Extensions/ipy_pydb.py: R. Bernstein's patch for passing
215 * Extensions/ipy_pydb.py: R. Bernstein's patch for passing
204 correct Pdb object to %pydb.
216 correct Pdb object to %pydb.
205
217
206
218
207 2006-11-22 Walter Doerwald <walter@livinglogic.de>
219 2006-11-22 Walter Doerwald <walter@livinglogic.de>
208 * IPython/Extensions/astyle.py: Text needs it's own implemenation of the
220 * IPython/Extensions/astyle.py: Text needs it's own implemenation of the
209 generic xrepr(), otherwise the list implementation would kick in.
221 generic xrepr(), otherwise the list implementation would kick in.
210
222
211 2006-11-21 Ville Vainio <vivainio@gmail.com>
223 2006-11-21 Ville Vainio <vivainio@gmail.com>
212
224
213 * upgrade_dir.py: Now actually overwrites a nonmodified user file
225 * upgrade_dir.py: Now actually overwrites a nonmodified user file
214 with one from UserConfig.
226 with one from UserConfig.
215
227
216 * ipy_profile_sh.py: Add dummy "depth" to var_expand lambda,
228 * ipy_profile_sh.py: Add dummy "depth" to var_expand lambda,
217 it was missing which broke the sh profile.
229 it was missing which broke the sh profile.
218
230
219 * completer.py: file completer now uses explicit '/' instead
231 * completer.py: file completer now uses explicit '/' instead
220 of os.path.join, expansion of 'foo' was broken on win32
232 of os.path.join, expansion of 'foo' was broken on win32
221 if there was one directory with name 'foobar'.
233 if there was one directory with name 'foobar'.
222
234
223 * A bunch of patches from Kirill Smelkov:
235 * A bunch of patches from Kirill Smelkov:
224
236
225 * [patch 9/9] doc: point bug-tracker URL to IPythons trac-tickets.
237 * [patch 9/9] doc: point bug-tracker URL to IPythons trac-tickets.
226
238
227 * [patch 7/9] Implement %page -r (page in raw mode) -
239 * [patch 7/9] Implement %page -r (page in raw mode) -
228
240
229 * [patch 5/9] ScientificPython webpage has moved
241 * [patch 5/9] ScientificPython webpage has moved
230
242
231 * [patch 4/9] The manual mentions %ds, should be %dhist
243 * [patch 4/9] The manual mentions %ds, should be %dhist
232
244
233 * [patch 3/9] Kill old bits from %prun doc.
245 * [patch 3/9] Kill old bits from %prun doc.
234
246
235 * [patch 1/9] Fix typos here and there.
247 * [patch 1/9] Fix typos here and there.
236
248
237 2006-11-08 Ville Vainio <vivainio@gmail.com>
249 2006-11-08 Ville Vainio <vivainio@gmail.com>
238
250
239 * completer.py (attr_matches): catch all exceptions raised
251 * completer.py (attr_matches): catch all exceptions raised
240 by eval of expr with dots.
252 by eval of expr with dots.
241
253
242 2006-11-07 Fernando Perez <Fernando.Perez@colorado.edu>
254 2006-11-07 Fernando Perez <Fernando.Perez@colorado.edu>
243
255
244 * IPython/iplib.py (runsource): Prepend an 'if 1:' to the user
256 * IPython/iplib.py (runsource): Prepend an 'if 1:' to the user
245 input if it starts with whitespace. This allows you to paste
257 input if it starts with whitespace. This allows you to paste
246 indented input from any editor without manually having to type in
258 indented input from any editor without manually having to type in
247 the 'if 1:', which is convenient when working interactively.
259 the 'if 1:', which is convenient when working interactively.
248 Slightly modifed version of a patch by Bo Peng
260 Slightly modifed version of a patch by Bo Peng
249 <bpeng-AT-rice.edu>.
261 <bpeng-AT-rice.edu>.
250
262
251 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
263 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
252
264
253 * IPython/irunner.py (main): modified irunner so it automatically
265 * IPython/irunner.py (main): modified irunner so it automatically
254 recognizes the right runner to use based on the extension (.py for
266 recognizes the right runner to use based on the extension (.py for
255 python, .ipy for ipython and .sage for sage).
267 python, .ipy for ipython and .sage for sage).
256
268
257 * IPython/iplib.py (InteractiveShell.ipconfig): new builtin, also
269 * IPython/iplib.py (InteractiveShell.ipconfig): new builtin, also
258 visible in ipapi as ip.config(), to programatically control the
270 visible in ipapi as ip.config(), to programatically control the
259 internal rc object. There's an accompanying %config magic for
271 internal rc object. There's an accompanying %config magic for
260 interactive use, which has been enhanced to match the
272 interactive use, which has been enhanced to match the
261 funtionality in ipconfig.
273 funtionality in ipconfig.
262
274
263 * IPython/Magic.py (magic_system_verbose): Change %system_verbose
275 * IPython/Magic.py (magic_system_verbose): Change %system_verbose
264 so it's not just a toggle, it now takes an argument. Add support
276 so it's not just a toggle, it now takes an argument. Add support
265 for a customizable header when making system calls, as the new
277 for a customizable header when making system calls, as the new
266 system_header variable in the ipythonrc file.
278 system_header variable in the ipythonrc file.
267
279
268 2006-11-03 Walter Doerwald <walter@livinglogic.de>
280 2006-11-03 Walter Doerwald <walter@livinglogic.de>
269
281
270 * IPython/Extensions/ipipe.py: xrepr(), xiter() and xattrs() are now
282 * IPython/Extensions/ipipe.py: xrepr(), xiter() and xattrs() are now
271 generic functions (using Philip J. Eby's simplegeneric package).
283 generic functions (using Philip J. Eby's simplegeneric package).
272 This makes it possible to customize the display of third-party classes
284 This makes it possible to customize the display of third-party classes
273 without having to monkeypatch them. xiter() no longer supports a mode
285 without having to monkeypatch them. xiter() no longer supports a mode
274 argument and the XMode class has been removed. The same functionality can
286 argument and the XMode class has been removed. The same functionality can
275 be implemented via IterAttributeDescriptor and IterMethodDescriptor.
287 be implemented via IterAttributeDescriptor and IterMethodDescriptor.
276 One consequence of the switch to generic functions is that xrepr() and
288 One consequence of the switch to generic functions is that xrepr() and
277 xattrs() implementation must define the default value for the mode
289 xattrs() implementation must define the default value for the mode
278 argument themselves and xattrs() implementations must return real
290 argument themselves and xattrs() implementations must return real
279 descriptors.
291 descriptors.
280
292
281 * IPython/external: This new subpackage will contain all third-party
293 * IPython/external: This new subpackage will contain all third-party
282 packages that are bundled with IPython. (The first one is simplegeneric).
294 packages that are bundled with IPython. (The first one is simplegeneric).
283
295
284 * IPython/Extensions/ipipe.py (ifile/ils): Readd output of the parent
296 * IPython/Extensions/ipipe.py (ifile/ils): Readd output of the parent
285 directory which as been dropped in r1703.
297 directory which as been dropped in r1703.
286
298
287 * IPython/Extensions/ipipe.py (iless): Fixed.
299 * IPython/Extensions/ipipe.py (iless): Fixed.
288
300
289 * IPython/Extensions/ibrowse: Fixed sorting under Python 2.3.
301 * IPython/Extensions/ibrowse: Fixed sorting under Python 2.3.
290
302
291 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
303 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
292
304
293 * IPython/iplib.py (InteractiveShell.var_expand): fix stack
305 * IPython/iplib.py (InteractiveShell.var_expand): fix stack
294 handling in variable expansion so that shells and magics recognize
306 handling in variable expansion so that shells and magics recognize
295 function local scopes correctly. Bug reported by Brian.
307 function local scopes correctly. Bug reported by Brian.
296
308
297 * scripts/ipython: remove the very first entry in sys.path which
309 * scripts/ipython: remove the very first entry in sys.path which
298 Python auto-inserts for scripts, so that sys.path under IPython is
310 Python auto-inserts for scripts, so that sys.path under IPython is
299 as similar as possible to that under plain Python.
311 as similar as possible to that under plain Python.
300
312
301 * IPython/completer.py (IPCompleter.file_matches): Fix
313 * IPython/completer.py (IPCompleter.file_matches): Fix
302 tab-completion so that quotes are not closed unless the completion
314 tab-completion so that quotes are not closed unless the completion
303 is unambiguous. After a request by Stefan. Minor cleanups in
315 is unambiguous. After a request by Stefan. Minor cleanups in
304 ipy_stock_completers.
316 ipy_stock_completers.
305
317
306 2006-11-02 Ville Vainio <vivainio@gmail.com>
318 2006-11-02 Ville Vainio <vivainio@gmail.com>
307
319
308 * ipy_stock_completers.py: Add %run and %cd completers.
320 * ipy_stock_completers.py: Add %run and %cd completers.
309
321
310 * completer.py: Try running custom completer for both
322 * completer.py: Try running custom completer for both
311 "foo" and "%foo" if the command is just "foo". Ignore case
323 "foo" and "%foo" if the command is just "foo". Ignore case
312 when filtering possible completions.
324 when filtering possible completions.
313
325
314 * UserConfig/ipy_user_conf.py: install stock completers as default
326 * UserConfig/ipy_user_conf.py: install stock completers as default
315
327
316 * iplib.py (history_saving_wrapper), debugger(), ipy_pydb.py:
328 * iplib.py (history_saving_wrapper), debugger(), ipy_pydb.py:
317 simplified readline history save / restore through a wrapper
329 simplified readline history save / restore through a wrapper
318 function
330 function
319
331
320
332
321 2006-10-31 Ville Vainio <vivainio@gmail.com>
333 2006-10-31 Ville Vainio <vivainio@gmail.com>
322
334
323 * strdispatch.py, completer.py, ipy_stock_completers.py:
335 * strdispatch.py, completer.py, ipy_stock_completers.py:
324 Allow str_key ("command") in completer hooks. Implement
336 Allow str_key ("command") in completer hooks. Implement
325 trivial completer for 'import' (stdlib modules only). Rename
337 trivial completer for 'import' (stdlib modules only). Rename
326 ipy_linux_package_managers.py to ipy_stock_completers.py.
338 ipy_linux_package_managers.py to ipy_stock_completers.py.
327 SVN completer.
339 SVN completer.
328
340
329 * Extensions/ledit.py: %magic line editor for easily and
341 * Extensions/ledit.py: %magic line editor for easily and
330 incrementally manipulating lists of strings. The magic command
342 incrementally manipulating lists of strings. The magic command
331 name is %led.
343 name is %led.
332
344
333 2006-10-30 Ville Vainio <vivainio@gmail.com>
345 2006-10-30 Ville Vainio <vivainio@gmail.com>
334
346
335 * Debugger.py, iplib.py (debugger()): Add last set of Rocky
347 * Debugger.py, iplib.py (debugger()): Add last set of Rocky
336 Bernsteins's patches for pydb integration.
348 Bernsteins's patches for pydb integration.
337 http://bashdb.sourceforge.net/pydb/
349 http://bashdb.sourceforge.net/pydb/
338
350
339 * strdispatch.py, iplib.py, completer.py, IPython/__init__.py,
351 * strdispatch.py, iplib.py, completer.py, IPython/__init__.py,
340 Extensions/ipy_linux_package_managers.py, hooks.py: Implement
352 Extensions/ipy_linux_package_managers.py, hooks.py: Implement
341 custom completer hook to allow the users to implement their own
353 custom completer hook to allow the users to implement their own
342 completers. See ipy_linux_package_managers.py for example. The
354 completers. See ipy_linux_package_managers.py for example. The
343 hook name is 'complete_command'.
355 hook name is 'complete_command'.
344
356
345 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu>
357 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu>
346
358
347 * IPython/UserConfig/ipythonrc-scipy: minor cleanups to remove old
359 * IPython/UserConfig/ipythonrc-scipy: minor cleanups to remove old
348 Numeric leftovers.
360 Numeric leftovers.
349
361
350 * ipython.el (py-execute-region): apply Stefan's patch to fix
362 * ipython.el (py-execute-region): apply Stefan's patch to fix
351 garbled results if the python shell hasn't been previously started.
363 garbled results if the python shell hasn't been previously started.
352
364
353 * IPython/genutils.py (arg_split): moved to genutils, since it's a
365 * IPython/genutils.py (arg_split): moved to genutils, since it's a
354 pretty generic function and useful for other things.
366 pretty generic function and useful for other things.
355
367
356 * IPython/OInspect.py (getsource): Add customizable source
368 * IPython/OInspect.py (getsource): Add customizable source
357 extractor. After a request/patch form W. Stein (SAGE).
369 extractor. After a request/patch form W. Stein (SAGE).
358
370
359 * IPython/irunner.py (InteractiveRunner.run_source): reset tty
371 * IPython/irunner.py (InteractiveRunner.run_source): reset tty
360 window size to a more reasonable value from what pexpect does,
372 window size to a more reasonable value from what pexpect does,
361 since their choice causes wrapping bugs with long input lines.
373 since their choice causes wrapping bugs with long input lines.
362
374
363 2006-10-28 Ville Vainio <vivainio@gmail.com>
375 2006-10-28 Ville Vainio <vivainio@gmail.com>
364
376
365 * Magic.py (%run): Save and restore the readline history from
377 * Magic.py (%run): Save and restore the readline history from
366 file around %run commands to prevent side effects from
378 file around %run commands to prevent side effects from
367 %runned programs that might use readline (e.g. pydb).
379 %runned programs that might use readline (e.g. pydb).
368
380
369 * extensions/ipy_pydb.py: Adds %pydb magic when imported, for
381 * extensions/ipy_pydb.py: Adds %pydb magic when imported, for
370 invoking the pydb enhanced debugger.
382 invoking the pydb enhanced debugger.
371
383
372 2006-10-23 Walter Doerwald <walter@livinglogic.de>
384 2006-10-23 Walter Doerwald <walter@livinglogic.de>
373
385
374 * IPython/Extensions/ipipe.py (ifile): Remove all methods that
386 * IPython/Extensions/ipipe.py (ifile): Remove all methods that
375 call the base class method and propagate the return value to
387 call the base class method and propagate the return value to
376 ifile. This is now done by path itself.
388 ifile. This is now done by path itself.
377
389
378 2006-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
390 2006-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
379
391
380 * IPython/ipapi.py (IPApi.__init__): Added new entry to public
392 * IPython/ipapi.py (IPApi.__init__): Added new entry to public
381 api: set_crash_handler(), to expose the ability to change the
393 api: set_crash_handler(), to expose the ability to change the
382 internal crash handler.
394 internal crash handler.
383
395
384 * IPython/CrashHandler.py (CrashHandler.__init__): abstract out
396 * IPython/CrashHandler.py (CrashHandler.__init__): abstract out
385 the various parameters of the crash handler so that apps using
397 the various parameters of the crash handler so that apps using
386 IPython as their engine can customize crash handling. Ipmlemented
398 IPython as their engine can customize crash handling. Ipmlemented
387 at the request of SAGE.
399 at the request of SAGE.
388
400
389 2006-10-14 Ville Vainio <vivainio@gmail.com>
401 2006-10-14 Ville Vainio <vivainio@gmail.com>
390
402
391 * Magic.py, ipython.el: applied first "safe" part of Rocky
403 * Magic.py, ipython.el: applied first "safe" part of Rocky
392 Bernstein's patch set for pydb integration.
404 Bernstein's patch set for pydb integration.
393
405
394 * Magic.py (%unalias, %alias): %store'd aliases can now be
406 * Magic.py (%unalias, %alias): %store'd aliases can now be
395 removed with '%unalias'. %alias w/o args now shows most
407 removed with '%unalias'. %alias w/o args now shows most
396 interesting (stored / manually defined) aliases last
408 interesting (stored / manually defined) aliases last
397 where they catch the eye w/o scrolling.
409 where they catch the eye w/o scrolling.
398
410
399 * Magic.py (%rehashx), ext_rehashdir.py: files with
411 * Magic.py (%rehashx), ext_rehashdir.py: files with
400 'py' extension are always considered executable, even
412 'py' extension are always considered executable, even
401 when not in PATHEXT environment variable.
413 when not in PATHEXT environment variable.
402
414
403 2006-10-12 Ville Vainio <vivainio@gmail.com>
415 2006-10-12 Ville Vainio <vivainio@gmail.com>
404
416
405 * jobctrl.py: Add new "jobctrl" extension for spawning background
417 * jobctrl.py: Add new "jobctrl" extension for spawning background
406 processes with "&find /". 'import jobctrl' to try it out. Requires
418 processes with "&find /". 'import jobctrl' to try it out. Requires
407 'subprocess' module, standard in python 2.4+.
419 'subprocess' module, standard in python 2.4+.
408
420
409 * iplib.py (expand_aliases, handle_alias): Aliases expand transitively,
421 * iplib.py (expand_aliases, handle_alias): Aliases expand transitively,
410 so if foo -> bar and bar -> baz, then foo -> baz.
422 so if foo -> bar and bar -> baz, then foo -> baz.
411
423
412 2006-10-09 Fernando Perez <Fernando.Perez@colorado.edu>
424 2006-10-09 Fernando Perez <Fernando.Perez@colorado.edu>
413
425
414 * IPython/Magic.py (Magic.parse_options): add a new posix option
426 * IPython/Magic.py (Magic.parse_options): add a new posix option
415 to allow parsing of input args in magics that doesn't strip quotes
427 to allow parsing of input args in magics that doesn't strip quotes
416 (if posix=False). This also closes %timeit bug reported by
428 (if posix=False). This also closes %timeit bug reported by
417 Stefan.
429 Stefan.
418
430
419 2006-10-03 Ville Vainio <vivainio@gmail.com>
431 2006-10-03 Ville Vainio <vivainio@gmail.com>
420
432
421 * iplib.py (raw_input, interact): Return ValueError catching for
433 * iplib.py (raw_input, interact): Return ValueError catching for
422 raw_input. Fixes infinite loop for sys.stdin.close() or
434 raw_input. Fixes infinite loop for sys.stdin.close() or
423 sys.stdout.close().
435 sys.stdout.close().
424
436
425 2006-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
437 2006-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
426
438
427 * IPython/irunner.py (InteractiveRunner.run_source): small fixes
439 * IPython/irunner.py (InteractiveRunner.run_source): small fixes
428 to help in handling doctests. irunner is now pretty useful for
440 to help in handling doctests. irunner is now pretty useful for
429 running standalone scripts and simulate a full interactive session
441 running standalone scripts and simulate a full interactive session
430 in a format that can be then pasted as a doctest.
442 in a format that can be then pasted as a doctest.
431
443
432 * IPython/iplib.py (InteractiveShell.__init__): Install exit/quit
444 * IPython/iplib.py (InteractiveShell.__init__): Install exit/quit
433 on top of the default (useless) ones. This also fixes the nasty
445 on top of the default (useless) ones. This also fixes the nasty
434 way in which 2.5's Quitter() exits (reverted [1785]).
446 way in which 2.5's Quitter() exits (reverted [1785]).
435
447
436 * IPython/Debugger.py (Pdb.__init__): Fix ipdb to work with python
448 * IPython/Debugger.py (Pdb.__init__): Fix ipdb to work with python
437 2.5.
449 2.5.
438
450
439 * IPython/ultraTB.py (TBTools.set_colors): Make sure that ipdb
451 * IPython/ultraTB.py (TBTools.set_colors): Make sure that ipdb
440 color scheme is updated as well when color scheme is changed
452 color scheme is updated as well when color scheme is changed
441 interactively.
453 interactively.
442
454
443 2006-09-27 Ville Vainio <vivainio@gmail.com>
455 2006-09-27 Ville Vainio <vivainio@gmail.com>
444
456
445 * iplib.py (raw_input): python 2.5 closes stdin on quit -> avoid
457 * iplib.py (raw_input): python 2.5 closes stdin on quit -> avoid
446 infinite loop and just exit. It's a hack, but will do for a while.
458 infinite loop and just exit. It's a hack, but will do for a while.
447
459
448 2006-08-25 Walter Doerwald <walter@livinglogic.de>
460 2006-08-25 Walter Doerwald <walter@livinglogic.de>
449
461
450 * IPython/Extensions/ipipe.py (ils): Add arguments dirs and files to
462 * IPython/Extensions/ipipe.py (ils): Add arguments dirs and files to
451 the constructor, this makes it possible to get a list of only directories
463 the constructor, this makes it possible to get a list of only directories
452 or only files.
464 or only files.
453
465
454 2006-08-12 Ville Vainio <vivainio@gmail.com>
466 2006-08-12 Ville Vainio <vivainio@gmail.com>
455
467
456 * Fakemodule.py, OInspect.py: Reverted 2006-08-11 mods,
468 * Fakemodule.py, OInspect.py: Reverted 2006-08-11 mods,
457 they broke unittest
469 they broke unittest
458
470
459 2006-08-11 Ville Vainio <vivainio@gmail.com>
471 2006-08-11 Ville Vainio <vivainio@gmail.com>
460
472
461 * Fakemodule.py, OInspect.py: remove 2006-08-09 monkepatch
473 * Fakemodule.py, OInspect.py: remove 2006-08-09 monkepatch
462 by resolving issue properly, i.e. by inheriting FakeModule
474 by resolving issue properly, i.e. by inheriting FakeModule
463 from types.ModuleType. Pickling ipython interactive data
475 from types.ModuleType. Pickling ipython interactive data
464 should still work as usual (testing appreciated).
476 should still work as usual (testing appreciated).
465
477
466 2006-08-09 Fernando Perez <Fernando.Perez@colorado.edu>
478 2006-08-09 Fernando Perez <Fernando.Perez@colorado.edu>
467
479
468 * IPython/OInspect.py: monkeypatch inspect from the stdlib if
480 * IPython/OInspect.py: monkeypatch inspect from the stdlib if
469 running under python 2.3 with code from 2.4 to fix a bug with
481 running under python 2.3 with code from 2.4 to fix a bug with
470 help(). Reported by the Debian maintainers, Norbert Tretkowski
482 help(). Reported by the Debian maintainers, Norbert Tretkowski
471 <norbert-AT-tretkowski.de> and Alexandre Fayolle
483 <norbert-AT-tretkowski.de> and Alexandre Fayolle
472 <afayolle-AT-debian.org>.
484 <afayolle-AT-debian.org>.
473
485
474 2006-08-04 Walter Doerwald <walter@livinglogic.de>
486 2006-08-04 Walter Doerwald <walter@livinglogic.de>
475
487
476 * IPython/Extensions/ibrowse.py: Fixed the help message in the footer
488 * IPython/Extensions/ibrowse.py: Fixed the help message in the footer
477 (which was displaying "quit" twice).
489 (which was displaying "quit" twice).
478
490
479 2006-07-28 Walter Doerwald <walter@livinglogic.de>
491 2006-07-28 Walter Doerwald <walter@livinglogic.de>
480
492
481 * IPython/Extensions/ipipe.py: Fix isort.__iter__() (was still using
493 * IPython/Extensions/ipipe.py: Fix isort.__iter__() (was still using
482 the mode argument).
494 the mode argument).
483
495
484 2006-07-27 Walter Doerwald <walter@livinglogic.de>
496 2006-07-27 Walter Doerwald <walter@livinglogic.de>
485
497
486 * IPython/Extensions/ipipe.py: Fix getglobals() if we're
498 * IPython/Extensions/ipipe.py: Fix getglobals() if we're
487 not running under IPython.
499 not running under IPython.
488
500
489 * IPython/Extensions/ipipe.py: Rename XAttr to AttributeDetail
501 * IPython/Extensions/ipipe.py: Rename XAttr to AttributeDetail
490 and make it iterable (iterating over the attribute itself). Add two new
502 and make it iterable (iterating over the attribute itself). Add two new
491 magic strings for __xattrs__(): If the string starts with "-", the attribute
503 magic strings for __xattrs__(): If the string starts with "-", the attribute
492 will not be displayed in ibrowse's detail view (but it can still be
504 will not be displayed in ibrowse's detail view (but it can still be
493 iterated over). This makes it possible to add attributes that are large
505 iterated over). This makes it possible to add attributes that are large
494 lists or generator methods to the detail view. Replace magic attribute names
506 lists or generator methods to the detail view. Replace magic attribute names
495 and _attrname() and _getattr() with "descriptors": For each type of magic
507 and _attrname() and _getattr() with "descriptors": For each type of magic
496 attribute name there's a subclass of Descriptor: None -> SelfDescriptor();
508 attribute name there's a subclass of Descriptor: None -> SelfDescriptor();
497 "foo" -> AttributeDescriptor("foo"); "foo()" -> MethodDescriptor("foo");
509 "foo" -> AttributeDescriptor("foo"); "foo()" -> MethodDescriptor("foo");
498 "-foo" -> IterAttributeDescriptor("foo"); "-foo()" -> IterMethodDescriptor("foo");
510 "-foo" -> IterAttributeDescriptor("foo"); "-foo()" -> IterMethodDescriptor("foo");
499 foo() -> FunctionDescriptor(foo). Magic strings returned from __xattrs__()
511 foo() -> FunctionDescriptor(foo). Magic strings returned from __xattrs__()
500 are still supported.
512 are still supported.
501
513
502 * IPython/Extensions/ibrowse.py: If fetching the next row from the input
514 * IPython/Extensions/ibrowse.py: If fetching the next row from the input
503 fails in ibrowse.fetch(), the exception object is added as the last item
515 fails in ibrowse.fetch(), the exception object is added as the last item
504 and item fetching is canceled. This prevents ibrowse from aborting if e.g.
516 and item fetching is canceled. This prevents ibrowse from aborting if e.g.
505 a generator throws an exception midway through execution.
517 a generator throws an exception midway through execution.
506
518
507 * IPython/Extensions/ipipe.py: Turn ifile's properties mimetype and
519 * IPython/Extensions/ipipe.py: Turn ifile's properties mimetype and
508 encoding into methods.
520 encoding into methods.
509
521
510 2006-07-26 Ville Vainio <vivainio@gmail.com>
522 2006-07-26 Ville Vainio <vivainio@gmail.com>
511
523
512 * iplib.py: history now stores multiline input as single
524 * iplib.py: history now stores multiline input as single
513 history entries. Patch by Jorgen Cederlof.
525 history entries. Patch by Jorgen Cederlof.
514
526
515 2006-07-18 Walter Doerwald <walter@livinglogic.de>
527 2006-07-18 Walter Doerwald <walter@livinglogic.de>
516
528
517 * IPython/Extensions/ibrowse.py: Make cursor visible over
529 * IPython/Extensions/ibrowse.py: Make cursor visible over
518 non existing attributes.
530 non existing attributes.
519
531
520 2006-07-14 Walter Doerwald <walter@livinglogic.de>
532 2006-07-14 Walter Doerwald <walter@livinglogic.de>
521
533
522 * IPython/Extensions/ipipe.py (ix): Use os.popen4() so that the
534 * IPython/Extensions/ipipe.py (ix): Use os.popen4() so that the
523 error output of the running command doesn't mess up the screen.
535 error output of the running command doesn't mess up the screen.
524
536
525 2006-07-13 Walter Doerwald <walter@livinglogic.de>
537 2006-07-13 Walter Doerwald <walter@livinglogic.de>
526
538
527 * IPython/Extensions/ipipe.py (isort): Make isort usable without
539 * IPython/Extensions/ipipe.py (isort): Make isort usable without
528 argument. This sorts the items themselves.
540 argument. This sorts the items themselves.
529
541
530 2006-07-12 Walter Doerwald <walter@livinglogic.de>
542 2006-07-12 Walter Doerwald <walter@livinglogic.de>
531
543
532 * IPython/Extensions/ipipe.py (eval, ifilter, isort, ieval):
544 * IPython/Extensions/ipipe.py (eval, ifilter, isort, ieval):
533 Compile expression strings into code objects. This should speed
545 Compile expression strings into code objects. This should speed
534 up ifilter and friends somewhat.
546 up ifilter and friends somewhat.
535
547
536 2006-07-08 Ville Vainio <vivainio@gmail.com>
548 2006-07-08 Ville Vainio <vivainio@gmail.com>
537
549
538 * Magic.py: %cpaste now strips > from the beginning of lines
550 * Magic.py: %cpaste now strips > from the beginning of lines
539 to ease pasting quoted code from emails. Contributed by
551 to ease pasting quoted code from emails. Contributed by
540 Stefan van der Walt.
552 Stefan van der Walt.
541
553
542 2006-06-29 Ville Vainio <vivainio@gmail.com>
554 2006-06-29 Ville Vainio <vivainio@gmail.com>
543
555
544 * ipmaker.py, Shell.py: qt4agg matplotlib backend support for pylab
556 * ipmaker.py, Shell.py: qt4agg matplotlib backend support for pylab
545 mode, patch contributed by Darren Dale. NEEDS TESTING!
557 mode, patch contributed by Darren Dale. NEEDS TESTING!
546
558
547 2006-06-28 Walter Doerwald <walter@livinglogic.de>
559 2006-06-28 Walter Doerwald <walter@livinglogic.de>
548
560
549 * IPython/Extensions/ibrowse.py: Give the ibrowse cursor row
561 * IPython/Extensions/ibrowse.py: Give the ibrowse cursor row
550 a blue background. Fix fetching new display rows when the browser
562 a blue background. Fix fetching new display rows when the browser
551 scrolls more than a screenful (e.g. by using the goto command).
563 scrolls more than a screenful (e.g. by using the goto command).
552
564
553 2006-06-27 Ville Vainio <vivainio@gmail.com>
565 2006-06-27 Ville Vainio <vivainio@gmail.com>
554
566
555 * Magic.py (_inspect, _ofind) Apply David Huard's
567 * Magic.py (_inspect, _ofind) Apply David Huard's
556 patch for displaying the correct docstring for 'property'
568 patch for displaying the correct docstring for 'property'
557 attributes.
569 attributes.
558
570
559 2006-06-23 Walter Doerwald <walter@livinglogic.de>
571 2006-06-23 Walter Doerwald <walter@livinglogic.de>
560
572
561 * IPython/Extensions/ibrowse.py: Put the documentation of the keyboard
573 * IPython/Extensions/ibrowse.py: Put the documentation of the keyboard
562 commands into the methods implementing them.
574 commands into the methods implementing them.
563
575
564 2006-06-22 Fernando Perez <Fernando.Perez@colorado.edu>
576 2006-06-22 Fernando Perez <Fernando.Perez@colorado.edu>
565
577
566 * ipython.el (ipython-indentation-hook): cleanup patch, submitted
578 * ipython.el (ipython-indentation-hook): cleanup patch, submitted
567 by Kov Chai <tchaikov-AT-gmail.com>. He notes that the original
579 by Kov Chai <tchaikov-AT-gmail.com>. He notes that the original
568 autoindent support was authored by Jin Liu.
580 autoindent support was authored by Jin Liu.
569
581
570 2006-06-22 Walter Doerwald <walter@livinglogic.de>
582 2006-06-22 Walter Doerwald <walter@livinglogic.de>
571
583
572 * IPython/Extensions/ibrowse.py: Replace the plain dictionaries used
584 * IPython/Extensions/ibrowse.py: Replace the plain dictionaries used
573 for keymaps with a custom class that simplifies handling.
585 for keymaps with a custom class that simplifies handling.
574
586
575 2006-06-19 Walter Doerwald <walter@livinglogic.de>
587 2006-06-19 Walter Doerwald <walter@livinglogic.de>
576
588
577 * IPython/Extensions/ibrowse.py: ibrowse now properly handles terminal
589 * IPython/Extensions/ibrowse.py: ibrowse now properly handles terminal
578 resizing. This requires Python 2.5 to work.
590 resizing. This requires Python 2.5 to work.
579
591
580 2006-06-16 Walter Doerwald <walter@livinglogic.de>
592 2006-06-16 Walter Doerwald <walter@livinglogic.de>
581
593
582 * IPython/Extensions/ibrowse.py: Add two new commands to
594 * IPython/Extensions/ibrowse.py: Add two new commands to
583 ibrowse: "hideattr" (mapped to "h") hides the attribute under
595 ibrowse: "hideattr" (mapped to "h") hides the attribute under
584 the cursor. "unhiderattrs" (mapped to "H") reveals all hidden
596 the cursor. "unhiderattrs" (mapped to "H") reveals all hidden
585 attributes again. Remapped the help command to "?". Display
597 attributes again. Remapped the help command to "?". Display
586 keycodes in the range 0x01-0x1F as CTRL-xx. Add CTRL-a and CTRL-e
598 keycodes in the range 0x01-0x1F as CTRL-xx. Add CTRL-a and CTRL-e
587 as keys for the "home" and "end" commands. Add three new commands
599 as keys for the "home" and "end" commands. Add three new commands
588 to the input mode for "find" and friends: "delend" (CTRL-K)
600 to the input mode for "find" and friends: "delend" (CTRL-K)
589 deletes to the end of line. "incsearchup" searches upwards in the
601 deletes to the end of line. "incsearchup" searches upwards in the
590 command history for an input that starts with the text before the cursor.
602 command history for an input that starts with the text before the cursor.
591 "incsearchdown" does the same downwards. Removed a bogus mapping of
603 "incsearchdown" does the same downwards. Removed a bogus mapping of
592 the x key to "delete".
604 the x key to "delete".
593
605
594 2006-06-15 Ville Vainio <vivainio@gmail.com>
606 2006-06-15 Ville Vainio <vivainio@gmail.com>
595
607
596 * iplib.py, hooks.py: Added new generate_prompt hook that can be
608 * iplib.py, hooks.py: Added new generate_prompt hook that can be
597 used to create prompts dynamically, instead of the "old" way of
609 used to create prompts dynamically, instead of the "old" way of
598 assigning "magic" strings to prompt_in1 and prompt_in2. The old
610 assigning "magic" strings to prompt_in1 and prompt_in2. The old
599 way still works (it's invoked by the default hook), of course.
611 way still works (it's invoked by the default hook), of course.
600
612
601 * Prompts.py: added generate_output_prompt hook for altering output
613 * Prompts.py: added generate_output_prompt hook for altering output
602 prompt
614 prompt
603
615
604 * Release.py: Changed version string to 0.7.3.svn.
616 * Release.py: Changed version string to 0.7.3.svn.
605
617
606 2006-06-15 Walter Doerwald <walter@livinglogic.de>
618 2006-06-15 Walter Doerwald <walter@livinglogic.de>
607
619
608 * IPython/Extensions/ibrowse.py: Change _BrowserLevel.moveto() so that
620 * IPython/Extensions/ibrowse.py: Change _BrowserLevel.moveto() so that
609 the call to fetch() always tries to fetch enough data for at least one
621 the call to fetch() always tries to fetch enough data for at least one
610 full screen. This makes it possible to simply call moveto(0,0,True) in
622 full screen. This makes it possible to simply call moveto(0,0,True) in
611 the constructor. Fix typos and removed the obsolete goto attribute.
623 the constructor. Fix typos and removed the obsolete goto attribute.
612
624
613 2006-06-12 Ville Vainio <vivainio@gmail.com>
625 2006-06-12 Ville Vainio <vivainio@gmail.com>
614
626
615 * ipy_profile_sh.py: applied Krisha Mohan Gundu's patch for
627 * ipy_profile_sh.py: applied Krisha Mohan Gundu's patch for
616 allowing $variable interpolation within multiline statements,
628 allowing $variable interpolation within multiline statements,
617 though so far only with "sh" profile for a testing period.
629 though so far only with "sh" profile for a testing period.
618 The patch also enables splitting long commands with \ but it
630 The patch also enables splitting long commands with \ but it
619 doesn't work properly yet.
631 doesn't work properly yet.
620
632
621 2006-06-12 Walter Doerwald <walter@livinglogic.de>
633 2006-06-12 Walter Doerwald <walter@livinglogic.de>
622
634
623 * IPython/Extensions/ibrowse.py (_dodisplay): Display the length of the
635 * IPython/Extensions/ibrowse.py (_dodisplay): Display the length of the
624 input history and the position of the cursor in the input history for
636 input history and the position of the cursor in the input history for
625 the find, findbackwards and goto command.
637 the find, findbackwards and goto command.
626
638
627 2006-06-10 Walter Doerwald <walter@livinglogic.de>
639 2006-06-10 Walter Doerwald <walter@livinglogic.de>
628
640
629 * IPython/Extensions/ibrowse.py: Add a class _CommandInput that
641 * IPython/Extensions/ibrowse.py: Add a class _CommandInput that
630 implements the basic functionality of browser commands that require
642 implements the basic functionality of browser commands that require
631 input. Reimplement the goto, find and findbackwards commands as
643 input. Reimplement the goto, find and findbackwards commands as
632 subclasses of _CommandInput. Add an input history and keymaps to those
644 subclasses of _CommandInput. Add an input history and keymaps to those
633 commands. Add "\r" as a keyboard shortcut for the enterdefault and
645 commands. Add "\r" as a keyboard shortcut for the enterdefault and
634 execute commands.
646 execute commands.
635
647
636 2006-06-07 Ville Vainio <vivainio@gmail.com>
648 2006-06-07 Ville Vainio <vivainio@gmail.com>
637
649
638 * iplib.py: ipython mybatch.ipy exits ipython immediately after
650 * iplib.py: ipython mybatch.ipy exits ipython immediately after
639 running the batch files instead of leaving the session open.
651 running the batch files instead of leaving the session open.
640
652
641 2006-06-07 Fernando Perez <Fernando.Perez@colorado.edu>
653 2006-06-07 Fernando Perez <Fernando.Perez@colorado.edu>
642
654
643 * IPython/iplib.py (InteractiveShell.__init__): update BSD fix, as
655 * IPython/iplib.py (InteractiveShell.__init__): update BSD fix, as
644 the original fix was incomplete. Patch submitted by W. Maier.
656 the original fix was incomplete. Patch submitted by W. Maier.
645
657
646 2006-06-07 Ville Vainio <vivainio@gmail.com>
658 2006-06-07 Ville Vainio <vivainio@gmail.com>
647
659
648 * iplib.py,Magic.py, ipmaker.py (magic_rehashx):
660 * iplib.py,Magic.py, ipmaker.py (magic_rehashx):
649 Confirmation prompts can be supressed by 'quiet' option.
661 Confirmation prompts can be supressed by 'quiet' option.
650 _ip.options.quiet = 1 means "assume yes for all yes/no queries".
662 _ip.options.quiet = 1 means "assume yes for all yes/no queries".
651
663
652 2006-06-06 *** Released version 0.7.2
664 2006-06-06 *** Released version 0.7.2
653
665
654 2006-06-06 Fernando Perez <Fernando.Perez@colorado.edu>
666 2006-06-06 Fernando Perez <Fernando.Perez@colorado.edu>
655
667
656 * IPython/Release.py (version): Made 0.7.2 final for release.
668 * IPython/Release.py (version): Made 0.7.2 final for release.
657 Repo tagged and release cut.
669 Repo tagged and release cut.
658
670
659 2006-06-05 Ville Vainio <vivainio@gmail.com>
671 2006-06-05 Ville Vainio <vivainio@gmail.com>
660
672
661 * Magic.py (magic_rehashx): Honor no_alias list earlier in
673 * Magic.py (magic_rehashx): Honor no_alias list earlier in
662 %rehashx, to avoid clobbering builtins in ipy_profile_sh.py
674 %rehashx, to avoid clobbering builtins in ipy_profile_sh.py
663
675
664 * upgrade_dir.py: try import 'path' module a bit harder
676 * upgrade_dir.py: try import 'path' module a bit harder
665 (for %upgrade)
677 (for %upgrade)
666
678
667 2006-06-03 Fernando Perez <Fernando.Perez@colorado.edu>
679 2006-06-03 Fernando Perez <Fernando.Perez@colorado.edu>
668
680
669 * IPython/genutils.py (ask_yes_no): treat EOF as a default answer
681 * IPython/genutils.py (ask_yes_no): treat EOF as a default answer
670 instead of looping 20 times.
682 instead of looping 20 times.
671
683
672 * IPython/ipmaker.py (make_IPython): honor -ipythondir flag
684 * IPython/ipmaker.py (make_IPython): honor -ipythondir flag
673 correctly at initialization time. Bug reported by Krishna Mohan
685 correctly at initialization time. Bug reported by Krishna Mohan
674 Gundu <gkmohan-AT-gmail.com> on the user list.
686 Gundu <gkmohan-AT-gmail.com> on the user list.
675
687
676 * IPython/Release.py (version): Mark 0.7.2 version to start
688 * IPython/Release.py (version): Mark 0.7.2 version to start
677 testing for release on 06/06.
689 testing for release on 06/06.
678
690
679 2006-05-31 Fernando Perez <Fernando.Perez@colorado.edu>
691 2006-05-31 Fernando Perez <Fernando.Perez@colorado.edu>
680
692
681 * scripts/irunner: thin script interface so users don't have to
693 * scripts/irunner: thin script interface so users don't have to
682 find the module and call it as an executable, since modules rarely
694 find the module and call it as an executable, since modules rarely
683 live in people's PATH.
695 live in people's PATH.
684
696
685 * IPython/irunner.py (InteractiveRunner.__init__): added
697 * IPython/irunner.py (InteractiveRunner.__init__): added
686 delaybeforesend attribute to control delays with newer versions of
698 delaybeforesend attribute to control delays with newer versions of
687 pexpect. Thanks to detailed help from pexpect's author, Noah
699 pexpect. Thanks to detailed help from pexpect's author, Noah
688 Spurrier <noah-AT-noah.org>. Noted how to use the SAGE runner
700 Spurrier <noah-AT-noah.org>. Noted how to use the SAGE runner
689 correctly (it works in NoColor mode).
701 correctly (it works in NoColor mode).
690
702
691 * IPython/iplib.py (handle_normal): fix nasty crash reported on
703 * IPython/iplib.py (handle_normal): fix nasty crash reported on
692 SAGE list, from improper log() calls.
704 SAGE list, from improper log() calls.
693
705
694 2006-05-31 Ville Vainio <vivainio@gmail.com>
706 2006-05-31 Ville Vainio <vivainio@gmail.com>
695
707
696 * upgrade_dir.py, Magic.py (magic_upgrade): call upgrade_dir
708 * upgrade_dir.py, Magic.py (magic_upgrade): call upgrade_dir
697 with args in parens to work correctly with dirs that have spaces.
709 with args in parens to work correctly with dirs that have spaces.
698
710
699 2006-05-30 Fernando Perez <Fernando.Perez@colorado.edu>
711 2006-05-30 Fernando Perez <Fernando.Perez@colorado.edu>
700
712
701 * IPython/Logger.py (Logger.logstart): add option to log raw input
713 * IPython/Logger.py (Logger.logstart): add option to log raw input
702 instead of the processed one. A -r flag was added to the
714 instead of the processed one. A -r flag was added to the
703 %logstart magic used for controlling logging.
715 %logstart magic used for controlling logging.
704
716
705 2006-05-29 Fernando Perez <Fernando.Perez@colorado.edu>
717 2006-05-29 Fernando Perez <Fernando.Perez@colorado.edu>
706
718
707 * IPython/iplib.py (InteractiveShell.__init__): add check for the
719 * IPython/iplib.py (InteractiveShell.__init__): add check for the
708 *BSDs to omit --color from all 'ls' aliases, since *BSD ls doesn't
720 *BSDs to omit --color from all 'ls' aliases, since *BSD ls doesn't
709 recognize the option. After a bug report by Will Maier. This
721 recognize the option. After a bug report by Will Maier. This
710 closes #64 (will do it after confirmation from W. Maier).
722 closes #64 (will do it after confirmation from W. Maier).
711
723
712 * IPython/irunner.py: New module to run scripts as if manually
724 * IPython/irunner.py: New module to run scripts as if manually
713 typed into an interactive environment, based on pexpect. After a
725 typed into an interactive environment, based on pexpect. After a
714 submission by Ken Schutte <kschutte-AT-csail.mit.edu> on the
726 submission by Ken Schutte <kschutte-AT-csail.mit.edu> on the
715 ipython-user list. Simple unittests in the tests/ directory.
727 ipython-user list. Simple unittests in the tests/ directory.
716
728
717 * tools/release: add Will Maier, OpenBSD port maintainer, to
729 * tools/release: add Will Maier, OpenBSD port maintainer, to
718 recepients list. We are now officially part of the OpenBSD ports:
730 recepients list. We are now officially part of the OpenBSD ports:
719 http://www.openbsd.org/ports.html ! Many thanks to Will for the
731 http://www.openbsd.org/ports.html ! Many thanks to Will for the
720 work.
732 work.
721
733
722 2006-05-26 Fernando Perez <Fernando.Perez@colorado.edu>
734 2006-05-26 Fernando Perez <Fernando.Perez@colorado.edu>
723
735
724 * IPython/ipmaker.py (make_IPython): modify sys.argv fix (below)
736 * IPython/ipmaker.py (make_IPython): modify sys.argv fix (below)
725 so that it doesn't break tkinter apps.
737 so that it doesn't break tkinter apps.
726
738
727 * IPython/iplib.py (_prefilter): fix bug where aliases would
739 * IPython/iplib.py (_prefilter): fix bug where aliases would
728 shadow variables when autocall was fully off. Reported by SAGE
740 shadow variables when autocall was fully off. Reported by SAGE
729 author William Stein.
741 author William Stein.
730
742
731 * IPython/OInspect.py (Inspector.__init__): add a flag to control
743 * IPython/OInspect.py (Inspector.__init__): add a flag to control
732 at what detail level strings are computed when foo? is requested.
744 at what detail level strings are computed when foo? is requested.
733 This allows users to ask for example that the string form of an
745 This allows users to ask for example that the string form of an
734 object is only computed when foo?? is called, or even never, by
746 object is only computed when foo?? is called, or even never, by
735 setting the object_info_string_level >= 2 in the configuration
747 setting the object_info_string_level >= 2 in the configuration
736 file. This new option has been added and documented. After a
748 file. This new option has been added and documented. After a
737 request by SAGE to be able to control the printing of very large
749 request by SAGE to be able to control the printing of very large
738 objects more easily.
750 objects more easily.
739
751
740 2006-05-25 Fernando Perez <Fernando.Perez@colorado.edu>
752 2006-05-25 Fernando Perez <Fernando.Perez@colorado.edu>
741
753
742 * IPython/ipmaker.py (make_IPython): remove the ipython call path
754 * IPython/ipmaker.py (make_IPython): remove the ipython call path
743 from sys.argv, to be 100% consistent with how Python itself works
755 from sys.argv, to be 100% consistent with how Python itself works
744 (as seen for example with python -i file.py). After a bug report
756 (as seen for example with python -i file.py). After a bug report
745 by Jeffrey Collins.
757 by Jeffrey Collins.
746
758
747 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix
759 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix
748 nasty bug which was preventing custom namespaces with -pylab,
760 nasty bug which was preventing custom namespaces with -pylab,
749 reported by M. Foord. Minor cleanup, remove old matplotlib.matlab
761 reported by M. Foord. Minor cleanup, remove old matplotlib.matlab
750 compatibility (long gone from mpl).
762 compatibility (long gone from mpl).
751
763
752 * IPython/ipapi.py (make_session): name change: create->make. We
764 * IPython/ipapi.py (make_session): name change: create->make. We
753 use make in other places (ipmaker,...), it's shorter and easier to
765 use make in other places (ipmaker,...), it's shorter and easier to
754 type and say, etc. I'm trying to clean things before 0.7.2 so
766 type and say, etc. I'm trying to clean things before 0.7.2 so
755 that I can keep things stable wrt to ipapi in the chainsaw branch.
767 that I can keep things stable wrt to ipapi in the chainsaw branch.
756
768
757 * ipython.el: fix the py-pdbtrack-input-prompt variable so that
769 * ipython.el: fix the py-pdbtrack-input-prompt variable so that
758 python-mode recognizes our debugger mode. Add support for
770 python-mode recognizes our debugger mode. Add support for
759 autoindent inside (X)emacs. After a patch sent in by Jin Liu
771 autoindent inside (X)emacs. After a patch sent in by Jin Liu
760 <m.liu.jin-AT-gmail.com> originally written by
772 <m.liu.jin-AT-gmail.com> originally written by
761 doxgen-AT-newsmth.net (with minor modifications for xemacs
773 doxgen-AT-newsmth.net (with minor modifications for xemacs
762 compatibility)
774 compatibility)
763
775
764 * IPython/Debugger.py (Pdb.format_stack_entry): fix formatting of
776 * IPython/Debugger.py (Pdb.format_stack_entry): fix formatting of
765 tracebacks when walking the stack so that the stack tracking system
777 tracebacks when walking the stack so that the stack tracking system
766 in emacs' python-mode can identify the frames correctly.
778 in emacs' python-mode can identify the frames correctly.
767
779
768 * IPython/ipmaker.py (make_IPython): make the internal (and
780 * IPython/ipmaker.py (make_IPython): make the internal (and
769 default config) autoedit_syntax value false by default. Too many
781 default config) autoedit_syntax value false by default. Too many
770 users have complained to me (both on and off-list) about problems
782 users have complained to me (both on and off-list) about problems
771 with this option being on by default, so I'm making it default to
783 with this option being on by default, so I'm making it default to
772 off. It can still be enabled by anyone via the usual mechanisms.
784 off. It can still be enabled by anyone via the usual mechanisms.
773
785
774 * IPython/completer.py (Completer.attr_matches): add support for
786 * IPython/completer.py (Completer.attr_matches): add support for
775 PyCrust-style _getAttributeNames magic method. Patch contributed
787 PyCrust-style _getAttributeNames magic method. Patch contributed
776 by <mscott-AT-goldenspud.com>. Closes #50.
788 by <mscott-AT-goldenspud.com>. Closes #50.
777
789
778 * IPython/iplib.py (InteractiveShell.__init__): remove the
790 * IPython/iplib.py (InteractiveShell.__init__): remove the
779 deletion of exit/quit from __builtin__, which can break
791 deletion of exit/quit from __builtin__, which can break
780 third-party tools like the Zope debugging console. The
792 third-party tools like the Zope debugging console. The
781 %exit/%quit magics remain. In general, it's probably a good idea
793 %exit/%quit magics remain. In general, it's probably a good idea
782 not to delete anything from __builtin__, since we never know what
794 not to delete anything from __builtin__, since we never know what
783 that will break. In any case, python now (for 2.5) will support
795 that will break. In any case, python now (for 2.5) will support
784 'real' exit/quit, so this issue is moot. Closes #55.
796 'real' exit/quit, so this issue is moot. Closes #55.
785
797
786 * IPython/genutils.py (with_obj): rename the 'with' function to
798 * IPython/genutils.py (with_obj): rename the 'with' function to
787 'withobj' to avoid incompatibilities with Python 2.5, where 'with'
799 'withobj' to avoid incompatibilities with Python 2.5, where 'with'
788 becomes a language keyword. Closes #53.
800 becomes a language keyword. Closes #53.
789
801
790 * IPython/FakeModule.py (FakeModule.__init__): add a proper
802 * IPython/FakeModule.py (FakeModule.__init__): add a proper
791 __file__ attribute to this so it fools more things into thinking
803 __file__ attribute to this so it fools more things into thinking
792 it is a real module. Closes #59.
804 it is a real module. Closes #59.
793
805
794 * IPython/Magic.py (magic_edit): add -n option to open the editor
806 * IPython/Magic.py (magic_edit): add -n option to open the editor
795 at a specific line number. After a patch by Stefan van der Walt.
807 at a specific line number. After a patch by Stefan van der Walt.
796
808
797 2006-05-23 Fernando Perez <Fernando.Perez@colorado.edu>
809 2006-05-23 Fernando Perez <Fernando.Perez@colorado.edu>
798
810
799 * IPython/iplib.py (edit_syntax_error): fix crash when for some
811 * IPython/iplib.py (edit_syntax_error): fix crash when for some
800 reason the file could not be opened. After automatic crash
812 reason the file could not be opened. After automatic crash
801 reports sent by James Graham <jgraham-AT-ast.cam.ac.uk> and
813 reports sent by James Graham <jgraham-AT-ast.cam.ac.uk> and
802 Charles Dolan <charlespatrickdolan-AT-yahoo.com>.
814 Charles Dolan <charlespatrickdolan-AT-yahoo.com>.
803 (_should_recompile): Don't fire editor if using %bg, since there
815 (_should_recompile): Don't fire editor if using %bg, since there
804 is no file in the first place. From the same report as above.
816 is no file in the first place. From the same report as above.
805 (raw_input): protect against faulty third-party prefilters. After
817 (raw_input): protect against faulty third-party prefilters. After
806 an automatic crash report sent by Dirk Laurie <dirk-AT-sun.ac.za>
818 an automatic crash report sent by Dirk Laurie <dirk-AT-sun.ac.za>
807 while running under SAGE.
819 while running under SAGE.
808
820
809 2006-05-23 Ville Vainio <vivainio@gmail.com>
821 2006-05-23 Ville Vainio <vivainio@gmail.com>
810
822
811 * ipapi.py: Stripped down ip.to_user_ns() to work only as
823 * ipapi.py: Stripped down ip.to_user_ns() to work only as
812 ip.to_user_ns("x1 y1"), which exposes vars x1 and y1. ipapi.get()
824 ip.to_user_ns("x1 y1"), which exposes vars x1 and y1. ipapi.get()
813 now returns None (again), unless dummy is specifically allowed by
825 now returns None (again), unless dummy is specifically allowed by
814 ipapi.get(allow_dummy=True).
826 ipapi.get(allow_dummy=True).
815
827
816 2006-05-18 Fernando Perez <Fernando.Perez@colorado.edu>
828 2006-05-18 Fernando Perez <Fernando.Perez@colorado.edu>
817
829
818 * IPython: remove all 2.2-compatibility objects and hacks from
830 * IPython: remove all 2.2-compatibility objects and hacks from
819 everywhere, since we only support 2.3 at this point. Docs
831 everywhere, since we only support 2.3 at this point. Docs
820 updated.
832 updated.
821
833
822 * IPython/ipapi.py (IPApi.__init__): Cleanup of all getters.
834 * IPython/ipapi.py (IPApi.__init__): Cleanup of all getters.
823 Anything requiring extra validation can be turned into a Python
835 Anything requiring extra validation can be turned into a Python
824 property in the future. I used a property for the db one b/c
836 property in the future. I used a property for the db one b/c
825 there was a nasty circularity problem with the initialization
837 there was a nasty circularity problem with the initialization
826 order, which right now I don't have time to clean up.
838 order, which right now I don't have time to clean up.
827
839
828 * IPython/Shell.py (MTInteractiveShell.runcode): Fix, I think,
840 * IPython/Shell.py (MTInteractiveShell.runcode): Fix, I think,
829 another locking bug reported by Jorgen. I'm not 100% sure though,
841 another locking bug reported by Jorgen. I'm not 100% sure though,
830 so more testing is needed...
842 so more testing is needed...
831
843
832 2006-05-17 Fernando Perez <Fernando.Perez@colorado.edu>
844 2006-05-17 Fernando Perez <Fernando.Perez@colorado.edu>
833
845
834 * IPython/ipapi.py (IPApi.to_user_ns): New function to inject
846 * IPython/ipapi.py (IPApi.to_user_ns): New function to inject
835 local variables from any routine in user code (typically executed
847 local variables from any routine in user code (typically executed
836 with %run) directly into the interactive namespace. Very useful
848 with %run) directly into the interactive namespace. Very useful
837 when doing complex debugging.
849 when doing complex debugging.
838 (IPythonNotRunning): Changed the default None object to a dummy
850 (IPythonNotRunning): Changed the default None object to a dummy
839 whose attributes can be queried as well as called without
851 whose attributes can be queried as well as called without
840 exploding, to ease writing code which works transparently both in
852 exploding, to ease writing code which works transparently both in
841 and out of ipython and uses some of this API.
853 and out of ipython and uses some of this API.
842
854
843 2006-05-16 Fernando Perez <Fernando.Perez@colorado.edu>
855 2006-05-16 Fernando Perez <Fernando.Perez@colorado.edu>
844
856
845 * IPython/hooks.py (result_display): Fix the fact that our display
857 * IPython/hooks.py (result_display): Fix the fact that our display
846 hook was using str() instead of repr(), as the default python
858 hook was using str() instead of repr(), as the default python
847 console does. This had gone unnoticed b/c it only happened if
859 console does. This had gone unnoticed b/c it only happened if
848 %Pprint was off, but the inconsistency was there.
860 %Pprint was off, but the inconsistency was there.
849
861
850 2006-05-15 Ville Vainio <vivainio@gmail.com>
862 2006-05-15 Ville Vainio <vivainio@gmail.com>
851
863
852 * Oinspect.py: Only show docstring for nonexisting/binary files
864 * Oinspect.py: Only show docstring for nonexisting/binary files
853 when doing object??, closing ticket #62
865 when doing object??, closing ticket #62
854
866
855 2006-05-13 Fernando Perez <Fernando.Perez@colorado.edu>
867 2006-05-13 Fernando Perez <Fernando.Perez@colorado.edu>
856
868
857 * IPython/Shell.py (MTInteractiveShell.runsource): Fix threading
869 * IPython/Shell.py (MTInteractiveShell.runsource): Fix threading
858 bug, closes http://www.scipy.net/roundup/ipython/issue55. A lock
870 bug, closes http://www.scipy.net/roundup/ipython/issue55. A lock
859 was being released in a routine which hadn't checked if it had
871 was being released in a routine which hadn't checked if it had
860 been the one to acquire it.
872 been the one to acquire it.
861
873
862 2006-05-07 Fernando Perez <Fernando.Perez@colorado.edu>
874 2006-05-07 Fernando Perez <Fernando.Perez@colorado.edu>
863
875
864 * IPython/Release.py (version): put out 0.7.2.rc1 for testing.
876 * IPython/Release.py (version): put out 0.7.2.rc1 for testing.
865
877
866 2006-04-11 Ville Vainio <vivainio@gmail.com>
878 2006-04-11 Ville Vainio <vivainio@gmail.com>
867
879
868 * iplib.py, ipmaker.py: .ipy extension now means "ipython batch file"
880 * iplib.py, ipmaker.py: .ipy extension now means "ipython batch file"
869 in command line. E.g. "ipython test.ipy" runs test.ipy with ipython
881 in command line. E.g. "ipython test.ipy" runs test.ipy with ipython
870 prefilters, allowing stuff like magics and aliases in the file.
882 prefilters, allowing stuff like magics and aliases in the file.
871
883
872 * Prompts.py, Extensions/clearcmd.py, ipy_system_conf.py: %clear magic
884 * Prompts.py, Extensions/clearcmd.py, ipy_system_conf.py: %clear magic
873 added. Supported now are "%clear in" and "%clear out" (clear input and
885 added. Supported now are "%clear in" and "%clear out" (clear input and
874 output history, respectively). Also fixed CachedOutput.flush to
886 output history, respectively). Also fixed CachedOutput.flush to
875 properly flush the output cache.
887 properly flush the output cache.
876
888
877 * Extensions/pspersistence.py: Fix %store to avoid "%store obj.attr"
889 * Extensions/pspersistence.py: Fix %store to avoid "%store obj.attr"
878 half-success (and fail explicitly).
890 half-success (and fail explicitly).
879
891
880 2006-03-28 Ville Vainio <vivainio@gmail.com>
892 2006-03-28 Ville Vainio <vivainio@gmail.com>
881
893
882 * iplib.py: Fix quoting of aliases so that only argless ones
894 * iplib.py: Fix quoting of aliases so that only argless ones
883 are quoted
895 are quoted
884
896
885 2006-03-28 Ville Vainio <vivainio@gmail.com>
897 2006-03-28 Ville Vainio <vivainio@gmail.com>
886
898
887 * iplib.py: Quote aliases with spaces in the name.
899 * iplib.py: Quote aliases with spaces in the name.
888 "c:\program files\blah\bin" is now legal alias target.
900 "c:\program files\blah\bin" is now legal alias target.
889
901
890 * ext_rehashdir.py: Space no longer allowed as arg
902 * ext_rehashdir.py: Space no longer allowed as arg
891 separator, since space is legal in path names.
903 separator, since space is legal in path names.
892
904
893 2006-03-16 Ville Vainio <vivainio@gmail.com>
905 2006-03-16 Ville Vainio <vivainio@gmail.com>
894
906
895 * upgrade_dir.py: Take path.py from Extensions, correcting
907 * upgrade_dir.py: Take path.py from Extensions, correcting
896 %upgrade magic
908 %upgrade magic
897
909
898 * ipmaker.py: Suggest using %upgrade if ipy_user_conf.py isn't found.
910 * ipmaker.py: Suggest using %upgrade if ipy_user_conf.py isn't found.
899
911
900 * hooks.py: Only enclose editor binary in quotes if legal and
912 * hooks.py: Only enclose editor binary in quotes if legal and
901 necessary (space in the name, and is an existing file). Fixes a bug
913 necessary (space in the name, and is an existing file). Fixes a bug
902 reported by Zachary Pincus.
914 reported by Zachary Pincus.
903
915
904 2006-03-13 Fernando Perez <Fernando.Perez@colorado.edu>
916 2006-03-13 Fernando Perez <Fernando.Perez@colorado.edu>
905
917
906 * Manual: thanks to a tip on proper color handling for Emacs, by
918 * Manual: thanks to a tip on proper color handling for Emacs, by
907 Eric J Haywiser <ejh1-AT-MIT.EDU>.
919 Eric J Haywiser <ejh1-AT-MIT.EDU>.
908
920
909 * ipython.el: close http://www.scipy.net/roundup/ipython/issue57
921 * ipython.el: close http://www.scipy.net/roundup/ipython/issue57
910 by applying the provided patch. Thanks to Liu Jin
922 by applying the provided patch. Thanks to Liu Jin
911 <m.liu.jin-AT-gmail.com> for the contribution. No problems under
923 <m.liu.jin-AT-gmail.com> for the contribution. No problems under
912 XEmacs/Linux, I'm trusting the submitter that it actually helps
924 XEmacs/Linux, I'm trusting the submitter that it actually helps
913 under win32/GNU Emacs. Will revisit if any problems are reported.
925 under win32/GNU Emacs. Will revisit if any problems are reported.
914
926
915 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
927 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
916
928
917 * IPython/Gnuplot2.py (_FileClass): update for current Gnuplot.py
929 * IPython/Gnuplot2.py (_FileClass): update for current Gnuplot.py
918 from SVN, thanks to a patch by Ryan Woodard <rywo@bas.ac.uk>.
930 from SVN, thanks to a patch by Ryan Woodard <rywo@bas.ac.uk>.
919
931
920 2006-03-12 Ville Vainio <vivainio@gmail.com>
932 2006-03-12 Ville Vainio <vivainio@gmail.com>
921
933
922 * Magic.py (magic_timeit): Added %timeit magic, contributed by
934 * Magic.py (magic_timeit): Added %timeit magic, contributed by
923 Torsten Marek.
935 Torsten Marek.
924
936
925 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
937 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
926
938
927 * IPython/Magic.py (magic_macro): fix so that the n1-n2 syntax for
939 * IPython/Magic.py (magic_macro): fix so that the n1-n2 syntax for
928 line ranges works again.
940 line ranges works again.
929
941
930 2006-03-11 Fernando Perez <Fernando.Perez@colorado.edu>
942 2006-03-11 Fernando Perez <Fernando.Perez@colorado.edu>
931
943
932 * IPython/iplib.py (showtraceback): add back sys.last_traceback
944 * IPython/iplib.py (showtraceback): add back sys.last_traceback
933 and friends, after a discussion with Zach Pincus on ipython-user.
945 and friends, after a discussion with Zach Pincus on ipython-user.
934 I'm not 100% sure, but after thinking about it quite a bit, it may
946 I'm not 100% sure, but after thinking about it quite a bit, it may
935 be OK. Testing with the multithreaded shells didn't reveal any
947 be OK. Testing with the multithreaded shells didn't reveal any
936 problems, but let's keep an eye out.
948 problems, but let's keep an eye out.
937
949
938 In the process, I fixed a few things which were calling
950 In the process, I fixed a few things which were calling
939 self.InteractiveTB() directly (like safe_execfile), which is a
951 self.InteractiveTB() directly (like safe_execfile), which is a
940 mistake: ALL exception reporting should be done by calling
952 mistake: ALL exception reporting should be done by calling
941 self.showtraceback(), which handles state and tab-completion and
953 self.showtraceback(), which handles state and tab-completion and
942 more.
954 more.
943
955
944 2006-03-01 Ville Vainio <vivainio@gmail.com>
956 2006-03-01 Ville Vainio <vivainio@gmail.com>
945
957
946 * Extensions/ipipe.py: Added Walter Doerwald's "ipipe" module.
958 * Extensions/ipipe.py: Added Walter Doerwald's "ipipe" module.
947 To use, do "from ipipe import *".
959 To use, do "from ipipe import *".
948
960
949 2006-02-24 Ville Vainio <vivainio@gmail.com>
961 2006-02-24 Ville Vainio <vivainio@gmail.com>
950
962
951 * Magic.py, upgrade_dir.py: %upgrade magic added. Does things more
963 * Magic.py, upgrade_dir.py: %upgrade magic added. Does things more
952 "cleanly" and safely than the older upgrade mechanism.
964 "cleanly" and safely than the older upgrade mechanism.
953
965
954 2006-02-21 Ville Vainio <vivainio@gmail.com>
966 2006-02-21 Ville Vainio <vivainio@gmail.com>
955
967
956 * Magic.py: %save works again.
968 * Magic.py: %save works again.
957
969
958 2006-02-15 Ville Vainio <vivainio@gmail.com>
970 2006-02-15 Ville Vainio <vivainio@gmail.com>
959
971
960 * Magic.py: %Pprint works again
972 * Magic.py: %Pprint works again
961
973
962 * Extensions/ipy_sane_defaults.py: Provide everything provided
974 * Extensions/ipy_sane_defaults.py: Provide everything provided
963 in default ipythonrc, to make it possible to have a completely empty
975 in default ipythonrc, to make it possible to have a completely empty
964 ipythonrc (and thus completely rc-file free configuration)
976 ipythonrc (and thus completely rc-file free configuration)
965
977
966 2006-02-11 Fernando Perez <Fernando.Perez@colorado.edu>
978 2006-02-11 Fernando Perez <Fernando.Perez@colorado.edu>
967
979
968 * IPython/hooks.py (editor): quote the call to the editor command,
980 * IPython/hooks.py (editor): quote the call to the editor command,
969 to allow commands with spaces in them. Problem noted by watching
981 to allow commands with spaces in them. Problem noted by watching
970 Ian Oswald's video about textpad under win32 at
982 Ian Oswald's video about textpad under win32 at
971 http://showmedo.com/videoListPage?listKey=PythonIPythonSeries
983 http://showmedo.com/videoListPage?listKey=PythonIPythonSeries
972
984
973 * IPython/UserConfig/ipythonrc: Replace @ signs with % when
985 * IPython/UserConfig/ipythonrc: Replace @ signs with % when
974 describing magics (we haven't used @ for a loong time).
986 describing magics (we haven't used @ for a loong time).
975
987
976 * IPython/ultraTB.py (VerboseTB.text.text_repr): Added patch
988 * IPython/ultraTB.py (VerboseTB.text.text_repr): Added patch
977 contributed by marienz to close
989 contributed by marienz to close
978 http://www.scipy.net/roundup/ipython/issue53.
990 http://www.scipy.net/roundup/ipython/issue53.
979
991
980 2006-02-10 Ville Vainio <vivainio@gmail.com>
992 2006-02-10 Ville Vainio <vivainio@gmail.com>
981
993
982 * genutils.py: getoutput now works in win32 too
994 * genutils.py: getoutput now works in win32 too
983
995
984 * completer.py: alias and magic completion only invoked
996 * completer.py: alias and magic completion only invoked
985 at the first "item" in the line, to avoid "cd %store"
997 at the first "item" in the line, to avoid "cd %store"
986 nonsense.
998 nonsense.
987
999
988 2006-02-09 Ville Vainio <vivainio@gmail.com>
1000 2006-02-09 Ville Vainio <vivainio@gmail.com>
989
1001
990 * test/*: Added a unit testing framework (finally).
1002 * test/*: Added a unit testing framework (finally).
991 '%run runtests.py' to run test_*.
1003 '%run runtests.py' to run test_*.
992
1004
993 * ipapi.py: Exposed runlines and set_custom_exc
1005 * ipapi.py: Exposed runlines and set_custom_exc
994
1006
995 2006-02-07 Ville Vainio <vivainio@gmail.com>
1007 2006-02-07 Ville Vainio <vivainio@gmail.com>
996
1008
997 * iplib.py: don't split "f 1 2" to "f(1,2)" in autocall,
1009 * iplib.py: don't split "f 1 2" to "f(1,2)" in autocall,
998 instead use "f(1 2)" as before.
1010 instead use "f(1 2)" as before.
999
1011
1000 2006-02-05 Fernando Perez <Fernando.Perez@colorado.edu>
1012 2006-02-05 Fernando Perez <Fernando.Perez@colorado.edu>
1001
1013
1002 * IPython/demo.py (IPythonDemo): Add new classes to the demo
1014 * IPython/demo.py (IPythonDemo): Add new classes to the demo
1003 facilities, for demos processed by the IPython input filter
1015 facilities, for demos processed by the IPython input filter
1004 (IPythonDemo), and for running a script one-line-at-a-time as a
1016 (IPythonDemo), and for running a script one-line-at-a-time as a
1005 demo, both for pure Python (LineDemo) and for IPython-processed
1017 demo, both for pure Python (LineDemo) and for IPython-processed
1006 input (IPythonLineDemo). After a request by Dave Kohel, from the
1018 input (IPythonLineDemo). After a request by Dave Kohel, from the
1007 SAGE team.
1019 SAGE team.
1008 (Demo.edit): added an edit() method to the demo objects, to edit
1020 (Demo.edit): added an edit() method to the demo objects, to edit
1009 the in-memory copy of the last executed block.
1021 the in-memory copy of the last executed block.
1010
1022
1011 * IPython/Magic.py (magic_edit): add '-r' option for 'raw'
1023 * IPython/Magic.py (magic_edit): add '-r' option for 'raw'
1012 processing to %edit, %macro and %save. These commands can now be
1024 processing to %edit, %macro and %save. These commands can now be
1013 invoked on the unprocessed input as it was typed by the user
1025 invoked on the unprocessed input as it was typed by the user
1014 (without any prefilters applied). After requests by the SAGE team
1026 (without any prefilters applied). After requests by the SAGE team
1015 at SAGE days 2006: http://modular.ucsd.edu/sage/days1/schedule.html.
1027 at SAGE days 2006: http://modular.ucsd.edu/sage/days1/schedule.html.
1016
1028
1017 2006-02-01 Ville Vainio <vivainio@gmail.com>
1029 2006-02-01 Ville Vainio <vivainio@gmail.com>
1018
1030
1019 * setup.py, eggsetup.py: easy_install ipython==dev works
1031 * setup.py, eggsetup.py: easy_install ipython==dev works
1020 correctly now (on Linux)
1032 correctly now (on Linux)
1021
1033
1022 * ipy_user_conf,ipmaker: user config changes, removed spurious
1034 * ipy_user_conf,ipmaker: user config changes, removed spurious
1023 warnings
1035 warnings
1024
1036
1025 * iplib: if rc.banner is string, use it as is.
1037 * iplib: if rc.banner is string, use it as is.
1026
1038
1027 * Magic: %pycat accepts a string argument and pages it's contents.
1039 * Magic: %pycat accepts a string argument and pages it's contents.
1028
1040
1029
1041
1030 2006-01-30 Ville Vainio <vivainio@gmail.com>
1042 2006-01-30 Ville Vainio <vivainio@gmail.com>
1031
1043
1032 * pickleshare,pspersistence,ipapi,Magic: persistence overhaul.
1044 * pickleshare,pspersistence,ipapi,Magic: persistence overhaul.
1033 Now %store and bookmarks work through PickleShare, meaning that
1045 Now %store and bookmarks work through PickleShare, meaning that
1034 concurrent access is possible and all ipython sessions see the
1046 concurrent access is possible and all ipython sessions see the
1035 same database situation all the time, instead of snapshot of
1047 same database situation all the time, instead of snapshot of
1036 the situation when the session was started. Hence, %bookmark
1048 the situation when the session was started. Hence, %bookmark
1037 results are immediately accessible from othes sessions. The database
1049 results are immediately accessible from othes sessions. The database
1038 is also available for use by user extensions. See:
1050 is also available for use by user extensions. See:
1039 http://www.python.org/pypi/pickleshare
1051 http://www.python.org/pypi/pickleshare
1040
1052
1041 * hooks.py: Two new hooks, 'shutdown_hook' and 'late_startup_hook'.
1053 * hooks.py: Two new hooks, 'shutdown_hook' and 'late_startup_hook'.
1042
1054
1043 * aliases can now be %store'd
1055 * aliases can now be %store'd
1044
1056
1045 * path.py moved to Extensions so that pickleshare does not need
1057 * path.py moved to Extensions so that pickleshare does not need
1046 IPython-specific import. Extensions added to pythonpath right
1058 IPython-specific import. Extensions added to pythonpath right
1047 at __init__.
1059 at __init__.
1048
1060
1049 * iplib.py: ipalias deprecated/redundant; aliases are converted and
1061 * iplib.py: ipalias deprecated/redundant; aliases are converted and
1050 called with _ip.system and the pre-transformed command string.
1062 called with _ip.system and the pre-transformed command string.
1051
1063
1052 2006-01-29 Fernando Perez <Fernando.Perez@colorado.edu>
1064 2006-01-29 Fernando Perez <Fernando.Perez@colorado.edu>
1053
1065
1054 * IPython/iplib.py (interact): Fix that we were not catching
1066 * IPython/iplib.py (interact): Fix that we were not catching
1055 KeyboardInterrupt exceptions properly. I'm not quite sure why the
1067 KeyboardInterrupt exceptions properly. I'm not quite sure why the
1056 logic here had to change, but it's fixed now.
1068 logic here had to change, but it's fixed now.
1057
1069
1058 2006-01-29 Ville Vainio <vivainio@gmail.com>
1070 2006-01-29 Ville Vainio <vivainio@gmail.com>
1059
1071
1060 * iplib.py: Try to import pyreadline on Windows.
1072 * iplib.py: Try to import pyreadline on Windows.
1061
1073
1062 2006-01-27 Ville Vainio <vivainio@gmail.com>
1074 2006-01-27 Ville Vainio <vivainio@gmail.com>
1063
1075
1064 * iplib.py: Expose ipapi as _ip in builtin namespace.
1076 * iplib.py: Expose ipapi as _ip in builtin namespace.
1065 Makes ipmagic (-> _ip.magic), ipsystem (-> _ip.system)
1077 Makes ipmagic (-> _ip.magic), ipsystem (-> _ip.system)
1066 and ip_set_hook (-> _ip.set_hook) redundant. % and !
1078 and ip_set_hook (-> _ip.set_hook) redundant. % and !
1067 syntax now produce _ip.* variant of the commands.
1079 syntax now produce _ip.* variant of the commands.
1068
1080
1069 * "_ip.options().autoedit_syntax = 2" automatically throws
1081 * "_ip.options().autoedit_syntax = 2" automatically throws
1070 user to editor for syntax error correction without prompting.
1082 user to editor for syntax error correction without prompting.
1071
1083
1072 2006-01-27 Ville Vainio <vivainio@gmail.com>
1084 2006-01-27 Ville Vainio <vivainio@gmail.com>
1073
1085
1074 * ipmaker.py: Give "realistic" sys.argv for scripts (without
1086 * ipmaker.py: Give "realistic" sys.argv for scripts (without
1075 'ipython' at argv[0]) executed through command line.
1087 'ipython' at argv[0]) executed through command line.
1076 NOTE: this DEPRECATES calling ipython with multiple scripts
1088 NOTE: this DEPRECATES calling ipython with multiple scripts
1077 ("ipython a.py b.py c.py")
1089 ("ipython a.py b.py c.py")
1078
1090
1079 * iplib.py, hooks.py: Added configurable input prefilter,
1091 * iplib.py, hooks.py: Added configurable input prefilter,
1080 named 'input_prefilter'. See ext_rescapture.py for example
1092 named 'input_prefilter'. See ext_rescapture.py for example
1081 usage.
1093 usage.
1082
1094
1083 * ext_rescapture.py, Magic.py: Better system command output capture
1095 * ext_rescapture.py, Magic.py: Better system command output capture
1084 through 'var = !ls' (deprecates user-visible %sc). Same notation
1096 through 'var = !ls' (deprecates user-visible %sc). Same notation
1085 applies for magics, 'var = %alias' assigns alias list to var.
1097 applies for magics, 'var = %alias' assigns alias list to var.
1086
1098
1087 * ipapi.py: added meta() for accessing extension-usable data store.
1099 * ipapi.py: added meta() for accessing extension-usable data store.
1088
1100
1089 * iplib.py: added InteractiveShell.getapi(). New magics should be
1101 * iplib.py: added InteractiveShell.getapi(). New magics should be
1090 written doing self.getapi() instead of using the shell directly.
1102 written doing self.getapi() instead of using the shell directly.
1091
1103
1092 * Magic.py: %store now allows doing %store foo > ~/myfoo.txt and
1104 * Magic.py: %store now allows doing %store foo > ~/myfoo.txt and
1093 %store foo >> ~/myfoo.txt to store variables to files (in clean
1105 %store foo >> ~/myfoo.txt to store variables to files (in clean
1094 textual form, not a restorable pickle).
1106 textual form, not a restorable pickle).
1095
1107
1096 * ipmaker.py: now import ipy_profile_PROFILENAME automatically
1108 * ipmaker.py: now import ipy_profile_PROFILENAME automatically
1097
1109
1098 * usage.py, Magic.py: added %quickref
1110 * usage.py, Magic.py: added %quickref
1099
1111
1100 * iplib.py: ESC_PAREN fixes: /f 1 2 -> f(1,2), not f(1 2).
1112 * iplib.py: ESC_PAREN fixes: /f 1 2 -> f(1,2), not f(1 2).
1101
1113
1102 * GetoptErrors when invoking magics etc. with wrong args
1114 * GetoptErrors when invoking magics etc. with wrong args
1103 are now more helpful:
1115 are now more helpful:
1104 GetoptError: option -l not recognized (allowed: "qb" )
1116 GetoptError: option -l not recognized (allowed: "qb" )
1105
1117
1106 2006-01-25 Fernando Perez <Fernando.Perez@colorado.edu>
1118 2006-01-25 Fernando Perez <Fernando.Perez@colorado.edu>
1107
1119
1108 * IPython/demo.py (Demo.show): Flush stdout after each block, so
1120 * IPython/demo.py (Demo.show): Flush stdout after each block, so
1109 computationally intensive blocks don't appear to stall the demo.
1121 computationally intensive blocks don't appear to stall the demo.
1110
1122
1111 2006-01-24 Ville Vainio <vivainio@gmail.com>
1123 2006-01-24 Ville Vainio <vivainio@gmail.com>
1112
1124
1113 * iplib.py, hooks.py: 'result_display' hook can return a non-None
1125 * iplib.py, hooks.py: 'result_display' hook can return a non-None
1114 value to manipulate resulting history entry.
1126 value to manipulate resulting history entry.
1115
1127
1116 * ipapi.py: Moved TryNext here from hooks.py. Moved functions
1128 * ipapi.py: Moved TryNext here from hooks.py. Moved functions
1117 to instance methods of IPApi class, to make extending an embedded
1129 to instance methods of IPApi class, to make extending an embedded
1118 IPython feasible. See ext_rehashdir.py for example usage.
1130 IPython feasible. See ext_rehashdir.py for example usage.
1119
1131
1120 * Merged 1071-1076 from branches/0.7.1
1132 * Merged 1071-1076 from branches/0.7.1
1121
1133
1122
1134
1123 2006-01-23 Fernando Perez <Fernando.Perez@colorado.edu>
1135 2006-01-23 Fernando Perez <Fernando.Perez@colorado.edu>
1124
1136
1125 * tools/release (daystamp): Fix build tools to use the new
1137 * tools/release (daystamp): Fix build tools to use the new
1126 eggsetup.py script to build lightweight eggs.
1138 eggsetup.py script to build lightweight eggs.
1127
1139
1128 * Applied changesets 1062 and 1064 before 0.7.1 release.
1140 * Applied changesets 1062 and 1064 before 0.7.1 release.
1129
1141
1130 * IPython/Magic.py (magic_history): Add '-r' option to %hist, to
1142 * IPython/Magic.py (magic_history): Add '-r' option to %hist, to
1131 see the raw input history (without conversions like %ls ->
1143 see the raw input history (without conversions like %ls ->
1132 ipmagic("ls")). After a request from W. Stein, SAGE
1144 ipmagic("ls")). After a request from W. Stein, SAGE
1133 (http://modular.ucsd.edu/sage) developer. This information is
1145 (http://modular.ucsd.edu/sage) developer. This information is
1134 stored in the input_hist_raw attribute of the IPython instance, so
1146 stored in the input_hist_raw attribute of the IPython instance, so
1135 developers can access it if needed (it's an InputList instance).
1147 developers can access it if needed (it's an InputList instance).
1136
1148
1137 * Versionstring = 0.7.2.svn
1149 * Versionstring = 0.7.2.svn
1138
1150
1139 * eggsetup.py: A separate script for constructing eggs, creates
1151 * eggsetup.py: A separate script for constructing eggs, creates
1140 proper launch scripts even on Windows (an .exe file in
1152 proper launch scripts even on Windows (an .exe file in
1141 \python24\scripts).
1153 \python24\scripts).
1142
1154
1143 * ipapi.py: launch_new_instance, launch entry point needed for the
1155 * ipapi.py: launch_new_instance, launch entry point needed for the
1144 egg.
1156 egg.
1145
1157
1146 2006-01-23 Ville Vainio <vivainio@gmail.com>
1158 2006-01-23 Ville Vainio <vivainio@gmail.com>
1147
1159
1148 * Added %cpaste magic for pasting python code
1160 * Added %cpaste magic for pasting python code
1149
1161
1150 2006-01-22 Ville Vainio <vivainio@gmail.com>
1162 2006-01-22 Ville Vainio <vivainio@gmail.com>
1151
1163
1152 * Merge from branches/0.7.1 into trunk, revs 1052-1057
1164 * Merge from branches/0.7.1 into trunk, revs 1052-1057
1153
1165
1154 * Versionstring = 0.7.2.svn
1166 * Versionstring = 0.7.2.svn
1155
1167
1156 * eggsetup.py: A separate script for constructing eggs, creates
1168 * eggsetup.py: A separate script for constructing eggs, creates
1157 proper launch scripts even on Windows (an .exe file in
1169 proper launch scripts even on Windows (an .exe file in
1158 \python24\scripts).
1170 \python24\scripts).
1159
1171
1160 * ipapi.py: launch_new_instance, launch entry point needed for the
1172 * ipapi.py: launch_new_instance, launch entry point needed for the
1161 egg.
1173 egg.
1162
1174
1163 2006-01-22 Fernando Perez <Fernando.Perez@colorado.edu>
1175 2006-01-22 Fernando Perez <Fernando.Perez@colorado.edu>
1164
1176
1165 * IPython/OInspect.py (Inspector.pinfo): fix bug where foo?? or
1177 * IPython/OInspect.py (Inspector.pinfo): fix bug where foo?? or
1166 %pfile foo would print the file for foo even if it was a binary.
1178 %pfile foo would print the file for foo even if it was a binary.
1167 Now, extensions '.so' and '.dll' are skipped.
1179 Now, extensions '.so' and '.dll' are skipped.
1168
1180
1169 * IPython/Shell.py (MTInteractiveShell.__init__): Fix threading
1181 * IPython/Shell.py (MTInteractiveShell.__init__): Fix threading
1170 bug, where macros would fail in all threaded modes. I'm not 100%
1182 bug, where macros would fail in all threaded modes. I'm not 100%
1171 sure, so I'm going to put out an rc instead of making a release
1183 sure, so I'm going to put out an rc instead of making a release
1172 today, and wait for feedback for at least a few days.
1184 today, and wait for feedback for at least a few days.
1173
1185
1174 * IPython/iplib.py (handle_normal): fix (finally? somehow I doubt
1186 * IPython/iplib.py (handle_normal): fix (finally? somehow I doubt
1175 it...) the handling of pasting external code with autoindent on.
1187 it...) the handling of pasting external code with autoindent on.
1176 To get out of a multiline input, the rule will appear for most
1188 To get out of a multiline input, the rule will appear for most
1177 users unchanged: two blank lines or change the indent level
1189 users unchanged: two blank lines or change the indent level
1178 proposed by IPython. But there is a twist now: you can
1190 proposed by IPython. But there is a twist now: you can
1179 add/subtract only *one or two spaces*. If you add/subtract three
1191 add/subtract only *one or two spaces*. If you add/subtract three
1180 or more (unless you completely delete the line), IPython will
1192 or more (unless you completely delete the line), IPython will
1181 accept that line, and you'll need to enter a second one of pure
1193 accept that line, and you'll need to enter a second one of pure
1182 whitespace. I know it sounds complicated, but I can't find a
1194 whitespace. I know it sounds complicated, but I can't find a
1183 different solution that covers all the cases, with the right
1195 different solution that covers all the cases, with the right
1184 heuristics. Hopefully in actual use, nobody will really notice
1196 heuristics. Hopefully in actual use, nobody will really notice
1185 all these strange rules and things will 'just work'.
1197 all these strange rules and things will 'just work'.
1186
1198
1187 2006-01-21 Fernando Perez <Fernando.Perez@colorado.edu>
1199 2006-01-21 Fernando Perez <Fernando.Perez@colorado.edu>
1188
1200
1189 * IPython/iplib.py (interact): catch exceptions which can be
1201 * IPython/iplib.py (interact): catch exceptions which can be
1190 triggered asynchronously by signal handlers. Thanks to an
1202 triggered asynchronously by signal handlers. Thanks to an
1191 automatic crash report, submitted by Colin Kingsley
1203 automatic crash report, submitted by Colin Kingsley
1192 <tercel-AT-gentoo.org>.
1204 <tercel-AT-gentoo.org>.
1193
1205
1194 2006-01-20 Ville Vainio <vivainio@gmail.com>
1206 2006-01-20 Ville Vainio <vivainio@gmail.com>
1195
1207
1196 * Ipython/Extensions/ext_rehashdir.py: Created a usable example
1208 * Ipython/Extensions/ext_rehashdir.py: Created a usable example
1197 (%rehashdir, very useful, try it out) of how to extend ipython
1209 (%rehashdir, very useful, try it out) of how to extend ipython
1198 with new magics. Also added Extensions dir to pythonpath to make
1210 with new magics. Also added Extensions dir to pythonpath to make
1199 importing extensions easy.
1211 importing extensions easy.
1200
1212
1201 * %store now complains when trying to store interactively declared
1213 * %store now complains when trying to store interactively declared
1202 classes / instances of those classes.
1214 classes / instances of those classes.
1203
1215
1204 * Extensions/ipy_system_conf.py, UserConfig/ipy_user_conf.py,
1216 * Extensions/ipy_system_conf.py, UserConfig/ipy_user_conf.py,
1205 ipmaker.py: Config rehaul. Now ipy_..._conf.py are always imported
1217 ipmaker.py: Config rehaul. Now ipy_..._conf.py are always imported
1206 if they exist, and ipy_user_conf.py with some defaults is created for
1218 if they exist, and ipy_user_conf.py with some defaults is created for
1207 the user.
1219 the user.
1208
1220
1209 * Startup rehashing done by the config file, not InterpreterExec.
1221 * Startup rehashing done by the config file, not InterpreterExec.
1210 This means system commands are available even without selecting the
1222 This means system commands are available even without selecting the
1211 pysh profile. It's the sensible default after all.
1223 pysh profile. It's the sensible default after all.
1212
1224
1213 2006-01-20 Fernando Perez <Fernando.Perez@colorado.edu>
1225 2006-01-20 Fernando Perez <Fernando.Perez@colorado.edu>
1214
1226
1215 * IPython/iplib.py (raw_input): I _think_ I got the pasting of
1227 * IPython/iplib.py (raw_input): I _think_ I got the pasting of
1216 multiline code with autoindent on working. But I am really not
1228 multiline code with autoindent on working. But I am really not
1217 sure, so this needs more testing. Will commit a debug-enabled
1229 sure, so this needs more testing. Will commit a debug-enabled
1218 version for now, while I test it some more, so that Ville and
1230 version for now, while I test it some more, so that Ville and
1219 others may also catch any problems. Also made
1231 others may also catch any problems. Also made
1220 self.indent_current_str() a method, to ensure that there's no
1232 self.indent_current_str() a method, to ensure that there's no
1221 chance of the indent space count and the corresponding string
1233 chance of the indent space count and the corresponding string
1222 falling out of sync. All code needing the string should just call
1234 falling out of sync. All code needing the string should just call
1223 the method.
1235 the method.
1224
1236
1225 2006-01-18 Fernando Perez <Fernando.Perez@colorado.edu>
1237 2006-01-18 Fernando Perez <Fernando.Perez@colorado.edu>
1226
1238
1227 * IPython/Magic.py (magic_edit): fix check for when users don't
1239 * IPython/Magic.py (magic_edit): fix check for when users don't
1228 save their output files, the try/except was in the wrong section.
1240 save their output files, the try/except was in the wrong section.
1229
1241
1230 2006-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
1242 2006-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
1231
1243
1232 * IPython/Magic.py (magic_run): fix __file__ global missing from
1244 * IPython/Magic.py (magic_run): fix __file__ global missing from
1233 script's namespace when executed via %run. After a report by
1245 script's namespace when executed via %run. After a report by
1234 Vivian.
1246 Vivian.
1235
1247
1236 * IPython/Debugger.py (Pdb.__init__): Fix breakage with '%run -d'
1248 * IPython/Debugger.py (Pdb.__init__): Fix breakage with '%run -d'
1237 when using python 2.4. The parent constructor changed in 2.4, and
1249 when using python 2.4. The parent constructor changed in 2.4, and
1238 we need to track it directly (we can't call it, as it messes up
1250 we need to track it directly (we can't call it, as it messes up
1239 readline and tab-completion inside our pdb would stop working).
1251 readline and tab-completion inside our pdb would stop working).
1240 After a bug report by R. Bernstein <rocky-AT-panix.com>.
1252 After a bug report by R. Bernstein <rocky-AT-panix.com>.
1241
1253
1242 2006-01-16 Ville Vainio <vivainio@gmail.com>
1254 2006-01-16 Ville Vainio <vivainio@gmail.com>
1243
1255
1244 * Ipython/magic.py: Reverted back to old %edit functionality
1256 * Ipython/magic.py: Reverted back to old %edit functionality
1245 that returns file contents on exit.
1257 that returns file contents on exit.
1246
1258
1247 * IPython/path.py: Added Jason Orendorff's "path" module to
1259 * IPython/path.py: Added Jason Orendorff's "path" module to
1248 IPython tree, http://www.jorendorff.com/articles/python/path/.
1260 IPython tree, http://www.jorendorff.com/articles/python/path/.
1249 You can get path objects conveniently through %sc, and !!, e.g.:
1261 You can get path objects conveniently through %sc, and !!, e.g.:
1250 sc files=ls
1262 sc files=ls
1251 for p in files.paths: # or files.p
1263 for p in files.paths: # or files.p
1252 print p,p.mtime
1264 print p,p.mtime
1253
1265
1254 * Ipython/iplib.py:"," and ";" autoquoting-upon-autocall
1266 * Ipython/iplib.py:"," and ";" autoquoting-upon-autocall
1255 now work again without considering the exclusion regexp -
1267 now work again without considering the exclusion regexp -
1256 hence, things like ',foo my/path' turn to 'foo("my/path")'
1268 hence, things like ',foo my/path' turn to 'foo("my/path")'
1257 instead of syntax error.
1269 instead of syntax error.
1258
1270
1259
1271
1260 2006-01-14 Ville Vainio <vivainio@gmail.com>
1272 2006-01-14 Ville Vainio <vivainio@gmail.com>
1261
1273
1262 * IPython/ipapi.py (ashook, asmagic, options): Added convenience
1274 * IPython/ipapi.py (ashook, asmagic, options): Added convenience
1263 ipapi decorators for python 2.4 users, options() provides access to rc
1275 ipapi decorators for python 2.4 users, options() provides access to rc
1264 data.
1276 data.
1265
1277
1266 * IPython/Magic.py (magic_cd): %cd now accepts backslashes
1278 * IPython/Magic.py (magic_cd): %cd now accepts backslashes
1267 as path separators (even on Linux ;-). Space character after
1279 as path separators (even on Linux ;-). Space character after
1268 backslash (as yielded by tab completer) is still space;
1280 backslash (as yielded by tab completer) is still space;
1269 "%cd long\ name" works as expected.
1281 "%cd long\ name" works as expected.
1270
1282
1271 * IPython/ipapi.py,hooks.py,iplib.py: Hooks now implemented
1283 * IPython/ipapi.py,hooks.py,iplib.py: Hooks now implemented
1272 as "chain of command", with priority. API stays the same,
1284 as "chain of command", with priority. API stays the same,
1273 TryNext exception raised by a hook function signals that
1285 TryNext exception raised by a hook function signals that
1274 current hook failed and next hook should try handling it, as
1286 current hook failed and next hook should try handling it, as
1275 suggested by Walter DΓΆrwald <walter@livinglogic.de>. Walter also
1287 suggested by Walter DΓΆrwald <walter@livinglogic.de>. Walter also
1276 requested configurable display hook, which is now implemented.
1288 requested configurable display hook, which is now implemented.
1277
1289
1278 2006-01-13 Ville Vainio <vivainio@gmail.com>
1290 2006-01-13 Ville Vainio <vivainio@gmail.com>
1279
1291
1280 * IPython/platutils*.py: platform specific utility functions,
1292 * IPython/platutils*.py: platform specific utility functions,
1281 so far only set_term_title is implemented (change terminal
1293 so far only set_term_title is implemented (change terminal
1282 label in windowing systems). %cd now changes the title to
1294 label in windowing systems). %cd now changes the title to
1283 current dir.
1295 current dir.
1284
1296
1285 * IPython/Release.py: Added myself to "authors" list,
1297 * IPython/Release.py: Added myself to "authors" list,
1286 had to create new files.
1298 had to create new files.
1287
1299
1288 * IPython/iplib.py (handle_shell_escape): fixed logical flaw in
1300 * IPython/iplib.py (handle_shell_escape): fixed logical flaw in
1289 shell escape; not a known bug but had potential to be one in the
1301 shell escape; not a known bug but had potential to be one in the
1290 future.
1302 future.
1291
1303
1292 * IPython/ipapi.py (added),OInspect.py,iplib.py: "Public"
1304 * IPython/ipapi.py (added),OInspect.py,iplib.py: "Public"
1293 extension API for IPython! See the module for usage example. Fix
1305 extension API for IPython! See the module for usage example. Fix
1294 OInspect for docstring-less magic functions.
1306 OInspect for docstring-less magic functions.
1295
1307
1296
1308
1297 2006-01-13 Fernando Perez <Fernando.Perez@colorado.edu>
1309 2006-01-13 Fernando Perez <Fernando.Perez@colorado.edu>
1298
1310
1299 * IPython/iplib.py (raw_input): temporarily deactivate all
1311 * IPython/iplib.py (raw_input): temporarily deactivate all
1300 attempts at allowing pasting of code with autoindent on. It
1312 attempts at allowing pasting of code with autoindent on. It
1301 introduced bugs (reported by Prabhu) and I can't seem to find a
1313 introduced bugs (reported by Prabhu) and I can't seem to find a
1302 robust combination which works in all cases. Will have to revisit
1314 robust combination which works in all cases. Will have to revisit
1303 later.
1315 later.
1304
1316
1305 * IPython/genutils.py: remove isspace() function. We've dropped
1317 * IPython/genutils.py: remove isspace() function. We've dropped
1306 2.2 compatibility, so it's OK to use the string method.
1318 2.2 compatibility, so it's OK to use the string method.
1307
1319
1308 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1320 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1309
1321
1310 * IPython/iplib.py (InteractiveShell.__init__): fix regexp
1322 * IPython/iplib.py (InteractiveShell.__init__): fix regexp
1311 matching what NOT to autocall on, to include all python binary
1323 matching what NOT to autocall on, to include all python binary
1312 operators (including things like 'and', 'or', 'is' and 'in').
1324 operators (including things like 'and', 'or', 'is' and 'in').
1313 Prompted by a bug report on 'foo & bar', but I realized we had
1325 Prompted by a bug report on 'foo & bar', but I realized we had
1314 many more potential bug cases with other operators. The regexp is
1326 many more potential bug cases with other operators. The regexp is
1315 self.re_exclude_auto, it's fairly commented.
1327 self.re_exclude_auto, it's fairly commented.
1316
1328
1317 2006-01-12 Ville Vainio <vivainio@gmail.com>
1329 2006-01-12 Ville Vainio <vivainio@gmail.com>
1318
1330
1319 * IPython/iplib.py (make_quoted_expr,handle_shell_escape):
1331 * IPython/iplib.py (make_quoted_expr,handle_shell_escape):
1320 Prettified and hardened string/backslash quoting with ipsystem(),
1332 Prettified and hardened string/backslash quoting with ipsystem(),
1321 ipalias() and ipmagic(). Now even \ characters are passed to
1333 ipalias() and ipmagic(). Now even \ characters are passed to
1322 %magics, !shell escapes and aliases exactly as they are in the
1334 %magics, !shell escapes and aliases exactly as they are in the
1323 ipython command line. Should improve backslash experience,
1335 ipython command line. Should improve backslash experience,
1324 particularly in Windows (path delimiter for some commands that
1336 particularly in Windows (path delimiter for some commands that
1325 won't understand '/'), but Unix benefits as well (regexps). %cd
1337 won't understand '/'), but Unix benefits as well (regexps). %cd
1326 magic still doesn't support backslash path delimiters, though. Also
1338 magic still doesn't support backslash path delimiters, though. Also
1327 deleted all pretense of supporting multiline command strings in
1339 deleted all pretense of supporting multiline command strings in
1328 !system or %magic commands. Thanks to Jerry McRae for suggestions.
1340 !system or %magic commands. Thanks to Jerry McRae for suggestions.
1329
1341
1330 * doc/build_doc_instructions.txt added. Documentation on how to
1342 * doc/build_doc_instructions.txt added. Documentation on how to
1331 use doc/update_manual.py, added yesterday. Both files contributed
1343 use doc/update_manual.py, added yesterday. Both files contributed
1332 by JΓΆrgen Stenarson <jorgen.stenarson-AT-bostream.nu>. This slates
1344 by JΓΆrgen Stenarson <jorgen.stenarson-AT-bostream.nu>. This slates
1333 doc/*.sh for deprecation at a later date.
1345 doc/*.sh for deprecation at a later date.
1334
1346
1335 * /ipython.py Added ipython.py to root directory for
1347 * /ipython.py Added ipython.py to root directory for
1336 zero-installation (tar xzvf ipython.tgz; cd ipython; python
1348 zero-installation (tar xzvf ipython.tgz; cd ipython; python
1337 ipython.py) and development convenience (no need to keep doing
1349 ipython.py) and development convenience (no need to keep doing
1338 "setup.py install" between changes).
1350 "setup.py install" between changes).
1339
1351
1340 * Made ! and !! shell escapes work (again) in multiline expressions:
1352 * Made ! and !! shell escapes work (again) in multiline expressions:
1341 if 1:
1353 if 1:
1342 !ls
1354 !ls
1343 !!ls
1355 !!ls
1344
1356
1345 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1357 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1346
1358
1347 * IPython/ipstruct.py (Struct): Rename IPython.Struct to
1359 * IPython/ipstruct.py (Struct): Rename IPython.Struct to
1348 IPython.ipstruct, to avoid local shadowing of the stdlib 'struct'
1360 IPython.ipstruct, to avoid local shadowing of the stdlib 'struct'
1349 module in case-insensitive installation. Was causing crashes
1361 module in case-insensitive installation. Was causing crashes
1350 under win32. Closes http://www.scipy.net/roundup/ipython/issue49.
1362 under win32. Closes http://www.scipy.net/roundup/ipython/issue49.
1351
1363
1352 * IPython/Magic.py (magic_pycat): Fix pycat, patch by Marien Zwart
1364 * IPython/Magic.py (magic_pycat): Fix pycat, patch by Marien Zwart
1353 <marienz-AT-gentoo.org>, closes
1365 <marienz-AT-gentoo.org>, closes
1354 http://www.scipy.net/roundup/ipython/issue51.
1366 http://www.scipy.net/roundup/ipython/issue51.
1355
1367
1356 2006-01-11 Fernando Perez <Fernando.Perez@colorado.edu>
1368 2006-01-11 Fernando Perez <Fernando.Perez@colorado.edu>
1357
1369
1358 * IPython/Shell.py (IPShellGTK.on_timer): Finally fix the
1370 * IPython/Shell.py (IPShellGTK.on_timer): Finally fix the
1359 problem of excessive CPU usage under *nix and keyboard lag under
1371 problem of excessive CPU usage under *nix and keyboard lag under
1360 win32.
1372 win32.
1361
1373
1362 2006-01-10 *** Released version 0.7.0
1374 2006-01-10 *** Released version 0.7.0
1363
1375
1364 2006-01-10 Fernando Perez <Fernando.Perez@colorado.edu>
1376 2006-01-10 Fernando Perez <Fernando.Perez@colorado.edu>
1365
1377
1366 * IPython/Release.py (revision): tag version number to 0.7.0,
1378 * IPython/Release.py (revision): tag version number to 0.7.0,
1367 ready for release.
1379 ready for release.
1368
1380
1369 * IPython/Magic.py (magic_edit): Add print statement to %edit so
1381 * IPython/Magic.py (magic_edit): Add print statement to %edit so
1370 it informs the user of the name of the temp. file used. This can
1382 it informs the user of the name of the temp. file used. This can
1371 help if you decide later to reuse that same file, so you know
1383 help if you decide later to reuse that same file, so you know
1372 where to copy the info from.
1384 where to copy the info from.
1373
1385
1374 2006-01-09 Fernando Perez <Fernando.Perez@colorado.edu>
1386 2006-01-09 Fernando Perez <Fernando.Perez@colorado.edu>
1375
1387
1376 * setup_bdist_egg.py: little script to build an egg. Added
1388 * setup_bdist_egg.py: little script to build an egg. Added
1377 support in the release tools as well.
1389 support in the release tools as well.
1378
1390
1379 2006-01-08 Fernando Perez <Fernando.Perez@colorado.edu>
1391 2006-01-08 Fernando Perez <Fernando.Perez@colorado.edu>
1380
1392
1381 * IPython/Shell.py (IPShellWX.__init__): add support for WXPython
1393 * IPython/Shell.py (IPShellWX.__init__): add support for WXPython
1382 version selection (new -wxversion command line and ipythonrc
1394 version selection (new -wxversion command line and ipythonrc
1383 parameter). Patch contributed by Arnd Baecker
1395 parameter). Patch contributed by Arnd Baecker
1384 <arnd.baecker-AT-web.de>.
1396 <arnd.baecker-AT-web.de>.
1385
1397
1386 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1398 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1387 embedded instances, for variables defined at the interactive
1399 embedded instances, for variables defined at the interactive
1388 prompt of the embedded ipython. Reported by Arnd.
1400 prompt of the embedded ipython. Reported by Arnd.
1389
1401
1390 * IPython/Magic.py (magic_autocall): Fix %autocall magic. Now
1402 * IPython/Magic.py (magic_autocall): Fix %autocall magic. Now
1391 it can be used as a (stateful) toggle, or with a direct parameter.
1403 it can be used as a (stateful) toggle, or with a direct parameter.
1392
1404
1393 * IPython/ultraTB.py (_fixed_getinnerframes): remove debug assert which
1405 * IPython/ultraTB.py (_fixed_getinnerframes): remove debug assert which
1394 could be triggered in certain cases and cause the traceback
1406 could be triggered in certain cases and cause the traceback
1395 printer not to work.
1407 printer not to work.
1396
1408
1397 2006-01-07 Fernando Perez <Fernando.Perez@colorado.edu>
1409 2006-01-07 Fernando Perez <Fernando.Perez@colorado.edu>
1398
1410
1399 * IPython/iplib.py (_should_recompile): Small fix, closes
1411 * IPython/iplib.py (_should_recompile): Small fix, closes
1400 http://www.scipy.net/roundup/ipython/issue48. Patch by Scott.
1412 http://www.scipy.net/roundup/ipython/issue48. Patch by Scott.
1401
1413
1402 2006-01-04 Fernando Perez <Fernando.Perez@colorado.edu>
1414 2006-01-04 Fernando Perez <Fernando.Perez@colorado.edu>
1403
1415
1404 * IPython/Shell.py (IPShellGTK.mainloop): fix bug in the GTK
1416 * IPython/Shell.py (IPShellGTK.mainloop): fix bug in the GTK
1405 backend for matplotlib (100% cpu utiliziation). Thanks to Charlie
1417 backend for matplotlib (100% cpu utiliziation). Thanks to Charlie
1406 Moad for help with tracking it down.
1418 Moad for help with tracking it down.
1407
1419
1408 * IPython/iplib.py (handle_auto): fix autocall handling for
1420 * IPython/iplib.py (handle_auto): fix autocall handling for
1409 objects which support BOTH __getitem__ and __call__ (so that f [x]
1421 objects which support BOTH __getitem__ and __call__ (so that f [x]
1410 is left alone, instead of becoming f([x]) automatically).
1422 is left alone, instead of becoming f([x]) automatically).
1411
1423
1412 * IPython/Magic.py (magic_cd): fix crash when cd -b was used.
1424 * IPython/Magic.py (magic_cd): fix crash when cd -b was used.
1413 Ville's patch.
1425 Ville's patch.
1414
1426
1415 2006-01-03 Fernando Perez <Fernando.Perez@colorado.edu>
1427 2006-01-03 Fernando Perez <Fernando.Perez@colorado.edu>
1416
1428
1417 * IPython/iplib.py (handle_auto): changed autocall semantics to
1429 * IPython/iplib.py (handle_auto): changed autocall semantics to
1418 include 'smart' mode, where the autocall transformation is NOT
1430 include 'smart' mode, where the autocall transformation is NOT
1419 applied if there are no arguments on the line. This allows you to
1431 applied if there are no arguments on the line. This allows you to
1420 just type 'foo' if foo is a callable to see its internal form,
1432 just type 'foo' if foo is a callable to see its internal form,
1421 instead of having it called with no arguments (typically a
1433 instead of having it called with no arguments (typically a
1422 mistake). The old 'full' autocall still exists: for that, you
1434 mistake). The old 'full' autocall still exists: for that, you
1423 need to set the 'autocall' parameter to 2 in your ipythonrc file.
1435 need to set the 'autocall' parameter to 2 in your ipythonrc file.
1424
1436
1425 * IPython/completer.py (Completer.attr_matches): add
1437 * IPython/completer.py (Completer.attr_matches): add
1426 tab-completion support for Enthoughts' traits. After a report by
1438 tab-completion support for Enthoughts' traits. After a report by
1427 Arnd and a patch by Prabhu.
1439 Arnd and a patch by Prabhu.
1428
1440
1429 2006-01-02 Fernando Perez <Fernando.Perez@colorado.edu>
1441 2006-01-02 Fernando Perez <Fernando.Perez@colorado.edu>
1430
1442
1431 * IPython/ultraTB.py (_fixed_getinnerframes): added Alex
1443 * IPython/ultraTB.py (_fixed_getinnerframes): added Alex
1432 Schmolck's patch to fix inspect.getinnerframes().
1444 Schmolck's patch to fix inspect.getinnerframes().
1433
1445
1434 * IPython/iplib.py (InteractiveShell.__init__): significant fixes
1446 * IPython/iplib.py (InteractiveShell.__init__): significant fixes
1435 for embedded instances, regarding handling of namespaces and items
1447 for embedded instances, regarding handling of namespaces and items
1436 added to the __builtin__ one. Multiple embedded instances and
1448 added to the __builtin__ one. Multiple embedded instances and
1437 recursive embeddings should work better now (though I'm not sure
1449 recursive embeddings should work better now (though I'm not sure
1438 I've got all the corner cases fixed, that code is a bit of a brain
1450 I've got all the corner cases fixed, that code is a bit of a brain
1439 twister).
1451 twister).
1440
1452
1441 * IPython/Magic.py (magic_edit): added support to edit in-memory
1453 * IPython/Magic.py (magic_edit): added support to edit in-memory
1442 macros (automatically creates the necessary temp files). %edit
1454 macros (automatically creates the necessary temp files). %edit
1443 also doesn't return the file contents anymore, it's just noise.
1455 also doesn't return the file contents anymore, it's just noise.
1444
1456
1445 * IPython/completer.py (Completer.attr_matches): revert change to
1457 * IPython/completer.py (Completer.attr_matches): revert change to
1446 complete only on attributes listed in __all__. I realized it
1458 complete only on attributes listed in __all__. I realized it
1447 cripples the tab-completion system as a tool for exploring the
1459 cripples the tab-completion system as a tool for exploring the
1448 internals of unknown libraries (it renders any non-__all__
1460 internals of unknown libraries (it renders any non-__all__
1449 attribute off-limits). I got bit by this when trying to see
1461 attribute off-limits). I got bit by this when trying to see
1450 something inside the dis module.
1462 something inside the dis module.
1451
1463
1452 2005-12-31 Fernando Perez <Fernando.Perez@colorado.edu>
1464 2005-12-31 Fernando Perez <Fernando.Perez@colorado.edu>
1453
1465
1454 * IPython/iplib.py (InteractiveShell.__init__): add .meta
1466 * IPython/iplib.py (InteractiveShell.__init__): add .meta
1455 namespace for users and extension writers to hold data in. This
1467 namespace for users and extension writers to hold data in. This
1456 follows the discussion in
1468 follows the discussion in
1457 http://projects.scipy.org/ipython/ipython/wiki/RefactoringIPython.
1469 http://projects.scipy.org/ipython/ipython/wiki/RefactoringIPython.
1458
1470
1459 * IPython/completer.py (IPCompleter.complete): small patch to help
1471 * IPython/completer.py (IPCompleter.complete): small patch to help
1460 tab-completion under Emacs, after a suggestion by John Barnard
1472 tab-completion under Emacs, after a suggestion by John Barnard
1461 <barnarj-AT-ccf.org>.
1473 <barnarj-AT-ccf.org>.
1462
1474
1463 * IPython/Magic.py (Magic.extract_input_slices): added support for
1475 * IPython/Magic.py (Magic.extract_input_slices): added support for
1464 the slice notation in magics to use N-M to represent numbers N...M
1476 the slice notation in magics to use N-M to represent numbers N...M
1465 (closed endpoints). This is used by %macro and %save.
1477 (closed endpoints). This is used by %macro and %save.
1466
1478
1467 * IPython/completer.py (Completer.attr_matches): for modules which
1479 * IPython/completer.py (Completer.attr_matches): for modules which
1468 define __all__, complete only on those. After a patch by Jeffrey
1480 define __all__, complete only on those. After a patch by Jeffrey
1469 Collins <jcollins_boulder-AT-earthlink.net>. Also, clean up and
1481 Collins <jcollins_boulder-AT-earthlink.net>. Also, clean up and
1470 speed up this routine.
1482 speed up this routine.
1471
1483
1472 * IPython/Logger.py (Logger.log): fix a history handling bug. I
1484 * IPython/Logger.py (Logger.log): fix a history handling bug. I
1473 don't know if this is the end of it, but the behavior now is
1485 don't know if this is the end of it, but the behavior now is
1474 certainly much more correct. Note that coupled with macros,
1486 certainly much more correct. Note that coupled with macros,
1475 slightly surprising (at first) behavior may occur: a macro will in
1487 slightly surprising (at first) behavior may occur: a macro will in
1476 general expand to multiple lines of input, so upon exiting, the
1488 general expand to multiple lines of input, so upon exiting, the
1477 in/out counters will both be bumped by the corresponding amount
1489 in/out counters will both be bumped by the corresponding amount
1478 (as if the macro's contents had been typed interactively). Typing
1490 (as if the macro's contents had been typed interactively). Typing
1479 %hist will reveal the intermediate (silently processed) lines.
1491 %hist will reveal the intermediate (silently processed) lines.
1480
1492
1481 * IPython/Magic.py (magic_run): fix a subtle bug which could cause
1493 * IPython/Magic.py (magic_run): fix a subtle bug which could cause
1482 pickle to fail (%run was overwriting __main__ and not restoring
1494 pickle to fail (%run was overwriting __main__ and not restoring
1483 it, but pickle relies on __main__ to operate).
1495 it, but pickle relies on __main__ to operate).
1484
1496
1485 * IPython/iplib.py (InteractiveShell): fix pdb calling: I'm now
1497 * IPython/iplib.py (InteractiveShell): fix pdb calling: I'm now
1486 using properties, but forgot to make the main InteractiveShell
1498 using properties, but forgot to make the main InteractiveShell
1487 class a new-style class. Properties fail silently, and
1499 class a new-style class. Properties fail silently, and
1488 mysteriously, with old-style class (getters work, but
1500 mysteriously, with old-style class (getters work, but
1489 setters don't do anything).
1501 setters don't do anything).
1490
1502
1491 2005-12-30 Fernando Perez <Fernando.Perez@colorado.edu>
1503 2005-12-30 Fernando Perez <Fernando.Perez@colorado.edu>
1492
1504
1493 * IPython/Magic.py (magic_history): fix history reporting bug (I
1505 * IPython/Magic.py (magic_history): fix history reporting bug (I
1494 know some nasties are still there, I just can't seem to find a
1506 know some nasties are still there, I just can't seem to find a
1495 reproducible test case to track them down; the input history is
1507 reproducible test case to track them down; the input history is
1496 falling out of sync...)
1508 falling out of sync...)
1497
1509
1498 * IPython/iplib.py (handle_shell_escape): fix bug where both
1510 * IPython/iplib.py (handle_shell_escape): fix bug where both
1499 aliases and system accesses where broken for indented code (such
1511 aliases and system accesses where broken for indented code (such
1500 as loops).
1512 as loops).
1501
1513
1502 * IPython/genutils.py (shell): fix small but critical bug for
1514 * IPython/genutils.py (shell): fix small but critical bug for
1503 win32 system access.
1515 win32 system access.
1504
1516
1505 2005-12-29 Fernando Perez <Fernando.Perez@colorado.edu>
1517 2005-12-29 Fernando Perez <Fernando.Perez@colorado.edu>
1506
1518
1507 * IPython/iplib.py (showtraceback): remove use of the
1519 * IPython/iplib.py (showtraceback): remove use of the
1508 sys.last_{type/value/traceback} structures, which are non
1520 sys.last_{type/value/traceback} structures, which are non
1509 thread-safe.
1521 thread-safe.
1510 (_prefilter): change control flow to ensure that we NEVER
1522 (_prefilter): change control flow to ensure that we NEVER
1511 introspect objects when autocall is off. This will guarantee that
1523 introspect objects when autocall is off. This will guarantee that
1512 having an input line of the form 'x.y', where access to attribute
1524 having an input line of the form 'x.y', where access to attribute
1513 'y' has side effects, doesn't trigger the side effect TWICE. It
1525 'y' has side effects, doesn't trigger the side effect TWICE. It
1514 is important to note that, with autocall on, these side effects
1526 is important to note that, with autocall on, these side effects
1515 can still happen.
1527 can still happen.
1516 (ipsystem): new builtin, to complete the ip{magic/alias/system}
1528 (ipsystem): new builtin, to complete the ip{magic/alias/system}
1517 trio. IPython offers these three kinds of special calls which are
1529 trio. IPython offers these three kinds of special calls which are
1518 not python code, and it's a good thing to have their call method
1530 not python code, and it's a good thing to have their call method
1519 be accessible as pure python functions (not just special syntax at
1531 be accessible as pure python functions (not just special syntax at
1520 the command line). It gives us a better internal implementation
1532 the command line). It gives us a better internal implementation
1521 structure, as well as exposing these for user scripting more
1533 structure, as well as exposing these for user scripting more
1522 cleanly.
1534 cleanly.
1523
1535
1524 * IPython/macro.py (Macro.__init__): moved macros to a standalone
1536 * IPython/macro.py (Macro.__init__): moved macros to a standalone
1525 file. Now that they'll be more likely to be used with the
1537 file. Now that they'll be more likely to be used with the
1526 persistance system (%store), I want to make sure their module path
1538 persistance system (%store), I want to make sure their module path
1527 doesn't change in the future, so that we don't break things for
1539 doesn't change in the future, so that we don't break things for
1528 users' persisted data.
1540 users' persisted data.
1529
1541
1530 * IPython/iplib.py (autoindent_update): move indentation
1542 * IPython/iplib.py (autoindent_update): move indentation
1531 management into the _text_ processing loop, not the keyboard
1543 management into the _text_ processing loop, not the keyboard
1532 interactive one. This is necessary to correctly process non-typed
1544 interactive one. This is necessary to correctly process non-typed
1533 multiline input (such as macros).
1545 multiline input (such as macros).
1534
1546
1535 * IPython/Magic.py (Magic.format_latex): patch by Stefan van der
1547 * IPython/Magic.py (Magic.format_latex): patch by Stefan van der
1536 Walt <stefan-AT-sun.ac.za> to fix latex formatting of docstrings,
1548 Walt <stefan-AT-sun.ac.za> to fix latex formatting of docstrings,
1537 which was producing problems in the resulting manual.
1549 which was producing problems in the resulting manual.
1538 (magic_whos): improve reporting of instances (show their class,
1550 (magic_whos): improve reporting of instances (show their class,
1539 instead of simply printing 'instance' which isn't terribly
1551 instead of simply printing 'instance' which isn't terribly
1540 informative).
1552 informative).
1541
1553
1542 * IPython/genutils.py (shell): commit Jorgen Stenarson's patch
1554 * IPython/genutils.py (shell): commit Jorgen Stenarson's patch
1543 (minor mods) to support network shares under win32.
1555 (minor mods) to support network shares under win32.
1544
1556
1545 * IPython/winconsole.py (get_console_size): add new winconsole
1557 * IPython/winconsole.py (get_console_size): add new winconsole
1546 module and fixes to page_dumb() to improve its behavior under
1558 module and fixes to page_dumb() to improve its behavior under
1547 win32. Contributed by Alexander Belchenko <bialix-AT-ukr.net>.
1559 win32. Contributed by Alexander Belchenko <bialix-AT-ukr.net>.
1548
1560
1549 * IPython/Magic.py (Macro): simplified Macro class to just
1561 * IPython/Magic.py (Macro): simplified Macro class to just
1550 subclass list. We've had only 2.2 compatibility for a very long
1562 subclass list. We've had only 2.2 compatibility for a very long
1551 time, yet I was still avoiding subclassing the builtin types. No
1563 time, yet I was still avoiding subclassing the builtin types. No
1552 more (I'm also starting to use properties, though I won't shift to
1564 more (I'm also starting to use properties, though I won't shift to
1553 2.3-specific features quite yet).
1565 2.3-specific features quite yet).
1554 (magic_store): added Ville's patch for lightweight variable
1566 (magic_store): added Ville's patch for lightweight variable
1555 persistence, after a request on the user list by Matt Wilkie
1567 persistence, after a request on the user list by Matt Wilkie
1556 <maphew-AT-gmail.com>. The new %store magic's docstring has full
1568 <maphew-AT-gmail.com>. The new %store magic's docstring has full
1557 details.
1569 details.
1558
1570
1559 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1571 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1560 changed the default logfile name from 'ipython.log' to
1572 changed the default logfile name from 'ipython.log' to
1561 'ipython_log.py'. These logs are real python files, and now that
1573 'ipython_log.py'. These logs are real python files, and now that
1562 we have much better multiline support, people are more likely to
1574 we have much better multiline support, people are more likely to
1563 want to use them as such. Might as well name them correctly.
1575 want to use them as such. Might as well name them correctly.
1564
1576
1565 * IPython/Magic.py: substantial cleanup. While we can't stop
1577 * IPython/Magic.py: substantial cleanup. While we can't stop
1566 using magics as mixins, due to the existing customizations 'out
1578 using magics as mixins, due to the existing customizations 'out
1567 there' which rely on the mixin naming conventions, at least I
1579 there' which rely on the mixin naming conventions, at least I
1568 cleaned out all cross-class name usage. So once we are OK with
1580 cleaned out all cross-class name usage. So once we are OK with
1569 breaking compatibility, the two systems can be separated.
1581 breaking compatibility, the two systems can be separated.
1570
1582
1571 * IPython/Logger.py: major cleanup. This one is NOT a mixin
1583 * IPython/Logger.py: major cleanup. This one is NOT a mixin
1572 anymore, and the class is a fair bit less hideous as well. New
1584 anymore, and the class is a fair bit less hideous as well. New
1573 features were also introduced: timestamping of input, and logging
1585 features were also introduced: timestamping of input, and logging
1574 of output results. These are user-visible with the -t and -o
1586 of output results. These are user-visible with the -t and -o
1575 options to %logstart. Closes
1587 options to %logstart. Closes
1576 http://www.scipy.net/roundup/ipython/issue11 and a request by
1588 http://www.scipy.net/roundup/ipython/issue11 and a request by
1577 William Stein (SAGE developer - http://modular.ucsd.edu/sage).
1589 William Stein (SAGE developer - http://modular.ucsd.edu/sage).
1578
1590
1579 2005-12-28 Fernando Perez <Fernando.Perez@colorado.edu>
1591 2005-12-28 Fernando Perez <Fernando.Perez@colorado.edu>
1580
1592
1581 * IPython/iplib.py (handle_shell_escape): add Ville's patch to
1593 * IPython/iplib.py (handle_shell_escape): add Ville's patch to
1582 better handle backslashes in paths. See the thread 'More Windows
1594 better handle backslashes in paths. See the thread 'More Windows
1583 questions part 2 - \/ characters revisited' on the iypthon user
1595 questions part 2 - \/ characters revisited' on the iypthon user
1584 list:
1596 list:
1585 http://scipy.net/pipermail/ipython-user/2005-June/000907.html
1597 http://scipy.net/pipermail/ipython-user/2005-June/000907.html
1586
1598
1587 (InteractiveShell.__init__): fix tab-completion bug in threaded shells.
1599 (InteractiveShell.__init__): fix tab-completion bug in threaded shells.
1588
1600
1589 (InteractiveShell.__init__): change threaded shells to not use the
1601 (InteractiveShell.__init__): change threaded shells to not use the
1590 ipython crash handler. This was causing more problems than not,
1602 ipython crash handler. This was causing more problems than not,
1591 as exceptions in the main thread (GUI code, typically) would
1603 as exceptions in the main thread (GUI code, typically) would
1592 always show up as a 'crash', when they really weren't.
1604 always show up as a 'crash', when they really weren't.
1593
1605
1594 The colors and exception mode commands (%colors/%xmode) have been
1606 The colors and exception mode commands (%colors/%xmode) have been
1595 synchronized to also take this into account, so users can get
1607 synchronized to also take this into account, so users can get
1596 verbose exceptions for their threaded code as well. I also added
1608 verbose exceptions for their threaded code as well. I also added
1597 support for activating pdb inside this exception handler as well,
1609 support for activating pdb inside this exception handler as well,
1598 so now GUI authors can use IPython's enhanced pdb at runtime.
1610 so now GUI authors can use IPython's enhanced pdb at runtime.
1599
1611
1600 * IPython/ipmaker.py (make_IPython): make the autoedit_syntax flag
1612 * IPython/ipmaker.py (make_IPython): make the autoedit_syntax flag
1601 true by default, and add it to the shipped ipythonrc file. Since
1613 true by default, and add it to the shipped ipythonrc file. Since
1602 this asks the user before proceeding, I think it's OK to make it
1614 this asks the user before proceeding, I think it's OK to make it
1603 true by default.
1615 true by default.
1604
1616
1605 * IPython/Magic.py (magic_exit): make new exit/quit magics instead
1617 * IPython/Magic.py (magic_exit): make new exit/quit magics instead
1606 of the previous special-casing of input in the eval loop. I think
1618 of the previous special-casing of input in the eval loop. I think
1607 this is cleaner, as they really are commands and shouldn't have
1619 this is cleaner, as they really are commands and shouldn't have
1608 a special role in the middle of the core code.
1620 a special role in the middle of the core code.
1609
1621
1610 2005-12-27 Fernando Perez <Fernando.Perez@colorado.edu>
1622 2005-12-27 Fernando Perez <Fernando.Perez@colorado.edu>
1611
1623
1612 * IPython/iplib.py (edit_syntax_error): added support for
1624 * IPython/iplib.py (edit_syntax_error): added support for
1613 automatically reopening the editor if the file had a syntax error
1625 automatically reopening the editor if the file had a syntax error
1614 in it. Thanks to scottt who provided the patch at:
1626 in it. Thanks to scottt who provided the patch at:
1615 http://www.scipy.net/roundup/ipython/issue36 (slightly modified
1627 http://www.scipy.net/roundup/ipython/issue36 (slightly modified
1616 version committed).
1628 version committed).
1617
1629
1618 * IPython/iplib.py (handle_normal): add suport for multi-line
1630 * IPython/iplib.py (handle_normal): add suport for multi-line
1619 input with emtpy lines. This fixes
1631 input with emtpy lines. This fixes
1620 http://www.scipy.net/roundup/ipython/issue43 and a similar
1632 http://www.scipy.net/roundup/ipython/issue43 and a similar
1621 discussion on the user list.
1633 discussion on the user list.
1622
1634
1623 WARNING: a behavior change is necessarily introduced to support
1635 WARNING: a behavior change is necessarily introduced to support
1624 blank lines: now a single blank line with whitespace does NOT
1636 blank lines: now a single blank line with whitespace does NOT
1625 break the input loop, which means that when autoindent is on, by
1637 break the input loop, which means that when autoindent is on, by
1626 default hitting return on the next (indented) line does NOT exit.
1638 default hitting return on the next (indented) line does NOT exit.
1627
1639
1628 Instead, to exit a multiline input you can either have:
1640 Instead, to exit a multiline input you can either have:
1629
1641
1630 - TWO whitespace lines (just hit return again), or
1642 - TWO whitespace lines (just hit return again), or
1631 - a single whitespace line of a different length than provided
1643 - a single whitespace line of a different length than provided
1632 by the autoindent (add or remove a space).
1644 by the autoindent (add or remove a space).
1633
1645
1634 * IPython/completer.py (MagicCompleter.__init__): new 'completer'
1646 * IPython/completer.py (MagicCompleter.__init__): new 'completer'
1635 module to better organize all readline-related functionality.
1647 module to better organize all readline-related functionality.
1636 I've deleted FlexCompleter and put all completion clases here.
1648 I've deleted FlexCompleter and put all completion clases here.
1637
1649
1638 * IPython/iplib.py (raw_input): improve indentation management.
1650 * IPython/iplib.py (raw_input): improve indentation management.
1639 It is now possible to paste indented code with autoindent on, and
1651 It is now possible to paste indented code with autoindent on, and
1640 the code is interpreted correctly (though it still looks bad on
1652 the code is interpreted correctly (though it still looks bad on
1641 screen, due to the line-oriented nature of ipython).
1653 screen, due to the line-oriented nature of ipython).
1642 (MagicCompleter.complete): change behavior so that a TAB key on an
1654 (MagicCompleter.complete): change behavior so that a TAB key on an
1643 otherwise empty line actually inserts a tab, instead of completing
1655 otherwise empty line actually inserts a tab, instead of completing
1644 on the entire global namespace. This makes it easier to use the
1656 on the entire global namespace. This makes it easier to use the
1645 TAB key for indentation. After a request by Hans Meine
1657 TAB key for indentation. After a request by Hans Meine
1646 <hans_meine-AT-gmx.net>
1658 <hans_meine-AT-gmx.net>
1647 (_prefilter): add support so that typing plain 'exit' or 'quit'
1659 (_prefilter): add support so that typing plain 'exit' or 'quit'
1648 does a sensible thing. Originally I tried to deviate as little as
1660 does a sensible thing. Originally I tried to deviate as little as
1649 possible from the default python behavior, but even that one may
1661 possible from the default python behavior, but even that one may
1650 change in this direction (thread on python-dev to that effect).
1662 change in this direction (thread on python-dev to that effect).
1651 Regardless, ipython should do the right thing even if CPython's
1663 Regardless, ipython should do the right thing even if CPython's
1652 '>>>' prompt doesn't.
1664 '>>>' prompt doesn't.
1653 (InteractiveShell): removed subclassing code.InteractiveConsole
1665 (InteractiveShell): removed subclassing code.InteractiveConsole
1654 class. By now we'd overridden just about all of its methods: I've
1666 class. By now we'd overridden just about all of its methods: I've
1655 copied the remaining two over, and now ipython is a standalone
1667 copied the remaining two over, and now ipython is a standalone
1656 class. This will provide a clearer picture for the chainsaw
1668 class. This will provide a clearer picture for the chainsaw
1657 branch refactoring.
1669 branch refactoring.
1658
1670
1659 2005-12-26 Fernando Perez <Fernando.Perez@colorado.edu>
1671 2005-12-26 Fernando Perez <Fernando.Perez@colorado.edu>
1660
1672
1661 * IPython/ultraTB.py (VerboseTB.text): harden reporting against
1673 * IPython/ultraTB.py (VerboseTB.text): harden reporting against
1662 failures for objects which break when dir() is called on them.
1674 failures for objects which break when dir() is called on them.
1663
1675
1664 * IPython/FlexCompleter.py (Completer.__init__): Added support for
1676 * IPython/FlexCompleter.py (Completer.__init__): Added support for
1665 distinct local and global namespaces in the completer API. This
1677 distinct local and global namespaces in the completer API. This
1666 change allows us to properly handle completion with distinct
1678 change allows us to properly handle completion with distinct
1667 scopes, including in embedded instances (this had never really
1679 scopes, including in embedded instances (this had never really
1668 worked correctly).
1680 worked correctly).
1669
1681
1670 Note: this introduces a change in the constructor for
1682 Note: this introduces a change in the constructor for
1671 MagicCompleter, as a new global_namespace parameter is now the
1683 MagicCompleter, as a new global_namespace parameter is now the
1672 second argument (the others were bumped one position).
1684 second argument (the others were bumped one position).
1673
1685
1674 2005-12-25 Fernando Perez <Fernando.Perez@colorado.edu>
1686 2005-12-25 Fernando Perez <Fernando.Perez@colorado.edu>
1675
1687
1676 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1688 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1677 embedded instances (which can be done now thanks to Vivian's
1689 embedded instances (which can be done now thanks to Vivian's
1678 frame-handling fixes for pdb).
1690 frame-handling fixes for pdb).
1679 (InteractiveShell.__init__): Fix namespace handling problem in
1691 (InteractiveShell.__init__): Fix namespace handling problem in
1680 embedded instances. We were overwriting __main__ unconditionally,
1692 embedded instances. We were overwriting __main__ unconditionally,
1681 and this should only be done for 'full' (non-embedded) IPython;
1693 and this should only be done for 'full' (non-embedded) IPython;
1682 embedded instances must respect the caller's __main__. Thanks to
1694 embedded instances must respect the caller's __main__. Thanks to
1683 a bug report by Yaroslav Bulatov <yaroslavvb-AT-gmail.com>
1695 a bug report by Yaroslav Bulatov <yaroslavvb-AT-gmail.com>
1684
1696
1685 2005-12-24 Fernando Perez <Fernando.Perez@colorado.edu>
1697 2005-12-24 Fernando Perez <Fernando.Perez@colorado.edu>
1686
1698
1687 * setup.py: added download_url to setup(). This registers the
1699 * setup.py: added download_url to setup(). This registers the
1688 download address at PyPI, which is not only useful to humans
1700 download address at PyPI, which is not only useful to humans
1689 browsing the site, but is also picked up by setuptools (the Eggs
1701 browsing the site, but is also picked up by setuptools (the Eggs
1690 machinery). Thanks to Ville and R. Kern for the info/discussion
1702 machinery). Thanks to Ville and R. Kern for the info/discussion
1691 on this.
1703 on this.
1692
1704
1693 2005-12-23 Fernando Perez <Fernando.Perez@colorado.edu>
1705 2005-12-23 Fernando Perez <Fernando.Perez@colorado.edu>
1694
1706
1695 * IPython/Debugger.py (Pdb.__init__): Major pdb mode enhancements.
1707 * IPython/Debugger.py (Pdb.__init__): Major pdb mode enhancements.
1696 This brings a lot of nice functionality to the pdb mode, which now
1708 This brings a lot of nice functionality to the pdb mode, which now
1697 has tab-completion, syntax highlighting, and better stack handling
1709 has tab-completion, syntax highlighting, and better stack handling
1698 than before. Many thanks to Vivian De Smedt
1710 than before. Many thanks to Vivian De Smedt
1699 <vivian-AT-vdesmedt.com> for the original patches.
1711 <vivian-AT-vdesmedt.com> for the original patches.
1700
1712
1701 2005-12-08 Fernando Perez <Fernando.Perez@colorado.edu>
1713 2005-12-08 Fernando Perez <Fernando.Perez@colorado.edu>
1702
1714
1703 * IPython/Shell.py (IPShellGTK.mainloop): fix mainloop() calling
1715 * IPython/Shell.py (IPShellGTK.mainloop): fix mainloop() calling
1704 sequence to consistently accept the banner argument. The
1716 sequence to consistently accept the banner argument. The
1705 inconsistency was tripping SAGE, thanks to Gary Zablackis
1717 inconsistency was tripping SAGE, thanks to Gary Zablackis
1706 <gzabl-AT-yahoo.com> for the report.
1718 <gzabl-AT-yahoo.com> for the report.
1707
1719
1708 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1720 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1709
1721
1710 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1722 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1711 Fix bug where a naked 'alias' call in the ipythonrc file would
1723 Fix bug where a naked 'alias' call in the ipythonrc file would
1712 cause a crash. Bug reported by Jorgen Stenarson.
1724 cause a crash. Bug reported by Jorgen Stenarson.
1713
1725
1714 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1726 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1715
1727
1716 * IPython/ipmaker.py (make_IPython): cleanups which should improve
1728 * IPython/ipmaker.py (make_IPython): cleanups which should improve
1717 startup time.
1729 startup time.
1718
1730
1719 * IPython/iplib.py (runcode): my globals 'fix' for embedded
1731 * IPython/iplib.py (runcode): my globals 'fix' for embedded
1720 instances had introduced a bug with globals in normal code. Now
1732 instances had introduced a bug with globals in normal code. Now
1721 it's working in all cases.
1733 it's working in all cases.
1722
1734
1723 * IPython/Magic.py (magic_psearch): Finish wildcard cleanup and
1735 * IPython/Magic.py (magic_psearch): Finish wildcard cleanup and
1724 API changes. A new ipytonrc option, 'wildcards_case_sensitive'
1736 API changes. A new ipytonrc option, 'wildcards_case_sensitive'
1725 has been introduced to set the default case sensitivity of the
1737 has been introduced to set the default case sensitivity of the
1726 searches. Users can still select either mode at runtime on a
1738 searches. Users can still select either mode at runtime on a
1727 per-search basis.
1739 per-search basis.
1728
1740
1729 2005-11-13 Fernando Perez <Fernando.Perez@colorado.edu>
1741 2005-11-13 Fernando Perez <Fernando.Perez@colorado.edu>
1730
1742
1731 * IPython/wildcard.py (NameSpace.__init__): fix resolution of
1743 * IPython/wildcard.py (NameSpace.__init__): fix resolution of
1732 attributes in wildcard searches for subclasses. Modified version
1744 attributes in wildcard searches for subclasses. Modified version
1733 of a patch by Jorgen.
1745 of a patch by Jorgen.
1734
1746
1735 2005-11-12 Fernando Perez <Fernando.Perez@colorado.edu>
1747 2005-11-12 Fernando Perez <Fernando.Perez@colorado.edu>
1736
1748
1737 * IPython/iplib.py (embed_mainloop): Fix handling of globals for
1749 * IPython/iplib.py (embed_mainloop): Fix handling of globals for
1738 embedded instances. I added a user_global_ns attribute to the
1750 embedded instances. I added a user_global_ns attribute to the
1739 InteractiveShell class to handle this.
1751 InteractiveShell class to handle this.
1740
1752
1741 2005-10-31 Fernando Perez <Fernando.Perez@colorado.edu>
1753 2005-10-31 Fernando Perez <Fernando.Perez@colorado.edu>
1742
1754
1743 * IPython/Shell.py (IPShellGTK.mainloop): Change timeout_add to
1755 * IPython/Shell.py (IPShellGTK.mainloop): Change timeout_add to
1744 idle_add, which fixes horrible keyboard lag problems under gtk 2.6
1756 idle_add, which fixes horrible keyboard lag problems under gtk 2.6
1745 (reported under win32, but may happen also in other platforms).
1757 (reported under win32, but may happen also in other platforms).
1746 Bug report and fix courtesy of Sean Moore <smm-AT-logic.bm>
1758 Bug report and fix courtesy of Sean Moore <smm-AT-logic.bm>
1747
1759
1748 2005-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
1760 2005-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
1749
1761
1750 * IPython/Magic.py (magic_psearch): new support for wildcard
1762 * IPython/Magic.py (magic_psearch): new support for wildcard
1751 patterns. Now, typing ?a*b will list all names which begin with a
1763 patterns. Now, typing ?a*b will list all names which begin with a
1752 and end in b, for example. The %psearch magic has full
1764 and end in b, for example. The %psearch magic has full
1753 docstrings. Many thanks to JΓΆrgen Stenarson
1765 docstrings. Many thanks to JΓΆrgen Stenarson
1754 <jorgen.stenarson-AT-bostream.nu>, author of the patches
1766 <jorgen.stenarson-AT-bostream.nu>, author of the patches
1755 implementing this functionality.
1767 implementing this functionality.
1756
1768
1757 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1769 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1758
1770
1759 * Manual: fixed long-standing annoyance of double-dashes (as in
1771 * Manual: fixed long-standing annoyance of double-dashes (as in
1760 --prefix=~, for example) being stripped in the HTML version. This
1772 --prefix=~, for example) being stripped in the HTML version. This
1761 is a latex2html bug, but a workaround was provided. Many thanks
1773 is a latex2html bug, but a workaround was provided. Many thanks
1762 to George K. Thiruvathukal <gthiruv-AT-luc.edu> for the detailed
1774 to George K. Thiruvathukal <gthiruv-AT-luc.edu> for the detailed
1763 help, and Michael Tobis <mtobis-AT-gmail.com> for getting the ball
1775 help, and Michael Tobis <mtobis-AT-gmail.com> for getting the ball
1764 rolling. This seemingly small issue had tripped a number of users
1776 rolling. This seemingly small issue had tripped a number of users
1765 when first installing, so I'm glad to see it gone.
1777 when first installing, so I'm glad to see it gone.
1766
1778
1767 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1779 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1768
1780
1769 * IPython/Extensions/numeric_formats.py: fix missing import,
1781 * IPython/Extensions/numeric_formats.py: fix missing import,
1770 reported by Stephen Walton.
1782 reported by Stephen Walton.
1771
1783
1772 2005-09-24 Fernando Perez <Fernando.Perez@colorado.edu>
1784 2005-09-24 Fernando Perez <Fernando.Perez@colorado.edu>
1773
1785
1774 * IPython/demo.py: finish demo module, fully documented now.
1786 * IPython/demo.py: finish demo module, fully documented now.
1775
1787
1776 * IPython/genutils.py (file_read): simple little utility to read a
1788 * IPython/genutils.py (file_read): simple little utility to read a
1777 file and ensure it's closed afterwards.
1789 file and ensure it's closed afterwards.
1778
1790
1779 2005-09-23 Fernando Perez <Fernando.Perez@colorado.edu>
1791 2005-09-23 Fernando Perez <Fernando.Perez@colorado.edu>
1780
1792
1781 * IPython/demo.py (Demo.__init__): added support for individually
1793 * IPython/demo.py (Demo.__init__): added support for individually
1782 tagging blocks for automatic execution.
1794 tagging blocks for automatic execution.
1783
1795
1784 * IPython/Magic.py (magic_pycat): new %pycat magic for showing
1796 * IPython/Magic.py (magic_pycat): new %pycat magic for showing
1785 syntax-highlighted python sources, requested by John.
1797 syntax-highlighted python sources, requested by John.
1786
1798
1787 2005-09-22 Fernando Perez <Fernando.Perez@colorado.edu>
1799 2005-09-22 Fernando Perez <Fernando.Perez@colorado.edu>
1788
1800
1789 * IPython/demo.py (Demo.again): fix bug where again() blocks after
1801 * IPython/demo.py (Demo.again): fix bug where again() blocks after
1790 finishing.
1802 finishing.
1791
1803
1792 * IPython/genutils.py (shlex_split): moved from Magic to here,
1804 * IPython/genutils.py (shlex_split): moved from Magic to here,
1793 where all 2.2 compatibility stuff lives. I needed it for demo.py.
1805 where all 2.2 compatibility stuff lives. I needed it for demo.py.
1794
1806
1795 * IPython/demo.py (Demo.__init__): added support for silent
1807 * IPython/demo.py (Demo.__init__): added support for silent
1796 blocks, improved marks as regexps, docstrings written.
1808 blocks, improved marks as regexps, docstrings written.
1797 (Demo.__init__): better docstring, added support for sys.argv.
1809 (Demo.__init__): better docstring, added support for sys.argv.
1798
1810
1799 * IPython/genutils.py (marquee): little utility used by the demo
1811 * IPython/genutils.py (marquee): little utility used by the demo
1800 code, handy in general.
1812 code, handy in general.
1801
1813
1802 * IPython/demo.py (Demo.__init__): new class for interactive
1814 * IPython/demo.py (Demo.__init__): new class for interactive
1803 demos. Not documented yet, I just wrote it in a hurry for
1815 demos. Not documented yet, I just wrote it in a hurry for
1804 scipy'05. Will docstring later.
1816 scipy'05. Will docstring later.
1805
1817
1806 2005-09-20 Fernando Perez <Fernando.Perez@colorado.edu>
1818 2005-09-20 Fernando Perez <Fernando.Perez@colorado.edu>
1807
1819
1808 * IPython/Shell.py (sigint_handler): Drastic simplification which
1820 * IPython/Shell.py (sigint_handler): Drastic simplification which
1809 also seems to make Ctrl-C work correctly across threads! This is
1821 also seems to make Ctrl-C work correctly across threads! This is
1810 so simple, that I can't beleive I'd missed it before. Needs more
1822 so simple, that I can't beleive I'd missed it before. Needs more
1811 testing, though.
1823 testing, though.
1812 (KBINT): Never mind, revert changes. I'm sure I'd tried something
1824 (KBINT): Never mind, revert changes. I'm sure I'd tried something
1813 like this before...
1825 like this before...
1814
1826
1815 * IPython/genutils.py (get_home_dir): add protection against
1827 * IPython/genutils.py (get_home_dir): add protection against
1816 non-dirs in win32 registry.
1828 non-dirs in win32 registry.
1817
1829
1818 * IPython/iplib.py (InteractiveShell.alias_table_validate): fix
1830 * IPython/iplib.py (InteractiveShell.alias_table_validate): fix
1819 bug where dict was mutated while iterating (pysh crash).
1831 bug where dict was mutated while iterating (pysh crash).
1820
1832
1821 2005-09-06 Fernando Perez <Fernando.Perez@colorado.edu>
1833 2005-09-06 Fernando Perez <Fernando.Perez@colorado.edu>
1822
1834
1823 * IPython/iplib.py (handle_auto): Fix inconsistency arising from
1835 * IPython/iplib.py (handle_auto): Fix inconsistency arising from
1824 spurious newlines added by this routine. After a report by
1836 spurious newlines added by this routine. After a report by
1825 F. Mantegazza.
1837 F. Mantegazza.
1826
1838
1827 2005-09-05 Fernando Perez <Fernando.Perez@colorado.edu>
1839 2005-09-05 Fernando Perez <Fernando.Perez@colorado.edu>
1828
1840
1829 * IPython/Shell.py (hijack_gtk): remove pygtk.require("2.0")
1841 * IPython/Shell.py (hijack_gtk): remove pygtk.require("2.0")
1830 calls. These were a leftover from the GTK 1.x days, and can cause
1842 calls. These were a leftover from the GTK 1.x days, and can cause
1831 problems in certain cases (after a report by John Hunter).
1843 problems in certain cases (after a report by John Hunter).
1832
1844
1833 * IPython/iplib.py (InteractiveShell.__init__): Trap exception if
1845 * IPython/iplib.py (InteractiveShell.__init__): Trap exception if
1834 os.getcwd() fails at init time. Thanks to patch from David Remahl
1846 os.getcwd() fails at init time. Thanks to patch from David Remahl
1835 <chmod007-AT-mac.com>.
1847 <chmod007-AT-mac.com>.
1836 (InteractiveShell.__init__): prevent certain special magics from
1848 (InteractiveShell.__init__): prevent certain special magics from
1837 being shadowed by aliases. Closes
1849 being shadowed by aliases. Closes
1838 http://www.scipy.net/roundup/ipython/issue41.
1850 http://www.scipy.net/roundup/ipython/issue41.
1839
1851
1840 2005-08-31 Fernando Perez <Fernando.Perez@colorado.edu>
1852 2005-08-31 Fernando Perez <Fernando.Perez@colorado.edu>
1841
1853
1842 * IPython/iplib.py (InteractiveShell.complete): Added new
1854 * IPython/iplib.py (InteractiveShell.complete): Added new
1843 top-level completion method to expose the completion mechanism
1855 top-level completion method to expose the completion mechanism
1844 beyond readline-based environments.
1856 beyond readline-based environments.
1845
1857
1846 2005-08-19 Fernando Perez <Fernando.Perez@colorado.edu>
1858 2005-08-19 Fernando Perez <Fernando.Perez@colorado.edu>
1847
1859
1848 * tools/ipsvnc (svnversion): fix svnversion capture.
1860 * tools/ipsvnc (svnversion): fix svnversion capture.
1849
1861
1850 * IPython/iplib.py (InteractiveShell.__init__): Add has_readline
1862 * IPython/iplib.py (InteractiveShell.__init__): Add has_readline
1851 attribute to self, which was missing. Before, it was set by a
1863 attribute to self, which was missing. Before, it was set by a
1852 routine which in certain cases wasn't being called, so the
1864 routine which in certain cases wasn't being called, so the
1853 instance could end up missing the attribute. This caused a crash.
1865 instance could end up missing the attribute. This caused a crash.
1854 Closes http://www.scipy.net/roundup/ipython/issue40.
1866 Closes http://www.scipy.net/roundup/ipython/issue40.
1855
1867
1856 2005-08-16 Fernando Perez <fperez@colorado.edu>
1868 2005-08-16 Fernando Perez <fperez@colorado.edu>
1857
1869
1858 * IPython/ultraTB.py (VerboseTB.text): don't crash if object
1870 * IPython/ultraTB.py (VerboseTB.text): don't crash if object
1859 contains non-string attribute. Closes
1871 contains non-string attribute. Closes
1860 http://www.scipy.net/roundup/ipython/issue38.
1872 http://www.scipy.net/roundup/ipython/issue38.
1861
1873
1862 2005-08-14 Fernando Perez <fperez@colorado.edu>
1874 2005-08-14 Fernando Perez <fperez@colorado.edu>
1863
1875
1864 * tools/ipsvnc: Minor improvements, to add changeset info.
1876 * tools/ipsvnc: Minor improvements, to add changeset info.
1865
1877
1866 2005-08-12 Fernando Perez <fperez@colorado.edu>
1878 2005-08-12 Fernando Perez <fperez@colorado.edu>
1867
1879
1868 * IPython/iplib.py (runsource): remove self.code_to_run_src
1880 * IPython/iplib.py (runsource): remove self.code_to_run_src
1869 attribute. I realized this is nothing more than
1881 attribute. I realized this is nothing more than
1870 '\n'.join(self.buffer), and having the same data in two different
1882 '\n'.join(self.buffer), and having the same data in two different
1871 places is just asking for synchronization bugs. This may impact
1883 places is just asking for synchronization bugs. This may impact
1872 people who have custom exception handlers, so I need to warn
1884 people who have custom exception handlers, so I need to warn
1873 ipython-dev about it (F. Mantegazza may use them).
1885 ipython-dev about it (F. Mantegazza may use them).
1874
1886
1875 2005-07-29 Fernando Perez <Fernando.Perez@colorado.edu>
1887 2005-07-29 Fernando Perez <Fernando.Perez@colorado.edu>
1876
1888
1877 * IPython/genutils.py: fix 2.2 compatibility (generators)
1889 * IPython/genutils.py: fix 2.2 compatibility (generators)
1878
1890
1879 2005-07-18 Fernando Perez <fperez@colorado.edu>
1891 2005-07-18 Fernando Perez <fperez@colorado.edu>
1880
1892
1881 * IPython/genutils.py (get_home_dir): fix to help users with
1893 * IPython/genutils.py (get_home_dir): fix to help users with
1882 invalid $HOME under win32.
1894 invalid $HOME under win32.
1883
1895
1884 2005-07-17 Fernando Perez <fperez@colorado.edu>
1896 2005-07-17 Fernando Perez <fperez@colorado.edu>
1885
1897
1886 * IPython/Prompts.py (str_safe): Make unicode-safe. Also remove
1898 * IPython/Prompts.py (str_safe): Make unicode-safe. Also remove
1887 some old hacks and clean up a bit other routines; code should be
1899 some old hacks and clean up a bit other routines; code should be
1888 simpler and a bit faster.
1900 simpler and a bit faster.
1889
1901
1890 * IPython/iplib.py (interact): removed some last-resort attempts
1902 * IPython/iplib.py (interact): removed some last-resort attempts
1891 to survive broken stdout/stderr. That code was only making it
1903 to survive broken stdout/stderr. That code was only making it
1892 harder to abstract out the i/o (necessary for gui integration),
1904 harder to abstract out the i/o (necessary for gui integration),
1893 and the crashes it could prevent were extremely rare in practice
1905 and the crashes it could prevent were extremely rare in practice
1894 (besides being fully user-induced in a pretty violent manner).
1906 (besides being fully user-induced in a pretty violent manner).
1895
1907
1896 * IPython/genutils.py (IOStream.__init__): Simplify the i/o stuff.
1908 * IPython/genutils.py (IOStream.__init__): Simplify the i/o stuff.
1897 Nothing major yet, but the code is simpler to read; this should
1909 Nothing major yet, but the code is simpler to read; this should
1898 make it easier to do more serious modifications in the future.
1910 make it easier to do more serious modifications in the future.
1899
1911
1900 * IPython/Extensions/InterpreterExec.py: Fix auto-quoting in pysh,
1912 * IPython/Extensions/InterpreterExec.py: Fix auto-quoting in pysh,
1901 which broke in .15 (thanks to a report by Ville).
1913 which broke in .15 (thanks to a report by Ville).
1902
1914
1903 * IPython/Itpl.py (Itpl.__init__): add unicode support (it may not
1915 * IPython/Itpl.py (Itpl.__init__): add unicode support (it may not
1904 be quite correct, I know next to nothing about unicode). This
1916 be quite correct, I know next to nothing about unicode). This
1905 will allow unicode strings to be used in prompts, amongst other
1917 will allow unicode strings to be used in prompts, amongst other
1906 cases. It also will prevent ipython from crashing when unicode
1918 cases. It also will prevent ipython from crashing when unicode
1907 shows up unexpectedly in many places. If ascii encoding fails, we
1919 shows up unexpectedly in many places. If ascii encoding fails, we
1908 assume utf_8. Currently the encoding is not a user-visible
1920 assume utf_8. Currently the encoding is not a user-visible
1909 setting, though it could be made so if there is demand for it.
1921 setting, though it could be made so if there is demand for it.
1910
1922
1911 * IPython/ipmaker.py (make_IPython): remove old 2.1-specific hack.
1923 * IPython/ipmaker.py (make_IPython): remove old 2.1-specific hack.
1912
1924
1913 * IPython/Struct.py (Struct.merge): switch keys() to iterator.
1925 * IPython/Struct.py (Struct.merge): switch keys() to iterator.
1914
1926
1915 * IPython/background_jobs.py: moved 2.2 compatibility to genutils.
1927 * IPython/background_jobs.py: moved 2.2 compatibility to genutils.
1916
1928
1917 * IPython/genutils.py: Add 2.2 compatibility here, so all other
1929 * IPython/genutils.py: Add 2.2 compatibility here, so all other
1918 code can work transparently for 2.2/2.3.
1930 code can work transparently for 2.2/2.3.
1919
1931
1920 2005-07-16 Fernando Perez <fperez@colorado.edu>
1932 2005-07-16 Fernando Perez <fperez@colorado.edu>
1921
1933
1922 * IPython/ultraTB.py (ExceptionColors): Make a global variable
1934 * IPython/ultraTB.py (ExceptionColors): Make a global variable
1923 out of the color scheme table used for coloring exception
1935 out of the color scheme table used for coloring exception
1924 tracebacks. This allows user code to add new schemes at runtime.
1936 tracebacks. This allows user code to add new schemes at runtime.
1925 This is a minimally modified version of the patch at
1937 This is a minimally modified version of the patch at
1926 http://www.scipy.net/roundup/ipython/issue35, many thanks to pabw
1938 http://www.scipy.net/roundup/ipython/issue35, many thanks to pabw
1927 for the contribution.
1939 for the contribution.
1928
1940
1929 * IPython/FlexCompleter.py (Completer.attr_matches): Add a
1941 * IPython/FlexCompleter.py (Completer.attr_matches): Add a
1930 slightly modified version of the patch in
1942 slightly modified version of the patch in
1931 http://www.scipy.net/roundup/ipython/issue34, which also allows me
1943 http://www.scipy.net/roundup/ipython/issue34, which also allows me
1932 to remove the previous try/except solution (which was costlier).
1944 to remove the previous try/except solution (which was costlier).
1933 Thanks to Gaetan Lehmann <gaetan.lehmann-AT-jouy.inra.fr> for the fix.
1945 Thanks to Gaetan Lehmann <gaetan.lehmann-AT-jouy.inra.fr> for the fix.
1934
1946
1935 2005-06-08 Fernando Perez <fperez@colorado.edu>
1947 2005-06-08 Fernando Perez <fperez@colorado.edu>
1936
1948
1937 * IPython/iplib.py (write/write_err): Add methods to abstract all
1949 * IPython/iplib.py (write/write_err): Add methods to abstract all
1938 I/O a bit more.
1950 I/O a bit more.
1939
1951
1940 * IPython/Shell.py (IPShellGTK.mainloop): Fix GTK deprecation
1952 * IPython/Shell.py (IPShellGTK.mainloop): Fix GTK deprecation
1941 warning, reported by Aric Hagberg, fix by JD Hunter.
1953 warning, reported by Aric Hagberg, fix by JD Hunter.
1942
1954
1943 2005-06-02 *** Released version 0.6.15
1955 2005-06-02 *** Released version 0.6.15
1944
1956
1945 2005-06-01 Fernando Perez <fperez@colorado.edu>
1957 2005-06-01 Fernando Perez <fperez@colorado.edu>
1946
1958
1947 * IPython/iplib.py (MagicCompleter.file_matches): Fix
1959 * IPython/iplib.py (MagicCompleter.file_matches): Fix
1948 tab-completion of filenames within open-quoted strings. Note that
1960 tab-completion of filenames within open-quoted strings. Note that
1949 this requires that in ~/.ipython/ipythonrc, users change the
1961 this requires that in ~/.ipython/ipythonrc, users change the
1950 readline delimiters configuration to read:
1962 readline delimiters configuration to read:
1951
1963
1952 readline_remove_delims -/~
1964 readline_remove_delims -/~
1953
1965
1954
1966
1955 2005-05-31 *** Released version 0.6.14
1967 2005-05-31 *** Released version 0.6.14
1956
1968
1957 2005-05-29 Fernando Perez <fperez@colorado.edu>
1969 2005-05-29 Fernando Perez <fperez@colorado.edu>
1958
1970
1959 * IPython/ultraTB.py (VerboseTB.text): Fix crash for tracebacks
1971 * IPython/ultraTB.py (VerboseTB.text): Fix crash for tracebacks
1960 with files not on the filesystem. Reported by Eliyahu Sandler
1972 with files not on the filesystem. Reported by Eliyahu Sandler
1961 <eli@gondolin.net>
1973 <eli@gondolin.net>
1962
1974
1963 2005-05-22 Fernando Perez <fperez@colorado.edu>
1975 2005-05-22 Fernando Perez <fperez@colorado.edu>
1964
1976
1965 * IPython/iplib.py: Fix a few crashes in the --upgrade option.
1977 * IPython/iplib.py: Fix a few crashes in the --upgrade option.
1966 After an initial report by LUK ShunTim <shuntim.luk@polyu.edu.hk>.
1978 After an initial report by LUK ShunTim <shuntim.luk@polyu.edu.hk>.
1967
1979
1968 2005-05-19 Fernando Perez <fperez@colorado.edu>
1980 2005-05-19 Fernando Perez <fperez@colorado.edu>
1969
1981
1970 * IPython/iplib.py (safe_execfile): close a file which could be
1982 * IPython/iplib.py (safe_execfile): close a file which could be
1971 left open (causing problems in win32, which locks open files).
1983 left open (causing problems in win32, which locks open files).
1972 Thanks to a bug report by D Brown <dbrown2@yahoo.com>.
1984 Thanks to a bug report by D Brown <dbrown2@yahoo.com>.
1973
1985
1974 2005-05-18 Fernando Perez <fperez@colorado.edu>
1986 2005-05-18 Fernando Perez <fperez@colorado.edu>
1975
1987
1976 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): pass all
1988 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): pass all
1977 keyword arguments correctly to safe_execfile().
1989 keyword arguments correctly to safe_execfile().
1978
1990
1979 2005-05-13 Fernando Perez <fperez@colorado.edu>
1991 2005-05-13 Fernando Perez <fperez@colorado.edu>
1980
1992
1981 * ipython.1: Added info about Qt to manpage, and threads warning
1993 * ipython.1: Added info about Qt to manpage, and threads warning
1982 to usage page (invoked with --help).
1994 to usage page (invoked with --help).
1983
1995
1984 * IPython/iplib.py (MagicCompleter.python_func_kw_matches): Added
1996 * IPython/iplib.py (MagicCompleter.python_func_kw_matches): Added
1985 new matcher (it goes at the end of the priority list) to do
1997 new matcher (it goes at the end of the priority list) to do
1986 tab-completion on named function arguments. Submitted by George
1998 tab-completion on named function arguments. Submitted by George
1987 Sakkis <gsakkis-AT-eden.rutgers.edu>. See the thread at
1999 Sakkis <gsakkis-AT-eden.rutgers.edu>. See the thread at
1988 http://www.scipy.net/pipermail/ipython-dev/2005-April/000436.html
2000 http://www.scipy.net/pipermail/ipython-dev/2005-April/000436.html
1989 for more details.
2001 for more details.
1990
2002
1991 * IPython/Magic.py (magic_run): Added new -e flag to ignore
2003 * IPython/Magic.py (magic_run): Added new -e flag to ignore
1992 SystemExit exceptions in the script being run. Thanks to a report
2004 SystemExit exceptions in the script being run. Thanks to a report
1993 by danny shevitz <danny_shevitz-AT-yahoo.com>, about this
2005 by danny shevitz <danny_shevitz-AT-yahoo.com>, about this
1994 producing very annoying behavior when running unit tests.
2006 producing very annoying behavior when running unit tests.
1995
2007
1996 2005-05-12 Fernando Perez <fperez@colorado.edu>
2008 2005-05-12 Fernando Perez <fperez@colorado.edu>
1997
2009
1998 * IPython/iplib.py (handle_auto): fixed auto-quoting and parens,
2010 * IPython/iplib.py (handle_auto): fixed auto-quoting and parens,
1999 which I'd broken (again) due to a changed regexp. In the process,
2011 which I'd broken (again) due to a changed regexp. In the process,
2000 added ';' as an escape to auto-quote the whole line without
2012 added ';' as an escape to auto-quote the whole line without
2001 splitting its arguments. Thanks to a report by Jerry McRae
2013 splitting its arguments. Thanks to a report by Jerry McRae
2002 <qrs0xyc02-AT-sneakemail.com>.
2014 <qrs0xyc02-AT-sneakemail.com>.
2003
2015
2004 * IPython/ultraTB.py (VerboseTB.text): protect against rare but
2016 * IPython/ultraTB.py (VerboseTB.text): protect against rare but
2005 possible crashes caused by a TokenError. Reported by Ed Schofield
2017 possible crashes caused by a TokenError. Reported by Ed Schofield
2006 <schofield-AT-ftw.at>.
2018 <schofield-AT-ftw.at>.
2007
2019
2008 2005-05-06 Fernando Perez <fperez@colorado.edu>
2020 2005-05-06 Fernando Perez <fperez@colorado.edu>
2009
2021
2010 * IPython/Shell.py (hijack_wx): Fix to work with WX v.2.6.
2022 * IPython/Shell.py (hijack_wx): Fix to work with WX v.2.6.
2011
2023
2012 2005-04-29 Fernando Perez <fperez@colorado.edu>
2024 2005-04-29 Fernando Perez <fperez@colorado.edu>
2013
2025
2014 * IPython/Shell.py (IPShellQt): Thanks to Denis Rivière
2026 * IPython/Shell.py (IPShellQt): Thanks to Denis Rivière
2015 <nudz-AT-free.fr>, Yann Cointepas <yann-AT-sapetnioc.org> and Benjamin
2027 <nudz-AT-free.fr>, Yann Cointepas <yann-AT-sapetnioc.org> and Benjamin
2016 Thyreau <Benji2-AT-decideur.info>, we now have a -qthread option
2028 Thyreau <Benji2-AT-decideur.info>, we now have a -qthread option
2017 which provides support for Qt interactive usage (similar to the
2029 which provides support for Qt interactive usage (similar to the
2018 existing one for WX and GTK). This had been often requested.
2030 existing one for WX and GTK). This had been often requested.
2019
2031
2020 2005-04-14 *** Released version 0.6.13
2032 2005-04-14 *** Released version 0.6.13
2021
2033
2022 2005-04-08 Fernando Perez <fperez@colorado.edu>
2034 2005-04-08 Fernando Perez <fperez@colorado.edu>
2023
2035
2024 * IPython/Magic.py (Magic._ofind): remove docstring evaluation
2036 * IPython/Magic.py (Magic._ofind): remove docstring evaluation
2025 from _ofind, which gets called on almost every input line. Now,
2037 from _ofind, which gets called on almost every input line. Now,
2026 we only try to get docstrings if they are actually going to be
2038 we only try to get docstrings if they are actually going to be
2027 used (the overhead of fetching unnecessary docstrings can be
2039 used (the overhead of fetching unnecessary docstrings can be
2028 noticeable for certain objects, such as Pyro proxies).
2040 noticeable for certain objects, such as Pyro proxies).
2029
2041
2030 * IPython/iplib.py (MagicCompleter.python_matches): Change the API
2042 * IPython/iplib.py (MagicCompleter.python_matches): Change the API
2031 for completers. For some reason I had been passing them the state
2043 for completers. For some reason I had been passing them the state
2032 variable, which completers never actually need, and was in
2044 variable, which completers never actually need, and was in
2033 conflict with the rlcompleter API. Custom completers ONLY need to
2045 conflict with the rlcompleter API. Custom completers ONLY need to
2034 take the text parameter.
2046 take the text parameter.
2035
2047
2036 * IPython/Extensions/InterpreterExec.py: Fix regexp so that magics
2048 * IPython/Extensions/InterpreterExec.py: Fix regexp so that magics
2037 work correctly in pysh. I've also moved all the logic which used
2049 work correctly in pysh. I've also moved all the logic which used
2038 to be in pysh.py here, which will prevent problems with future
2050 to be in pysh.py here, which will prevent problems with future
2039 upgrades. However, this time I must warn users to update their
2051 upgrades. However, this time I must warn users to update their
2040 pysh profile to include the line
2052 pysh profile to include the line
2041
2053
2042 import_all IPython.Extensions.InterpreterExec
2054 import_all IPython.Extensions.InterpreterExec
2043
2055
2044 because otherwise things won't work for them. They MUST also
2056 because otherwise things won't work for them. They MUST also
2045 delete pysh.py and the line
2057 delete pysh.py and the line
2046
2058
2047 execfile pysh.py
2059 execfile pysh.py
2048
2060
2049 from their ipythonrc-pysh.
2061 from their ipythonrc-pysh.
2050
2062
2051 * IPython/FlexCompleter.py (Completer.attr_matches): Make more
2063 * IPython/FlexCompleter.py (Completer.attr_matches): Make more
2052 robust in the face of objects whose dir() returns non-strings
2064 robust in the face of objects whose dir() returns non-strings
2053 (which it shouldn't, but some broken libs like ITK do). Thanks to
2065 (which it shouldn't, but some broken libs like ITK do). Thanks to
2054 a patch by John Hunter (implemented differently, though). Also
2066 a patch by John Hunter (implemented differently, though). Also
2055 minor improvements by using .extend instead of + on lists.
2067 minor improvements by using .extend instead of + on lists.
2056
2068
2057 * pysh.py:
2069 * pysh.py:
2058
2070
2059 2005-04-06 Fernando Perez <fperez@colorado.edu>
2071 2005-04-06 Fernando Perez <fperez@colorado.edu>
2060
2072
2061 * IPython/ipmaker.py (make_IPython): Make multi_line_specials on
2073 * IPython/ipmaker.py (make_IPython): Make multi_line_specials on
2062 by default, so that all users benefit from it. Those who don't
2074 by default, so that all users benefit from it. Those who don't
2063 want it can still turn it off.
2075 want it can still turn it off.
2064
2076
2065 * IPython/UserConfig/ipythonrc: Add multi_line_specials to the
2077 * IPython/UserConfig/ipythonrc: Add multi_line_specials to the
2066 config file, I'd forgotten about this, so users were getting it
2078 config file, I'd forgotten about this, so users were getting it
2067 off by default.
2079 off by default.
2068
2080
2069 * IPython/iplib.py (ipmagic): big overhaul of the magic system for
2081 * IPython/iplib.py (ipmagic): big overhaul of the magic system for
2070 consistency. Now magics can be called in multiline statements,
2082 consistency. Now magics can be called in multiline statements,
2071 and python variables can be expanded in magic calls via $var.
2083 and python variables can be expanded in magic calls via $var.
2072 This makes the magic system behave just like aliases or !system
2084 This makes the magic system behave just like aliases or !system
2073 calls.
2085 calls.
2074
2086
2075 2005-03-28 Fernando Perez <fperez@colorado.edu>
2087 2005-03-28 Fernando Perez <fperez@colorado.edu>
2076
2088
2077 * IPython/iplib.py (handle_auto): cleanup to use %s instead of
2089 * IPython/iplib.py (handle_auto): cleanup to use %s instead of
2078 expensive string additions for building command. Add support for
2090 expensive string additions for building command. Add support for
2079 trailing ';' when autocall is used.
2091 trailing ';' when autocall is used.
2080
2092
2081 2005-03-26 Fernando Perez <fperez@colorado.edu>
2093 2005-03-26 Fernando Perez <fperez@colorado.edu>
2082
2094
2083 * ipython.el: Fix http://www.scipy.net/roundup/ipython/issue31.
2095 * ipython.el: Fix http://www.scipy.net/roundup/ipython/issue31.
2084 Bugfix by A. Schmolck, the ipython.el maintainer. Also make
2096 Bugfix by A. Schmolck, the ipython.el maintainer. Also make
2085 ipython.el robust against prompts with any number of spaces
2097 ipython.el robust against prompts with any number of spaces
2086 (including 0) after the ':' character.
2098 (including 0) after the ':' character.
2087
2099
2088 * IPython/Prompts.py (Prompt2.set_p_str): Fix spurious space in
2100 * IPython/Prompts.py (Prompt2.set_p_str): Fix spurious space in
2089 continuation prompt, which misled users to think the line was
2101 continuation prompt, which misled users to think the line was
2090 already indented. Closes debian Bug#300847, reported to me by
2102 already indented. Closes debian Bug#300847, reported to me by
2091 Norbert Tretkowski <tretkowski-AT-inittab.de>.
2103 Norbert Tretkowski <tretkowski-AT-inittab.de>.
2092
2104
2093 2005-03-23 Fernando Perez <fperez@colorado.edu>
2105 2005-03-23 Fernando Perez <fperez@colorado.edu>
2094
2106
2095 * IPython/Prompts.py (Prompt1.__str__): Make sure that prompts are
2107 * IPython/Prompts.py (Prompt1.__str__): Make sure that prompts are
2096 properly aligned if they have embedded newlines.
2108 properly aligned if they have embedded newlines.
2097
2109
2098 * IPython/iplib.py (runlines): Add a public method to expose
2110 * IPython/iplib.py (runlines): Add a public method to expose
2099 IPython's code execution machinery, so that users can run strings
2111 IPython's code execution machinery, so that users can run strings
2100 as if they had been typed at the prompt interactively.
2112 as if they had been typed at the prompt interactively.
2101 (InteractiveShell.__init__): Added getoutput() to the __IPYTHON__
2113 (InteractiveShell.__init__): Added getoutput() to the __IPYTHON__
2102 methods which can call the system shell, but with python variable
2114 methods which can call the system shell, but with python variable
2103 expansion. The three such methods are: __IPYTHON__.system,
2115 expansion. The three such methods are: __IPYTHON__.system,
2104 .getoutput and .getoutputerror. These need to be documented in a
2116 .getoutput and .getoutputerror. These need to be documented in a
2105 'public API' section (to be written) of the manual.
2117 'public API' section (to be written) of the manual.
2106
2118
2107 2005-03-20 Fernando Perez <fperez@colorado.edu>
2119 2005-03-20 Fernando Perez <fperez@colorado.edu>
2108
2120
2109 * IPython/iplib.py (InteractiveShell.set_custom_exc): new system
2121 * IPython/iplib.py (InteractiveShell.set_custom_exc): new system
2110 for custom exception handling. This is quite powerful, and it
2122 for custom exception handling. This is quite powerful, and it
2111 allows for user-installable exception handlers which can trap
2123 allows for user-installable exception handlers which can trap
2112 custom exceptions at runtime and treat them separately from
2124 custom exceptions at runtime and treat them separately from
2113 IPython's default mechanisms. At the request of FrΓ©dΓ©ric
2125 IPython's default mechanisms. At the request of FrΓ©dΓ©ric
2114 Mantegazza <mantegazza-AT-ill.fr>.
2126 Mantegazza <mantegazza-AT-ill.fr>.
2115 (InteractiveShell.set_custom_completer): public API function to
2127 (InteractiveShell.set_custom_completer): public API function to
2116 add new completers at runtime.
2128 add new completers at runtime.
2117
2129
2118 2005-03-19 Fernando Perez <fperez@colorado.edu>
2130 2005-03-19 Fernando Perez <fperez@colorado.edu>
2119
2131
2120 * IPython/OInspect.py (getdoc): Add a call to obj.getdoc(), to
2132 * IPython/OInspect.py (getdoc): Add a call to obj.getdoc(), to
2121 allow objects which provide their docstrings via non-standard
2133 allow objects which provide their docstrings via non-standard
2122 mechanisms (like Pyro proxies) to still be inspected by ipython's
2134 mechanisms (like Pyro proxies) to still be inspected by ipython's
2123 ? system.
2135 ? system.
2124
2136
2125 * IPython/iplib.py (InteractiveShell.__init__): back off the _o/_e
2137 * IPython/iplib.py (InteractiveShell.__init__): back off the _o/_e
2126 automatic capture system. I tried quite hard to make it work
2138 automatic capture system. I tried quite hard to make it work
2127 reliably, and simply failed. I tried many combinations with the
2139 reliably, and simply failed. I tried many combinations with the
2128 subprocess module, but eventually nothing worked in all needed
2140 subprocess module, but eventually nothing worked in all needed
2129 cases (not blocking stdin for the child, duplicating stdout
2141 cases (not blocking stdin for the child, duplicating stdout
2130 without blocking, etc). The new %sc/%sx still do capture to these
2142 without blocking, etc). The new %sc/%sx still do capture to these
2131 magical list/string objects which make shell use much more
2143 magical list/string objects which make shell use much more
2132 conveninent, so not all is lost.
2144 conveninent, so not all is lost.
2133
2145
2134 XXX - FIX MANUAL for the change above!
2146 XXX - FIX MANUAL for the change above!
2135
2147
2136 (runsource): I copied code.py's runsource() into ipython to modify
2148 (runsource): I copied code.py's runsource() into ipython to modify
2137 it a bit. Now the code object and source to be executed are
2149 it a bit. Now the code object and source to be executed are
2138 stored in ipython. This makes this info accessible to third-party
2150 stored in ipython. This makes this info accessible to third-party
2139 tools, like custom exception handlers. After a request by FrΓ©dΓ©ric
2151 tools, like custom exception handlers. After a request by FrΓ©dΓ©ric
2140 Mantegazza <mantegazza-AT-ill.fr>.
2152 Mantegazza <mantegazza-AT-ill.fr>.
2141
2153
2142 * IPython/UserConfig/ipythonrc: Add up/down arrow keys to
2154 * IPython/UserConfig/ipythonrc: Add up/down arrow keys to
2143 history-search via readline (like C-p/C-n). I'd wanted this for a
2155 history-search via readline (like C-p/C-n). I'd wanted this for a
2144 long time, but only recently found out how to do it. For users
2156 long time, but only recently found out how to do it. For users
2145 who already have their ipythonrc files made and want this, just
2157 who already have their ipythonrc files made and want this, just
2146 add:
2158 add:
2147
2159
2148 readline_parse_and_bind "\e[A": history-search-backward
2160 readline_parse_and_bind "\e[A": history-search-backward
2149 readline_parse_and_bind "\e[B": history-search-forward
2161 readline_parse_and_bind "\e[B": history-search-forward
2150
2162
2151 2005-03-18 Fernando Perez <fperez@colorado.edu>
2163 2005-03-18 Fernando Perez <fperez@colorado.edu>
2152
2164
2153 * IPython/Magic.py (magic_sc): %sc and %sx now use the fancy
2165 * IPython/Magic.py (magic_sc): %sc and %sx now use the fancy
2154 LSString and SList classes which allow transparent conversions
2166 LSString and SList classes which allow transparent conversions
2155 between list mode and whitespace-separated string.
2167 between list mode and whitespace-separated string.
2156 (magic_r): Fix recursion problem in %r.
2168 (magic_r): Fix recursion problem in %r.
2157
2169
2158 * IPython/genutils.py (LSString): New class to be used for
2170 * IPython/genutils.py (LSString): New class to be used for
2159 automatic storage of the results of all alias/system calls in _o
2171 automatic storage of the results of all alias/system calls in _o
2160 and _e (stdout/err). These provide a .l/.list attribute which
2172 and _e (stdout/err). These provide a .l/.list attribute which
2161 does automatic splitting on newlines. This means that for most
2173 does automatic splitting on newlines. This means that for most
2162 uses, you'll never need to do capturing of output with %sc/%sx
2174 uses, you'll never need to do capturing of output with %sc/%sx
2163 anymore, since ipython keeps this always done for you. Note that
2175 anymore, since ipython keeps this always done for you. Note that
2164 only the LAST results are stored, the _o/e variables are
2176 only the LAST results are stored, the _o/e variables are
2165 overwritten on each call. If you need to save their contents
2177 overwritten on each call. If you need to save their contents
2166 further, simply bind them to any other name.
2178 further, simply bind them to any other name.
2167
2179
2168 2005-03-17 Fernando Perez <fperez@colorado.edu>
2180 2005-03-17 Fernando Perez <fperez@colorado.edu>
2169
2181
2170 * IPython/Prompts.py (BasePrompt.cwd_filt): a few more fixes for
2182 * IPython/Prompts.py (BasePrompt.cwd_filt): a few more fixes for
2171 prompt namespace handling.
2183 prompt namespace handling.
2172
2184
2173 2005-03-16 Fernando Perez <fperez@colorado.edu>
2185 2005-03-16 Fernando Perez <fperez@colorado.edu>
2174
2186
2175 * IPython/Prompts.py (CachedOutput.__init__): Fix default and
2187 * IPython/Prompts.py (CachedOutput.__init__): Fix default and
2176 classic prompts to be '>>> ' (final space was missing, and it
2188 classic prompts to be '>>> ' (final space was missing, and it
2177 trips the emacs python mode).
2189 trips the emacs python mode).
2178 (BasePrompt.__str__): Added safe support for dynamic prompt
2190 (BasePrompt.__str__): Added safe support for dynamic prompt
2179 strings. Now you can set your prompt string to be '$x', and the
2191 strings. Now you can set your prompt string to be '$x', and the
2180 value of x will be printed from your interactive namespace. The
2192 value of x will be printed from your interactive namespace. The
2181 interpolation syntax includes the full Itpl support, so
2193 interpolation syntax includes the full Itpl support, so
2182 ${foo()+x+bar()} is a valid prompt string now, and the function
2194 ${foo()+x+bar()} is a valid prompt string now, and the function
2183 calls will be made at runtime.
2195 calls will be made at runtime.
2184
2196
2185 2005-03-15 Fernando Perez <fperez@colorado.edu>
2197 2005-03-15 Fernando Perez <fperez@colorado.edu>
2186
2198
2187 * IPython/Magic.py (magic_history): renamed %hist to %history, to
2199 * IPython/Magic.py (magic_history): renamed %hist to %history, to
2188 avoid name clashes in pylab. %hist still works, it just forwards
2200 avoid name clashes in pylab. %hist still works, it just forwards
2189 the call to %history.
2201 the call to %history.
2190
2202
2191 2005-03-02 *** Released version 0.6.12
2203 2005-03-02 *** Released version 0.6.12
2192
2204
2193 2005-03-02 Fernando Perez <fperez@colorado.edu>
2205 2005-03-02 Fernando Perez <fperez@colorado.edu>
2194
2206
2195 * IPython/iplib.py (handle_magic): log magic calls properly as
2207 * IPython/iplib.py (handle_magic): log magic calls properly as
2196 ipmagic() function calls.
2208 ipmagic() function calls.
2197
2209
2198 * IPython/Magic.py (magic_time): Improved %time to support
2210 * IPython/Magic.py (magic_time): Improved %time to support
2199 statements and provide wall-clock as well as CPU time.
2211 statements and provide wall-clock as well as CPU time.
2200
2212
2201 2005-02-27 Fernando Perez <fperez@colorado.edu>
2213 2005-02-27 Fernando Perez <fperez@colorado.edu>
2202
2214
2203 * IPython/hooks.py: New hooks module, to expose user-modifiable
2215 * IPython/hooks.py: New hooks module, to expose user-modifiable
2204 IPython functionality in a clean manner. For now only the editor
2216 IPython functionality in a clean manner. For now only the editor
2205 hook is actually written, and other thigns which I intend to turn
2217 hook is actually written, and other thigns which I intend to turn
2206 into proper hooks aren't yet there. The display and prefilter
2218 into proper hooks aren't yet there. The display and prefilter
2207 stuff, for example, should be hooks. But at least now the
2219 stuff, for example, should be hooks. But at least now the
2208 framework is in place, and the rest can be moved here with more
2220 framework is in place, and the rest can be moved here with more
2209 time later. IPython had had a .hooks variable for a long time for
2221 time later. IPython had had a .hooks variable for a long time for
2210 this purpose, but I'd never actually used it for anything.
2222 this purpose, but I'd never actually used it for anything.
2211
2223
2212 2005-02-26 Fernando Perez <fperez@colorado.edu>
2224 2005-02-26 Fernando Perez <fperez@colorado.edu>
2213
2225
2214 * IPython/ipmaker.py (make_IPython): make the default ipython
2226 * IPython/ipmaker.py (make_IPython): make the default ipython
2215 directory be called _ipython under win32, to follow more the
2227 directory be called _ipython under win32, to follow more the
2216 naming peculiarities of that platform (where buggy software like
2228 naming peculiarities of that platform (where buggy software like
2217 Visual Sourcesafe breaks with .named directories). Reported by
2229 Visual Sourcesafe breaks with .named directories). Reported by
2218 Ville Vainio.
2230 Ville Vainio.
2219
2231
2220 2005-02-23 Fernando Perez <fperez@colorado.edu>
2232 2005-02-23 Fernando Perez <fperez@colorado.edu>
2221
2233
2222 * IPython/iplib.py (InteractiveShell.__init__): removed a few
2234 * IPython/iplib.py (InteractiveShell.__init__): removed a few
2223 auto_aliases for win32 which were causing problems. Users can
2235 auto_aliases for win32 which were causing problems. Users can
2224 define the ones they personally like.
2236 define the ones they personally like.
2225
2237
2226 2005-02-21 Fernando Perez <fperez@colorado.edu>
2238 2005-02-21 Fernando Perez <fperez@colorado.edu>
2227
2239
2228 * IPython/Magic.py (magic_time): new magic to time execution of
2240 * IPython/Magic.py (magic_time): new magic to time execution of
2229 expressions. After a request by Charles Moad <cmoad-AT-indiana.edu>.
2241 expressions. After a request by Charles Moad <cmoad-AT-indiana.edu>.
2230
2242
2231 2005-02-19 Fernando Perez <fperez@colorado.edu>
2243 2005-02-19 Fernando Perez <fperez@colorado.edu>
2232
2244
2233 * IPython/ConfigLoader.py (ConfigLoader.load): Allow empty strings
2245 * IPython/ConfigLoader.py (ConfigLoader.load): Allow empty strings
2234 into keys (for prompts, for example).
2246 into keys (for prompts, for example).
2235
2247
2236 * IPython/Prompts.py (BasePrompt.set_p_str): Fix to allow empty
2248 * IPython/Prompts.py (BasePrompt.set_p_str): Fix to allow empty
2237 prompts in case users want them. This introduces a small behavior
2249 prompts in case users want them. This introduces a small behavior
2238 change: ipython does not automatically add a space to all prompts
2250 change: ipython does not automatically add a space to all prompts
2239 anymore. To get the old prompts with a space, users should add it
2251 anymore. To get the old prompts with a space, users should add it
2240 manually to their ipythonrc file, so for example prompt_in1 should
2252 manually to their ipythonrc file, so for example prompt_in1 should
2241 now read 'In [\#]: ' instead of 'In [\#]:'.
2253 now read 'In [\#]: ' instead of 'In [\#]:'.
2242 (BasePrompt.__init__): New option prompts_pad_left (only in rc
2254 (BasePrompt.__init__): New option prompts_pad_left (only in rc
2243 file) to control left-padding of secondary prompts.
2255 file) to control left-padding of secondary prompts.
2244
2256
2245 * IPython/Magic.py (Magic.profile_missing_notice): Don't crash if
2257 * IPython/Magic.py (Magic.profile_missing_notice): Don't crash if
2246 the profiler can't be imported. Fix for Debian, which removed
2258 the profiler can't be imported. Fix for Debian, which removed
2247 profile.py because of License issues. I applied a slightly
2259 profile.py because of License issues. I applied a slightly
2248 modified version of the original Debian patch at
2260 modified version of the original Debian patch at
2249 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294500.
2261 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294500.
2250
2262
2251 2005-02-17 Fernando Perez <fperez@colorado.edu>
2263 2005-02-17 Fernando Perez <fperez@colorado.edu>
2252
2264
2253 * IPython/genutils.py (native_line_ends): Fix bug which would
2265 * IPython/genutils.py (native_line_ends): Fix bug which would
2254 cause improper line-ends under win32 b/c I was not opening files
2266 cause improper line-ends under win32 b/c I was not opening files
2255 in binary mode. Bug report and fix thanks to Ville.
2267 in binary mode. Bug report and fix thanks to Ville.
2256
2268
2257 * IPython/iplib.py (handle_auto): Fix bug which I introduced when
2269 * IPython/iplib.py (handle_auto): Fix bug which I introduced when
2258 trying to catch spurious foo[1] autocalls. My fix actually broke
2270 trying to catch spurious foo[1] autocalls. My fix actually broke
2259 ',/' autoquote/call with explicit escape (bad regexp).
2271 ',/' autoquote/call with explicit escape (bad regexp).
2260
2272
2261 2005-02-15 *** Released version 0.6.11
2273 2005-02-15 *** Released version 0.6.11
2262
2274
2263 2005-02-14 Fernando Perez <fperez@colorado.edu>
2275 2005-02-14 Fernando Perez <fperez@colorado.edu>
2264
2276
2265 * IPython/background_jobs.py: New background job management
2277 * IPython/background_jobs.py: New background job management
2266 subsystem. This is implemented via a new set of classes, and
2278 subsystem. This is implemented via a new set of classes, and
2267 IPython now provides a builtin 'jobs' object for background job
2279 IPython now provides a builtin 'jobs' object for background job
2268 execution. A convenience %bg magic serves as a lightweight
2280 execution. A convenience %bg magic serves as a lightweight
2269 frontend for starting the more common type of calls. This was
2281 frontend for starting the more common type of calls. This was
2270 inspired by discussions with B. Granger and the BackgroundCommand
2282 inspired by discussions with B. Granger and the BackgroundCommand
2271 class described in the book Python Scripting for Computational
2283 class described in the book Python Scripting for Computational
2272 Science, by H. P. Langtangen: http://folk.uio.no/hpl/scripting
2284 Science, by H. P. Langtangen: http://folk.uio.no/hpl/scripting
2273 (although ultimately no code from this text was used, as IPython's
2285 (although ultimately no code from this text was used, as IPython's
2274 system is a separate implementation).
2286 system is a separate implementation).
2275
2287
2276 * IPython/iplib.py (MagicCompleter.python_matches): add new option
2288 * IPython/iplib.py (MagicCompleter.python_matches): add new option
2277 to control the completion of single/double underscore names
2289 to control the completion of single/double underscore names
2278 separately. As documented in the example ipytonrc file, the
2290 separately. As documented in the example ipytonrc file, the
2279 readline_omit__names variable can now be set to 2, to omit even
2291 readline_omit__names variable can now be set to 2, to omit even
2280 single underscore names. Thanks to a patch by Brian Wong
2292 single underscore names. Thanks to a patch by Brian Wong
2281 <BrianWong-AT-AirgoNetworks.Com>.
2293 <BrianWong-AT-AirgoNetworks.Com>.
2282 (InteractiveShell.__init__): Fix bug which would cause foo[1] to
2294 (InteractiveShell.__init__): Fix bug which would cause foo[1] to
2283 be autocalled as foo([1]) if foo were callable. A problem for
2295 be autocalled as foo([1]) if foo were callable. A problem for
2284 things which are both callable and implement __getitem__.
2296 things which are both callable and implement __getitem__.
2285 (init_readline): Fix autoindentation for win32. Thanks to a patch
2297 (init_readline): Fix autoindentation for win32. Thanks to a patch
2286 by Vivian De Smedt <vivian-AT-vdesmedt.com>.
2298 by Vivian De Smedt <vivian-AT-vdesmedt.com>.
2287
2299
2288 2005-02-12 Fernando Perez <fperez@colorado.edu>
2300 2005-02-12 Fernando Perez <fperez@colorado.edu>
2289
2301
2290 * IPython/ipmaker.py (make_IPython): Disabled the stout traps
2302 * IPython/ipmaker.py (make_IPython): Disabled the stout traps
2291 which I had written long ago to sort out user error messages which
2303 which I had written long ago to sort out user error messages which
2292 may occur during startup. This seemed like a good idea initially,
2304 may occur during startup. This seemed like a good idea initially,
2293 but it has proven a disaster in retrospect. I don't want to
2305 but it has proven a disaster in retrospect. I don't want to
2294 change much code for now, so my fix is to set the internal 'debug'
2306 change much code for now, so my fix is to set the internal 'debug'
2295 flag to true everywhere, whose only job was precisely to control
2307 flag to true everywhere, whose only job was precisely to control
2296 this subsystem. This closes issue 28 (as well as avoiding all
2308 this subsystem. This closes issue 28 (as well as avoiding all
2297 sorts of strange hangups which occur from time to time).
2309 sorts of strange hangups which occur from time to time).
2298
2310
2299 2005-02-07 Fernando Perez <fperez@colorado.edu>
2311 2005-02-07 Fernando Perez <fperez@colorado.edu>
2300
2312
2301 * IPython/Magic.py (magic_edit): Fix 'ed -p' not working when the
2313 * IPython/Magic.py (magic_edit): Fix 'ed -p' not working when the
2302 previous call produced a syntax error.
2314 previous call produced a syntax error.
2303
2315
2304 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2316 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2305 classes without constructor.
2317 classes without constructor.
2306
2318
2307 2005-02-06 Fernando Perez <fperez@colorado.edu>
2319 2005-02-06 Fernando Perez <fperez@colorado.edu>
2308
2320
2309 * IPython/iplib.py (MagicCompleter.complete): Extend the list of
2321 * IPython/iplib.py (MagicCompleter.complete): Extend the list of
2310 completions with the results of each matcher, so we return results
2322 completions with the results of each matcher, so we return results
2311 to the user from all namespaces. This breaks with ipython
2323 to the user from all namespaces. This breaks with ipython
2312 tradition, but I think it's a nicer behavior. Now you get all
2324 tradition, but I think it's a nicer behavior. Now you get all
2313 possible completions listed, from all possible namespaces (python,
2325 possible completions listed, from all possible namespaces (python,
2314 filesystem, magics...) After a request by John Hunter
2326 filesystem, magics...) After a request by John Hunter
2315 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2327 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2316
2328
2317 2005-02-05 Fernando Perez <fperez@colorado.edu>
2329 2005-02-05 Fernando Perez <fperez@colorado.edu>
2318
2330
2319 * IPython/Magic.py (magic_prun): Fix bug where prun would fail if
2331 * IPython/Magic.py (magic_prun): Fix bug where prun would fail if
2320 the call had quote characters in it (the quotes were stripped).
2332 the call had quote characters in it (the quotes were stripped).
2321
2333
2322 2005-01-31 Fernando Perez <fperez@colorado.edu>
2334 2005-01-31 Fernando Perez <fperez@colorado.edu>
2323
2335
2324 * IPython/iplib.py (InteractiveShell.__init__): reduce reliance on
2336 * IPython/iplib.py (InteractiveShell.__init__): reduce reliance on
2325 Itpl.itpl() to make the code more robust against psyco
2337 Itpl.itpl() to make the code more robust against psyco
2326 optimizations.
2338 optimizations.
2327
2339
2328 * IPython/Itpl.py (Itpl.__str__): Use a _getframe() call instead
2340 * IPython/Itpl.py (Itpl.__str__): Use a _getframe() call instead
2329 of causing an exception. Quicker, cleaner.
2341 of causing an exception. Quicker, cleaner.
2330
2342
2331 2005-01-28 Fernando Perez <fperez@colorado.edu>
2343 2005-01-28 Fernando Perez <fperez@colorado.edu>
2332
2344
2333 * scripts/ipython_win_post_install.py (install): hardcode
2345 * scripts/ipython_win_post_install.py (install): hardcode
2334 sys.prefix+'python.exe' as the executable path. It turns out that
2346 sys.prefix+'python.exe' as the executable path. It turns out that
2335 during the post-installation run, sys.executable resolves to the
2347 during the post-installation run, sys.executable resolves to the
2336 name of the binary installer! I should report this as a distutils
2348 name of the binary installer! I should report this as a distutils
2337 bug, I think. I updated the .10 release with this tiny fix, to
2349 bug, I think. I updated the .10 release with this tiny fix, to
2338 avoid annoying the lists further.
2350 avoid annoying the lists further.
2339
2351
2340 2005-01-27 *** Released version 0.6.10
2352 2005-01-27 *** Released version 0.6.10
2341
2353
2342 2005-01-27 Fernando Perez <fperez@colorado.edu>
2354 2005-01-27 Fernando Perez <fperez@colorado.edu>
2343
2355
2344 * IPython/numutils.py (norm): Added 'inf' as optional name for
2356 * IPython/numutils.py (norm): Added 'inf' as optional name for
2345 L-infinity norm, included references to mathworld.com for vector
2357 L-infinity norm, included references to mathworld.com for vector
2346 norm definitions.
2358 norm definitions.
2347 (amin/amax): added amin/amax for array min/max. Similar to what
2359 (amin/amax): added amin/amax for array min/max. Similar to what
2348 pylab ships with after the recent reorganization of names.
2360 pylab ships with after the recent reorganization of names.
2349 (spike/spike_odd): removed deprecated spike/spike_odd functions.
2361 (spike/spike_odd): removed deprecated spike/spike_odd functions.
2350
2362
2351 * ipython.el: committed Alex's recent fixes and improvements.
2363 * ipython.el: committed Alex's recent fixes and improvements.
2352 Tested with python-mode from CVS, and it looks excellent. Since
2364 Tested with python-mode from CVS, and it looks excellent. Since
2353 python-mode hasn't released anything in a while, I'm temporarily
2365 python-mode hasn't released anything in a while, I'm temporarily
2354 putting a copy of today's CVS (v 4.70) of python-mode in:
2366 putting a copy of today's CVS (v 4.70) of python-mode in:
2355 http://ipython.scipy.org/tmp/python-mode.el
2367 http://ipython.scipy.org/tmp/python-mode.el
2356
2368
2357 * scripts/ipython_win_post_install.py (install): Win32 fix to use
2369 * scripts/ipython_win_post_install.py (install): Win32 fix to use
2358 sys.executable for the executable name, instead of assuming it's
2370 sys.executable for the executable name, instead of assuming it's
2359 called 'python.exe' (the post-installer would have produced broken
2371 called 'python.exe' (the post-installer would have produced broken
2360 setups on systems with a differently named python binary).
2372 setups on systems with a differently named python binary).
2361
2373
2362 * IPython/PyColorize.py (Parser.__call__): change explicit '\n'
2374 * IPython/PyColorize.py (Parser.__call__): change explicit '\n'
2363 references to os.linesep, to make the code more
2375 references to os.linesep, to make the code more
2364 platform-independent. This is also part of the win32 coloring
2376 platform-independent. This is also part of the win32 coloring
2365 fixes.
2377 fixes.
2366
2378
2367 * IPython/genutils.py (page_dumb): Remove attempts to chop long
2379 * IPython/genutils.py (page_dumb): Remove attempts to chop long
2368 lines, which actually cause coloring bugs because the length of
2380 lines, which actually cause coloring bugs because the length of
2369 the line is very difficult to correctly compute with embedded
2381 the line is very difficult to correctly compute with embedded
2370 escapes. This was the source of all the coloring problems under
2382 escapes. This was the source of all the coloring problems under
2371 Win32. I think that _finally_, Win32 users have a properly
2383 Win32. I think that _finally_, Win32 users have a properly
2372 working ipython in all respects. This would never have happened
2384 working ipython in all respects. This would never have happened
2373 if not for Gary Bishop and Viktor Ransmayr's great help and work.
2385 if not for Gary Bishop and Viktor Ransmayr's great help and work.
2374
2386
2375 2005-01-26 *** Released version 0.6.9
2387 2005-01-26 *** Released version 0.6.9
2376
2388
2377 2005-01-25 Fernando Perez <fperez@colorado.edu>
2389 2005-01-25 Fernando Perez <fperez@colorado.edu>
2378
2390
2379 * setup.py: finally, we have a true Windows installer, thanks to
2391 * setup.py: finally, we have a true Windows installer, thanks to
2380 the excellent work of Viktor Ransmayr
2392 the excellent work of Viktor Ransmayr
2381 <viktor.ransmayr-AT-t-online.de>. The docs have been updated for
2393 <viktor.ransmayr-AT-t-online.de>. The docs have been updated for
2382 Windows users. The setup routine is quite a bit cleaner thanks to
2394 Windows users. The setup routine is quite a bit cleaner thanks to
2383 this, and the post-install script uses the proper functions to
2395 this, and the post-install script uses the proper functions to
2384 allow a clean de-installation using the standard Windows Control
2396 allow a clean de-installation using the standard Windows Control
2385 Panel.
2397 Panel.
2386
2398
2387 * IPython/genutils.py (get_home_dir): changed to use the $HOME
2399 * IPython/genutils.py (get_home_dir): changed to use the $HOME
2388 environment variable under all OSes (including win32) if
2400 environment variable under all OSes (including win32) if
2389 available. This will give consistency to win32 users who have set
2401 available. This will give consistency to win32 users who have set
2390 this variable for any reason. If os.environ['HOME'] fails, the
2402 this variable for any reason. If os.environ['HOME'] fails, the
2391 previous policy of using HOMEDRIVE\HOMEPATH kicks in.
2403 previous policy of using HOMEDRIVE\HOMEPATH kicks in.
2392
2404
2393 2005-01-24 Fernando Perez <fperez@colorado.edu>
2405 2005-01-24 Fernando Perez <fperez@colorado.edu>
2394
2406
2395 * IPython/numutils.py (empty_like): add empty_like(), similar to
2407 * IPython/numutils.py (empty_like): add empty_like(), similar to
2396 zeros_like() but taking advantage of the new empty() Numeric routine.
2408 zeros_like() but taking advantage of the new empty() Numeric routine.
2397
2409
2398 2005-01-23 *** Released version 0.6.8
2410 2005-01-23 *** Released version 0.6.8
2399
2411
2400 2005-01-22 Fernando Perez <fperez@colorado.edu>
2412 2005-01-22 Fernando Perez <fperez@colorado.edu>
2401
2413
2402 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): I removed the
2414 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): I removed the
2403 automatic show() calls. After discussing things with JDH, it
2415 automatic show() calls. After discussing things with JDH, it
2404 turns out there are too many corner cases where this can go wrong.
2416 turns out there are too many corner cases where this can go wrong.
2405 It's best not to try to be 'too smart', and simply have ipython
2417 It's best not to try to be 'too smart', and simply have ipython
2406 reproduce as much as possible the default behavior of a normal
2418 reproduce as much as possible the default behavior of a normal
2407 python shell.
2419 python shell.
2408
2420
2409 * IPython/iplib.py (InteractiveShell.__init__): Modified the
2421 * IPython/iplib.py (InteractiveShell.__init__): Modified the
2410 line-splitting regexp and _prefilter() to avoid calling getattr()
2422 line-splitting regexp and _prefilter() to avoid calling getattr()
2411 on assignments. This closes
2423 on assignments. This closes
2412 http://www.scipy.net/roundup/ipython/issue24. Note that Python's
2424 http://www.scipy.net/roundup/ipython/issue24. Note that Python's
2413 readline uses getattr(), so a simple <TAB> keypress is still
2425 readline uses getattr(), so a simple <TAB> keypress is still
2414 enough to trigger getattr() calls on an object.
2426 enough to trigger getattr() calls on an object.
2415
2427
2416 2005-01-21 Fernando Perez <fperez@colorado.edu>
2428 2005-01-21 Fernando Perez <fperez@colorado.edu>
2417
2429
2418 * IPython/Shell.py (MatplotlibShellBase.magic_run): Fix the %run
2430 * IPython/Shell.py (MatplotlibShellBase.magic_run): Fix the %run
2419 docstring under pylab so it doesn't mask the original.
2431 docstring under pylab so it doesn't mask the original.
2420
2432
2421 2005-01-21 *** Released version 0.6.7
2433 2005-01-21 *** Released version 0.6.7
2422
2434
2423 2005-01-21 Fernando Perez <fperez@colorado.edu>
2435 2005-01-21 Fernando Perez <fperez@colorado.edu>
2424
2436
2425 * IPython/Shell.py (MTInteractiveShell.runcode): Trap a crash with
2437 * IPython/Shell.py (MTInteractiveShell.runcode): Trap a crash with
2426 signal handling for win32 users in multithreaded mode.
2438 signal handling for win32 users in multithreaded mode.
2427
2439
2428 2005-01-17 Fernando Perez <fperez@colorado.edu>
2440 2005-01-17 Fernando Perez <fperez@colorado.edu>
2429
2441
2430 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2442 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2431 instances with no __init__. After a crash report by Norbert Nemec
2443 instances with no __init__. After a crash report by Norbert Nemec
2432 <Norbert-AT-nemec-online.de>.
2444 <Norbert-AT-nemec-online.de>.
2433
2445
2434 2005-01-14 Fernando Perez <fperez@colorado.edu>
2446 2005-01-14 Fernando Perez <fperez@colorado.edu>
2435
2447
2436 * IPython/ultraTB.py (VerboseTB.text): Fix bug in reporting of
2448 * IPython/ultraTB.py (VerboseTB.text): Fix bug in reporting of
2437 names for verbose exceptions, when multiple dotted names and the
2449 names for verbose exceptions, when multiple dotted names and the
2438 'parent' object were present on the same line.
2450 'parent' object were present on the same line.
2439
2451
2440 2005-01-11 Fernando Perez <fperez@colorado.edu>
2452 2005-01-11 Fernando Perez <fperez@colorado.edu>
2441
2453
2442 * IPython/genutils.py (flag_calls): new utility to trap and flag
2454 * IPython/genutils.py (flag_calls): new utility to trap and flag
2443 calls in functions. I need it to clean up matplotlib support.
2455 calls in functions. I need it to clean up matplotlib support.
2444 Also removed some deprecated code in genutils.
2456 Also removed some deprecated code in genutils.
2445
2457
2446 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): small fix so
2458 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): small fix so
2447 that matplotlib scripts called with %run, which don't call show()
2459 that matplotlib scripts called with %run, which don't call show()
2448 themselves, still have their plotting windows open.
2460 themselves, still have their plotting windows open.
2449
2461
2450 2005-01-05 Fernando Perez <fperez@colorado.edu>
2462 2005-01-05 Fernando Perez <fperez@colorado.edu>
2451
2463
2452 * IPython/Shell.py (IPShellGTK.__init__): Patch by Andrew Straw
2464 * IPython/Shell.py (IPShellGTK.__init__): Patch by Andrew Straw
2453 <astraw-AT-caltech.edu>, to fix gtk deprecation warnings.
2465 <astraw-AT-caltech.edu>, to fix gtk deprecation warnings.
2454
2466
2455 2004-12-19 Fernando Perez <fperez@colorado.edu>
2467 2004-12-19 Fernando Perez <fperez@colorado.edu>
2456
2468
2457 * IPython/Shell.py (MTInteractiveShell.runcode): Get rid of
2469 * IPython/Shell.py (MTInteractiveShell.runcode): Get rid of
2458 parent_runcode, which was an eyesore. The same result can be
2470 parent_runcode, which was an eyesore. The same result can be
2459 obtained with Python's regular superclass mechanisms.
2471 obtained with Python's regular superclass mechanisms.
2460
2472
2461 2004-12-17 Fernando Perez <fperez@colorado.edu>
2473 2004-12-17 Fernando Perez <fperez@colorado.edu>
2462
2474
2463 * IPython/Magic.py (Magic.magic_sc): Fix quote stripping problem
2475 * IPython/Magic.py (Magic.magic_sc): Fix quote stripping problem
2464 reported by Prabhu.
2476 reported by Prabhu.
2465 (Magic.magic_sx): direct all errors to Term.cerr (defaults to
2477 (Magic.magic_sx): direct all errors to Term.cerr (defaults to
2466 sys.stderr) instead of explicitly calling sys.stderr. This helps
2478 sys.stderr) instead of explicitly calling sys.stderr. This helps
2467 maintain our I/O abstractions clean, for future GUI embeddings.
2479 maintain our I/O abstractions clean, for future GUI embeddings.
2468
2480
2469 * IPython/genutils.py (info): added new utility for sys.stderr
2481 * IPython/genutils.py (info): added new utility for sys.stderr
2470 unified info message handling (thin wrapper around warn()).
2482 unified info message handling (thin wrapper around warn()).
2471
2483
2472 * IPython/ultraTB.py (VerboseTB.text): Fix misreported global
2484 * IPython/ultraTB.py (VerboseTB.text): Fix misreported global
2473 composite (dotted) names on verbose exceptions.
2485 composite (dotted) names on verbose exceptions.
2474 (VerboseTB.nullrepr): harden against another kind of errors which
2486 (VerboseTB.nullrepr): harden against another kind of errors which
2475 Python's inspect module can trigger, and which were crashing
2487 Python's inspect module can trigger, and which were crashing
2476 IPython. Thanks to a report by Marco Lombardi
2488 IPython. Thanks to a report by Marco Lombardi
2477 <mlombard-AT-ma010192.hq.eso.org>.
2489 <mlombard-AT-ma010192.hq.eso.org>.
2478
2490
2479 2004-12-13 *** Released version 0.6.6
2491 2004-12-13 *** Released version 0.6.6
2480
2492
2481 2004-12-12 Fernando Perez <fperez@colorado.edu>
2493 2004-12-12 Fernando Perez <fperez@colorado.edu>
2482
2494
2483 * IPython/Shell.py (IPShellGTK.mainloop): catch RuntimeErrors
2495 * IPython/Shell.py (IPShellGTK.mainloop): catch RuntimeErrors
2484 generated by pygtk upon initialization if it was built without
2496 generated by pygtk upon initialization if it was built without
2485 threads (for matplotlib users). After a crash reported by
2497 threads (for matplotlib users). After a crash reported by
2486 Leguijt, Jaap J SIEP-EPT-RES <Jaap.Leguijt-AT-shell.com>.
2498 Leguijt, Jaap J SIEP-EPT-RES <Jaap.Leguijt-AT-shell.com>.
2487
2499
2488 * IPython/ipmaker.py (make_IPython): fix small bug in the
2500 * IPython/ipmaker.py (make_IPython): fix small bug in the
2489 import_some parameter for multiple imports.
2501 import_some parameter for multiple imports.
2490
2502
2491 * IPython/iplib.py (ipmagic): simplified the interface of
2503 * IPython/iplib.py (ipmagic): simplified the interface of
2492 ipmagic() to take a single string argument, just as it would be
2504 ipmagic() to take a single string argument, just as it would be
2493 typed at the IPython cmd line.
2505 typed at the IPython cmd line.
2494 (ipalias): Added new ipalias() with an interface identical to
2506 (ipalias): Added new ipalias() with an interface identical to
2495 ipmagic(). This completes exposing a pure python interface to the
2507 ipmagic(). This completes exposing a pure python interface to the
2496 alias and magic system, which can be used in loops or more complex
2508 alias and magic system, which can be used in loops or more complex
2497 code where IPython's automatic line mangling is not active.
2509 code where IPython's automatic line mangling is not active.
2498
2510
2499 * IPython/genutils.py (timing): changed interface of timing to
2511 * IPython/genutils.py (timing): changed interface of timing to
2500 simply run code once, which is the most common case. timings()
2512 simply run code once, which is the most common case. timings()
2501 remains unchanged, for the cases where you want multiple runs.
2513 remains unchanged, for the cases where you want multiple runs.
2502
2514
2503 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix a
2515 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix a
2504 bug where Python2.2 crashes with exec'ing code which does not end
2516 bug where Python2.2 crashes with exec'ing code which does not end
2505 in a single newline. Python 2.3 is OK, so I hadn't noticed this
2517 in a single newline. Python 2.3 is OK, so I hadn't noticed this
2506 before.
2518 before.
2507
2519
2508 2004-12-10 Fernando Perez <fperez@colorado.edu>
2520 2004-12-10 Fernando Perez <fperez@colorado.edu>
2509
2521
2510 * IPython/Magic.py (Magic.magic_prun): changed name of option from
2522 * IPython/Magic.py (Magic.magic_prun): changed name of option from
2511 -t to -T, to accomodate the new -t flag in %run (the %run and
2523 -t to -T, to accomodate the new -t flag in %run (the %run and
2512 %prun options are kind of intermixed, and it's not easy to change
2524 %prun options are kind of intermixed, and it's not easy to change
2513 this with the limitations of python's getopt).
2525 this with the limitations of python's getopt).
2514
2526
2515 * IPython/Magic.py (Magic.magic_run): Added new -t option to time
2527 * IPython/Magic.py (Magic.magic_run): Added new -t option to time
2516 the execution of scripts. It's not as fine-tuned as timeit.py,
2528 the execution of scripts. It's not as fine-tuned as timeit.py,
2517 but it works from inside ipython (and under 2.2, which lacks
2529 but it works from inside ipython (and under 2.2, which lacks
2518 timeit.py). Optionally a number of runs > 1 can be given for
2530 timeit.py). Optionally a number of runs > 1 can be given for
2519 timing very short-running code.
2531 timing very short-running code.
2520
2532
2521 * IPython/genutils.py (uniq_stable): new routine which returns a
2533 * IPython/genutils.py (uniq_stable): new routine which returns a
2522 list of unique elements in any iterable, but in stable order of
2534 list of unique elements in any iterable, but in stable order of
2523 appearance. I needed this for the ultraTB fixes, and it's a handy
2535 appearance. I needed this for the ultraTB fixes, and it's a handy
2524 utility.
2536 utility.
2525
2537
2526 * IPython/ultraTB.py (VerboseTB.text): Fix proper reporting of
2538 * IPython/ultraTB.py (VerboseTB.text): Fix proper reporting of
2527 dotted names in Verbose exceptions. This had been broken since
2539 dotted names in Verbose exceptions. This had been broken since
2528 the very start, now x.y will properly be printed in a Verbose
2540 the very start, now x.y will properly be printed in a Verbose
2529 traceback, instead of x being shown and y appearing always as an
2541 traceback, instead of x being shown and y appearing always as an
2530 'undefined global'. Getting this to work was a bit tricky,
2542 'undefined global'. Getting this to work was a bit tricky,
2531 because by default python tokenizers are stateless. Saved by
2543 because by default python tokenizers are stateless. Saved by
2532 python's ability to easily add a bit of state to an arbitrary
2544 python's ability to easily add a bit of state to an arbitrary
2533 function (without needing to build a full-blown callable object).
2545 function (without needing to build a full-blown callable object).
2534
2546
2535 Also big cleanup of this code, which had horrendous runtime
2547 Also big cleanup of this code, which had horrendous runtime
2536 lookups of zillions of attributes for colorization. Moved all
2548 lookups of zillions of attributes for colorization. Moved all
2537 this code into a few templates, which make it cleaner and quicker.
2549 this code into a few templates, which make it cleaner and quicker.
2538
2550
2539 Printout quality was also improved for Verbose exceptions: one
2551 Printout quality was also improved for Verbose exceptions: one
2540 variable per line, and memory addresses are printed (this can be
2552 variable per line, and memory addresses are printed (this can be
2541 quite handy in nasty debugging situations, which is what Verbose
2553 quite handy in nasty debugging situations, which is what Verbose
2542 is for).
2554 is for).
2543
2555
2544 * IPython/ipmaker.py (make_IPython): Do NOT execute files named in
2556 * IPython/ipmaker.py (make_IPython): Do NOT execute files named in
2545 the command line as scripts to be loaded by embedded instances.
2557 the command line as scripts to be loaded by embedded instances.
2546 Doing so has the potential for an infinite recursion if there are
2558 Doing so has the potential for an infinite recursion if there are
2547 exceptions thrown in the process. This fixes a strange crash
2559 exceptions thrown in the process. This fixes a strange crash
2548 reported by Philippe MULLER <muller-AT-irit.fr>.
2560 reported by Philippe MULLER <muller-AT-irit.fr>.
2549
2561
2550 2004-12-09 Fernando Perez <fperez@colorado.edu>
2562 2004-12-09 Fernando Perez <fperez@colorado.edu>
2551
2563
2552 * IPython/Shell.py (MatplotlibShellBase.use): Change pylab support
2564 * IPython/Shell.py (MatplotlibShellBase.use): Change pylab support
2553 to reflect new names in matplotlib, which now expose the
2565 to reflect new names in matplotlib, which now expose the
2554 matlab-compatible interface via a pylab module instead of the
2566 matlab-compatible interface via a pylab module instead of the
2555 'matlab' name. The new code is backwards compatible, so users of
2567 'matlab' name. The new code is backwards compatible, so users of
2556 all matplotlib versions are OK. Patch by J. Hunter.
2568 all matplotlib versions are OK. Patch by J. Hunter.
2557
2569
2558 * IPython/OInspect.py (Inspector.pinfo): Add to object? printing
2570 * IPython/OInspect.py (Inspector.pinfo): Add to object? printing
2559 of __init__ docstrings for instances (class docstrings are already
2571 of __init__ docstrings for instances (class docstrings are already
2560 automatically printed). Instances with customized docstrings
2572 automatically printed). Instances with customized docstrings
2561 (indep. of the class) are also recognized and all 3 separate
2573 (indep. of the class) are also recognized and all 3 separate
2562 docstrings are printed (instance, class, constructor). After some
2574 docstrings are printed (instance, class, constructor). After some
2563 comments/suggestions by J. Hunter.
2575 comments/suggestions by J. Hunter.
2564
2576
2565 2004-12-05 Fernando Perez <fperez@colorado.edu>
2577 2004-12-05 Fernando Perez <fperez@colorado.edu>
2566
2578
2567 * IPython/iplib.py (MagicCompleter.complete): Remove annoying
2579 * IPython/iplib.py (MagicCompleter.complete): Remove annoying
2568 warnings when tab-completion fails and triggers an exception.
2580 warnings when tab-completion fails and triggers an exception.
2569
2581
2570 2004-12-03 Fernando Perez <fperez@colorado.edu>
2582 2004-12-03 Fernando Perez <fperez@colorado.edu>
2571
2583
2572 * IPython/Magic.py (magic_prun): Fix bug where an exception would
2584 * IPython/Magic.py (magic_prun): Fix bug where an exception would
2573 be triggered when using 'run -p'. An incorrect option flag was
2585 be triggered when using 'run -p'. An incorrect option flag was
2574 being set ('d' instead of 'D').
2586 being set ('d' instead of 'D').
2575 (manpage): fix missing escaped \- sign.
2587 (manpage): fix missing escaped \- sign.
2576
2588
2577 2004-11-30 *** Released version 0.6.5
2589 2004-11-30 *** Released version 0.6.5
2578
2590
2579 2004-11-30 Fernando Perez <fperez@colorado.edu>
2591 2004-11-30 Fernando Perez <fperez@colorado.edu>
2580
2592
2581 * IPython/Magic.py (Magic.magic_run): Fix bug in breakpoint
2593 * IPython/Magic.py (Magic.magic_run): Fix bug in breakpoint
2582 setting with -d option.
2594 setting with -d option.
2583
2595
2584 * setup.py (docfiles): Fix problem where the doc glob I was using
2596 * setup.py (docfiles): Fix problem where the doc glob I was using
2585 was COMPLETELY BROKEN. It was giving the right files by pure
2597 was COMPLETELY BROKEN. It was giving the right files by pure
2586 accident, but failed once I tried to include ipython.el. Note:
2598 accident, but failed once I tried to include ipython.el. Note:
2587 glob() does NOT allow you to do exclusion on multiple endings!
2599 glob() does NOT allow you to do exclusion on multiple endings!
2588
2600
2589 2004-11-29 Fernando Perez <fperez@colorado.edu>
2601 2004-11-29 Fernando Perez <fperez@colorado.edu>
2590
2602
2591 * IPython/usage.py (__doc__): cleaned up usage docstring, by using
2603 * IPython/usage.py (__doc__): cleaned up usage docstring, by using
2592 the manpage as the source. Better formatting & consistency.
2604 the manpage as the source. Better formatting & consistency.
2593
2605
2594 * IPython/Magic.py (magic_run): Added new -d option, to run
2606 * IPython/Magic.py (magic_run): Added new -d option, to run
2595 scripts under the control of the python pdb debugger. Note that
2607 scripts under the control of the python pdb debugger. Note that
2596 this required changing the %prun option -d to -D, to avoid a clash
2608 this required changing the %prun option -d to -D, to avoid a clash
2597 (since %run must pass options to %prun, and getopt is too dumb to
2609 (since %run must pass options to %prun, and getopt is too dumb to
2598 handle options with string values with embedded spaces). Thanks
2610 handle options with string values with embedded spaces). Thanks
2599 to a suggestion by Matthew Arnison <maffew-AT-cat.org.au>.
2611 to a suggestion by Matthew Arnison <maffew-AT-cat.org.au>.
2600 (magic_who_ls): added type matching to %who and %whos, so that one
2612 (magic_who_ls): added type matching to %who and %whos, so that one
2601 can filter their output to only include variables of certain
2613 can filter their output to only include variables of certain
2602 types. Another suggestion by Matthew.
2614 types. Another suggestion by Matthew.
2603 (magic_whos): Added memory summaries in kb and Mb for arrays.
2615 (magic_whos): Added memory summaries in kb and Mb for arrays.
2604 (magic_who): Improve formatting (break lines every 9 vars).
2616 (magic_who): Improve formatting (break lines every 9 vars).
2605
2617
2606 2004-11-28 Fernando Perez <fperez@colorado.edu>
2618 2004-11-28 Fernando Perez <fperez@colorado.edu>
2607
2619
2608 * IPython/Logger.py (Logger.log): Fix bug in syncing the input
2620 * IPython/Logger.py (Logger.log): Fix bug in syncing the input
2609 cache when empty lines were present.
2621 cache when empty lines were present.
2610
2622
2611 2004-11-24 Fernando Perez <fperez@colorado.edu>
2623 2004-11-24 Fernando Perez <fperez@colorado.edu>
2612
2624
2613 * IPython/usage.py (__doc__): document the re-activated threading
2625 * IPython/usage.py (__doc__): document the re-activated threading
2614 options for WX and GTK.
2626 options for WX and GTK.
2615
2627
2616 2004-11-23 Fernando Perez <fperez@colorado.edu>
2628 2004-11-23 Fernando Perez <fperez@colorado.edu>
2617
2629
2618 * IPython/Shell.py (start): Added Prabhu's big patch to reactivate
2630 * IPython/Shell.py (start): Added Prabhu's big patch to reactivate
2619 the -wthread and -gthread options, along with a new -tk one to try
2631 the -wthread and -gthread options, along with a new -tk one to try
2620 and coordinate Tk threading with wx/gtk. The tk support is very
2632 and coordinate Tk threading with wx/gtk. The tk support is very
2621 platform dependent, since it seems to require Tcl and Tk to be
2633 platform dependent, since it seems to require Tcl and Tk to be
2622 built with threads (Fedora1/2 appears NOT to have it, but in
2634 built with threads (Fedora1/2 appears NOT to have it, but in
2623 Prabhu's Debian boxes it works OK). But even with some Tk
2635 Prabhu's Debian boxes it works OK). But even with some Tk
2624 limitations, this is a great improvement.
2636 limitations, this is a great improvement.
2625
2637
2626 * IPython/Prompts.py (prompt_specials_color): Added \t for time
2638 * IPython/Prompts.py (prompt_specials_color): Added \t for time
2627 info in user prompts. Patch by Prabhu.
2639 info in user prompts. Patch by Prabhu.
2628
2640
2629 2004-11-18 Fernando Perez <fperez@colorado.edu>
2641 2004-11-18 Fernando Perez <fperez@colorado.edu>
2630
2642
2631 * IPython/genutils.py (ask_yes_no): Add check for a max of 20
2643 * IPython/genutils.py (ask_yes_no): Add check for a max of 20
2632 EOFErrors and bail, to avoid infinite loops if a non-terminating
2644 EOFErrors and bail, to avoid infinite loops if a non-terminating
2633 file is fed into ipython. Patch submitted in issue 19 by user,
2645 file is fed into ipython. Patch submitted in issue 19 by user,
2634 many thanks.
2646 many thanks.
2635
2647
2636 * IPython/iplib.py (InteractiveShell.handle_auto): do NOT trigger
2648 * IPython/iplib.py (InteractiveShell.handle_auto): do NOT trigger
2637 autoquote/parens in continuation prompts, which can cause lots of
2649 autoquote/parens in continuation prompts, which can cause lots of
2638 problems. Closes roundup issue 20.
2650 problems. Closes roundup issue 20.
2639
2651
2640 2004-11-17 Fernando Perez <fperez@colorado.edu>
2652 2004-11-17 Fernando Perez <fperez@colorado.edu>
2641
2653
2642 * debian/control (Build-Depends-Indep): Fix dpatch dependency,
2654 * debian/control (Build-Depends-Indep): Fix dpatch dependency,
2643 reported as debian bug #280505. I'm not sure my local changelog
2655 reported as debian bug #280505. I'm not sure my local changelog
2644 entry has the proper debian format (Jack?).
2656 entry has the proper debian format (Jack?).
2645
2657
2646 2004-11-08 *** Released version 0.6.4
2658 2004-11-08 *** Released version 0.6.4
2647
2659
2648 2004-11-08 Fernando Perez <fperez@colorado.edu>
2660 2004-11-08 Fernando Perez <fperez@colorado.edu>
2649
2661
2650 * IPython/iplib.py (init_readline): Fix exit message for Windows
2662 * IPython/iplib.py (init_readline): Fix exit message for Windows
2651 when readline is active. Thanks to a report by Eric Jones
2663 when readline is active. Thanks to a report by Eric Jones
2652 <eric-AT-enthought.com>.
2664 <eric-AT-enthought.com>.
2653
2665
2654 2004-11-07 Fernando Perez <fperez@colorado.edu>
2666 2004-11-07 Fernando Perez <fperez@colorado.edu>
2655
2667
2656 * IPython/genutils.py (page): Add a trap for OSError exceptions,
2668 * IPython/genutils.py (page): Add a trap for OSError exceptions,
2657 sometimes seen by win2k/cygwin users.
2669 sometimes seen by win2k/cygwin users.
2658
2670
2659 2004-11-06 Fernando Perez <fperez@colorado.edu>
2671 2004-11-06 Fernando Perez <fperez@colorado.edu>
2660
2672
2661 * IPython/iplib.py (interact): Change the handling of %Exit from
2673 * IPython/iplib.py (interact): Change the handling of %Exit from
2662 trying to propagate a SystemExit to an internal ipython flag.
2674 trying to propagate a SystemExit to an internal ipython flag.
2663 This is less elegant than using Python's exception mechanism, but
2675 This is less elegant than using Python's exception mechanism, but
2664 I can't get that to work reliably with threads, so under -pylab
2676 I can't get that to work reliably with threads, so under -pylab
2665 %Exit was hanging IPython. Cross-thread exception handling is
2677 %Exit was hanging IPython. Cross-thread exception handling is
2666 really a bitch. Thaks to a bug report by Stephen Walton
2678 really a bitch. Thaks to a bug report by Stephen Walton
2667 <stephen.walton-AT-csun.edu>.
2679 <stephen.walton-AT-csun.edu>.
2668
2680
2669 2004-11-04 Fernando Perez <fperez@colorado.edu>
2681 2004-11-04 Fernando Perez <fperez@colorado.edu>
2670
2682
2671 * IPython/iplib.py (raw_input_original): store a pointer to the
2683 * IPython/iplib.py (raw_input_original): store a pointer to the
2672 true raw_input to harden against code which can modify it
2684 true raw_input to harden against code which can modify it
2673 (wx.py.PyShell does this and would otherwise crash ipython).
2685 (wx.py.PyShell does this and would otherwise crash ipython).
2674 Thanks to a bug report by Jim Flowers <james.flowers-AT-lgx.com>.
2686 Thanks to a bug report by Jim Flowers <james.flowers-AT-lgx.com>.
2675
2687
2676 * IPython/Shell.py (MTInteractiveShell.runsource): Cleaner fix for
2688 * IPython/Shell.py (MTInteractiveShell.runsource): Cleaner fix for
2677 Ctrl-C problem, which does not mess up the input line.
2689 Ctrl-C problem, which does not mess up the input line.
2678
2690
2679 2004-11-03 Fernando Perez <fperez@colorado.edu>
2691 2004-11-03 Fernando Perez <fperez@colorado.edu>
2680
2692
2681 * IPython/Release.py: Changed licensing to BSD, in all files.
2693 * IPython/Release.py: Changed licensing to BSD, in all files.
2682 (name): lowercase name for tarball/RPM release.
2694 (name): lowercase name for tarball/RPM release.
2683
2695
2684 * IPython/OInspect.py (getdoc): wrap inspect.getdoc() safely for
2696 * IPython/OInspect.py (getdoc): wrap inspect.getdoc() safely for
2685 use throughout ipython.
2697 use throughout ipython.
2686
2698
2687 * IPython/Magic.py (Magic._ofind): Switch to using the new
2699 * IPython/Magic.py (Magic._ofind): Switch to using the new
2688 OInspect.getdoc() function.
2700 OInspect.getdoc() function.
2689
2701
2690 * IPython/Shell.py (sigint_handler): Hack to ignore the execution
2702 * IPython/Shell.py (sigint_handler): Hack to ignore the execution
2691 of the line currently being canceled via Ctrl-C. It's extremely
2703 of the line currently being canceled via Ctrl-C. It's extremely
2692 ugly, but I don't know how to do it better (the problem is one of
2704 ugly, but I don't know how to do it better (the problem is one of
2693 handling cross-thread exceptions).
2705 handling cross-thread exceptions).
2694
2706
2695 2004-10-28 Fernando Perez <fperez@colorado.edu>
2707 2004-10-28 Fernando Perez <fperez@colorado.edu>
2696
2708
2697 * IPython/Shell.py (signal_handler): add signal handlers to trap
2709 * IPython/Shell.py (signal_handler): add signal handlers to trap
2698 SIGINT and SIGSEGV in threaded code properly. Thanks to a bug
2710 SIGINT and SIGSEGV in threaded code properly. Thanks to a bug
2699 report by Francesc Alted.
2711 report by Francesc Alted.
2700
2712
2701 2004-10-21 Fernando Perez <fperez@colorado.edu>
2713 2004-10-21 Fernando Perez <fperez@colorado.edu>
2702
2714
2703 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Fix @
2715 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Fix @
2704 to % for pysh syntax extensions.
2716 to % for pysh syntax extensions.
2705
2717
2706 2004-10-09 Fernando Perez <fperez@colorado.edu>
2718 2004-10-09 Fernando Perez <fperez@colorado.edu>
2707
2719
2708 * IPython/Magic.py (Magic.magic_whos): modify output of Numeric
2720 * IPython/Magic.py (Magic.magic_whos): modify output of Numeric
2709 arrays to print a more useful summary, without calling str(arr).
2721 arrays to print a more useful summary, without calling str(arr).
2710 This avoids the problem of extremely lengthy computations which
2722 This avoids the problem of extremely lengthy computations which
2711 occur if arr is large, and appear to the user as a system lockup
2723 occur if arr is large, and appear to the user as a system lockup
2712 with 100% cpu activity. After a suggestion by Kristian Sandberg
2724 with 100% cpu activity. After a suggestion by Kristian Sandberg
2713 <Kristian.Sandberg@colorado.edu>.
2725 <Kristian.Sandberg@colorado.edu>.
2714 (Magic.__init__): fix bug in global magic escapes not being
2726 (Magic.__init__): fix bug in global magic escapes not being
2715 correctly set.
2727 correctly set.
2716
2728
2717 2004-10-08 Fernando Perez <fperez@colorado.edu>
2729 2004-10-08 Fernando Perez <fperez@colorado.edu>
2718
2730
2719 * IPython/Magic.py (__license__): change to absolute imports of
2731 * IPython/Magic.py (__license__): change to absolute imports of
2720 ipython's own internal packages, to start adapting to the absolute
2732 ipython's own internal packages, to start adapting to the absolute
2721 import requirement of PEP-328.
2733 import requirement of PEP-328.
2722
2734
2723 * IPython/genutils.py (__author__): Fix coding to utf-8 on all
2735 * IPython/genutils.py (__author__): Fix coding to utf-8 on all
2724 files, and standardize author/license marks through the Release
2736 files, and standardize author/license marks through the Release
2725 module instead of having per/file stuff (except for files with
2737 module instead of having per/file stuff (except for files with
2726 particular licenses, like the MIT/PSF-licensed codes).
2738 particular licenses, like the MIT/PSF-licensed codes).
2727
2739
2728 * IPython/Debugger.py: remove dead code for python 2.1
2740 * IPython/Debugger.py: remove dead code for python 2.1
2729
2741
2730 2004-10-04 Fernando Perez <fperez@colorado.edu>
2742 2004-10-04 Fernando Perez <fperez@colorado.edu>
2731
2743
2732 * IPython/iplib.py (ipmagic): New function for accessing magics
2744 * IPython/iplib.py (ipmagic): New function for accessing magics
2733 via a normal python function call.
2745 via a normal python function call.
2734
2746
2735 * IPython/Magic.py (Magic.magic_magic): Change the magic escape
2747 * IPython/Magic.py (Magic.magic_magic): Change the magic escape
2736 from '@' to '%', to accomodate the new @decorator syntax of python
2748 from '@' to '%', to accomodate the new @decorator syntax of python
2737 2.4.
2749 2.4.
2738
2750
2739 2004-09-29 Fernando Perez <fperez@colorado.edu>
2751 2004-09-29 Fernando Perez <fperez@colorado.edu>
2740
2752
2741 * IPython/Shell.py (MatplotlibShellBase.use): Added a wrapper to
2753 * IPython/Shell.py (MatplotlibShellBase.use): Added a wrapper to
2742 matplotlib.use to prevent running scripts which try to switch
2754 matplotlib.use to prevent running scripts which try to switch
2743 interactive backends from within ipython. This will just crash
2755 interactive backends from within ipython. This will just crash
2744 the python interpreter, so we can't allow it (but a detailed error
2756 the python interpreter, so we can't allow it (but a detailed error
2745 is given to the user).
2757 is given to the user).
2746
2758
2747 2004-09-28 Fernando Perez <fperez@colorado.edu>
2759 2004-09-28 Fernando Perez <fperez@colorado.edu>
2748
2760
2749 * IPython/Shell.py (MatplotlibShellBase.mplot_exec):
2761 * IPython/Shell.py (MatplotlibShellBase.mplot_exec):
2750 matplotlib-related fixes so that using @run with non-matplotlib
2762 matplotlib-related fixes so that using @run with non-matplotlib
2751 scripts doesn't pop up spurious plot windows. This requires
2763 scripts doesn't pop up spurious plot windows. This requires
2752 matplotlib >= 0.63, where I had to make some changes as well.
2764 matplotlib >= 0.63, where I had to make some changes as well.
2753
2765
2754 * IPython/ipmaker.py (make_IPython): update version requirement to
2766 * IPython/ipmaker.py (make_IPython): update version requirement to
2755 python 2.2.
2767 python 2.2.
2756
2768
2757 * IPython/iplib.py (InteractiveShell.mainloop): Add an optional
2769 * IPython/iplib.py (InteractiveShell.mainloop): Add an optional
2758 banner arg for embedded customization.
2770 banner arg for embedded customization.
2759
2771
2760 * IPython/Magic.py (Magic.__init__): big cleanup to remove all
2772 * IPython/Magic.py (Magic.__init__): big cleanup to remove all
2761 explicit uses of __IP as the IPython's instance name. Now things
2773 explicit uses of __IP as the IPython's instance name. Now things
2762 are properly handled via the shell.name value. The actual code
2774 are properly handled via the shell.name value. The actual code
2763 is a bit ugly b/c I'm doing it via a global in Magic.py, but this
2775 is a bit ugly b/c I'm doing it via a global in Magic.py, but this
2764 is much better than before. I'll clean things completely when the
2776 is much better than before. I'll clean things completely when the
2765 magic stuff gets a real overhaul.
2777 magic stuff gets a real overhaul.
2766
2778
2767 * ipython.1: small fixes, sent in by Jack Moffit. He also sent in
2779 * ipython.1: small fixes, sent in by Jack Moffit. He also sent in
2768 minor changes to debian dir.
2780 minor changes to debian dir.
2769
2781
2770 * IPython/iplib.py (InteractiveShell.__init__): Fix adding a
2782 * IPython/iplib.py (InteractiveShell.__init__): Fix adding a
2771 pointer to the shell itself in the interactive namespace even when
2783 pointer to the shell itself in the interactive namespace even when
2772 a user-supplied dict is provided. This is needed for embedding
2784 a user-supplied dict is provided. This is needed for embedding
2773 purposes (found by tests with Michel Sanner).
2785 purposes (found by tests with Michel Sanner).
2774
2786
2775 2004-09-27 Fernando Perez <fperez@colorado.edu>
2787 2004-09-27 Fernando Perez <fperez@colorado.edu>
2776
2788
2777 * IPython/UserConfig/ipythonrc: remove []{} from
2789 * IPython/UserConfig/ipythonrc: remove []{} from
2778 readline_remove_delims, so that things like [modname.<TAB> do
2790 readline_remove_delims, so that things like [modname.<TAB> do
2779 proper completion. This disables [].TAB, but that's a less common
2791 proper completion. This disables [].TAB, but that's a less common
2780 case than module names in list comprehensions, for example.
2792 case than module names in list comprehensions, for example.
2781 Thanks to a report by Andrea Riciputi.
2793 Thanks to a report by Andrea Riciputi.
2782
2794
2783 2004-09-09 Fernando Perez <fperez@colorado.edu>
2795 2004-09-09 Fernando Perez <fperez@colorado.edu>
2784
2796
2785 * IPython/Shell.py (IPShellGTK.mainloop): reorder to avoid
2797 * IPython/Shell.py (IPShellGTK.mainloop): reorder to avoid
2786 blocking problems in win32 and osx. Fix by John.
2798 blocking problems in win32 and osx. Fix by John.
2787
2799
2788 2004-09-08 Fernando Perez <fperez@colorado.edu>
2800 2004-09-08 Fernando Perez <fperez@colorado.edu>
2789
2801
2790 * IPython/Shell.py (IPShellWX.OnInit): Fix output redirection bug
2802 * IPython/Shell.py (IPShellWX.OnInit): Fix output redirection bug
2791 for Win32 and OSX. Fix by John Hunter.
2803 for Win32 and OSX. Fix by John Hunter.
2792
2804
2793 2004-08-30 *** Released version 0.6.3
2805 2004-08-30 *** Released version 0.6.3
2794
2806
2795 2004-08-30 Fernando Perez <fperez@colorado.edu>
2807 2004-08-30 Fernando Perez <fperez@colorado.edu>
2796
2808
2797 * setup.py (isfile): Add manpages to list of dependent files to be
2809 * setup.py (isfile): Add manpages to list of dependent files to be
2798 updated.
2810 updated.
2799
2811
2800 2004-08-27 Fernando Perez <fperez@colorado.edu>
2812 2004-08-27 Fernando Perez <fperez@colorado.edu>
2801
2813
2802 * IPython/Shell.py (start): I've disabled -wthread and -gthread
2814 * IPython/Shell.py (start): I've disabled -wthread and -gthread
2803 for now. They don't really work with standalone WX/GTK code
2815 for now. They don't really work with standalone WX/GTK code
2804 (though matplotlib IS working fine with both of those backends).
2816 (though matplotlib IS working fine with both of those backends).
2805 This will neeed much more testing. I disabled most things with
2817 This will neeed much more testing. I disabled most things with
2806 comments, so turning it back on later should be pretty easy.
2818 comments, so turning it back on later should be pretty easy.
2807
2819
2808 * IPython/iplib.py (InteractiveShell.__init__): Fix accidental
2820 * IPython/iplib.py (InteractiveShell.__init__): Fix accidental
2809 autocalling of expressions like r'foo', by modifying the line
2821 autocalling of expressions like r'foo', by modifying the line
2810 split regexp. Closes
2822 split regexp. Closes
2811 http://www.scipy.net/roundup/ipython/issue18, reported by Nicholas
2823 http://www.scipy.net/roundup/ipython/issue18, reported by Nicholas
2812 Riley <ipythonbugs-AT-sabi.net>.
2824 Riley <ipythonbugs-AT-sabi.net>.
2813 (InteractiveShell.mainloop): honor --nobanner with banner
2825 (InteractiveShell.mainloop): honor --nobanner with banner
2814 extensions.
2826 extensions.
2815
2827
2816 * IPython/Shell.py: Significant refactoring of all classes, so
2828 * IPython/Shell.py: Significant refactoring of all classes, so
2817 that we can really support ALL matplotlib backends and threading
2829 that we can really support ALL matplotlib backends and threading
2818 models (John spotted a bug with Tk which required this). Now we
2830 models (John spotted a bug with Tk which required this). Now we
2819 should support single-threaded, WX-threads and GTK-threads, both
2831 should support single-threaded, WX-threads and GTK-threads, both
2820 for generic code and for matplotlib.
2832 for generic code and for matplotlib.
2821
2833
2822 * IPython/ipmaker.py (__call__): Changed -mpthread option to
2834 * IPython/ipmaker.py (__call__): Changed -mpthread option to
2823 -pylab, to simplify things for users. Will also remove the pylab
2835 -pylab, to simplify things for users. Will also remove the pylab
2824 profile, since now all of matplotlib configuration is directly
2836 profile, since now all of matplotlib configuration is directly
2825 handled here. This also reduces startup time.
2837 handled here. This also reduces startup time.
2826
2838
2827 * IPython/Shell.py (IPShellGTK.run): Fixed bug where mainloop() of
2839 * IPython/Shell.py (IPShellGTK.run): Fixed bug where mainloop() of
2828 shell wasn't being correctly called. Also in IPShellWX.
2840 shell wasn't being correctly called. Also in IPShellWX.
2829
2841
2830 * IPython/iplib.py (InteractiveShell.__init__): Added option to
2842 * IPython/iplib.py (InteractiveShell.__init__): Added option to
2831 fine-tune banner.
2843 fine-tune banner.
2832
2844
2833 * IPython/numutils.py (spike): Deprecate these spike functions,
2845 * IPython/numutils.py (spike): Deprecate these spike functions,
2834 delete (long deprecated) gnuplot_exec handler.
2846 delete (long deprecated) gnuplot_exec handler.
2835
2847
2836 2004-08-26 Fernando Perez <fperez@colorado.edu>
2848 2004-08-26 Fernando Perez <fperez@colorado.edu>
2837
2849
2838 * ipython.1: Update for threading options, plus some others which
2850 * ipython.1: Update for threading options, plus some others which
2839 were missing.
2851 were missing.
2840
2852
2841 * IPython/ipmaker.py (__call__): Added -wthread option for
2853 * IPython/ipmaker.py (__call__): Added -wthread option for
2842 wxpython thread handling. Make sure threading options are only
2854 wxpython thread handling. Make sure threading options are only
2843 valid at the command line.
2855 valid at the command line.
2844
2856
2845 * scripts/ipython: moved shell selection into a factory function
2857 * scripts/ipython: moved shell selection into a factory function
2846 in Shell.py, to keep the starter script to a minimum.
2858 in Shell.py, to keep the starter script to a minimum.
2847
2859
2848 2004-08-25 Fernando Perez <fperez@colorado.edu>
2860 2004-08-25 Fernando Perez <fperez@colorado.edu>
2849
2861
2850 * IPython/Shell.py (IPShellWX.wxexit): fixes to WX threading, by
2862 * IPython/Shell.py (IPShellWX.wxexit): fixes to WX threading, by
2851 John. Along with some recent changes he made to matplotlib, the
2863 John. Along with some recent changes he made to matplotlib, the
2852 next versions of both systems should work very well together.
2864 next versions of both systems should work very well together.
2853
2865
2854 2004-08-24 Fernando Perez <fperez@colorado.edu>
2866 2004-08-24 Fernando Perez <fperez@colorado.edu>
2855
2867
2856 * IPython/Magic.py (Magic.magic_prun): cleanup some dead code. I
2868 * IPython/Magic.py (Magic.magic_prun): cleanup some dead code. I
2857 tried to switch the profiling to using hotshot, but I'm getting
2869 tried to switch the profiling to using hotshot, but I'm getting
2858 strange errors from prof.runctx() there. I may be misreading the
2870 strange errors from prof.runctx() there. I may be misreading the
2859 docs, but it looks weird. For now the profiling code will
2871 docs, but it looks weird. For now the profiling code will
2860 continue to use the standard profiler.
2872 continue to use the standard profiler.
2861
2873
2862 2004-08-23 Fernando Perez <fperez@colorado.edu>
2874 2004-08-23 Fernando Perez <fperez@colorado.edu>
2863
2875
2864 * IPython/Shell.py (IPShellWX.__init__): Improvements to the WX
2876 * IPython/Shell.py (IPShellWX.__init__): Improvements to the WX
2865 threaded shell, by John Hunter. It's not quite ready yet, but
2877 threaded shell, by John Hunter. It's not quite ready yet, but
2866 close.
2878 close.
2867
2879
2868 2004-08-22 Fernando Perez <fperez@colorado.edu>
2880 2004-08-22 Fernando Perez <fperez@colorado.edu>
2869
2881
2870 * IPython/iplib.py (InteractiveShell.interact): tab cleanups, also
2882 * IPython/iplib.py (InteractiveShell.interact): tab cleanups, also
2871 in Magic and ultraTB.
2883 in Magic and ultraTB.
2872
2884
2873 * ipython.1: document threading options in manpage.
2885 * ipython.1: document threading options in manpage.
2874
2886
2875 * scripts/ipython: Changed name of -thread option to -gthread,
2887 * scripts/ipython: Changed name of -thread option to -gthread,
2876 since this is GTK specific. I want to leave the door open for a
2888 since this is GTK specific. I want to leave the door open for a
2877 -wthread option for WX, which will most likely be necessary. This
2889 -wthread option for WX, which will most likely be necessary. This
2878 change affects usage and ipmaker as well.
2890 change affects usage and ipmaker as well.
2879
2891
2880 * IPython/Shell.py (matplotlib_shell): Add a factory function to
2892 * IPython/Shell.py (matplotlib_shell): Add a factory function to
2881 handle the matplotlib shell issues. Code by John Hunter
2893 handle the matplotlib shell issues. Code by John Hunter
2882 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2894 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2883 (IPShellMatplotlibWX.__init__): Rudimentary WX support. It's
2895 (IPShellMatplotlibWX.__init__): Rudimentary WX support. It's
2884 broken (and disabled for end users) for now, but it puts the
2896 broken (and disabled for end users) for now, but it puts the
2885 infrastructure in place.
2897 infrastructure in place.
2886
2898
2887 2004-08-21 Fernando Perez <fperez@colorado.edu>
2899 2004-08-21 Fernando Perez <fperez@colorado.edu>
2888
2900
2889 * ipythonrc-pylab: Add matplotlib support.
2901 * ipythonrc-pylab: Add matplotlib support.
2890
2902
2891 * matplotlib_config.py: new files for matplotlib support, part of
2903 * matplotlib_config.py: new files for matplotlib support, part of
2892 the pylab profile.
2904 the pylab profile.
2893
2905
2894 * IPython/usage.py (__doc__): documented the threading options.
2906 * IPython/usage.py (__doc__): documented the threading options.
2895
2907
2896 2004-08-20 Fernando Perez <fperez@colorado.edu>
2908 2004-08-20 Fernando Perez <fperez@colorado.edu>
2897
2909
2898 * ipython: Modified the main calling routine to handle the -thread
2910 * ipython: Modified the main calling routine to handle the -thread
2899 and -mpthread options. This needs to be done as a top-level hack,
2911 and -mpthread options. This needs to be done as a top-level hack,
2900 because it determines which class to instantiate for IPython
2912 because it determines which class to instantiate for IPython
2901 itself.
2913 itself.
2902
2914
2903 * IPython/Shell.py (MTInteractiveShell.__init__): New set of
2915 * IPython/Shell.py (MTInteractiveShell.__init__): New set of
2904 classes to support multithreaded GTK operation without blocking,
2916 classes to support multithreaded GTK operation without blocking,
2905 and matplotlib with all backends. This is a lot of still very
2917 and matplotlib with all backends. This is a lot of still very
2906 experimental code, and threads are tricky. So it may still have a
2918 experimental code, and threads are tricky. So it may still have a
2907 few rough edges... This code owes a lot to
2919 few rough edges... This code owes a lot to
2908 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by
2920 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by
2909 Brian # McErlean and John Finlay, to Antoon Pardon for fixes, and
2921 Brian # McErlean and John Finlay, to Antoon Pardon for fixes, and
2910 to John Hunter for all the matplotlib work.
2922 to John Hunter for all the matplotlib work.
2911
2923
2912 * IPython/ipmaker.py (__call__): Added -thread and -mpthread
2924 * IPython/ipmaker.py (__call__): Added -thread and -mpthread
2913 options for gtk thread and matplotlib support.
2925 options for gtk thread and matplotlib support.
2914
2926
2915 2004-08-16 Fernando Perez <fperez@colorado.edu>
2927 2004-08-16 Fernando Perez <fperez@colorado.edu>
2916
2928
2917 * IPython/iplib.py (InteractiveShell.__init__): don't trigger
2929 * IPython/iplib.py (InteractiveShell.__init__): don't trigger
2918 autocall for things like p*q,p/q,p+q,p-q, when p is callable. Bug
2930 autocall for things like p*q,p/q,p+q,p-q, when p is callable. Bug
2919 reported by Stephen Walton <stephen.walton-AT-csun.edu>.
2931 reported by Stephen Walton <stephen.walton-AT-csun.edu>.
2920
2932
2921 2004-08-11 Fernando Perez <fperez@colorado.edu>
2933 2004-08-11 Fernando Perez <fperez@colorado.edu>
2922
2934
2923 * setup.py (isfile): Fix build so documentation gets updated for
2935 * setup.py (isfile): Fix build so documentation gets updated for
2924 rpms (it was only done for .tgz builds).
2936 rpms (it was only done for .tgz builds).
2925
2937
2926 2004-08-10 Fernando Perez <fperez@colorado.edu>
2938 2004-08-10 Fernando Perez <fperez@colorado.edu>
2927
2939
2928 * genutils.py (Term): Fix misspell of stdin stream (sin->cin).
2940 * genutils.py (Term): Fix misspell of stdin stream (sin->cin).
2929
2941
2930 * iplib.py : Silence syntax error exceptions in tab-completion.
2942 * iplib.py : Silence syntax error exceptions in tab-completion.
2931
2943
2932 2004-08-05 Fernando Perez <fperez@colorado.edu>
2944 2004-08-05 Fernando Perez <fperez@colorado.edu>
2933
2945
2934 * IPython/Prompts.py (Prompt2.set_colors): Fix incorrectly set
2946 * IPython/Prompts.py (Prompt2.set_colors): Fix incorrectly set
2935 'color off' mark for continuation prompts. This was causing long
2947 'color off' mark for continuation prompts. This was causing long
2936 continuation lines to mis-wrap.
2948 continuation lines to mis-wrap.
2937
2949
2938 2004-08-01 Fernando Perez <fperez@colorado.edu>
2950 2004-08-01 Fernando Perez <fperez@colorado.edu>
2939
2951
2940 * IPython/ipmaker.py (make_IPython): Allow the shell class used
2952 * IPython/ipmaker.py (make_IPython): Allow the shell class used
2941 for building ipython to be a parameter. All this is necessary
2953 for building ipython to be a parameter. All this is necessary
2942 right now to have a multithreaded version, but this insane
2954 right now to have a multithreaded version, but this insane
2943 non-design will be cleaned up soon. For now, it's a hack that
2955 non-design will be cleaned up soon. For now, it's a hack that
2944 works.
2956 works.
2945
2957
2946 * IPython/Shell.py (IPShell.__init__): Stop using mutable default
2958 * IPython/Shell.py (IPShell.__init__): Stop using mutable default
2947 args in various places. No bugs so far, but it's a dangerous
2959 args in various places. No bugs so far, but it's a dangerous
2948 practice.
2960 practice.
2949
2961
2950 2004-07-31 Fernando Perez <fperez@colorado.edu>
2962 2004-07-31 Fernando Perez <fperez@colorado.edu>
2951
2963
2952 * IPython/iplib.py (complete): ignore SyntaxError exceptions to
2964 * IPython/iplib.py (complete): ignore SyntaxError exceptions to
2953 fix completion of files with dots in their names under most
2965 fix completion of files with dots in their names under most
2954 profiles (pysh was OK because the completion order is different).
2966 profiles (pysh was OK because the completion order is different).
2955
2967
2956 2004-07-27 Fernando Perez <fperez@colorado.edu>
2968 2004-07-27 Fernando Perez <fperez@colorado.edu>
2957
2969
2958 * IPython/iplib.py (InteractiveShell.__init__): build dict of
2970 * IPython/iplib.py (InteractiveShell.__init__): build dict of
2959 keywords manually, b/c the one in keyword.py was removed in python
2971 keywords manually, b/c the one in keyword.py was removed in python
2960 2.4. Patch by Anakim Border <aborder-AT-users.sourceforge.net>.
2972 2.4. Patch by Anakim Border <aborder-AT-users.sourceforge.net>.
2961 This is NOT a bug under python 2.3 and earlier.
2973 This is NOT a bug under python 2.3 and earlier.
2962
2974
2963 2004-07-26 Fernando Perez <fperez@colorado.edu>
2975 2004-07-26 Fernando Perez <fperez@colorado.edu>
2964
2976
2965 * IPython/ultraTB.py (VerboseTB.text): Add another
2977 * IPython/ultraTB.py (VerboseTB.text): Add another
2966 linecache.checkcache() call to try to prevent inspect.py from
2978 linecache.checkcache() call to try to prevent inspect.py from
2967 crashing under python 2.3. I think this fixes
2979 crashing under python 2.3. I think this fixes
2968 http://www.scipy.net/roundup/ipython/issue17.
2980 http://www.scipy.net/roundup/ipython/issue17.
2969
2981
2970 2004-07-26 *** Released version 0.6.2
2982 2004-07-26 *** Released version 0.6.2
2971
2983
2972 2004-07-26 Fernando Perez <fperez@colorado.edu>
2984 2004-07-26 Fernando Perez <fperez@colorado.edu>
2973
2985
2974 * IPython/Magic.py (Magic.magic_cd): Fix bug where 'cd -N' would
2986 * IPython/Magic.py (Magic.magic_cd): Fix bug where 'cd -N' would
2975 fail for any number.
2987 fail for any number.
2976 (Magic.magic_bookmark): Fix bug where 'bookmark -l' would fail for
2988 (Magic.magic_bookmark): Fix bug where 'bookmark -l' would fail for
2977 empty bookmarks.
2989 empty bookmarks.
2978
2990
2979 2004-07-26 *** Released version 0.6.1
2991 2004-07-26 *** Released version 0.6.1
2980
2992
2981 2004-07-26 Fernando Perez <fperez@colorado.edu>
2993 2004-07-26 Fernando Perez <fperez@colorado.edu>
2982
2994
2983 * ipython_win_post_install.py (run): Added pysh shortcut for Windows.
2995 * ipython_win_post_install.py (run): Added pysh shortcut for Windows.
2984
2996
2985 * IPython/iplib.py (protect_filename): Applied Ville's patch for
2997 * IPython/iplib.py (protect_filename): Applied Ville's patch for
2986 escaping '()[]{}' in filenames.
2998 escaping '()[]{}' in filenames.
2987
2999
2988 * IPython/Magic.py (shlex_split): Fix handling of '*' and '?' for
3000 * IPython/Magic.py (shlex_split): Fix handling of '*' and '?' for
2989 Python 2.2 users who lack a proper shlex.split.
3001 Python 2.2 users who lack a proper shlex.split.
2990
3002
2991 2004-07-19 Fernando Perez <fperez@colorado.edu>
3003 2004-07-19 Fernando Perez <fperez@colorado.edu>
2992
3004
2993 * IPython/iplib.py (InteractiveShell.init_readline): Add support
3005 * IPython/iplib.py (InteractiveShell.init_readline): Add support
2994 for reading readline's init file. I follow the normal chain:
3006 for reading readline's init file. I follow the normal chain:
2995 $INPUTRC is honored, otherwise ~/.inputrc is used. Thanks to a
3007 $INPUTRC is honored, otherwise ~/.inputrc is used. Thanks to a
2996 report by Mike Heeter. This closes
3008 report by Mike Heeter. This closes
2997 http://www.scipy.net/roundup/ipython/issue16.
3009 http://www.scipy.net/roundup/ipython/issue16.
2998
3010
2999 2004-07-18 Fernando Perez <fperez@colorado.edu>
3011 2004-07-18 Fernando Perez <fperez@colorado.edu>
3000
3012
3001 * IPython/iplib.py (__init__): Add better handling of '\' under
3013 * IPython/iplib.py (__init__): Add better handling of '\' under
3002 Win32 for filenames. After a patch by Ville.
3014 Win32 for filenames. After a patch by Ville.
3003
3015
3004 2004-07-17 Fernando Perez <fperez@colorado.edu>
3016 2004-07-17 Fernando Perez <fperez@colorado.edu>
3005
3017
3006 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3018 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3007 autocalling would be triggered for 'foo is bar' if foo is
3019 autocalling would be triggered for 'foo is bar' if foo is
3008 callable. I also cleaned up the autocall detection code to use a
3020 callable. I also cleaned up the autocall detection code to use a
3009 regexp, which is faster. Bug reported by Alexander Schmolck.
3021 regexp, which is faster. Bug reported by Alexander Schmolck.
3010
3022
3011 * IPython/Magic.py (Magic.magic_pinfo): Fix bug where strings with
3023 * IPython/Magic.py (Magic.magic_pinfo): Fix bug where strings with
3012 '?' in them would confuse the help system. Reported by Alex
3024 '?' in them would confuse the help system. Reported by Alex
3013 Schmolck.
3025 Schmolck.
3014
3026
3015 2004-07-16 Fernando Perez <fperez@colorado.edu>
3027 2004-07-16 Fernando Perez <fperez@colorado.edu>
3016
3028
3017 * IPython/GnuplotInteractive.py (__all__): added plot2.
3029 * IPython/GnuplotInteractive.py (__all__): added plot2.
3018
3030
3019 * IPython/Gnuplot2.py (Gnuplot.plot2): added new function for
3031 * IPython/Gnuplot2.py (Gnuplot.plot2): added new function for
3020 plotting dictionaries, lists or tuples of 1d arrays.
3032 plotting dictionaries, lists or tuples of 1d arrays.
3021
3033
3022 * IPython/Magic.py (Magic.magic_hist): small clenaups and
3034 * IPython/Magic.py (Magic.magic_hist): small clenaups and
3023 optimizations.
3035 optimizations.
3024
3036
3025 * IPython/iplib.py:Remove old Changelog info for cleanup. This is
3037 * IPython/iplib.py:Remove old Changelog info for cleanup. This is
3026 the information which was there from Janko's original IPP code:
3038 the information which was there from Janko's original IPP code:
3027
3039
3028 03.05.99 20:53 porto.ifm.uni-kiel.de
3040 03.05.99 20:53 porto.ifm.uni-kiel.de
3029 --Started changelog.
3041 --Started changelog.
3030 --make clear do what it say it does
3042 --make clear do what it say it does
3031 --added pretty output of lines from inputcache
3043 --added pretty output of lines from inputcache
3032 --Made Logger a mixin class, simplifies handling of switches
3044 --Made Logger a mixin class, simplifies handling of switches
3033 --Added own completer class. .string<TAB> expands to last history
3045 --Added own completer class. .string<TAB> expands to last history
3034 line which starts with string. The new expansion is also present
3046 line which starts with string. The new expansion is also present
3035 with Ctrl-r from the readline library. But this shows, who this
3047 with Ctrl-r from the readline library. But this shows, who this
3036 can be done for other cases.
3048 can be done for other cases.
3037 --Added convention that all shell functions should accept a
3049 --Added convention that all shell functions should accept a
3038 parameter_string This opens the door for different behaviour for
3050 parameter_string This opens the door for different behaviour for
3039 each function. @cd is a good example of this.
3051 each function. @cd is a good example of this.
3040
3052
3041 04.05.99 12:12 porto.ifm.uni-kiel.de
3053 04.05.99 12:12 porto.ifm.uni-kiel.de
3042 --added logfile rotation
3054 --added logfile rotation
3043 --added new mainloop method which freezes first the namespace
3055 --added new mainloop method which freezes first the namespace
3044
3056
3045 07.05.99 21:24 porto.ifm.uni-kiel.de
3057 07.05.99 21:24 porto.ifm.uni-kiel.de
3046 --added the docreader classes. Now there is a help system.
3058 --added the docreader classes. Now there is a help system.
3047 -This is only a first try. Currently it's not easy to put new
3059 -This is only a first try. Currently it's not easy to put new
3048 stuff in the indices. But this is the way to go. Info would be
3060 stuff in the indices. But this is the way to go. Info would be
3049 better, but HTML is every where and not everybody has an info
3061 better, but HTML is every where and not everybody has an info
3050 system installed and it's not so easy to change html-docs to info.
3062 system installed and it's not so easy to change html-docs to info.
3051 --added global logfile option
3063 --added global logfile option
3052 --there is now a hook for object inspection method pinfo needs to
3064 --there is now a hook for object inspection method pinfo needs to
3053 be provided for this. Can be reached by two '??'.
3065 be provided for this. Can be reached by two '??'.
3054
3066
3055 08.05.99 20:51 porto.ifm.uni-kiel.de
3067 08.05.99 20:51 porto.ifm.uni-kiel.de
3056 --added a README
3068 --added a README
3057 --bug in rc file. Something has changed so functions in the rc
3069 --bug in rc file. Something has changed so functions in the rc
3058 file need to reference the shell and not self. Not clear if it's a
3070 file need to reference the shell and not self. Not clear if it's a
3059 bug or feature.
3071 bug or feature.
3060 --changed rc file for new behavior
3072 --changed rc file for new behavior
3061
3073
3062 2004-07-15 Fernando Perez <fperez@colorado.edu>
3074 2004-07-15 Fernando Perez <fperez@colorado.edu>
3063
3075
3064 * IPython/Logger.py (Logger.log): fixed recent bug where the input
3076 * IPython/Logger.py (Logger.log): fixed recent bug where the input
3065 cache was falling out of sync in bizarre manners when multi-line
3077 cache was falling out of sync in bizarre manners when multi-line
3066 input was present. Minor optimizations and cleanup.
3078 input was present. Minor optimizations and cleanup.
3067
3079
3068 (Logger): Remove old Changelog info for cleanup. This is the
3080 (Logger): Remove old Changelog info for cleanup. This is the
3069 information which was there from Janko's original code:
3081 information which was there from Janko's original code:
3070
3082
3071 Changes to Logger: - made the default log filename a parameter
3083 Changes to Logger: - made the default log filename a parameter
3072
3084
3073 - put a check for lines beginning with !@? in log(). Needed
3085 - put a check for lines beginning with !@? in log(). Needed
3074 (even if the handlers properly log their lines) for mid-session
3086 (even if the handlers properly log their lines) for mid-session
3075 logging activation to work properly. Without this, lines logged
3087 logging activation to work properly. Without this, lines logged
3076 in mid session, which get read from the cache, would end up
3088 in mid session, which get read from the cache, would end up
3077 'bare' (with !@? in the open) in the log. Now they are caught
3089 'bare' (with !@? in the open) in the log. Now they are caught
3078 and prepended with a #.
3090 and prepended with a #.
3079
3091
3080 * IPython/iplib.py (InteractiveShell.init_readline): added check
3092 * IPython/iplib.py (InteractiveShell.init_readline): added check
3081 in case MagicCompleter fails to be defined, so we don't crash.
3093 in case MagicCompleter fails to be defined, so we don't crash.
3082
3094
3083 2004-07-13 Fernando Perez <fperez@colorado.edu>
3095 2004-07-13 Fernando Perez <fperez@colorado.edu>
3084
3096
3085 * IPython/Gnuplot2.py (Gnuplot.hardcopy): add automatic generation
3097 * IPython/Gnuplot2.py (Gnuplot.hardcopy): add automatic generation
3086 of EPS if the requested filename ends in '.eps'.
3098 of EPS if the requested filename ends in '.eps'.
3087
3099
3088 2004-07-04 Fernando Perez <fperez@colorado.edu>
3100 2004-07-04 Fernando Perez <fperez@colorado.edu>
3089
3101
3090 * IPython/iplib.py (InteractiveShell.handle_shell_escape): Fix
3102 * IPython/iplib.py (InteractiveShell.handle_shell_escape): Fix
3091 escaping of quotes when calling the shell.
3103 escaping of quotes when calling the shell.
3092
3104
3093 2004-07-02 Fernando Perez <fperez@colorado.edu>
3105 2004-07-02 Fernando Perez <fperez@colorado.edu>
3094
3106
3095 * IPython/Prompts.py (CachedOutput.update): Fix problem with
3107 * IPython/Prompts.py (CachedOutput.update): Fix problem with
3096 gettext not working because we were clobbering '_'. Fixes
3108 gettext not working because we were clobbering '_'. Fixes
3097 http://www.scipy.net/roundup/ipython/issue6.
3109 http://www.scipy.net/roundup/ipython/issue6.
3098
3110
3099 2004-07-01 Fernando Perez <fperez@colorado.edu>
3111 2004-07-01 Fernando Perez <fperez@colorado.edu>
3100
3112
3101 * IPython/Magic.py (Magic.magic_cd): integrated bookmark handling
3113 * IPython/Magic.py (Magic.magic_cd): integrated bookmark handling
3102 into @cd. Patch by Ville.
3114 into @cd. Patch by Ville.
3103
3115
3104 * IPython/iplib.py (InteractiveShell.post_config_initialization):
3116 * IPython/iplib.py (InteractiveShell.post_config_initialization):
3105 new function to store things after ipmaker runs. Patch by Ville.
3117 new function to store things after ipmaker runs. Patch by Ville.
3106 Eventually this will go away once ipmaker is removed and the class
3118 Eventually this will go away once ipmaker is removed and the class
3107 gets cleaned up, but for now it's ok. Key functionality here is
3119 gets cleaned up, but for now it's ok. Key functionality here is
3108 the addition of the persistent storage mechanism, a dict for
3120 the addition of the persistent storage mechanism, a dict for
3109 keeping data across sessions (for now just bookmarks, but more can
3121 keeping data across sessions (for now just bookmarks, but more can
3110 be implemented later).
3122 be implemented later).
3111
3123
3112 * IPython/Magic.py (Magic.magic_bookmark): New bookmark system,
3124 * IPython/Magic.py (Magic.magic_bookmark): New bookmark system,
3113 persistent across sections. Patch by Ville, I modified it
3125 persistent across sections. Patch by Ville, I modified it
3114 soemwhat to allow bookmarking arbitrary dirs other than CWD. Also
3126 soemwhat to allow bookmarking arbitrary dirs other than CWD. Also
3115 added a '-l' option to list all bookmarks.
3127 added a '-l' option to list all bookmarks.
3116
3128
3117 * IPython/iplib.py (InteractiveShell.atexit_operations): new
3129 * IPython/iplib.py (InteractiveShell.atexit_operations): new
3118 center for cleanup. Registered with atexit.register(). I moved
3130 center for cleanup. Registered with atexit.register(). I moved
3119 here the old exit_cleanup(). After a patch by Ville.
3131 here the old exit_cleanup(). After a patch by Ville.
3120
3132
3121 * IPython/Magic.py (get_py_filename): added '~' to the accepted
3133 * IPython/Magic.py (get_py_filename): added '~' to the accepted
3122 characters in the hacked shlex_split for python 2.2.
3134 characters in the hacked shlex_split for python 2.2.
3123
3135
3124 * IPython/iplib.py (file_matches): more fixes to filenames with
3136 * IPython/iplib.py (file_matches): more fixes to filenames with
3125 whitespace in them. It's not perfect, but limitations in python's
3137 whitespace in them. It's not perfect, but limitations in python's
3126 readline make it impossible to go further.
3138 readline make it impossible to go further.
3127
3139
3128 2004-06-29 Fernando Perez <fperez@colorado.edu>
3140 2004-06-29 Fernando Perez <fperez@colorado.edu>
3129
3141
3130 * IPython/iplib.py (file_matches): escape whitespace correctly in
3142 * IPython/iplib.py (file_matches): escape whitespace correctly in
3131 filename completions. Bug reported by Ville.
3143 filename completions. Bug reported by Ville.
3132
3144
3133 2004-06-28 Fernando Perez <fperez@colorado.edu>
3145 2004-06-28 Fernando Perez <fperez@colorado.edu>
3134
3146
3135 * IPython/ipmaker.py (__call__): Added per-profile histories. Now
3147 * IPython/ipmaker.py (__call__): Added per-profile histories. Now
3136 the history file will be called 'history-PROFNAME' (or just
3148 the history file will be called 'history-PROFNAME' (or just
3137 'history' if no profile is loaded). I was getting annoyed at
3149 'history' if no profile is loaded). I was getting annoyed at
3138 getting my Numerical work history clobbered by pysh sessions.
3150 getting my Numerical work history clobbered by pysh sessions.
3139
3151
3140 * IPython/iplib.py (InteractiveShell.__init__): Internal
3152 * IPython/iplib.py (InteractiveShell.__init__): Internal
3141 getoutputerror() function so that we can honor the system_verbose
3153 getoutputerror() function so that we can honor the system_verbose
3142 flag for _all_ system calls. I also added escaping of #
3154 flag for _all_ system calls. I also added escaping of #
3143 characters here to avoid confusing Itpl.
3155 characters here to avoid confusing Itpl.
3144
3156
3145 * IPython/Magic.py (shlex_split): removed call to shell in
3157 * IPython/Magic.py (shlex_split): removed call to shell in
3146 parse_options and replaced it with shlex.split(). The annoying
3158 parse_options and replaced it with shlex.split(). The annoying
3147 part was that in Python 2.2, shlex.split() doesn't exist, so I had
3159 part was that in Python 2.2, shlex.split() doesn't exist, so I had
3148 to backport it from 2.3, with several frail hacks (the shlex
3160 to backport it from 2.3, with several frail hacks (the shlex
3149 module is rather limited in 2.2). Thanks to a suggestion by Ville
3161 module is rather limited in 2.2). Thanks to a suggestion by Ville
3150 Vainio <vivainio@kolumbus.fi>. For Python 2.3 there should be no
3162 Vainio <vivainio@kolumbus.fi>. For Python 2.3 there should be no
3151 problem.
3163 problem.
3152
3164
3153 (Magic.magic_system_verbose): new toggle to print the actual
3165 (Magic.magic_system_verbose): new toggle to print the actual
3154 system calls made by ipython. Mainly for debugging purposes.
3166 system calls made by ipython. Mainly for debugging purposes.
3155
3167
3156 * IPython/GnuplotRuntime.py (gnu_out): fix bug for cygwin, which
3168 * IPython/GnuplotRuntime.py (gnu_out): fix bug for cygwin, which
3157 doesn't support persistence. Reported (and fix suggested) by
3169 doesn't support persistence. Reported (and fix suggested) by
3158 Travis Caldwell <travis_caldwell2000@yahoo.com>.
3170 Travis Caldwell <travis_caldwell2000@yahoo.com>.
3159
3171
3160 2004-06-26 Fernando Perez <fperez@colorado.edu>
3172 2004-06-26 Fernando Perez <fperez@colorado.edu>
3161
3173
3162 * IPython/Logger.py (Logger.log): fix to handle correctly empty
3174 * IPython/Logger.py (Logger.log): fix to handle correctly empty
3163 continue prompts.
3175 continue prompts.
3164
3176
3165 * IPython/Extensions/InterpreterExec.py (pysh): moved the pysh()
3177 * IPython/Extensions/InterpreterExec.py (pysh): moved the pysh()
3166 function (basically a big docstring) and a few more things here to
3178 function (basically a big docstring) and a few more things here to
3167 speedup startup. pysh.py is now very lightweight. We want because
3179 speedup startup. pysh.py is now very lightweight. We want because
3168 it gets execfile'd, while InterpreterExec gets imported, so
3180 it gets execfile'd, while InterpreterExec gets imported, so
3169 byte-compilation saves time.
3181 byte-compilation saves time.
3170
3182
3171 2004-06-25 Fernando Perez <fperez@colorado.edu>
3183 2004-06-25 Fernando Perez <fperez@colorado.edu>
3172
3184
3173 * IPython/Magic.py (Magic.magic_cd): Fixed to restore usage of 'cd
3185 * IPython/Magic.py (Magic.magic_cd): Fixed to restore usage of 'cd
3174 -NUM', which was recently broken.
3186 -NUM', which was recently broken.
3175
3187
3176 * IPython/iplib.py (InteractiveShell.handle_shell_escape): allow !
3188 * IPython/iplib.py (InteractiveShell.handle_shell_escape): allow !
3177 in multi-line input (but not !!, which doesn't make sense there).
3189 in multi-line input (but not !!, which doesn't make sense there).
3178
3190
3179 * IPython/UserConfig/ipythonrc: made autoindent on by default.
3191 * IPython/UserConfig/ipythonrc: made autoindent on by default.
3180 It's just too useful, and people can turn it off in the less
3192 It's just too useful, and people can turn it off in the less
3181 common cases where it's a problem.
3193 common cases where it's a problem.
3182
3194
3183 2004-06-24 Fernando Perez <fperez@colorado.edu>
3195 2004-06-24 Fernando Perez <fperez@colorado.edu>
3184
3196
3185 * IPython/iplib.py (InteractiveShell._prefilter): big change -
3197 * IPython/iplib.py (InteractiveShell._prefilter): big change -
3186 special syntaxes (like alias calling) is now allied in multi-line
3198 special syntaxes (like alias calling) is now allied in multi-line
3187 input. This is still _very_ experimental, but it's necessary for
3199 input. This is still _very_ experimental, but it's necessary for
3188 efficient shell usage combining python looping syntax with system
3200 efficient shell usage combining python looping syntax with system
3189 calls. For now it's restricted to aliases, I don't think it
3201 calls. For now it's restricted to aliases, I don't think it
3190 really even makes sense to have this for magics.
3202 really even makes sense to have this for magics.
3191
3203
3192 2004-06-23 Fernando Perez <fperez@colorado.edu>
3204 2004-06-23 Fernando Perez <fperez@colorado.edu>
3193
3205
3194 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Added
3206 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Added
3195 $var=cmd <=> @sc var=cmd and $$var=cmd <=> @sc -l var=cmd.
3207 $var=cmd <=> @sc var=cmd and $$var=cmd <=> @sc -l var=cmd.
3196
3208
3197 * IPython/Magic.py (Magic.magic_rehashx): modified to handle
3209 * IPython/Magic.py (Magic.magic_rehashx): modified to handle
3198 extensions under Windows (after code sent by Gary Bishop). The
3210 extensions under Windows (after code sent by Gary Bishop). The
3199 extensions considered 'executable' are stored in IPython's rc
3211 extensions considered 'executable' are stored in IPython's rc
3200 structure as win_exec_ext.
3212 structure as win_exec_ext.
3201
3213
3202 * IPython/genutils.py (shell): new function, like system() but
3214 * IPython/genutils.py (shell): new function, like system() but
3203 without return value. Very useful for interactive shell work.
3215 without return value. Very useful for interactive shell work.
3204
3216
3205 * IPython/Magic.py (Magic.magic_unalias): New @unalias function to
3217 * IPython/Magic.py (Magic.magic_unalias): New @unalias function to
3206 delete aliases.
3218 delete aliases.
3207
3219
3208 * IPython/iplib.py (InteractiveShell.alias_table_update): make
3220 * IPython/iplib.py (InteractiveShell.alias_table_update): make
3209 sure that the alias table doesn't contain python keywords.
3221 sure that the alias table doesn't contain python keywords.
3210
3222
3211 2004-06-21 Fernando Perez <fperez@colorado.edu>
3223 2004-06-21 Fernando Perez <fperez@colorado.edu>
3212
3224
3213 * IPython/Magic.py (Magic.magic_rehash): Fix crash when
3225 * IPython/Magic.py (Magic.magic_rehash): Fix crash when
3214 non-existent items are found in $PATH. Reported by Thorsten.
3226 non-existent items are found in $PATH. Reported by Thorsten.
3215
3227
3216 2004-06-20 Fernando Perez <fperez@colorado.edu>
3228 2004-06-20 Fernando Perez <fperez@colorado.edu>
3217
3229
3218 * IPython/iplib.py (complete): modified the completer so that the
3230 * IPython/iplib.py (complete): modified the completer so that the
3219 order of priorities can be easily changed at runtime.
3231 order of priorities can be easily changed at runtime.
3220
3232
3221 * IPython/Extensions/InterpreterExec.py (prefilter_shell):
3233 * IPython/Extensions/InterpreterExec.py (prefilter_shell):
3222 Modified to auto-execute all lines beginning with '~', '/' or '.'.
3234 Modified to auto-execute all lines beginning with '~', '/' or '.'.
3223
3235
3224 * IPython/Magic.py (Magic.magic_sx): modified @sc and @sx to
3236 * IPython/Magic.py (Magic.magic_sx): modified @sc and @sx to
3225 expand Python variables prepended with $ in all system calls. The
3237 expand Python variables prepended with $ in all system calls. The
3226 same was done to InteractiveShell.handle_shell_escape. Now all
3238 same was done to InteractiveShell.handle_shell_escape. Now all
3227 system access mechanisms (!, !!, @sc, @sx and aliases) allow the
3239 system access mechanisms (!, !!, @sc, @sx and aliases) allow the
3228 expansion of python variables and expressions according to the
3240 expansion of python variables and expressions according to the
3229 syntax of PEP-215 - http://www.python.org/peps/pep-0215.html.
3241 syntax of PEP-215 - http://www.python.org/peps/pep-0215.html.
3230
3242
3231 Though PEP-215 has been rejected, a similar (but simpler) one
3243 Though PEP-215 has been rejected, a similar (but simpler) one
3232 seems like it will go into Python 2.4, PEP-292 -
3244 seems like it will go into Python 2.4, PEP-292 -
3233 http://www.python.org/peps/pep-0292.html.
3245 http://www.python.org/peps/pep-0292.html.
3234
3246
3235 I'll keep the full syntax of PEP-215, since IPython has since the
3247 I'll keep the full syntax of PEP-215, since IPython has since the
3236 start used Ka-Ping Yee's reference implementation discussed there
3248 start used Ka-Ping Yee's reference implementation discussed there
3237 (Itpl), and I actually like the powerful semantics it offers.
3249 (Itpl), and I actually like the powerful semantics it offers.
3238
3250
3239 In order to access normal shell variables, the $ has to be escaped
3251 In order to access normal shell variables, the $ has to be escaped
3240 via an extra $. For example:
3252 via an extra $. For example:
3241
3253
3242 In [7]: PATH='a python variable'
3254 In [7]: PATH='a python variable'
3243
3255
3244 In [8]: !echo $PATH
3256 In [8]: !echo $PATH
3245 a python variable
3257 a python variable
3246
3258
3247 In [9]: !echo $$PATH
3259 In [9]: !echo $$PATH
3248 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
3260 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
3249
3261
3250 (Magic.parse_options): escape $ so the shell doesn't evaluate
3262 (Magic.parse_options): escape $ so the shell doesn't evaluate
3251 things prematurely.
3263 things prematurely.
3252
3264
3253 * IPython/iplib.py (InteractiveShell.call_alias): added the
3265 * IPython/iplib.py (InteractiveShell.call_alias): added the
3254 ability for aliases to expand python variables via $.
3266 ability for aliases to expand python variables via $.
3255
3267
3256 * IPython/Magic.py (Magic.magic_rehash): based on the new alias
3268 * IPython/Magic.py (Magic.magic_rehash): based on the new alias
3257 system, now there's a @rehash/@rehashx pair of magics. These work
3269 system, now there's a @rehash/@rehashx pair of magics. These work
3258 like the csh rehash command, and can be invoked at any time. They
3270 like the csh rehash command, and can be invoked at any time. They
3259 build a table of aliases to everything in the user's $PATH
3271 build a table of aliases to everything in the user's $PATH
3260 (@rehash uses everything, @rehashx is slower but only adds
3272 (@rehash uses everything, @rehashx is slower but only adds
3261 executable files). With this, the pysh.py-based shell profile can
3273 executable files). With this, the pysh.py-based shell profile can
3262 now simply call rehash upon startup, and full access to all
3274 now simply call rehash upon startup, and full access to all
3263 programs in the user's path is obtained.
3275 programs in the user's path is obtained.
3264
3276
3265 * IPython/iplib.py (InteractiveShell.call_alias): The new alias
3277 * IPython/iplib.py (InteractiveShell.call_alias): The new alias
3266 functionality is now fully in place. I removed the old dynamic
3278 functionality is now fully in place. I removed the old dynamic
3267 code generation based approach, in favor of a much lighter one
3279 code generation based approach, in favor of a much lighter one
3268 based on a simple dict. The advantage is that this allows me to
3280 based on a simple dict. The advantage is that this allows me to
3269 now have thousands of aliases with negligible cost (unthinkable
3281 now have thousands of aliases with negligible cost (unthinkable
3270 with the old system).
3282 with the old system).
3271
3283
3272 2004-06-19 Fernando Perez <fperez@colorado.edu>
3284 2004-06-19 Fernando Perez <fperez@colorado.edu>
3273
3285
3274 * IPython/iplib.py (__init__): extended MagicCompleter class to
3286 * IPython/iplib.py (__init__): extended MagicCompleter class to
3275 also complete (last in priority) on user aliases.
3287 also complete (last in priority) on user aliases.
3276
3288
3277 * IPython/Itpl.py (Itpl.__str__): fixed order of globals/locals in
3289 * IPython/Itpl.py (Itpl.__str__): fixed order of globals/locals in
3278 call to eval.
3290 call to eval.
3279 (ItplNS.__init__): Added a new class which functions like Itpl,
3291 (ItplNS.__init__): Added a new class which functions like Itpl,
3280 but allows configuring the namespace for the evaluation to occur
3292 but allows configuring the namespace for the evaluation to occur
3281 in.
3293 in.
3282
3294
3283 2004-06-18 Fernando Perez <fperez@colorado.edu>
3295 2004-06-18 Fernando Perez <fperez@colorado.edu>
3284
3296
3285 * IPython/iplib.py (InteractiveShell.runcode): modify to print a
3297 * IPython/iplib.py (InteractiveShell.runcode): modify to print a
3286 better message when 'exit' or 'quit' are typed (a common newbie
3298 better message when 'exit' or 'quit' are typed (a common newbie
3287 confusion).
3299 confusion).
3288
3300
3289 * IPython/Magic.py (Magic.magic_colors): Added the runtime color
3301 * IPython/Magic.py (Magic.magic_colors): Added the runtime color
3290 check for Windows users.
3302 check for Windows users.
3291
3303
3292 * IPython/iplib.py (InteractiveShell.user_setup): removed
3304 * IPython/iplib.py (InteractiveShell.user_setup): removed
3293 disabling of colors for Windows. I'll test at runtime and issue a
3305 disabling of colors for Windows. I'll test at runtime and issue a
3294 warning if Gary's readline isn't found, as to nudge users to
3306 warning if Gary's readline isn't found, as to nudge users to
3295 download it.
3307 download it.
3296
3308
3297 2004-06-16 Fernando Perez <fperez@colorado.edu>
3309 2004-06-16 Fernando Perez <fperez@colorado.edu>
3298
3310
3299 * IPython/genutils.py (Stream.__init__): changed to print errors
3311 * IPython/genutils.py (Stream.__init__): changed to print errors
3300 to sys.stderr. I had a circular dependency here. Now it's
3312 to sys.stderr. I had a circular dependency here. Now it's
3301 possible to run ipython as IDLE's shell (consider this pre-alpha,
3313 possible to run ipython as IDLE's shell (consider this pre-alpha,
3302 since true stdout things end up in the starting terminal instead
3314 since true stdout things end up in the starting terminal instead
3303 of IDLE's out).
3315 of IDLE's out).
3304
3316
3305 * IPython/Prompts.py (Prompt2.set_colors): prevent crashes for
3317 * IPython/Prompts.py (Prompt2.set_colors): prevent crashes for
3306 users who haven't # updated their prompt_in2 definitions. Remove
3318 users who haven't # updated their prompt_in2 definitions. Remove
3307 eventually.
3319 eventually.
3308 (multiple_replace): added credit to original ASPN recipe.
3320 (multiple_replace): added credit to original ASPN recipe.
3309
3321
3310 2004-06-15 Fernando Perez <fperez@colorado.edu>
3322 2004-06-15 Fernando Perez <fperez@colorado.edu>
3311
3323
3312 * IPython/iplib.py (InteractiveShell.__init__): add 'cp' to the
3324 * IPython/iplib.py (InteractiveShell.__init__): add 'cp' to the
3313 list of auto-defined aliases.
3325 list of auto-defined aliases.
3314
3326
3315 2004-06-13 Fernando Perez <fperez@colorado.edu>
3327 2004-06-13 Fernando Perez <fperez@colorado.edu>
3316
3328
3317 * setup.py (scriptfiles): Don't trigger win_post_install unless an
3329 * setup.py (scriptfiles): Don't trigger win_post_install unless an
3318 install was really requested (so setup.py can be used for other
3330 install was really requested (so setup.py can be used for other
3319 things under Windows).
3331 things under Windows).
3320
3332
3321 2004-06-10 Fernando Perez <fperez@colorado.edu>
3333 2004-06-10 Fernando Perez <fperez@colorado.edu>
3322
3334
3323 * IPython/Logger.py (Logger.create_log): Manually remove any old
3335 * IPython/Logger.py (Logger.create_log): Manually remove any old
3324 backup, since os.remove may fail under Windows. Fixes bug
3336 backup, since os.remove may fail under Windows. Fixes bug
3325 reported by Thorsten.
3337 reported by Thorsten.
3326
3338
3327 2004-06-09 Fernando Perez <fperez@colorado.edu>
3339 2004-06-09 Fernando Perez <fperez@colorado.edu>
3328
3340
3329 * examples/example-embed.py: fixed all references to %n (replaced
3341 * examples/example-embed.py: fixed all references to %n (replaced
3330 with \\# for ps1/out prompts and with \\D for ps2 prompts). Done
3342 with \\# for ps1/out prompts and with \\D for ps2 prompts). Done
3331 for all examples and the manual as well.
3343 for all examples and the manual as well.
3332
3344
3333 2004-06-08 Fernando Perez <fperez@colorado.edu>
3345 2004-06-08 Fernando Perez <fperez@colorado.edu>
3334
3346
3335 * IPython/Prompts.py (Prompt2.set_p_str): fixed all prompt
3347 * IPython/Prompts.py (Prompt2.set_p_str): fixed all prompt
3336 alignment and color management. All 3 prompt subsystems now
3348 alignment and color management. All 3 prompt subsystems now
3337 inherit from BasePrompt.
3349 inherit from BasePrompt.
3338
3350
3339 * tools/release: updates for windows installer build and tag rpms
3351 * tools/release: updates for windows installer build and tag rpms
3340 with python version (since paths are fixed).
3352 with python version (since paths are fixed).
3341
3353
3342 * IPython/UserConfig/ipythonrc: modified to use \# instead of %n,
3354 * IPython/UserConfig/ipythonrc: modified to use \# instead of %n,
3343 which will become eventually obsolete. Also fixed the default
3355 which will become eventually obsolete. Also fixed the default
3344 prompt_in2 to use \D, so at least new users start with the correct
3356 prompt_in2 to use \D, so at least new users start with the correct
3345 defaults.
3357 defaults.
3346 WARNING: Users with existing ipythonrc files will need to apply
3358 WARNING: Users with existing ipythonrc files will need to apply
3347 this fix manually!
3359 this fix manually!
3348
3360
3349 * setup.py: make windows installer (.exe). This is finally the
3361 * setup.py: make windows installer (.exe). This is finally the
3350 integration of an old patch by Cory Dodt <dodt-AT-fcoe.k12.ca.us>,
3362 integration of an old patch by Cory Dodt <dodt-AT-fcoe.k12.ca.us>,
3351 which I hadn't included because it required Python 2.3 (or recent
3363 which I hadn't included because it required Python 2.3 (or recent
3352 distutils).
3364 distutils).
3353
3365
3354 * IPython/usage.py (__doc__): update docs (and manpage) to reflect
3366 * IPython/usage.py (__doc__): update docs (and manpage) to reflect
3355 usage of new '\D' escape.
3367 usage of new '\D' escape.
3356
3368
3357 * IPython/Prompts.py (ROOT_SYMBOL): Small fix for Windows (which
3369 * IPython/Prompts.py (ROOT_SYMBOL): Small fix for Windows (which
3358 lacks os.getuid())
3370 lacks os.getuid())
3359 (CachedOutput.set_colors): Added the ability to turn coloring
3371 (CachedOutput.set_colors): Added the ability to turn coloring
3360 on/off with @colors even for manually defined prompt colors. It
3372 on/off with @colors even for manually defined prompt colors. It
3361 uses a nasty global, but it works safely and via the generic color
3373 uses a nasty global, but it works safely and via the generic color
3362 handling mechanism.
3374 handling mechanism.
3363 (Prompt2.__init__): Introduced new escape '\D' for continuation
3375 (Prompt2.__init__): Introduced new escape '\D' for continuation
3364 prompts. It represents the counter ('\#') as dots.
3376 prompts. It represents the counter ('\#') as dots.
3365 *** NOTE *** THIS IS A BACKWARDS-INCOMPATIBLE CHANGE. Users will
3377 *** NOTE *** THIS IS A BACKWARDS-INCOMPATIBLE CHANGE. Users will
3366 need to update their ipythonrc files and replace '%n' with '\D' in
3378 need to update their ipythonrc files and replace '%n' with '\D' in
3367 their prompt_in2 settings everywhere. Sorry, but there's
3379 their prompt_in2 settings everywhere. Sorry, but there's
3368 otherwise no clean way to get all prompts to properly align. The
3380 otherwise no clean way to get all prompts to properly align. The
3369 ipythonrc shipped with IPython has been updated.
3381 ipythonrc shipped with IPython has been updated.
3370
3382
3371 2004-06-07 Fernando Perez <fperez@colorado.edu>
3383 2004-06-07 Fernando Perez <fperez@colorado.edu>
3372
3384
3373 * setup.py (isfile): Pass local_icons option to latex2html, so the
3385 * setup.py (isfile): Pass local_icons option to latex2html, so the
3374 resulting HTML file is self-contained. Thanks to
3386 resulting HTML file is self-contained. Thanks to
3375 dryice-AT-liu.com.cn for the tip.
3387 dryice-AT-liu.com.cn for the tip.
3376
3388
3377 * pysh.py: I created a new profile 'shell', which implements a
3389 * pysh.py: I created a new profile 'shell', which implements a
3378 _rudimentary_ IPython-based shell. This is in NO WAY a realy
3390 _rudimentary_ IPython-based shell. This is in NO WAY a realy
3379 system shell, nor will it become one anytime soon. It's mainly
3391 system shell, nor will it become one anytime soon. It's mainly
3380 meant to illustrate the use of the new flexible bash-like prompts.
3392 meant to illustrate the use of the new flexible bash-like prompts.
3381 I guess it could be used by hardy souls for true shell management,
3393 I guess it could be used by hardy souls for true shell management,
3382 but it's no tcsh/bash... pysh.py is loaded by the 'shell'
3394 but it's no tcsh/bash... pysh.py is loaded by the 'shell'
3383 profile. This uses the InterpreterExec extension provided by
3395 profile. This uses the InterpreterExec extension provided by
3384 W.J. van der Laan <gnufnork-AT-hetdigitalegat.nl>
3396 W.J. van der Laan <gnufnork-AT-hetdigitalegat.nl>
3385
3397
3386 * IPython/Prompts.py (PromptOut.__str__): now it will correctly
3398 * IPython/Prompts.py (PromptOut.__str__): now it will correctly
3387 auto-align itself with the length of the previous input prompt
3399 auto-align itself with the length of the previous input prompt
3388 (taking into account the invisible color escapes).
3400 (taking into account the invisible color escapes).
3389 (CachedOutput.__init__): Large restructuring of this class. Now
3401 (CachedOutput.__init__): Large restructuring of this class. Now
3390 all three prompts (primary1, primary2, output) are proper objects,
3402 all three prompts (primary1, primary2, output) are proper objects,
3391 managed by the 'parent' CachedOutput class. The code is still a
3403 managed by the 'parent' CachedOutput class. The code is still a
3392 bit hackish (all prompts share state via a pointer to the cache),
3404 bit hackish (all prompts share state via a pointer to the cache),
3393 but it's overall far cleaner than before.
3405 but it's overall far cleaner than before.
3394
3406
3395 * IPython/genutils.py (getoutputerror): modified to add verbose,
3407 * IPython/genutils.py (getoutputerror): modified to add verbose,
3396 debug and header options. This makes the interface of all getout*
3408 debug and header options. This makes the interface of all getout*
3397 functions uniform.
3409 functions uniform.
3398 (SystemExec.getoutputerror): added getoutputerror to SystemExec.
3410 (SystemExec.getoutputerror): added getoutputerror to SystemExec.
3399
3411
3400 * IPython/Magic.py (Magic.default_option): added a function to
3412 * IPython/Magic.py (Magic.default_option): added a function to
3401 allow registering default options for any magic command. This
3413 allow registering default options for any magic command. This
3402 makes it easy to have profiles which customize the magics globally
3414 makes it easy to have profiles which customize the magics globally
3403 for a certain use. The values set through this function are
3415 for a certain use. The values set through this function are
3404 picked up by the parse_options() method, which all magics should
3416 picked up by the parse_options() method, which all magics should
3405 use to parse their options.
3417 use to parse their options.
3406
3418
3407 * IPython/genutils.py (warn): modified the warnings framework to
3419 * IPython/genutils.py (warn): modified the warnings framework to
3408 use the Term I/O class. I'm trying to slowly unify all of
3420 use the Term I/O class. I'm trying to slowly unify all of
3409 IPython's I/O operations to pass through Term.
3421 IPython's I/O operations to pass through Term.
3410
3422
3411 * IPython/Prompts.py (Prompt2._str_other): Added functionality in
3423 * IPython/Prompts.py (Prompt2._str_other): Added functionality in
3412 the secondary prompt to correctly match the length of the primary
3424 the secondary prompt to correctly match the length of the primary
3413 one for any prompt. Now multi-line code will properly line up
3425 one for any prompt. Now multi-line code will properly line up
3414 even for path dependent prompts, such as the new ones available
3426 even for path dependent prompts, such as the new ones available
3415 via the prompt_specials.
3427 via the prompt_specials.
3416
3428
3417 2004-06-06 Fernando Perez <fperez@colorado.edu>
3429 2004-06-06 Fernando Perez <fperez@colorado.edu>
3418
3430
3419 * IPython/Prompts.py (prompt_specials): Added the ability to have
3431 * IPython/Prompts.py (prompt_specials): Added the ability to have
3420 bash-like special sequences in the prompts, which get
3432 bash-like special sequences in the prompts, which get
3421 automatically expanded. Things like hostname, current working
3433 automatically expanded. Things like hostname, current working
3422 directory and username are implemented already, but it's easy to
3434 directory and username are implemented already, but it's easy to
3423 add more in the future. Thanks to a patch by W.J. van der Laan
3435 add more in the future. Thanks to a patch by W.J. van der Laan
3424 <gnufnork-AT-hetdigitalegat.nl>
3436 <gnufnork-AT-hetdigitalegat.nl>
3425 (prompt_specials): Added color support for prompt strings, so
3437 (prompt_specials): Added color support for prompt strings, so
3426 users can define arbitrary color setups for their prompts.
3438 users can define arbitrary color setups for their prompts.
3427
3439
3428 2004-06-05 Fernando Perez <fperez@colorado.edu>
3440 2004-06-05 Fernando Perez <fperez@colorado.edu>
3429
3441
3430 * IPython/genutils.py (Term.reopen_all): Added Windows-specific
3442 * IPython/genutils.py (Term.reopen_all): Added Windows-specific
3431 code to load Gary Bishop's readline and configure it
3443 code to load Gary Bishop's readline and configure it
3432 automatically. Thanks to Gary for help on this.
3444 automatically. Thanks to Gary for help on this.
3433
3445
3434 2004-06-01 Fernando Perez <fperez@colorado.edu>
3446 2004-06-01 Fernando Perez <fperez@colorado.edu>
3435
3447
3436 * IPython/Logger.py (Logger.create_log): fix bug for logging
3448 * IPython/Logger.py (Logger.create_log): fix bug for logging
3437 with no filename (previous fix was incomplete).
3449 with no filename (previous fix was incomplete).
3438
3450
3439 2004-05-25 Fernando Perez <fperez@colorado.edu>
3451 2004-05-25 Fernando Perez <fperez@colorado.edu>
3440
3452
3441 * IPython/Magic.py (Magic.parse_options): fix bug where naked
3453 * IPython/Magic.py (Magic.parse_options): fix bug where naked
3442 parens would get passed to the shell.
3454 parens would get passed to the shell.
3443
3455
3444 2004-05-20 Fernando Perez <fperez@colorado.edu>
3456 2004-05-20 Fernando Perez <fperez@colorado.edu>
3445
3457
3446 * IPython/Magic.py (Magic.magic_prun): changed default profile
3458 * IPython/Magic.py (Magic.magic_prun): changed default profile
3447 sort order to 'time' (the more common profiling need).
3459 sort order to 'time' (the more common profiling need).
3448
3460
3449 * IPython/OInspect.py (Inspector.pinfo): flush the inspect cache
3461 * IPython/OInspect.py (Inspector.pinfo): flush the inspect cache
3450 so that source code shown is guaranteed in sync with the file on
3462 so that source code shown is guaranteed in sync with the file on
3451 disk (also changed in psource). Similar fix to the one for
3463 disk (also changed in psource). Similar fix to the one for
3452 ultraTB on 2004-05-06. Thanks to a bug report by Yann Le Du
3464 ultraTB on 2004-05-06. Thanks to a bug report by Yann Le Du
3453 <yann.ledu-AT-noos.fr>.
3465 <yann.ledu-AT-noos.fr>.
3454
3466
3455 * IPython/Magic.py (Magic.parse_options): Fixed bug where commands
3467 * IPython/Magic.py (Magic.parse_options): Fixed bug where commands
3456 with a single option would not be correctly parsed. Closes
3468 with a single option would not be correctly parsed. Closes
3457 http://www.scipy.net/roundup/ipython/issue14. This bug had been
3469 http://www.scipy.net/roundup/ipython/issue14. This bug had been
3458 introduced in 0.6.0 (on 2004-05-06).
3470 introduced in 0.6.0 (on 2004-05-06).
3459
3471
3460 2004-05-13 *** Released version 0.6.0
3472 2004-05-13 *** Released version 0.6.0
3461
3473
3462 2004-05-13 Fernando Perez <fperez@colorado.edu>
3474 2004-05-13 Fernando Perez <fperez@colorado.edu>
3463
3475
3464 * debian/: Added debian/ directory to CVS, so that debian support
3476 * debian/: Added debian/ directory to CVS, so that debian support
3465 is publicly accessible. The debian package is maintained by Jack
3477 is publicly accessible. The debian package is maintained by Jack
3466 Moffit <jack-AT-xiph.org>.
3478 Moffit <jack-AT-xiph.org>.
3467
3479
3468 * Documentation: included the notes about an ipython-based system
3480 * Documentation: included the notes about an ipython-based system
3469 shell (the hypothetical 'pysh') into the new_design.pdf document,
3481 shell (the hypothetical 'pysh') into the new_design.pdf document,
3470 so that these ideas get distributed to users along with the
3482 so that these ideas get distributed to users along with the
3471 official documentation.
3483 official documentation.
3472
3484
3473 2004-05-10 Fernando Perez <fperez@colorado.edu>
3485 2004-05-10 Fernando Perez <fperez@colorado.edu>
3474
3486
3475 * IPython/Logger.py (Logger.create_log): fix recently introduced
3487 * IPython/Logger.py (Logger.create_log): fix recently introduced
3476 bug (misindented line) where logstart would fail when not given an
3488 bug (misindented line) where logstart would fail when not given an
3477 explicit filename.
3489 explicit filename.
3478
3490
3479 2004-05-09 Fernando Perez <fperez@colorado.edu>
3491 2004-05-09 Fernando Perez <fperez@colorado.edu>
3480
3492
3481 * IPython/Magic.py (Magic.parse_options): skip system call when
3493 * IPython/Magic.py (Magic.parse_options): skip system call when
3482 there are no options to look for. Faster, cleaner for the common
3494 there are no options to look for. Faster, cleaner for the common
3483 case.
3495 case.
3484
3496
3485 * Documentation: many updates to the manual: describing Windows
3497 * Documentation: many updates to the manual: describing Windows
3486 support better, Gnuplot updates, credits, misc small stuff. Also
3498 support better, Gnuplot updates, credits, misc small stuff. Also
3487 updated the new_design doc a bit.
3499 updated the new_design doc a bit.
3488
3500
3489 2004-05-06 *** Released version 0.6.0.rc1
3501 2004-05-06 *** Released version 0.6.0.rc1
3490
3502
3491 2004-05-06 Fernando Perez <fperez@colorado.edu>
3503 2004-05-06 Fernando Perez <fperez@colorado.edu>
3492
3504
3493 * IPython/ultraTB.py (ListTB.text): modified a ton of string +=
3505 * IPython/ultraTB.py (ListTB.text): modified a ton of string +=
3494 operations to use the vastly more efficient list/''.join() method.
3506 operations to use the vastly more efficient list/''.join() method.
3495 (FormattedTB.text): Fix
3507 (FormattedTB.text): Fix
3496 http://www.scipy.net/roundup/ipython/issue12 - exception source
3508 http://www.scipy.net/roundup/ipython/issue12 - exception source
3497 extract not updated after reload. Thanks to Mike Salib
3509 extract not updated after reload. Thanks to Mike Salib
3498 <msalib-AT-mit.edu> for pinning the source of the problem.
3510 <msalib-AT-mit.edu> for pinning the source of the problem.
3499 Fortunately, the solution works inside ipython and doesn't require
3511 Fortunately, the solution works inside ipython and doesn't require
3500 any changes to python proper.
3512 any changes to python proper.
3501
3513
3502 * IPython/Magic.py (Magic.parse_options): Improved to process the
3514 * IPython/Magic.py (Magic.parse_options): Improved to process the
3503 argument list as a true shell would (by actually using the
3515 argument list as a true shell would (by actually using the
3504 underlying system shell). This way, all @magics automatically get
3516 underlying system shell). This way, all @magics automatically get
3505 shell expansion for variables. Thanks to a comment by Alex
3517 shell expansion for variables. Thanks to a comment by Alex
3506 Schmolck.
3518 Schmolck.
3507
3519
3508 2004-04-04 Fernando Perez <fperez@colorado.edu>
3520 2004-04-04 Fernando Perez <fperez@colorado.edu>
3509
3521
3510 * IPython/iplib.py (InteractiveShell.interact): Added a special
3522 * IPython/iplib.py (InteractiveShell.interact): Added a special
3511 trap for a debugger quit exception, which is basically impossible
3523 trap for a debugger quit exception, which is basically impossible
3512 to handle by normal mechanisms, given what pdb does to the stack.
3524 to handle by normal mechanisms, given what pdb does to the stack.
3513 This fixes a crash reported by <fgibbons-AT-llama.med.harvard.edu>.
3525 This fixes a crash reported by <fgibbons-AT-llama.med.harvard.edu>.
3514
3526
3515 2004-04-03 Fernando Perez <fperez@colorado.edu>
3527 2004-04-03 Fernando Perez <fperez@colorado.edu>
3516
3528
3517 * IPython/genutils.py (Term): Standardized the names of the Term
3529 * IPython/genutils.py (Term): Standardized the names of the Term
3518 class streams to cin/cout/cerr, following C++ naming conventions
3530 class streams to cin/cout/cerr, following C++ naming conventions
3519 (I can't use in/out/err because 'in' is not a valid attribute
3531 (I can't use in/out/err because 'in' is not a valid attribute
3520 name).
3532 name).
3521
3533
3522 * IPython/iplib.py (InteractiveShell.interact): don't increment
3534 * IPython/iplib.py (InteractiveShell.interact): don't increment
3523 the prompt if there's no user input. By Daniel 'Dang' Griffith
3535 the prompt if there's no user input. By Daniel 'Dang' Griffith
3524 <pythondev-dang-AT-lazytwinacres.net>, after a suggestion from
3536 <pythondev-dang-AT-lazytwinacres.net>, after a suggestion from
3525 Francois Pinard.
3537 Francois Pinard.
3526
3538
3527 2004-04-02 Fernando Perez <fperez@colorado.edu>
3539 2004-04-02 Fernando Perez <fperez@colorado.edu>
3528
3540
3529 * IPython/genutils.py (Stream.__init__): Modified to survive at
3541 * IPython/genutils.py (Stream.__init__): Modified to survive at
3530 least importing in contexts where stdin/out/err aren't true file
3542 least importing in contexts where stdin/out/err aren't true file
3531 objects, such as PyCrust (they lack fileno() and mode). However,
3543 objects, such as PyCrust (they lack fileno() and mode). However,
3532 the recovery facilities which rely on these things existing will
3544 the recovery facilities which rely on these things existing will
3533 not work.
3545 not work.
3534
3546
3535 2004-04-01 Fernando Perez <fperez@colorado.edu>
3547 2004-04-01 Fernando Perez <fperez@colorado.edu>
3536
3548
3537 * IPython/Magic.py (Magic.magic_sx): modified (as well as @sc) to
3549 * IPython/Magic.py (Magic.magic_sx): modified (as well as @sc) to
3538 use the new getoutputerror() function, so it properly
3550 use the new getoutputerror() function, so it properly
3539 distinguishes stdout/err.
3551 distinguishes stdout/err.
3540
3552
3541 * IPython/genutils.py (getoutputerror): added a function to
3553 * IPython/genutils.py (getoutputerror): added a function to
3542 capture separately the standard output and error of a command.
3554 capture separately the standard output and error of a command.
3543 After a comment from dang on the mailing lists. This code is
3555 After a comment from dang on the mailing lists. This code is
3544 basically a modified version of commands.getstatusoutput(), from
3556 basically a modified version of commands.getstatusoutput(), from
3545 the standard library.
3557 the standard library.
3546
3558
3547 * IPython/iplib.py (InteractiveShell.handle_shell_escape): added
3559 * IPython/iplib.py (InteractiveShell.handle_shell_escape): added
3548 '!!' as a special syntax (shorthand) to access @sx.
3560 '!!' as a special syntax (shorthand) to access @sx.
3549
3561
3550 * IPython/Magic.py (Magic.magic_sx): new magic, to execute a shell
3562 * IPython/Magic.py (Magic.magic_sx): new magic, to execute a shell
3551 command and return its output as a list split on '\n'.
3563 command and return its output as a list split on '\n'.
3552
3564
3553 2004-03-31 Fernando Perez <fperez@colorado.edu>
3565 2004-03-31 Fernando Perez <fperez@colorado.edu>
3554
3566
3555 * IPython/FakeModule.py (FakeModule.__init__): added __nonzero__
3567 * IPython/FakeModule.py (FakeModule.__init__): added __nonzero__
3556 method to dictionaries used as FakeModule instances if they lack
3568 method to dictionaries used as FakeModule instances if they lack
3557 it. At least pydoc in python2.3 breaks for runtime-defined
3569 it. At least pydoc in python2.3 breaks for runtime-defined
3558 functions without this hack. At some point I need to _really_
3570 functions without this hack. At some point I need to _really_
3559 understand what FakeModule is doing, because it's a gross hack.
3571 understand what FakeModule is doing, because it's a gross hack.
3560 But it solves Arnd's problem for now...
3572 But it solves Arnd's problem for now...
3561
3573
3562 2004-02-27 Fernando Perez <fperez@colorado.edu>
3574 2004-02-27 Fernando Perez <fperez@colorado.edu>
3563
3575
3564 * IPython/Logger.py (Logger.create_log): Fix bug where 'rotate'
3576 * IPython/Logger.py (Logger.create_log): Fix bug where 'rotate'
3565 mode would behave erratically. Also increased the number of
3577 mode would behave erratically. Also increased the number of
3566 possible logs in rotate mod to 999. Thanks to Rod Holland
3578 possible logs in rotate mod to 999. Thanks to Rod Holland
3567 <rhh@StructureLABS.com> for the report and fixes.
3579 <rhh@StructureLABS.com> for the report and fixes.
3568
3580
3569 2004-02-26 Fernando Perez <fperez@colorado.edu>
3581 2004-02-26 Fernando Perez <fperez@colorado.edu>
3570
3582
3571 * IPython/genutils.py (page): Check that the curses module really
3583 * IPython/genutils.py (page): Check that the curses module really
3572 has the initscr attribute before trying to use it. For some
3584 has the initscr attribute before trying to use it. For some
3573 reason, the Solaris curses module is missing this. I think this
3585 reason, the Solaris curses module is missing this. I think this
3574 should be considered a Solaris python bug, but I'm not sure.
3586 should be considered a Solaris python bug, but I'm not sure.
3575
3587
3576 2004-01-17 Fernando Perez <fperez@colorado.edu>
3588 2004-01-17 Fernando Perez <fperez@colorado.edu>
3577
3589
3578 * IPython/genutils.py (Stream.__init__): Changes to try to make
3590 * IPython/genutils.py (Stream.__init__): Changes to try to make
3579 ipython robust against stdin/out/err being closed by the user.
3591 ipython robust against stdin/out/err being closed by the user.
3580 This is 'user error' (and blocks a normal python session, at least
3592 This is 'user error' (and blocks a normal python session, at least
3581 the stdout case). However, Ipython should be able to survive such
3593 the stdout case). However, Ipython should be able to survive such
3582 instances of abuse as gracefully as possible. To simplify the
3594 instances of abuse as gracefully as possible. To simplify the
3583 coding and maintain compatibility with Gary Bishop's Term
3595 coding and maintain compatibility with Gary Bishop's Term
3584 contributions, I've made use of classmethods for this. I think
3596 contributions, I've made use of classmethods for this. I think
3585 this introduces a dependency on python 2.2.
3597 this introduces a dependency on python 2.2.
3586
3598
3587 2004-01-13 Fernando Perez <fperez@colorado.edu>
3599 2004-01-13 Fernando Perez <fperez@colorado.edu>
3588
3600
3589 * IPython/numutils.py (exp_safe): simplified the code a bit and
3601 * IPython/numutils.py (exp_safe): simplified the code a bit and
3590 removed the need for importing the kinds module altogether.
3602 removed the need for importing the kinds module altogether.
3591
3603
3592 2004-01-06 Fernando Perez <fperez@colorado.edu>
3604 2004-01-06 Fernando Perez <fperez@colorado.edu>
3593
3605
3594 * IPython/Magic.py (Magic.magic_sc): Made the shell capture system
3606 * IPython/Magic.py (Magic.magic_sc): Made the shell capture system
3595 a magic function instead, after some community feedback. No
3607 a magic function instead, after some community feedback. No
3596 special syntax will exist for it, but its name is deliberately
3608 special syntax will exist for it, but its name is deliberately
3597 very short.
3609 very short.
3598
3610
3599 2003-12-20 Fernando Perez <fperez@colorado.edu>
3611 2003-12-20 Fernando Perez <fperez@colorado.edu>
3600
3612
3601 * IPython/iplib.py (InteractiveShell.handle_shell_assign): Added
3613 * IPython/iplib.py (InteractiveShell.handle_shell_assign): Added
3602 new functionality, to automagically assign the result of a shell
3614 new functionality, to automagically assign the result of a shell
3603 command to a variable. I'll solicit some community feedback on
3615 command to a variable. I'll solicit some community feedback on
3604 this before making it permanent.
3616 this before making it permanent.
3605
3617
3606 * IPython/OInspect.py (Inspector.pinfo): Fix crash when info was
3618 * IPython/OInspect.py (Inspector.pinfo): Fix crash when info was
3607 requested about callables for which inspect couldn't obtain a
3619 requested about callables for which inspect couldn't obtain a
3608 proper argspec. Thanks to a crash report sent by Etienne
3620 proper argspec. Thanks to a crash report sent by Etienne
3609 Posthumus <etienne-AT-apple01.cs.vu.nl>.
3621 Posthumus <etienne-AT-apple01.cs.vu.nl>.
3610
3622
3611 2003-12-09 Fernando Perez <fperez@colorado.edu>
3623 2003-12-09 Fernando Perez <fperez@colorado.edu>
3612
3624
3613 * IPython/genutils.py (page): patch for the pager to work across
3625 * IPython/genutils.py (page): patch for the pager to work across
3614 various versions of Windows. By Gary Bishop.
3626 various versions of Windows. By Gary Bishop.
3615
3627
3616 2003-12-04 Fernando Perez <fperez@colorado.edu>
3628 2003-12-04 Fernando Perez <fperez@colorado.edu>
3617
3629
3618 * IPython/Gnuplot2.py (PlotItems): Fixes for working with
3630 * IPython/Gnuplot2.py (PlotItems): Fixes for working with
3619 Gnuplot.py version 1.7, whose internal names changed quite a bit.
3631 Gnuplot.py version 1.7, whose internal names changed quite a bit.
3620 While I tested this and it looks ok, there may still be corner
3632 While I tested this and it looks ok, there may still be corner
3621 cases I've missed.
3633 cases I've missed.
3622
3634
3623 2003-12-01 Fernando Perez <fperez@colorado.edu>
3635 2003-12-01 Fernando Perez <fperez@colorado.edu>
3624
3636
3625 * IPython/iplib.py (InteractiveShell._prefilter): Fixed a bug
3637 * IPython/iplib.py (InteractiveShell._prefilter): Fixed a bug
3626 where a line like 'p,q=1,2' would fail because the automagic
3638 where a line like 'p,q=1,2' would fail because the automagic
3627 system would be triggered for @p.
3639 system would be triggered for @p.
3628
3640
3629 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): Tab-related
3641 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): Tab-related
3630 cleanups, code unmodified.
3642 cleanups, code unmodified.
3631
3643
3632 * IPython/genutils.py (Term): added a class for IPython to handle
3644 * IPython/genutils.py (Term): added a class for IPython to handle
3633 output. In most cases it will just be a proxy for stdout/err, but
3645 output. In most cases it will just be a proxy for stdout/err, but
3634 having this allows modifications to be made for some platforms,
3646 having this allows modifications to be made for some platforms,
3635 such as handling color escapes under Windows. All of this code
3647 such as handling color escapes under Windows. All of this code
3636 was contributed by Gary Bishop, with minor modifications by me.
3648 was contributed by Gary Bishop, with minor modifications by me.
3637 The actual changes affect many files.
3649 The actual changes affect many files.
3638
3650
3639 2003-11-30 Fernando Perez <fperez@colorado.edu>
3651 2003-11-30 Fernando Perez <fperez@colorado.edu>
3640
3652
3641 * IPython/iplib.py (file_matches): new completion code, courtesy
3653 * IPython/iplib.py (file_matches): new completion code, courtesy
3642 of Jeff Collins. This enables filename completion again under
3654 of Jeff Collins. This enables filename completion again under
3643 python 2.3, which disabled it at the C level.
3655 python 2.3, which disabled it at the C level.
3644
3656
3645 2003-11-11 Fernando Perez <fperez@colorado.edu>
3657 2003-11-11 Fernando Perez <fperez@colorado.edu>
3646
3658
3647 * IPython/numutils.py (amap): Added amap() fn. Simple shorthand
3659 * IPython/numutils.py (amap): Added amap() fn. Simple shorthand
3648 for Numeric.array(map(...)), but often convenient.
3660 for Numeric.array(map(...)), but often convenient.
3649
3661
3650 2003-11-05 Fernando Perez <fperez@colorado.edu>
3662 2003-11-05 Fernando Perez <fperez@colorado.edu>
3651
3663
3652 * IPython/numutils.py (frange): Changed a call from int() to
3664 * IPython/numutils.py (frange): Changed a call from int() to
3653 int(round()) to prevent a problem reported with arange() in the
3665 int(round()) to prevent a problem reported with arange() in the
3654 numpy list.
3666 numpy list.
3655
3667
3656 2003-10-06 Fernando Perez <fperez@colorado.edu>
3668 2003-10-06 Fernando Perez <fperez@colorado.edu>
3657
3669
3658 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): changed to
3670 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): changed to
3659 prevent crashes if sys lacks an argv attribute (it happens with
3671 prevent crashes if sys lacks an argv attribute (it happens with
3660 embedded interpreters which build a bare-bones sys module).
3672 embedded interpreters which build a bare-bones sys module).
3661 Thanks to a report/bugfix by Adam Hupp <hupp-AT-cs.wisc.edu>.
3673 Thanks to a report/bugfix by Adam Hupp <hupp-AT-cs.wisc.edu>.
3662
3674
3663 2003-09-24 Fernando Perez <fperez@colorado.edu>
3675 2003-09-24 Fernando Perez <fperez@colorado.edu>
3664
3676
3665 * IPython/Magic.py (Magic._ofind): blanket except around getattr()
3677 * IPython/Magic.py (Magic._ofind): blanket except around getattr()
3666 to protect against poorly written user objects where __getattr__
3678 to protect against poorly written user objects where __getattr__
3667 raises exceptions other than AttributeError. Thanks to a bug
3679 raises exceptions other than AttributeError. Thanks to a bug
3668 report by Oliver Sander <osander-AT-gmx.de>.
3680 report by Oliver Sander <osander-AT-gmx.de>.
3669
3681
3670 * IPython/FakeModule.py (FakeModule.__repr__): this method was
3682 * IPython/FakeModule.py (FakeModule.__repr__): this method was
3671 missing. Thanks to bug report by Ralf Schmitt <ralf-AT-brainbot.com>.
3683 missing. Thanks to bug report by Ralf Schmitt <ralf-AT-brainbot.com>.
3672
3684
3673 2003-09-09 Fernando Perez <fperez@colorado.edu>
3685 2003-09-09 Fernando Perez <fperez@colorado.edu>
3674
3686
3675 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3687 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3676 unpacking a list whith a callable as first element would
3688 unpacking a list whith a callable as first element would
3677 mistakenly trigger autocalling. Thanks to a bug report by Jeffery
3689 mistakenly trigger autocalling. Thanks to a bug report by Jeffery
3678 Collins.
3690 Collins.
3679
3691
3680 2003-08-25 *** Released version 0.5.0
3692 2003-08-25 *** Released version 0.5.0
3681
3693
3682 2003-08-22 Fernando Perez <fperez@colorado.edu>
3694 2003-08-22 Fernando Perez <fperez@colorado.edu>
3683
3695
3684 * IPython/ultraTB.py (VerboseTB.linereader): Improved handling of
3696 * IPython/ultraTB.py (VerboseTB.linereader): Improved handling of
3685 improperly defined user exceptions. Thanks to feedback from Mark
3697 improperly defined user exceptions. Thanks to feedback from Mark
3686 Russell <mrussell-AT-verio.net>.
3698 Russell <mrussell-AT-verio.net>.
3687
3699
3688 2003-08-20 Fernando Perez <fperez@colorado.edu>
3700 2003-08-20 Fernando Perez <fperez@colorado.edu>
3689
3701
3690 * IPython/OInspect.py (Inspector.pinfo): changed String Form
3702 * IPython/OInspect.py (Inspector.pinfo): changed String Form
3691 printing so that it would print multi-line string forms starting
3703 printing so that it would print multi-line string forms starting
3692 with a new line. This way the formatting is better respected for
3704 with a new line. This way the formatting is better respected for
3693 objects which work hard to make nice string forms.
3705 objects which work hard to make nice string forms.
3694
3706
3695 * IPython/iplib.py (InteractiveShell.handle_auto): Fix bug where
3707 * IPython/iplib.py (InteractiveShell.handle_auto): Fix bug where
3696 autocall would overtake data access for objects with both
3708 autocall would overtake data access for objects with both
3697 __getitem__ and __call__.
3709 __getitem__ and __call__.
3698
3710
3699 2003-08-19 *** Released version 0.5.0-rc1
3711 2003-08-19 *** Released version 0.5.0-rc1
3700
3712
3701 2003-08-19 Fernando Perez <fperez@colorado.edu>
3713 2003-08-19 Fernando Perez <fperez@colorado.edu>
3702
3714
3703 * IPython/deep_reload.py (load_tail): single tiny change here
3715 * IPython/deep_reload.py (load_tail): single tiny change here
3704 seems to fix the long-standing bug of dreload() failing to work
3716 seems to fix the long-standing bug of dreload() failing to work
3705 for dotted names. But this module is pretty tricky, so I may have
3717 for dotted names. But this module is pretty tricky, so I may have
3706 missed some subtlety. Needs more testing!.
3718 missed some subtlety. Needs more testing!.
3707
3719
3708 * IPython/ultraTB.py (VerboseTB.linereader): harden against user
3720 * IPython/ultraTB.py (VerboseTB.linereader): harden against user
3709 exceptions which have badly implemented __str__ methods.
3721 exceptions which have badly implemented __str__ methods.
3710 (VerboseTB.text): harden against inspect.getinnerframes crashing,
3722 (VerboseTB.text): harden against inspect.getinnerframes crashing,
3711 which I've been getting reports about from Python 2.3 users. I
3723 which I've been getting reports about from Python 2.3 users. I
3712 wish I had a simple test case to reproduce the problem, so I could
3724 wish I had a simple test case to reproduce the problem, so I could
3713 either write a cleaner workaround or file a bug report if
3725 either write a cleaner workaround or file a bug report if
3714 necessary.
3726 necessary.
3715
3727
3716 * IPython/Magic.py (Magic.magic_edit): fixed bug where after
3728 * IPython/Magic.py (Magic.magic_edit): fixed bug where after
3717 making a class 'foo', file 'foo.py' couldn't be edited. Thanks to
3729 making a class 'foo', file 'foo.py' couldn't be edited. Thanks to
3718 a bug report by Tjabo Kloppenburg.
3730 a bug report by Tjabo Kloppenburg.
3719
3731
3720 * IPython/ultraTB.py (VerboseTB.debugger): hardened against pdb
3732 * IPython/ultraTB.py (VerboseTB.debugger): hardened against pdb
3721 crashes. Wrapped the pdb call in a blanket try/except, since pdb
3733 crashes. Wrapped the pdb call in a blanket try/except, since pdb
3722 seems rather unstable. Thanks to a bug report by Tjabo
3734 seems rather unstable. Thanks to a bug report by Tjabo
3723 Kloppenburg <tjabo.kloppenburg-AT-unix-ag.uni-siegen.de>.
3735 Kloppenburg <tjabo.kloppenburg-AT-unix-ag.uni-siegen.de>.
3724
3736
3725 * IPython/Release.py (version): release 0.5.0-rc1. I want to put
3737 * IPython/Release.py (version): release 0.5.0-rc1. I want to put
3726 this out soon because of the critical fixes in the inner loop for
3738 this out soon because of the critical fixes in the inner loop for
3727 generators.
3739 generators.
3728
3740
3729 * IPython/Magic.py (Magic.getargspec): removed. This (and
3741 * IPython/Magic.py (Magic.getargspec): removed. This (and
3730 _get_def) have been obsoleted by OInspect for a long time, I
3742 _get_def) have been obsoleted by OInspect for a long time, I
3731 hadn't noticed that they were dead code.
3743 hadn't noticed that they were dead code.
3732 (Magic._ofind): restored _ofind functionality for a few literals
3744 (Magic._ofind): restored _ofind functionality for a few literals
3733 (those in ["''",'""','[]','{}','()']). But it won't work anymore
3745 (those in ["''",'""','[]','{}','()']). But it won't work anymore
3734 for things like "hello".capitalize?, since that would require a
3746 for things like "hello".capitalize?, since that would require a
3735 potentially dangerous eval() again.
3747 potentially dangerous eval() again.
3736
3748
3737 * IPython/iplib.py (InteractiveShell._prefilter): reorganized the
3749 * IPython/iplib.py (InteractiveShell._prefilter): reorganized the
3738 logic a bit more to clean up the escapes handling and minimize the
3750 logic a bit more to clean up the escapes handling and minimize the
3739 use of _ofind to only necessary cases. The interactive 'feel' of
3751 use of _ofind to only necessary cases. The interactive 'feel' of
3740 IPython should have improved quite a bit with the changes in
3752 IPython should have improved quite a bit with the changes in
3741 _prefilter and _ofind (besides being far safer than before).
3753 _prefilter and _ofind (besides being far safer than before).
3742
3754
3743 * IPython/Magic.py (Magic.magic_edit): Fixed old bug (but rather
3755 * IPython/Magic.py (Magic.magic_edit): Fixed old bug (but rather
3744 obscure, never reported). Edit would fail to find the object to
3756 obscure, never reported). Edit would fail to find the object to
3745 edit under some circumstances.
3757 edit under some circumstances.
3746 (Magic._ofind): CRITICAL FIX. Finally removed the eval() calls
3758 (Magic._ofind): CRITICAL FIX. Finally removed the eval() calls
3747 which were causing double-calling of generators. Those eval calls
3759 which were causing double-calling of generators. Those eval calls
3748 were _very_ dangerous, since code with side effects could be
3760 were _very_ dangerous, since code with side effects could be
3749 triggered. As they say, 'eval is evil'... These were the
3761 triggered. As they say, 'eval is evil'... These were the
3750 nastiest evals in IPython. Besides, _ofind is now far simpler,
3762 nastiest evals in IPython. Besides, _ofind is now far simpler,
3751 and it should also be quite a bit faster. Its use of inspect is
3763 and it should also be quite a bit faster. Its use of inspect is
3752 also safer, so perhaps some of the inspect-related crashes I've
3764 also safer, so perhaps some of the inspect-related crashes I've
3753 seen lately with Python 2.3 might be taken care of. That will
3765 seen lately with Python 2.3 might be taken care of. That will
3754 need more testing.
3766 need more testing.
3755
3767
3756 2003-08-17 Fernando Perez <fperez@colorado.edu>
3768 2003-08-17 Fernando Perez <fperez@colorado.edu>
3757
3769
3758 * IPython/iplib.py (InteractiveShell._prefilter): significant
3770 * IPython/iplib.py (InteractiveShell._prefilter): significant
3759 simplifications to the logic for handling user escapes. Faster
3771 simplifications to the logic for handling user escapes. Faster
3760 and simpler code.
3772 and simpler code.
3761
3773
3762 2003-08-14 Fernando Perez <fperez@colorado.edu>
3774 2003-08-14 Fernando Perez <fperez@colorado.edu>
3763
3775
3764 * IPython/numutils.py (sum_flat): rewrote to be non-recursive.
3776 * IPython/numutils.py (sum_flat): rewrote to be non-recursive.
3765 Now it requires O(N) storage (N=size(a)) for non-contiguous input,
3777 Now it requires O(N) storage (N=size(a)) for non-contiguous input,
3766 but it should be quite a bit faster. And the recursive version
3778 but it should be quite a bit faster. And the recursive version
3767 generated O(log N) intermediate storage for all rank>1 arrays,
3779 generated O(log N) intermediate storage for all rank>1 arrays,
3768 even if they were contiguous.
3780 even if they were contiguous.
3769 (l1norm): Added this function.
3781 (l1norm): Added this function.
3770 (norm): Added this function for arbitrary norms (including
3782 (norm): Added this function for arbitrary norms (including
3771 l-infinity). l1 and l2 are still special cases for convenience
3783 l-infinity). l1 and l2 are still special cases for convenience
3772 and speed.
3784 and speed.
3773
3785
3774 2003-08-03 Fernando Perez <fperez@colorado.edu>
3786 2003-08-03 Fernando Perez <fperez@colorado.edu>
3775
3787
3776 * IPython/Magic.py (Magic.magic_edit): Removed all remaining string
3788 * IPython/Magic.py (Magic.magic_edit): Removed all remaining string
3777 exceptions, which now raise PendingDeprecationWarnings in Python
3789 exceptions, which now raise PendingDeprecationWarnings in Python
3778 2.3. There were some in Magic and some in Gnuplot2.
3790 2.3. There were some in Magic and some in Gnuplot2.
3779
3791
3780 2003-06-30 Fernando Perez <fperez@colorado.edu>
3792 2003-06-30 Fernando Perez <fperez@colorado.edu>
3781
3793
3782 * IPython/genutils.py (page): modified to call curses only for
3794 * IPython/genutils.py (page): modified to call curses only for
3783 terminals where TERM=='xterm'. After problems under many other
3795 terminals where TERM=='xterm'. After problems under many other
3784 terminals were reported by Keith Beattie <KSBeattie-AT-lbl.gov>.
3796 terminals were reported by Keith Beattie <KSBeattie-AT-lbl.gov>.
3785
3797
3786 * IPython/iplib.py (complete): removed spurious 'print "IE"' which
3798 * IPython/iplib.py (complete): removed spurious 'print "IE"' which
3787 would be triggered when readline was absent. This was just an old
3799 would be triggered when readline was absent. This was just an old
3788 debugging statement I'd forgotten to take out.
3800 debugging statement I'd forgotten to take out.
3789
3801
3790 2003-06-20 Fernando Perez <fperez@colorado.edu>
3802 2003-06-20 Fernando Perez <fperez@colorado.edu>
3791
3803
3792 * IPython/genutils.py (clock): modified to return only user time
3804 * IPython/genutils.py (clock): modified to return only user time
3793 (not counting system time), after a discussion on scipy. While
3805 (not counting system time), after a discussion on scipy. While
3794 system time may be a useful quantity occasionally, it may much
3806 system time may be a useful quantity occasionally, it may much
3795 more easily be skewed by occasional swapping or other similar
3807 more easily be skewed by occasional swapping or other similar
3796 activity.
3808 activity.
3797
3809
3798 2003-06-05 Fernando Perez <fperez@colorado.edu>
3810 2003-06-05 Fernando Perez <fperez@colorado.edu>
3799
3811
3800 * IPython/numutils.py (identity): new function, for building
3812 * IPython/numutils.py (identity): new function, for building
3801 arbitrary rank Kronecker deltas (mostly backwards compatible with
3813 arbitrary rank Kronecker deltas (mostly backwards compatible with
3802 Numeric.identity)
3814 Numeric.identity)
3803
3815
3804 2003-06-03 Fernando Perez <fperez@colorado.edu>
3816 2003-06-03 Fernando Perez <fperez@colorado.edu>
3805
3817
3806 * IPython/iplib.py (InteractiveShell.handle_magic): protect
3818 * IPython/iplib.py (InteractiveShell.handle_magic): protect
3807 arguments passed to magics with spaces, to allow trailing '\' to
3819 arguments passed to magics with spaces, to allow trailing '\' to
3808 work normally (mainly for Windows users).
3820 work normally (mainly for Windows users).
3809
3821
3810 2003-05-29 Fernando Perez <fperez@colorado.edu>
3822 2003-05-29 Fernando Perez <fperez@colorado.edu>
3811
3823
3812 * IPython/ipmaker.py (make_IPython): Load site._Helper() as help
3824 * IPython/ipmaker.py (make_IPython): Load site._Helper() as help
3813 instead of pydoc.help. This fixes a bizarre behavior where
3825 instead of pydoc.help. This fixes a bizarre behavior where
3814 printing '%s' % locals() would trigger the help system. Now
3826 printing '%s' % locals() would trigger the help system. Now
3815 ipython behaves like normal python does.
3827 ipython behaves like normal python does.
3816
3828
3817 Note that if one does 'from pydoc import help', the bizarre
3829 Note that if one does 'from pydoc import help', the bizarre
3818 behavior returns, but this will also happen in normal python, so
3830 behavior returns, but this will also happen in normal python, so
3819 it's not an ipython bug anymore (it has to do with how pydoc.help
3831 it's not an ipython bug anymore (it has to do with how pydoc.help
3820 is implemented).
3832 is implemented).
3821
3833
3822 2003-05-22 Fernando Perez <fperez@colorado.edu>
3834 2003-05-22 Fernando Perez <fperez@colorado.edu>
3823
3835
3824 * IPython/FlexCompleter.py (Completer.attr_matches): fixed to
3836 * IPython/FlexCompleter.py (Completer.attr_matches): fixed to
3825 return [] instead of None when nothing matches, also match to end
3837 return [] instead of None when nothing matches, also match to end
3826 of line. Patch by Gary Bishop.
3838 of line. Patch by Gary Bishop.
3827
3839
3828 * IPython/ipmaker.py (make_IPython): Added same sys.excepthook
3840 * IPython/ipmaker.py (make_IPython): Added same sys.excepthook
3829 protection as before, for files passed on the command line. This
3841 protection as before, for files passed on the command line. This
3830 prevents the CrashHandler from kicking in if user files call into
3842 prevents the CrashHandler from kicking in if user files call into
3831 sys.excepthook (such as PyQt and WxWindows have a nasty habit of
3843 sys.excepthook (such as PyQt and WxWindows have a nasty habit of
3832 doing). After a report by Kasper Souren <Kasper.Souren-AT-ircam.fr>
3844 doing). After a report by Kasper Souren <Kasper.Souren-AT-ircam.fr>
3833
3845
3834 2003-05-20 *** Released version 0.4.0
3846 2003-05-20 *** Released version 0.4.0
3835
3847
3836 2003-05-20 Fernando Perez <fperez@colorado.edu>
3848 2003-05-20 Fernando Perez <fperez@colorado.edu>
3837
3849
3838 * setup.py: added support for manpages. It's a bit hackish b/c of
3850 * setup.py: added support for manpages. It's a bit hackish b/c of
3839 a bug in the way the bdist_rpm distutils target handles gzipped
3851 a bug in the way the bdist_rpm distutils target handles gzipped
3840 manpages, but it works. After a patch by Jack.
3852 manpages, but it works. After a patch by Jack.
3841
3853
3842 2003-05-19 Fernando Perez <fperez@colorado.edu>
3854 2003-05-19 Fernando Perez <fperez@colorado.edu>
3843
3855
3844 * IPython/numutils.py: added a mockup of the kinds module, since
3856 * IPython/numutils.py: added a mockup of the kinds module, since
3845 it was recently removed from Numeric. This way, numutils will
3857 it was recently removed from Numeric. This way, numutils will
3846 work for all users even if they are missing kinds.
3858 work for all users even if they are missing kinds.
3847
3859
3848 * IPython/Magic.py (Magic._ofind): Harden against an inspect
3860 * IPython/Magic.py (Magic._ofind): Harden against an inspect
3849 failure, which can occur with SWIG-wrapped extensions. After a
3861 failure, which can occur with SWIG-wrapped extensions. After a
3850 crash report from Prabhu.
3862 crash report from Prabhu.
3851
3863
3852 2003-05-16 Fernando Perez <fperez@colorado.edu>
3864 2003-05-16 Fernando Perez <fperez@colorado.edu>
3853
3865
3854 * IPython/iplib.py (InteractiveShell.excepthook): New method to
3866 * IPython/iplib.py (InteractiveShell.excepthook): New method to
3855 protect ipython from user code which may call directly
3867 protect ipython from user code which may call directly
3856 sys.excepthook (this looks like an ipython crash to the user, even
3868 sys.excepthook (this looks like an ipython crash to the user, even
3857 when it isn't). After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3869 when it isn't). After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3858 This is especially important to help users of WxWindows, but may
3870 This is especially important to help users of WxWindows, but may
3859 also be useful in other cases.
3871 also be useful in other cases.
3860
3872
3861 * IPython/ultraTB.py (AutoFormattedTB.__call__): Changed to allow
3873 * IPython/ultraTB.py (AutoFormattedTB.__call__): Changed to allow
3862 an optional tb_offset to be specified, and to preserve exception
3874 an optional tb_offset to be specified, and to preserve exception
3863 info if given. After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3875 info if given. After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3864
3876
3865 * ipython.1 (Default): Thanks to Jack's work, we now have manpages!
3877 * ipython.1 (Default): Thanks to Jack's work, we now have manpages!
3866
3878
3867 2003-05-15 Fernando Perez <fperez@colorado.edu>
3879 2003-05-15 Fernando Perez <fperez@colorado.edu>
3868
3880
3869 * IPython/iplib.py (InteractiveShell.user_setup): Fix crash when
3881 * IPython/iplib.py (InteractiveShell.user_setup): Fix crash when
3870 installing for a new user under Windows.
3882 installing for a new user under Windows.
3871
3883
3872 2003-05-12 Fernando Perez <fperez@colorado.edu>
3884 2003-05-12 Fernando Perez <fperez@colorado.edu>
3873
3885
3874 * IPython/iplib.py (InteractiveShell.handle_emacs): New line
3886 * IPython/iplib.py (InteractiveShell.handle_emacs): New line
3875 handler for Emacs comint-based lines. Currently it doesn't do
3887 handler for Emacs comint-based lines. Currently it doesn't do
3876 much (but importantly, it doesn't update the history cache). In
3888 much (but importantly, it doesn't update the history cache). In
3877 the future it may be expanded if Alex needs more functionality
3889 the future it may be expanded if Alex needs more functionality
3878 there.
3890 there.
3879
3891
3880 * IPython/CrashHandler.py (CrashHandler.__call__): Added platform
3892 * IPython/CrashHandler.py (CrashHandler.__call__): Added platform
3881 info to crash reports.
3893 info to crash reports.
3882
3894
3883 * IPython/iplib.py (InteractiveShell.mainloop): Added -c option,
3895 * IPython/iplib.py (InteractiveShell.mainloop): Added -c option,
3884 just like Python's -c. Also fixed crash with invalid -color
3896 just like Python's -c. Also fixed crash with invalid -color
3885 option value at startup. Thanks to Will French
3897 option value at startup. Thanks to Will French
3886 <wfrench-AT-bestweb.net> for the bug report.
3898 <wfrench-AT-bestweb.net> for the bug report.
3887
3899
3888 2003-05-09 Fernando Perez <fperez@colorado.edu>
3900 2003-05-09 Fernando Perez <fperez@colorado.edu>
3889
3901
3890 * IPython/genutils.py (EvalDict.__getitem__): Renamed EvalString
3902 * IPython/genutils.py (EvalDict.__getitem__): Renamed EvalString
3891 to EvalDict (it's a mapping, after all) and simplified its code
3903 to EvalDict (it's a mapping, after all) and simplified its code
3892 quite a bit, after a nice discussion on c.l.py where Gustavo
3904 quite a bit, after a nice discussion on c.l.py where Gustavo
3893 CΓ³rdova <gcordova-AT-sismex.com> suggested the new version.
3905 CΓ³rdova <gcordova-AT-sismex.com> suggested the new version.
3894
3906
3895 2003-04-30 Fernando Perez <fperez@colorado.edu>
3907 2003-04-30 Fernando Perez <fperez@colorado.edu>
3896
3908
3897 * IPython/genutils.py (timings_out): modified it to reduce its
3909 * IPython/genutils.py (timings_out): modified it to reduce its
3898 overhead in the common reps==1 case.
3910 overhead in the common reps==1 case.
3899
3911
3900 2003-04-29 Fernando Perez <fperez@colorado.edu>
3912 2003-04-29 Fernando Perez <fperez@colorado.edu>
3901
3913
3902 * IPython/genutils.py (timings_out): Modified to use the resource
3914 * IPython/genutils.py (timings_out): Modified to use the resource
3903 module, which avoids the wraparound problems of time.clock().
3915 module, which avoids the wraparound problems of time.clock().
3904
3916
3905 2003-04-17 *** Released version 0.2.15pre4
3917 2003-04-17 *** Released version 0.2.15pre4
3906
3918
3907 2003-04-17 Fernando Perez <fperez@colorado.edu>
3919 2003-04-17 Fernando Perez <fperez@colorado.edu>
3908
3920
3909 * setup.py (scriptfiles): Split windows-specific stuff over to a
3921 * setup.py (scriptfiles): Split windows-specific stuff over to a
3910 separate file, in an attempt to have a Windows GUI installer.
3922 separate file, in an attempt to have a Windows GUI installer.
3911 That didn't work, but part of the groundwork is done.
3923 That didn't work, but part of the groundwork is done.
3912
3924
3913 * IPython/UserConfig/ipythonrc: Added M-i, M-o and M-I for
3925 * IPython/UserConfig/ipythonrc: Added M-i, M-o and M-I for
3914 indent/unindent with 4 spaces. Particularly useful in combination
3926 indent/unindent with 4 spaces. Particularly useful in combination
3915 with the new auto-indent option.
3927 with the new auto-indent option.
3916
3928
3917 2003-04-16 Fernando Perez <fperez@colorado.edu>
3929 2003-04-16 Fernando Perez <fperez@colorado.edu>
3918
3930
3919 * IPython/Magic.py: various replacements of self.rc for
3931 * IPython/Magic.py: various replacements of self.rc for
3920 self.shell.rc. A lot more remains to be done to fully disentangle
3932 self.shell.rc. A lot more remains to be done to fully disentangle
3921 this class from the main Shell class.
3933 this class from the main Shell class.
3922
3934
3923 * IPython/GnuplotRuntime.py: added checks for mouse support so
3935 * IPython/GnuplotRuntime.py: added checks for mouse support so
3924 that we don't try to enable it if the current gnuplot doesn't
3936 that we don't try to enable it if the current gnuplot doesn't
3925 really support it. Also added checks so that we don't try to
3937 really support it. Also added checks so that we don't try to
3926 enable persist under Windows (where Gnuplot doesn't recognize the
3938 enable persist under Windows (where Gnuplot doesn't recognize the
3927 option).
3939 option).
3928
3940
3929 * IPython/iplib.py (InteractiveShell.interact): Added optional
3941 * IPython/iplib.py (InteractiveShell.interact): Added optional
3930 auto-indenting code, after a patch by King C. Shu
3942 auto-indenting code, after a patch by King C. Shu
3931 <kingshu-AT-myrealbox.com>. It's off by default because it doesn't
3943 <kingshu-AT-myrealbox.com>. It's off by default because it doesn't
3932 get along well with pasting indented code. If I ever figure out
3944 get along well with pasting indented code. If I ever figure out
3933 how to make that part go well, it will become on by default.
3945 how to make that part go well, it will become on by default.
3934
3946
3935 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixed bug which would
3947 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixed bug which would
3936 crash ipython if there was an unmatched '%' in the user's prompt
3948 crash ipython if there was an unmatched '%' in the user's prompt
3937 string. Reported by Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
3949 string. Reported by Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
3938
3950
3939 * IPython/iplib.py (InteractiveShell.interact): removed the
3951 * IPython/iplib.py (InteractiveShell.interact): removed the
3940 ability to ask the user whether he wants to crash or not at the
3952 ability to ask the user whether he wants to crash or not at the
3941 'last line' exception handler. Calling functions at that point
3953 'last line' exception handler. Calling functions at that point
3942 changes the stack, and the error reports would have incorrect
3954 changes the stack, and the error reports would have incorrect
3943 tracebacks.
3955 tracebacks.
3944
3956
3945 * IPython/Magic.py (Magic.magic_page): Added new @page magic, to
3957 * IPython/Magic.py (Magic.magic_page): Added new @page magic, to
3946 pass through a peger a pretty-printed form of any object. After a
3958 pass through a peger a pretty-printed form of any object. After a
3947 contribution by Olivier Aubert <oaubert-AT-bat710.univ-lyon1.fr>
3959 contribution by Olivier Aubert <oaubert-AT-bat710.univ-lyon1.fr>
3948
3960
3949 2003-04-14 Fernando Perez <fperez@colorado.edu>
3961 2003-04-14 Fernando Perez <fperez@colorado.edu>
3950
3962
3951 * IPython/iplib.py (InteractiveShell.user_setup): Fixed bug where
3963 * IPython/iplib.py (InteractiveShell.user_setup): Fixed bug where
3952 all files in ~ would be modified at first install (instead of
3964 all files in ~ would be modified at first install (instead of
3953 ~/.ipython). This could be potentially disastrous, as the
3965 ~/.ipython). This could be potentially disastrous, as the
3954 modification (make line-endings native) could damage binary files.
3966 modification (make line-endings native) could damage binary files.
3955
3967
3956 2003-04-10 Fernando Perez <fperez@colorado.edu>
3968 2003-04-10 Fernando Perez <fperez@colorado.edu>
3957
3969
3958 * IPython/iplib.py (InteractiveShell.handle_help): Modified to
3970 * IPython/iplib.py (InteractiveShell.handle_help): Modified to
3959 handle only lines which are invalid python. This now means that
3971 handle only lines which are invalid python. This now means that
3960 lines like 'x=1 #?' execute properly. Thanks to Jeffery Collins
3972 lines like 'x=1 #?' execute properly. Thanks to Jeffery Collins
3961 for the bug report.
3973 for the bug report.
3962
3974
3963 2003-04-01 Fernando Perez <fperez@colorado.edu>
3975 2003-04-01 Fernando Perez <fperez@colorado.edu>
3964
3976
3965 * IPython/iplib.py (InteractiveShell.showtraceback): Fixed bug
3977 * IPython/iplib.py (InteractiveShell.showtraceback): Fixed bug
3966 where failing to set sys.last_traceback would crash pdb.pm().
3978 where failing to set sys.last_traceback would crash pdb.pm().
3967 Thanks to Jeffery D. Collins <Jeff.Collins-AT-vexcel.com> for the bug
3979 Thanks to Jeffery D. Collins <Jeff.Collins-AT-vexcel.com> for the bug
3968 report.
3980 report.
3969
3981
3970 2003-03-25 Fernando Perez <fperez@colorado.edu>
3982 2003-03-25 Fernando Perez <fperez@colorado.edu>
3971
3983
3972 * IPython/Magic.py (Magic.magic_prun): rstrip() output of profiler
3984 * IPython/Magic.py (Magic.magic_prun): rstrip() output of profiler
3973 before printing it (it had a lot of spurious blank lines at the
3985 before printing it (it had a lot of spurious blank lines at the
3974 end).
3986 end).
3975
3987
3976 * IPython/Gnuplot2.py (Gnuplot.hardcopy): fixed bug where lpr
3988 * IPython/Gnuplot2.py (Gnuplot.hardcopy): fixed bug where lpr
3977 output would be sent 21 times! Obviously people don't use this
3989 output would be sent 21 times! Obviously people don't use this
3978 too often, or I would have heard about it.
3990 too often, or I would have heard about it.
3979
3991
3980 2003-03-24 Fernando Perez <fperez@colorado.edu>
3992 2003-03-24 Fernando Perez <fperez@colorado.edu>
3981
3993
3982 * setup.py (scriptfiles): renamed the data_files parameter from
3994 * setup.py (scriptfiles): renamed the data_files parameter from
3983 'base' to 'data' to fix rpm build issues. Thanks to Ralf Ahlbrink
3995 'base' to 'data' to fix rpm build issues. Thanks to Ralf Ahlbrink
3984 for the patch.
3996 for the patch.
3985
3997
3986 2003-03-20 Fernando Perez <fperez@colorado.edu>
3998 2003-03-20 Fernando Perez <fperez@colorado.edu>
3987
3999
3988 * IPython/genutils.py (error): added error() and fatal()
4000 * IPython/genutils.py (error): added error() and fatal()
3989 functions.
4001 functions.
3990
4002
3991 2003-03-18 *** Released version 0.2.15pre3
4003 2003-03-18 *** Released version 0.2.15pre3
3992
4004
3993 2003-03-18 Fernando Perez <fperez@colorado.edu>
4005 2003-03-18 Fernando Perez <fperez@colorado.edu>
3994
4006
3995 * setupext/install_data_ext.py
4007 * setupext/install_data_ext.py
3996 (install_data_ext.initialize_options): Class contributed by Jack
4008 (install_data_ext.initialize_options): Class contributed by Jack
3997 Moffit for fixing the old distutils hack. He is sending this to
4009 Moffit for fixing the old distutils hack. He is sending this to
3998 the distutils folks so in the future we may not need it as a
4010 the distutils folks so in the future we may not need it as a
3999 private fix.
4011 private fix.
4000
4012
4001 * MANIFEST.in: Extensive reorganization, based on Jack Moffit's
4013 * MANIFEST.in: Extensive reorganization, based on Jack Moffit's
4002 changes for Debian packaging. See his patch for full details.
4014 changes for Debian packaging. See his patch for full details.
4003 The old distutils hack of making the ipythonrc* files carry a
4015 The old distutils hack of making the ipythonrc* files carry a
4004 bogus .py extension is gone, at last. Examples were moved to a
4016 bogus .py extension is gone, at last. Examples were moved to a
4005 separate subdir under doc/, and the separate executable scripts
4017 separate subdir under doc/, and the separate executable scripts
4006 now live in their own directory. Overall a great cleanup. The
4018 now live in their own directory. Overall a great cleanup. The
4007 manual was updated to use the new files, and setup.py has been
4019 manual was updated to use the new files, and setup.py has been
4008 fixed for this setup.
4020 fixed for this setup.
4009
4021
4010 * IPython/PyColorize.py (Parser.usage): made non-executable and
4022 * IPython/PyColorize.py (Parser.usage): made non-executable and
4011 created a pycolor wrapper around it to be included as a script.
4023 created a pycolor wrapper around it to be included as a script.
4012
4024
4013 2003-03-12 *** Released version 0.2.15pre2
4025 2003-03-12 *** Released version 0.2.15pre2
4014
4026
4015 2003-03-12 Fernando Perez <fperez@colorado.edu>
4027 2003-03-12 Fernando Perez <fperez@colorado.edu>
4016
4028
4017 * IPython/ColorANSI.py (make_color_table): Finally fixed the
4029 * IPython/ColorANSI.py (make_color_table): Finally fixed the
4018 long-standing problem with garbage characters in some terminals.
4030 long-standing problem with garbage characters in some terminals.
4019 The issue was really that the \001 and \002 escapes must _only_ be
4031 The issue was really that the \001 and \002 escapes must _only_ be
4020 passed to input prompts (which call readline), but _never_ to
4032 passed to input prompts (which call readline), but _never_ to
4021 normal text to be printed on screen. I changed ColorANSI to have
4033 normal text to be printed on screen. I changed ColorANSI to have
4022 two classes: TermColors and InputTermColors, each with the
4034 two classes: TermColors and InputTermColors, each with the
4023 appropriate escapes for input prompts or normal text. The code in
4035 appropriate escapes for input prompts or normal text. The code in
4024 Prompts.py got slightly more complicated, but this very old and
4036 Prompts.py got slightly more complicated, but this very old and
4025 annoying bug is finally fixed.
4037 annoying bug is finally fixed.
4026
4038
4027 All the credit for nailing down the real origin of this problem
4039 All the credit for nailing down the real origin of this problem
4028 and the correct solution goes to Jack Moffit <jack-AT-xiph.org>.
4040 and the correct solution goes to Jack Moffit <jack-AT-xiph.org>.
4029 *Many* thanks to him for spending quite a bit of effort on this.
4041 *Many* thanks to him for spending quite a bit of effort on this.
4030
4042
4031 2003-03-05 *** Released version 0.2.15pre1
4043 2003-03-05 *** Released version 0.2.15pre1
4032
4044
4033 2003-03-03 Fernando Perez <fperez@colorado.edu>
4045 2003-03-03 Fernando Perez <fperez@colorado.edu>
4034
4046
4035 * IPython/FakeModule.py: Moved the former _FakeModule to a
4047 * IPython/FakeModule.py: Moved the former _FakeModule to a
4036 separate file, because it's also needed by Magic (to fix a similar
4048 separate file, because it's also needed by Magic (to fix a similar
4037 pickle-related issue in @run).
4049 pickle-related issue in @run).
4038
4050
4039 2003-03-02 Fernando Perez <fperez@colorado.edu>
4051 2003-03-02 Fernando Perez <fperez@colorado.edu>
4040
4052
4041 * IPython/Magic.py (Magic.magic_autocall): new magic to control
4053 * IPython/Magic.py (Magic.magic_autocall): new magic to control
4042 the autocall option at runtime.
4054 the autocall option at runtime.
4043 (Magic.magic_dhist): changed self.user_ns to self.shell.user_ns
4055 (Magic.magic_dhist): changed self.user_ns to self.shell.user_ns
4044 across Magic.py to start separating Magic from InteractiveShell.
4056 across Magic.py to start separating Magic from InteractiveShell.
4045 (Magic._ofind): Fixed to return proper namespace for dotted
4057 (Magic._ofind): Fixed to return proper namespace for dotted
4046 names. Before, a dotted name would always return 'not currently
4058 names. Before, a dotted name would always return 'not currently
4047 defined', because it would find the 'parent'. s.x would be found,
4059 defined', because it would find the 'parent'. s.x would be found,
4048 but since 'x' isn't defined by itself, it would get confused.
4060 but since 'x' isn't defined by itself, it would get confused.
4049 (Magic.magic_run): Fixed pickling problems reported by Ralf
4061 (Magic.magic_run): Fixed pickling problems reported by Ralf
4050 Ahlbrink <RAhlbrink-AT-RosenInspection.net>. The fix was similar to
4062 Ahlbrink <RAhlbrink-AT-RosenInspection.net>. The fix was similar to
4051 that I'd used when Mike Heeter reported similar issues at the
4063 that I'd used when Mike Heeter reported similar issues at the
4052 top-level, but now for @run. It boils down to injecting the
4064 top-level, but now for @run. It boils down to injecting the
4053 namespace where code is being executed with something that looks
4065 namespace where code is being executed with something that looks
4054 enough like a module to fool pickle.dump(). Since a pickle stores
4066 enough like a module to fool pickle.dump(). Since a pickle stores
4055 a named reference to the importing module, we need this for
4067 a named reference to the importing module, we need this for
4056 pickles to save something sensible.
4068 pickles to save something sensible.
4057
4069
4058 * IPython/ipmaker.py (make_IPython): added an autocall option.
4070 * IPython/ipmaker.py (make_IPython): added an autocall option.
4059
4071
4060 * IPython/iplib.py (InteractiveShell._prefilter): reordered all of
4072 * IPython/iplib.py (InteractiveShell._prefilter): reordered all of
4061 the auto-eval code. Now autocalling is an option, and the code is
4073 the auto-eval code. Now autocalling is an option, and the code is
4062 also vastly safer. There is no more eval() involved at all.
4074 also vastly safer. There is no more eval() involved at all.
4063
4075
4064 2003-03-01 Fernando Perez <fperez@colorado.edu>
4076 2003-03-01 Fernando Perez <fperez@colorado.edu>
4065
4077
4066 * IPython/Magic.py (Magic._ofind): Changed interface to return a
4078 * IPython/Magic.py (Magic._ofind): Changed interface to return a
4067 dict with named keys instead of a tuple.
4079 dict with named keys instead of a tuple.
4068
4080
4069 * IPython: Started using CVS for IPython as of 0.2.15pre1.
4081 * IPython: Started using CVS for IPython as of 0.2.15pre1.
4070
4082
4071 * setup.py (make_shortcut): Fixed message about directories
4083 * setup.py (make_shortcut): Fixed message about directories
4072 created during Windows installation (the directories were ok, just
4084 created during Windows installation (the directories were ok, just
4073 the printed message was misleading). Thanks to Chris Liechti
4085 the printed message was misleading). Thanks to Chris Liechti
4074 <cliechti-AT-gmx.net> for the heads up.
4086 <cliechti-AT-gmx.net> for the heads up.
4075
4087
4076 2003-02-21 Fernando Perez <fperez@colorado.edu>
4088 2003-02-21 Fernando Perez <fperez@colorado.edu>
4077
4089
4078 * IPython/iplib.py (InteractiveShell._prefilter): Fixed catching
4090 * IPython/iplib.py (InteractiveShell._prefilter): Fixed catching
4079 of ValueError exception when checking for auto-execution. This
4091 of ValueError exception when checking for auto-execution. This
4080 one is raised by things like Numeric arrays arr.flat when the
4092 one is raised by things like Numeric arrays arr.flat when the
4081 array is non-contiguous.
4093 array is non-contiguous.
4082
4094
4083 2003-01-31 Fernando Perez <fperez@colorado.edu>
4095 2003-01-31 Fernando Perez <fperez@colorado.edu>
4084
4096
4085 * IPython/genutils.py (SystemExec.bq): Fixed bug where bq would
4097 * IPython/genutils.py (SystemExec.bq): Fixed bug where bq would
4086 not return any value at all (even though the command would get
4098 not return any value at all (even though the command would get
4087 executed).
4099 executed).
4088 (xsys): Flush stdout right after printing the command to ensure
4100 (xsys): Flush stdout right after printing the command to ensure
4089 proper ordering of commands and command output in the total
4101 proper ordering of commands and command output in the total
4090 output.
4102 output.
4091 (SystemExec/xsys/bq): Switched the names of xsys/bq and
4103 (SystemExec/xsys/bq): Switched the names of xsys/bq and
4092 system/getoutput as defaults. The old ones are kept for
4104 system/getoutput as defaults. The old ones are kept for
4093 compatibility reasons, so no code which uses this library needs
4105 compatibility reasons, so no code which uses this library needs
4094 changing.
4106 changing.
4095
4107
4096 2003-01-27 *** Released version 0.2.14
4108 2003-01-27 *** Released version 0.2.14
4097
4109
4098 2003-01-25 Fernando Perez <fperez@colorado.edu>
4110 2003-01-25 Fernando Perez <fperez@colorado.edu>
4099
4111
4100 * IPython/Magic.py (Magic.magic_edit): Fixed problem where
4112 * IPython/Magic.py (Magic.magic_edit): Fixed problem where
4101 functions defined in previous edit sessions could not be re-edited
4113 functions defined in previous edit sessions could not be re-edited
4102 (because the temp files were immediately removed). Now temp files
4114 (because the temp files were immediately removed). Now temp files
4103 are removed only at IPython's exit.
4115 are removed only at IPython's exit.
4104 (Magic.magic_run): Improved @run to perform shell-like expansions
4116 (Magic.magic_run): Improved @run to perform shell-like expansions
4105 on its arguments (~users and $VARS). With this, @run becomes more
4117 on its arguments (~users and $VARS). With this, @run becomes more
4106 like a normal command-line.
4118 like a normal command-line.
4107
4119
4108 * IPython/Shell.py (IPShellEmbed.__call__): Fixed a bunch of small
4120 * IPython/Shell.py (IPShellEmbed.__call__): Fixed a bunch of small
4109 bugs related to embedding and cleaned up that code. A fairly
4121 bugs related to embedding and cleaned up that code. A fairly
4110 important one was the impossibility to access the global namespace
4122 important one was the impossibility to access the global namespace
4111 through the embedded IPython (only local variables were visible).
4123 through the embedded IPython (only local variables were visible).
4112
4124
4113 2003-01-14 Fernando Perez <fperez@colorado.edu>
4125 2003-01-14 Fernando Perez <fperez@colorado.edu>
4114
4126
4115 * IPython/iplib.py (InteractiveShell._prefilter): Fixed
4127 * IPython/iplib.py (InteractiveShell._prefilter): Fixed
4116 auto-calling to be a bit more conservative. Now it doesn't get
4128 auto-calling to be a bit more conservative. Now it doesn't get
4117 triggered if any of '!=()<>' are in the rest of the input line, to
4129 triggered if any of '!=()<>' are in the rest of the input line, to
4118 allow comparing callables. Thanks to Alex for the heads up.
4130 allow comparing callables. Thanks to Alex for the heads up.
4119
4131
4120 2003-01-07 Fernando Perez <fperez@colorado.edu>
4132 2003-01-07 Fernando Perez <fperez@colorado.edu>
4121
4133
4122 * IPython/genutils.py (page): fixed estimation of the number of
4134 * IPython/genutils.py (page): fixed estimation of the number of
4123 lines in a string to be paged to simply count newlines. This
4135 lines in a string to be paged to simply count newlines. This
4124 prevents over-guessing due to embedded escape sequences. A better
4136 prevents over-guessing due to embedded escape sequences. A better
4125 long-term solution would involve stripping out the control chars
4137 long-term solution would involve stripping out the control chars
4126 for the count, but it's potentially so expensive I just don't
4138 for the count, but it's potentially so expensive I just don't
4127 think it's worth doing.
4139 think it's worth doing.
4128
4140
4129 2002-12-19 *** Released version 0.2.14pre50
4141 2002-12-19 *** Released version 0.2.14pre50
4130
4142
4131 2002-12-19 Fernando Perez <fperez@colorado.edu>
4143 2002-12-19 Fernando Perez <fperez@colorado.edu>
4132
4144
4133 * tools/release (version): Changed release scripts to inform
4145 * tools/release (version): Changed release scripts to inform
4134 Andrea and build a NEWS file with a list of recent changes.
4146 Andrea and build a NEWS file with a list of recent changes.
4135
4147
4136 * IPython/ColorANSI.py (__all__): changed terminal detection
4148 * IPython/ColorANSI.py (__all__): changed terminal detection
4137 code. Seems to work better for xterms without breaking
4149 code. Seems to work better for xterms without breaking
4138 konsole. Will need more testing to determine if WinXP and Mac OSX
4150 konsole. Will need more testing to determine if WinXP and Mac OSX
4139 also work ok.
4151 also work ok.
4140
4152
4141 2002-12-18 *** Released version 0.2.14pre49
4153 2002-12-18 *** Released version 0.2.14pre49
4142
4154
4143 2002-12-18 Fernando Perez <fperez@colorado.edu>
4155 2002-12-18 Fernando Perez <fperez@colorado.edu>
4144
4156
4145 * Docs: added new info about Mac OSX, from Andrea.
4157 * Docs: added new info about Mac OSX, from Andrea.
4146
4158
4147 * IPython/Gnuplot2.py (String): Added a String PlotItem class to
4159 * IPython/Gnuplot2.py (String): Added a String PlotItem class to
4148 allow direct plotting of python strings whose format is the same
4160 allow direct plotting of python strings whose format is the same
4149 of gnuplot data files.
4161 of gnuplot data files.
4150
4162
4151 2002-12-16 Fernando Perez <fperez@colorado.edu>
4163 2002-12-16 Fernando Perez <fperez@colorado.edu>
4152
4164
4153 * IPython/iplib.py (InteractiveShell.interact): fixed default (y)
4165 * IPython/iplib.py (InteractiveShell.interact): fixed default (y)
4154 value of exit question to be acknowledged.
4166 value of exit question to be acknowledged.
4155
4167
4156 2002-12-03 Fernando Perez <fperez@colorado.edu>
4168 2002-12-03 Fernando Perez <fperez@colorado.edu>
4157
4169
4158 * IPython/ipmaker.py: removed generators, which had been added
4170 * IPython/ipmaker.py: removed generators, which had been added
4159 by mistake in an earlier debugging run. This was causing trouble
4171 by mistake in an earlier debugging run. This was causing trouble
4160 to users of python 2.1.x. Thanks to Abel Daniel <abli-AT-freemail.hu>
4172 to users of python 2.1.x. Thanks to Abel Daniel <abli-AT-freemail.hu>
4161 for pointing this out.
4173 for pointing this out.
4162
4174
4163 2002-11-17 Fernando Perez <fperez@colorado.edu>
4175 2002-11-17 Fernando Perez <fperez@colorado.edu>
4164
4176
4165 * Manual: updated the Gnuplot section.
4177 * Manual: updated the Gnuplot section.
4166
4178
4167 * IPython/GnuplotRuntime.py: refactored a lot all this code, with
4179 * IPython/GnuplotRuntime.py: refactored a lot all this code, with
4168 a much better split of what goes in Runtime and what goes in
4180 a much better split of what goes in Runtime and what goes in
4169 Interactive.
4181 Interactive.
4170
4182
4171 * IPython/ipmaker.py: fixed bug where import_fail_info wasn't
4183 * IPython/ipmaker.py: fixed bug where import_fail_info wasn't
4172 being imported from iplib.
4184 being imported from iplib.
4173
4185
4174 * IPython/GnuplotInteractive.py (magic_gpc): renamed @gp to @gpc
4186 * IPython/GnuplotInteractive.py (magic_gpc): renamed @gp to @gpc
4175 for command-passing. Now the global Gnuplot instance is called
4187 for command-passing. Now the global Gnuplot instance is called
4176 'gp' instead of 'g', which was really a far too fragile and
4188 'gp' instead of 'g', which was really a far too fragile and
4177 common name.
4189 common name.
4178
4190
4179 * IPython/Gnuplot2.py (eps_fix_bbox): added this to fix broken
4191 * IPython/Gnuplot2.py (eps_fix_bbox): added this to fix broken
4180 bounding boxes generated by Gnuplot for square plots.
4192 bounding boxes generated by Gnuplot for square plots.
4181
4193
4182 * IPython/genutils.py (popkey): new function added. I should
4194 * IPython/genutils.py (popkey): new function added. I should
4183 suggest this on c.l.py as a dict method, it seems useful.
4195 suggest this on c.l.py as a dict method, it seems useful.
4184
4196
4185 * IPython/Gnuplot2.py (Gnuplot.plot): Overhauled plot and replot
4197 * IPython/Gnuplot2.py (Gnuplot.plot): Overhauled plot and replot
4186 to transparently handle PostScript generation. MUCH better than
4198 to transparently handle PostScript generation. MUCH better than
4187 the previous plot_eps/replot_eps (which I removed now). The code
4199 the previous plot_eps/replot_eps (which I removed now). The code
4188 is also fairly clean and well documented now (including
4200 is also fairly clean and well documented now (including
4189 docstrings).
4201 docstrings).
4190
4202
4191 2002-11-13 Fernando Perez <fperez@colorado.edu>
4203 2002-11-13 Fernando Perez <fperez@colorado.edu>
4192
4204
4193 * IPython/Magic.py (Magic.magic_edit): fixed docstring
4205 * IPython/Magic.py (Magic.magic_edit): fixed docstring
4194 (inconsistent with options).
4206 (inconsistent with options).
4195
4207
4196 * IPython/Gnuplot2.py (Gnuplot.hardcopy): hardcopy had been
4208 * IPython/Gnuplot2.py (Gnuplot.hardcopy): hardcopy had been
4197 manually disabled, I don't know why. Fixed it.
4209 manually disabled, I don't know why. Fixed it.
4198 (Gnuplot._plot_eps): added new plot_eps/replot_eps to get directly
4210 (Gnuplot._plot_eps): added new plot_eps/replot_eps to get directly
4199 eps output.
4211 eps output.
4200
4212
4201 2002-11-12 Fernando Perez <fperez@colorado.edu>
4213 2002-11-12 Fernando Perez <fperez@colorado.edu>
4202
4214
4203 * IPython/genutils.py (ask_yes_no): trap EOF and ^C so that they
4215 * IPython/genutils.py (ask_yes_no): trap EOF and ^C so that they
4204 don't propagate up to caller. Fixes crash reported by François
4216 don't propagate up to caller. Fixes crash reported by François
4205 Pinard.
4217 Pinard.
4206
4218
4207 2002-11-09 Fernando Perez <fperez@colorado.edu>
4219 2002-11-09 Fernando Perez <fperez@colorado.edu>
4208
4220
4209 * IPython/ipmaker.py (make_IPython): fixed problem with writing
4221 * IPython/ipmaker.py (make_IPython): fixed problem with writing
4210 history file for new users.
4222 history file for new users.
4211 (make_IPython): fixed bug where initial install would leave the
4223 (make_IPython): fixed bug where initial install would leave the
4212 user running in the .ipython dir.
4224 user running in the .ipython dir.
4213 (make_IPython): fixed bug where config dir .ipython would be
4225 (make_IPython): fixed bug where config dir .ipython would be
4214 created regardless of the given -ipythondir option. Thanks to Cory
4226 created regardless of the given -ipythondir option. Thanks to Cory
4215 Dodt <cdodt-AT-fcoe.k12.ca.us> for the bug report.
4227 Dodt <cdodt-AT-fcoe.k12.ca.us> for the bug report.
4216
4228
4217 * IPython/genutils.py (ask_yes_no): new function for asking yes/no
4229 * IPython/genutils.py (ask_yes_no): new function for asking yes/no
4218 type confirmations. Will need to use it in all of IPython's code
4230 type confirmations. Will need to use it in all of IPython's code
4219 consistently.
4231 consistently.
4220
4232
4221 * IPython/CrashHandler.py (CrashHandler.__call__): changed the
4233 * IPython/CrashHandler.py (CrashHandler.__call__): changed the
4222 context to print 31 lines instead of the default 5. This will make
4234 context to print 31 lines instead of the default 5. This will make
4223 the crash reports extremely detailed in case the problem is in
4235 the crash reports extremely detailed in case the problem is in
4224 libraries I don't have access to.
4236 libraries I don't have access to.
4225
4237
4226 * IPython/iplib.py (InteractiveShell.interact): changed the 'last
4238 * IPython/iplib.py (InteractiveShell.interact): changed the 'last
4227 line of defense' code to still crash, but giving users fair
4239 line of defense' code to still crash, but giving users fair
4228 warning. I don't want internal errors to go unreported: if there's
4240 warning. I don't want internal errors to go unreported: if there's
4229 an internal problem, IPython should crash and generate a full
4241 an internal problem, IPython should crash and generate a full
4230 report.
4242 report.
4231
4243
4232 2002-11-08 Fernando Perez <fperez@colorado.edu>
4244 2002-11-08 Fernando Perez <fperez@colorado.edu>
4233
4245
4234 * IPython/iplib.py (InteractiveShell.interact): added code to trap
4246 * IPython/iplib.py (InteractiveShell.interact): added code to trap
4235 otherwise uncaught exceptions which can appear if people set
4247 otherwise uncaught exceptions which can appear if people set
4236 sys.stdout to something badly broken. Thanks to a crash report
4248 sys.stdout to something badly broken. Thanks to a crash report
4237 from henni-AT-mail.brainbot.com.
4249 from henni-AT-mail.brainbot.com.
4238
4250
4239 2002-11-04 Fernando Perez <fperez@colorado.edu>
4251 2002-11-04 Fernando Perez <fperez@colorado.edu>
4240
4252
4241 * IPython/iplib.py (InteractiveShell.interact): added
4253 * IPython/iplib.py (InteractiveShell.interact): added
4242 __IPYTHON__active to the builtins. It's a flag which goes on when
4254 __IPYTHON__active to the builtins. It's a flag which goes on when
4243 the interaction starts and goes off again when it stops. This
4255 the interaction starts and goes off again when it stops. This
4244 allows embedding code to detect being inside IPython. Before this
4256 allows embedding code to detect being inside IPython. Before this
4245 was done via __IPYTHON__, but that only shows that an IPython
4257 was done via __IPYTHON__, but that only shows that an IPython
4246 instance has been created.
4258 instance has been created.
4247
4259
4248 * IPython/Magic.py (Magic.magic_env): I realized that in a
4260 * IPython/Magic.py (Magic.magic_env): I realized that in a
4249 UserDict, instance.data holds the data as a normal dict. So I
4261 UserDict, instance.data holds the data as a normal dict. So I
4250 modified @env to return os.environ.data instead of rebuilding a
4262 modified @env to return os.environ.data instead of rebuilding a
4251 dict by hand.
4263 dict by hand.
4252
4264
4253 2002-11-02 Fernando Perez <fperez@colorado.edu>
4265 2002-11-02 Fernando Perez <fperez@colorado.edu>
4254
4266
4255 * IPython/genutils.py (warn): changed so that level 1 prints no
4267 * IPython/genutils.py (warn): changed so that level 1 prints no
4256 header. Level 2 is now the default (with 'WARNING' header, as
4268 header. Level 2 is now the default (with 'WARNING' header, as
4257 before). I think I tracked all places where changes were needed in
4269 before). I think I tracked all places where changes were needed in
4258 IPython, but outside code using the old level numbering may have
4270 IPython, but outside code using the old level numbering may have
4259 broken.
4271 broken.
4260
4272
4261 * IPython/iplib.py (InteractiveShell.runcode): added this to
4273 * IPython/iplib.py (InteractiveShell.runcode): added this to
4262 handle the tracebacks in SystemExit traps correctly. The previous
4274 handle the tracebacks in SystemExit traps correctly. The previous
4263 code (through interact) was printing more of the stack than
4275 code (through interact) was printing more of the stack than
4264 necessary, showing IPython internal code to the user.
4276 necessary, showing IPython internal code to the user.
4265
4277
4266 * IPython/UserConfig/ipythonrc.py: Made confirm_exit 1 by
4278 * IPython/UserConfig/ipythonrc.py: Made confirm_exit 1 by
4267 default. Now that the default at the confirmation prompt is yes,
4279 default. Now that the default at the confirmation prompt is yes,
4268 it's not so intrusive. François' argument that ipython sessions
4280 it's not so intrusive. François' argument that ipython sessions
4269 tend to be complex enough not to lose them from an accidental C-d,
4281 tend to be complex enough not to lose them from an accidental C-d,
4270 is a valid one.
4282 is a valid one.
4271
4283
4272 * IPython/iplib.py (InteractiveShell.interact): added a
4284 * IPython/iplib.py (InteractiveShell.interact): added a
4273 showtraceback() call to the SystemExit trap, and modified the exit
4285 showtraceback() call to the SystemExit trap, and modified the exit
4274 confirmation to have yes as the default.
4286 confirmation to have yes as the default.
4275
4287
4276 * IPython/UserConfig/ipythonrc.py: removed 'session' option from
4288 * IPython/UserConfig/ipythonrc.py: removed 'session' option from
4277 this file. It's been gone from the code for a long time, this was
4289 this file. It's been gone from the code for a long time, this was
4278 simply leftover junk.
4290 simply leftover junk.
4279
4291
4280 2002-11-01 Fernando Perez <fperez@colorado.edu>
4292 2002-11-01 Fernando Perez <fperez@colorado.edu>
4281
4293
4282 * IPython/UserConfig/ipythonrc.py: new confirm_exit option
4294 * IPython/UserConfig/ipythonrc.py: new confirm_exit option
4283 added. If set, IPython now traps EOF and asks for
4295 added. If set, IPython now traps EOF and asks for
4284 confirmation. After a request by François Pinard.
4296 confirmation. After a request by François Pinard.
4285
4297
4286 * IPython/Magic.py (Magic.magic_Exit): New @Exit and @Quit instead
4298 * IPython/Magic.py (Magic.magic_Exit): New @Exit and @Quit instead
4287 of @abort, and with a new (better) mechanism for handling the
4299 of @abort, and with a new (better) mechanism for handling the
4288 exceptions.
4300 exceptions.
4289
4301
4290 2002-10-27 Fernando Perez <fperez@colorado.edu>
4302 2002-10-27 Fernando Perez <fperez@colorado.edu>
4291
4303
4292 * IPython/usage.py (__doc__): updated the --help information and
4304 * IPython/usage.py (__doc__): updated the --help information and
4293 the ipythonrc file to indicate that -log generates
4305 the ipythonrc file to indicate that -log generates
4294 ./ipython.log. Also fixed the corresponding info in @logstart.
4306 ./ipython.log. Also fixed the corresponding info in @logstart.
4295 This and several other fixes in the manuals thanks to reports by
4307 This and several other fixes in the manuals thanks to reports by
4296 François Pinard <pinard-AT-iro.umontreal.ca>.
4308 François Pinard <pinard-AT-iro.umontreal.ca>.
4297
4309
4298 * IPython/Logger.py (Logger.switch_log): Fixed error message to
4310 * IPython/Logger.py (Logger.switch_log): Fixed error message to
4299 refer to @logstart (instead of @log, which doesn't exist).
4311 refer to @logstart (instead of @log, which doesn't exist).
4300
4312
4301 * IPython/iplib.py (InteractiveShell._prefilter): fixed
4313 * IPython/iplib.py (InteractiveShell._prefilter): fixed
4302 AttributeError crash. Thanks to Christopher Armstrong
4314 AttributeError crash. Thanks to Christopher Armstrong
4303 <radix-AT-twistedmatrix.com> for the report/fix. This bug had been
4315 <radix-AT-twistedmatrix.com> for the report/fix. This bug had been
4304 introduced recently (in 0.2.14pre37) with the fix to the eval
4316 introduced recently (in 0.2.14pre37) with the fix to the eval
4305 problem mentioned below.
4317 problem mentioned below.
4306
4318
4307 2002-10-17 Fernando Perez <fperez@colorado.edu>
4319 2002-10-17 Fernando Perez <fperez@colorado.edu>
4308
4320
4309 * IPython/ConfigLoader.py (ConfigLoader.load): Fixes for Windows
4321 * IPython/ConfigLoader.py (ConfigLoader.load): Fixes for Windows
4310 installation. Thanks to Leonardo Santagada <retype-AT-terra.com.br>.
4322 installation. Thanks to Leonardo Santagada <retype-AT-terra.com.br>.
4311
4323
4312 * IPython/iplib.py (InteractiveShell._prefilter): Many changes to
4324 * IPython/iplib.py (InteractiveShell._prefilter): Many changes to
4313 this function to fix a problem reported by Alex Schmolck. He saw
4325 this function to fix a problem reported by Alex Schmolck. He saw
4314 it with list comprehensions and generators, which were getting
4326 it with list comprehensions and generators, which were getting
4315 called twice. The real problem was an 'eval' call in testing for
4327 called twice. The real problem was an 'eval' call in testing for
4316 automagic which was evaluating the input line silently.
4328 automagic which was evaluating the input line silently.
4317
4329
4318 This is a potentially very nasty bug, if the input has side
4330 This is a potentially very nasty bug, if the input has side
4319 effects which must not be repeated. The code is much cleaner now,
4331 effects which must not be repeated. The code is much cleaner now,
4320 without any blanket 'except' left and with a regexp test for
4332 without any blanket 'except' left and with a regexp test for
4321 actual function names.
4333 actual function names.
4322
4334
4323 But an eval remains, which I'm not fully comfortable with. I just
4335 But an eval remains, which I'm not fully comfortable with. I just
4324 don't know how to find out if an expression could be a callable in
4336 don't know how to find out if an expression could be a callable in
4325 the user's namespace without doing an eval on the string. However
4337 the user's namespace without doing an eval on the string. However
4326 that string is now much more strictly checked so that no code
4338 that string is now much more strictly checked so that no code
4327 slips by, so the eval should only happen for things that can
4339 slips by, so the eval should only happen for things that can
4328 really be only function/method names.
4340 really be only function/method names.
4329
4341
4330 2002-10-15 Fernando Perez <fperez@colorado.edu>
4342 2002-10-15 Fernando Perez <fperez@colorado.edu>
4331
4343
4332 * Updated LyX to 1.2.1 so I can work on the docs again. Added Mac
4344 * Updated LyX to 1.2.1 so I can work on the docs again. Added Mac
4333 OSX information to main manual, removed README_Mac_OSX file from
4345 OSX information to main manual, removed README_Mac_OSX file from
4334 distribution. Also updated credits for recent additions.
4346 distribution. Also updated credits for recent additions.
4335
4347
4336 2002-10-10 Fernando Perez <fperez@colorado.edu>
4348 2002-10-10 Fernando Perez <fperez@colorado.edu>
4337
4349
4338 * README_Mac_OSX: Added a README for Mac OSX users for fixing
4350 * README_Mac_OSX: Added a README for Mac OSX users for fixing
4339 terminal-related issues. Many thanks to Andrea Riciputi
4351 terminal-related issues. Many thanks to Andrea Riciputi
4340 <andrea.riciputi-AT-libero.it> for writing it.
4352 <andrea.riciputi-AT-libero.it> for writing it.
4341
4353
4342 * IPython/UserConfig/ipythonrc.py: Fixes to various small issues,
4354 * IPython/UserConfig/ipythonrc.py: Fixes to various small issues,
4343 thanks to Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
4355 thanks to Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
4344
4356
4345 * setup.py (make_shortcut): Fixes for Windows installation. Thanks
4357 * setup.py (make_shortcut): Fixes for Windows installation. Thanks
4346 to Fredrik Kant <fredrik.kant-AT-front.com> and Syver Enstad
4358 to Fredrik Kant <fredrik.kant-AT-front.com> and Syver Enstad
4347 <syver-en-AT-online.no> who both submitted patches for this problem.
4359 <syver-en-AT-online.no> who both submitted patches for this problem.
4348
4360
4349 * IPython/iplib.py (InteractiveShell.embed_mainloop): Patch for
4361 * IPython/iplib.py (InteractiveShell.embed_mainloop): Patch for
4350 global embedding to make sure that things don't overwrite user
4362 global embedding to make sure that things don't overwrite user
4351 globals accidentally. Thanks to Richard <rxe-AT-renre-europe.com>
4363 globals accidentally. Thanks to Richard <rxe-AT-renre-europe.com>
4352
4364
4353 * IPython/Gnuplot2.py (gp): Patch for Gnuplot.py 1.6
4365 * IPython/Gnuplot2.py (gp): Patch for Gnuplot.py 1.6
4354 compatibility. Thanks to Hayden Callow
4366 compatibility. Thanks to Hayden Callow
4355 <h.callow-AT-elec.canterbury.ac.nz>
4367 <h.callow-AT-elec.canterbury.ac.nz>
4356
4368
4357 2002-10-04 Fernando Perez <fperez@colorado.edu>
4369 2002-10-04 Fernando Perez <fperez@colorado.edu>
4358
4370
4359 * IPython/Gnuplot2.py (PlotItem): Added 'index' option for
4371 * IPython/Gnuplot2.py (PlotItem): Added 'index' option for
4360 Gnuplot.File objects.
4372 Gnuplot.File objects.
4361
4373
4362 2002-07-23 Fernando Perez <fperez@colorado.edu>
4374 2002-07-23 Fernando Perez <fperez@colorado.edu>
4363
4375
4364 * IPython/genutils.py (timing): Added timings() and timing() for
4376 * IPython/genutils.py (timing): Added timings() and timing() for
4365 quick access to the most commonly needed data, the execution
4377 quick access to the most commonly needed data, the execution
4366 times. Old timing() renamed to timings_out().
4378 times. Old timing() renamed to timings_out().
4367
4379
4368 2002-07-18 Fernando Perez <fperez@colorado.edu>
4380 2002-07-18 Fernando Perez <fperez@colorado.edu>
4369
4381
4370 * IPython/Shell.py (IPShellEmbed.restore_system_completer): fixed
4382 * IPython/Shell.py (IPShellEmbed.restore_system_completer): fixed
4371 bug with nested instances disrupting the parent's tab completion.
4383 bug with nested instances disrupting the parent's tab completion.
4372
4384
4373 * IPython/iplib.py (all_completions): Added Alex Schmolck's
4385 * IPython/iplib.py (all_completions): Added Alex Schmolck's
4374 all_completions code to begin the emacs integration.
4386 all_completions code to begin the emacs integration.
4375
4387
4376 * IPython/Gnuplot2.py (zip_items): Added optional 'titles'
4388 * IPython/Gnuplot2.py (zip_items): Added optional 'titles'
4377 argument to allow titling individual arrays when plotting.
4389 argument to allow titling individual arrays when plotting.
4378
4390
4379 2002-07-15 Fernando Perez <fperez@colorado.edu>
4391 2002-07-15 Fernando Perez <fperez@colorado.edu>
4380
4392
4381 * setup.py (make_shortcut): changed to retrieve the value of
4393 * setup.py (make_shortcut): changed to retrieve the value of
4382 'Program Files' directory from the registry (this value changes in
4394 'Program Files' directory from the registry (this value changes in
4383 non-english versions of Windows). Thanks to Thomas Fanslau
4395 non-english versions of Windows). Thanks to Thomas Fanslau
4384 <tfanslau-AT-gmx.de> for the report.
4396 <tfanslau-AT-gmx.de> for the report.
4385
4397
4386 2002-07-10 Fernando Perez <fperez@colorado.edu>
4398 2002-07-10 Fernando Perez <fperez@colorado.edu>
4387
4399
4388 * IPython/ultraTB.py (VerboseTB.debugger): enabled workaround for
4400 * IPython/ultraTB.py (VerboseTB.debugger): enabled workaround for
4389 a bug in pdb, which crashes if a line with only whitespace is
4401 a bug in pdb, which crashes if a line with only whitespace is
4390 entered. Bug report submitted to sourceforge.
4402 entered. Bug report submitted to sourceforge.
4391
4403
4392 2002-07-09 Fernando Perez <fperez@colorado.edu>
4404 2002-07-09 Fernando Perez <fperez@colorado.edu>
4393
4405
4394 * IPython/ultraTB.py (VerboseTB.nullrepr): fixed rare crash when
4406 * IPython/ultraTB.py (VerboseTB.nullrepr): fixed rare crash when
4395 reporting exceptions (it's a bug in inspect.py, I just set a
4407 reporting exceptions (it's a bug in inspect.py, I just set a
4396 workaround).
4408 workaround).
4397
4409
4398 2002-07-08 Fernando Perez <fperez@colorado.edu>
4410 2002-07-08 Fernando Perez <fperez@colorado.edu>
4399
4411
4400 * IPython/iplib.py (InteractiveShell.__init__): fixed reference to
4412 * IPython/iplib.py (InteractiveShell.__init__): fixed reference to
4401 __IPYTHON__ in __builtins__ to show up in user_ns.
4413 __IPYTHON__ in __builtins__ to show up in user_ns.
4402
4414
4403 2002-07-03 Fernando Perez <fperez@colorado.edu>
4415 2002-07-03 Fernando Perez <fperez@colorado.edu>
4404
4416
4405 * IPython/GnuplotInteractive.py (magic_gp_set_default): changed
4417 * IPython/GnuplotInteractive.py (magic_gp_set_default): changed
4406 name from @gp_set_instance to @gp_set_default.
4418 name from @gp_set_instance to @gp_set_default.
4407
4419
4408 * IPython/ipmaker.py (make_IPython): default editor value set to
4420 * IPython/ipmaker.py (make_IPython): default editor value set to
4409 '0' (a string), to match the rc file. Otherwise will crash when
4421 '0' (a string), to match the rc file. Otherwise will crash when
4410 .strip() is called on it.
4422 .strip() is called on it.
4411
4423
4412
4424
4413 2002-06-28 Fernando Perez <fperez@colorado.edu>
4425 2002-06-28 Fernando Perez <fperez@colorado.edu>
4414
4426
4415 * IPython/iplib.py (InteractiveShell.safe_execfile): fix importing
4427 * IPython/iplib.py (InteractiveShell.safe_execfile): fix importing
4416 of files in current directory when a file is executed via
4428 of files in current directory when a file is executed via
4417 @run. Patch also by RA <ralf_ahlbrink-AT-web.de>.
4429 @run. Patch also by RA <ralf_ahlbrink-AT-web.de>.
4418
4430
4419 * setup.py (manfiles): fix for rpm builds, submitted by RA
4431 * setup.py (manfiles): fix for rpm builds, submitted by RA
4420 <ralf_ahlbrink-AT-web.de>. Now we have RPMs!
4432 <ralf_ahlbrink-AT-web.de>. Now we have RPMs!
4421
4433
4422 * IPython/ipmaker.py (make_IPython): fixed lookup of default
4434 * IPython/ipmaker.py (make_IPython): fixed lookup of default
4423 editor when set to '0'. Problem was, '0' evaluates to True (it's a
4435 editor when set to '0'. Problem was, '0' evaluates to True (it's a
4424 string!). A. Schmolck caught this one.
4436 string!). A. Schmolck caught this one.
4425
4437
4426 2002-06-27 Fernando Perez <fperez@colorado.edu>
4438 2002-06-27 Fernando Perez <fperez@colorado.edu>
4427
4439
4428 * IPython/ipmaker.py (make_IPython): fixed bug when running user
4440 * IPython/ipmaker.py (make_IPython): fixed bug when running user
4429 defined files at the cmd line. __name__ wasn't being set to
4441 defined files at the cmd line. __name__ wasn't being set to
4430 __main__.
4442 __main__.
4431
4443
4432 * IPython/Gnuplot2.py (zip_items): improved it so it can plot also
4444 * IPython/Gnuplot2.py (zip_items): improved it so it can plot also
4433 regular lists and tuples besides Numeric arrays.
4445 regular lists and tuples besides Numeric arrays.
4434
4446
4435 * IPython/Prompts.py (CachedOutput.__call__): Added output
4447 * IPython/Prompts.py (CachedOutput.__call__): Added output
4436 supression for input ending with ';'. Similar to Mathematica and
4448 supression for input ending with ';'. Similar to Mathematica and
4437 Matlab. The _* vars and Out[] list are still updated, just like
4449 Matlab. The _* vars and Out[] list are still updated, just like
4438 Mathematica behaves.
4450 Mathematica behaves.
4439
4451
4440 2002-06-25 Fernando Perez <fperez@colorado.edu>
4452 2002-06-25 Fernando Perez <fperez@colorado.edu>
4441
4453
4442 * IPython/ConfigLoader.py (ConfigLoader.load): fixed checking of
4454 * IPython/ConfigLoader.py (ConfigLoader.load): fixed checking of
4443 .ini extensions for profiels under Windows.
4455 .ini extensions for profiels under Windows.
4444
4456
4445 * IPython/OInspect.py (Inspector.pinfo): improved alignment of
4457 * IPython/OInspect.py (Inspector.pinfo): improved alignment of
4446 string form. Fix contributed by Alexander Schmolck
4458 string form. Fix contributed by Alexander Schmolck
4447 <a.schmolck-AT-gmx.net>
4459 <a.schmolck-AT-gmx.net>
4448
4460
4449 * IPython/GnuplotRuntime.py (gp_new): new function. Returns a
4461 * IPython/GnuplotRuntime.py (gp_new): new function. Returns a
4450 pre-configured Gnuplot instance.
4462 pre-configured Gnuplot instance.
4451
4463
4452 2002-06-21 Fernando Perez <fperez@colorado.edu>
4464 2002-06-21 Fernando Perez <fperez@colorado.edu>
4453
4465
4454 * IPython/numutils.py (exp_safe): new function, works around the
4466 * IPython/numutils.py (exp_safe): new function, works around the
4455 underflow problems in Numeric.
4467 underflow problems in Numeric.
4456 (log2): New fn. Safe log in base 2: returns exact integer answer
4468 (log2): New fn. Safe log in base 2: returns exact integer answer
4457 for exact integer powers of 2.
4469 for exact integer powers of 2.
4458
4470
4459 * IPython/Magic.py (get_py_filename): fixed it not expanding '~'
4471 * IPython/Magic.py (get_py_filename): fixed it not expanding '~'
4460 properly.
4472 properly.
4461
4473
4462 2002-06-20 Fernando Perez <fperez@colorado.edu>
4474 2002-06-20 Fernando Perez <fperez@colorado.edu>
4463
4475
4464 * IPython/genutils.py (timing): new function like
4476 * IPython/genutils.py (timing): new function like
4465 Mathematica's. Similar to time_test, but returns more info.
4477 Mathematica's. Similar to time_test, but returns more info.
4466
4478
4467 2002-06-18 Fernando Perez <fperez@colorado.edu>
4479 2002-06-18 Fernando Perez <fperez@colorado.edu>
4468
4480
4469 * IPython/Magic.py (Magic.magic_save): modified @save and @r
4481 * IPython/Magic.py (Magic.magic_save): modified @save and @r
4470 according to Mike Heeter's suggestions.
4482 according to Mike Heeter's suggestions.
4471
4483
4472 2002-06-16 Fernando Perez <fperez@colorado.edu>
4484 2002-06-16 Fernando Perez <fperez@colorado.edu>
4473
4485
4474 * IPython/GnuplotRuntime.py: Massive overhaul to the Gnuplot
4486 * IPython/GnuplotRuntime.py: Massive overhaul to the Gnuplot
4475 system. GnuplotMagic is gone as a user-directory option. New files
4487 system. GnuplotMagic is gone as a user-directory option. New files
4476 make it easier to use all the gnuplot stuff both from external
4488 make it easier to use all the gnuplot stuff both from external
4477 programs as well as from IPython. Had to rewrite part of
4489 programs as well as from IPython. Had to rewrite part of
4478 hardcopy() b/c of a strange bug: often the ps files simply don't
4490 hardcopy() b/c of a strange bug: often the ps files simply don't
4479 get created, and require a repeat of the command (often several
4491 get created, and require a repeat of the command (often several
4480 times).
4492 times).
4481
4493
4482 * IPython/ultraTB.py (AutoFormattedTB.__call__): changed to
4494 * IPython/ultraTB.py (AutoFormattedTB.__call__): changed to
4483 resolve output channel at call time, so that if sys.stderr has
4495 resolve output channel at call time, so that if sys.stderr has
4484 been redirected by user this gets honored.
4496 been redirected by user this gets honored.
4485
4497
4486 2002-06-13 Fernando Perez <fperez@colorado.edu>
4498 2002-06-13 Fernando Perez <fperez@colorado.edu>
4487
4499
4488 * IPython/Shell.py (IPShell.__init__): Changed IPythonShell to
4500 * IPython/Shell.py (IPShell.__init__): Changed IPythonShell to
4489 IPShell. Kept a copy with the old names to avoid breaking people's
4501 IPShell. Kept a copy with the old names to avoid breaking people's
4490 embedded code.
4502 embedded code.
4491
4503
4492 * IPython/ipython: simplified it to the bare minimum after
4504 * IPython/ipython: simplified it to the bare minimum after
4493 Holger's suggestions. Added info about how to use it in
4505 Holger's suggestions. Added info about how to use it in
4494 PYTHONSTARTUP.
4506 PYTHONSTARTUP.
4495
4507
4496 * IPython/Shell.py (IPythonShell): changed the options passing
4508 * IPython/Shell.py (IPythonShell): changed the options passing
4497 from a string with funky %s replacements to a straight list. Maybe
4509 from a string with funky %s replacements to a straight list. Maybe
4498 a bit more typing, but it follows sys.argv conventions, so there's
4510 a bit more typing, but it follows sys.argv conventions, so there's
4499 less special-casing to remember.
4511 less special-casing to remember.
4500
4512
4501 2002-06-12 Fernando Perez <fperez@colorado.edu>
4513 2002-06-12 Fernando Perez <fperez@colorado.edu>
4502
4514
4503 * IPython/Magic.py (Magic.magic_r): new magic auto-repeat
4515 * IPython/Magic.py (Magic.magic_r): new magic auto-repeat
4504 command. Thanks to a suggestion by Mike Heeter.
4516 command. Thanks to a suggestion by Mike Heeter.
4505 (Magic.magic_pfile): added behavior to look at filenames if given
4517 (Magic.magic_pfile): added behavior to look at filenames if given
4506 arg is not a defined object.
4518 arg is not a defined object.
4507 (Magic.magic_save): New @save function to save code snippets. Also
4519 (Magic.magic_save): New @save function to save code snippets. Also
4508 a Mike Heeter idea.
4520 a Mike Heeter idea.
4509
4521
4510 * IPython/UserConfig/GnuplotMagic.py (plot): Improvements to
4522 * IPython/UserConfig/GnuplotMagic.py (plot): Improvements to
4511 plot() and replot(). Much more convenient now, especially for
4523 plot() and replot(). Much more convenient now, especially for
4512 interactive use.
4524 interactive use.
4513
4525
4514 * IPython/Magic.py (Magic.magic_run): Added .py automatically to
4526 * IPython/Magic.py (Magic.magic_run): Added .py automatically to
4515 filenames.
4527 filenames.
4516
4528
4517 2002-06-02 Fernando Perez <fperez@colorado.edu>
4529 2002-06-02 Fernando Perez <fperez@colorado.edu>
4518
4530
4519 * IPython/Struct.py (Struct.__init__): modified to admit
4531 * IPython/Struct.py (Struct.__init__): modified to admit
4520 initialization via another struct.
4532 initialization via another struct.
4521
4533
4522 * IPython/genutils.py (SystemExec.__init__): New stateful
4534 * IPython/genutils.py (SystemExec.__init__): New stateful
4523 interface to xsys and bq. Useful for writing system scripts.
4535 interface to xsys and bq. Useful for writing system scripts.
4524
4536
4525 2002-05-30 Fernando Perez <fperez@colorado.edu>
4537 2002-05-30 Fernando Perez <fperez@colorado.edu>
4526
4538
4527 * MANIFEST.in: Changed docfile selection to exclude all the lyx
4539 * MANIFEST.in: Changed docfile selection to exclude all the lyx
4528 documents. This will make the user download smaller (it's getting
4540 documents. This will make the user download smaller (it's getting
4529 too big).
4541 too big).
4530
4542
4531 2002-05-29 Fernando Perez <fperez@colorado.edu>
4543 2002-05-29 Fernando Perez <fperez@colorado.edu>
4532
4544
4533 * IPython/iplib.py (_FakeModule.__init__): New class introduced to
4545 * IPython/iplib.py (_FakeModule.__init__): New class introduced to
4534 fix problems with shelve and pickle. Seems to work, but I don't
4546 fix problems with shelve and pickle. Seems to work, but I don't
4535 know if corner cases break it. Thanks to Mike Heeter
4547 know if corner cases break it. Thanks to Mike Heeter
4536 <korora-AT-SDF.LONESTAR.ORG> for the bug reports and test cases.
4548 <korora-AT-SDF.LONESTAR.ORG> for the bug reports and test cases.
4537
4549
4538 2002-05-24 Fernando Perez <fperez@colorado.edu>
4550 2002-05-24 Fernando Perez <fperez@colorado.edu>
4539
4551
4540 * IPython/Magic.py (Macro.__init__): fixed magics embedded in
4552 * IPython/Magic.py (Macro.__init__): fixed magics embedded in
4541 macros having broken.
4553 macros having broken.
4542
4554
4543 2002-05-21 Fernando Perez <fperez@colorado.edu>
4555 2002-05-21 Fernando Perez <fperez@colorado.edu>
4544
4556
4545 * IPython/Magic.py (Magic.magic_logstart): fixed recently
4557 * IPython/Magic.py (Magic.magic_logstart): fixed recently
4546 introduced logging bug: all history before logging started was
4558 introduced logging bug: all history before logging started was
4547 being written one character per line! This came from the redesign
4559 being written one character per line! This came from the redesign
4548 of the input history as a special list which slices to strings,
4560 of the input history as a special list which slices to strings,
4549 not to lists.
4561 not to lists.
4550
4562
4551 2002-05-20 Fernando Perez <fperez@colorado.edu>
4563 2002-05-20 Fernando Perez <fperez@colorado.edu>
4552
4564
4553 * IPython/Prompts.py (CachedOutput.__init__): made the color table
4565 * IPython/Prompts.py (CachedOutput.__init__): made the color table
4554 be an attribute of all classes in this module. The design of these
4566 be an attribute of all classes in this module. The design of these
4555 classes needs some serious overhauling.
4567 classes needs some serious overhauling.
4556
4568
4557 * IPython/DPyGetOpt.py (DPyGetOpt.setPosixCompliance): fixed bug
4569 * IPython/DPyGetOpt.py (DPyGetOpt.setPosixCompliance): fixed bug
4558 which was ignoring '_' in option names.
4570 which was ignoring '_' in option names.
4559
4571
4560 * IPython/ultraTB.py (FormattedTB.__init__): Changed
4572 * IPython/ultraTB.py (FormattedTB.__init__): Changed
4561 'Verbose_novars' to 'Context' and made it the new default. It's a
4573 'Verbose_novars' to 'Context' and made it the new default. It's a
4562 bit more readable and also safer than verbose.
4574 bit more readable and also safer than verbose.
4563
4575
4564 * IPython/PyColorize.py (Parser.__call__): Fixed coloring of
4576 * IPython/PyColorize.py (Parser.__call__): Fixed coloring of
4565 triple-quoted strings.
4577 triple-quoted strings.
4566
4578
4567 * IPython/OInspect.py (__all__): new module exposing the object
4579 * IPython/OInspect.py (__all__): new module exposing the object
4568 introspection facilities. Now the corresponding magics are dummy
4580 introspection facilities. Now the corresponding magics are dummy
4569 wrappers around this. Having this module will make it much easier
4581 wrappers around this. Having this module will make it much easier
4570 to put these functions into our modified pdb.
4582 to put these functions into our modified pdb.
4571 This new object inspector system uses the new colorizing module,
4583 This new object inspector system uses the new colorizing module,
4572 so source code and other things are nicely syntax highlighted.
4584 so source code and other things are nicely syntax highlighted.
4573
4585
4574 2002-05-18 Fernando Perez <fperez@colorado.edu>
4586 2002-05-18 Fernando Perez <fperez@colorado.edu>
4575
4587
4576 * IPython/ColorANSI.py: Split the coloring tools into a separate
4588 * IPython/ColorANSI.py: Split the coloring tools into a separate
4577 module so I can use them in other code easier (they were part of
4589 module so I can use them in other code easier (they were part of
4578 ultraTB).
4590 ultraTB).
4579
4591
4580 2002-05-17 Fernando Perez <fperez@colorado.edu>
4592 2002-05-17 Fernando Perez <fperez@colorado.edu>
4581
4593
4582 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4594 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4583 fixed it to set the global 'g' also to the called instance, as
4595 fixed it to set the global 'g' also to the called instance, as
4584 long as 'g' was still a gnuplot instance (so it doesn't overwrite
4596 long as 'g' was still a gnuplot instance (so it doesn't overwrite
4585 user's 'g' variables).
4597 user's 'g' variables).
4586
4598
4587 * IPython/iplib.py (InteractiveShell.__init__): Added In/Out
4599 * IPython/iplib.py (InteractiveShell.__init__): Added In/Out
4588 global variables (aliases to _ih,_oh) so that users which expect
4600 global variables (aliases to _ih,_oh) so that users which expect
4589 In[5] or Out[7] to work aren't unpleasantly surprised.
4601 In[5] or Out[7] to work aren't unpleasantly surprised.
4590 (InputList.__getslice__): new class to allow executing slices of
4602 (InputList.__getslice__): new class to allow executing slices of
4591 input history directly. Very simple class, complements the use of
4603 input history directly. Very simple class, complements the use of
4592 macros.
4604 macros.
4593
4605
4594 2002-05-16 Fernando Perez <fperez@colorado.edu>
4606 2002-05-16 Fernando Perez <fperez@colorado.edu>
4595
4607
4596 * setup.py (docdirbase): make doc directory be just doc/IPython
4608 * setup.py (docdirbase): make doc directory be just doc/IPython
4597 without version numbers, it will reduce clutter for users.
4609 without version numbers, it will reduce clutter for users.
4598
4610
4599 * IPython/Magic.py (Magic.magic_run): Add explicit local dict to
4611 * IPython/Magic.py (Magic.magic_run): Add explicit local dict to
4600 execfile call to prevent possible memory leak. See for details:
4612 execfile call to prevent possible memory leak. See for details:
4601 http://mail.python.org/pipermail/python-list/2002-February/088476.html
4613 http://mail.python.org/pipermail/python-list/2002-February/088476.html
4602
4614
4603 2002-05-15 Fernando Perez <fperez@colorado.edu>
4615 2002-05-15 Fernando Perez <fperez@colorado.edu>
4604
4616
4605 * IPython/Magic.py (Magic.magic_psource): made the object
4617 * IPython/Magic.py (Magic.magic_psource): made the object
4606 introspection names be more standard: pdoc, pdef, pfile and
4618 introspection names be more standard: pdoc, pdef, pfile and
4607 psource. They all print/page their output, and it makes
4619 psource. They all print/page their output, and it makes
4608 remembering them easier. Kept old names for compatibility as
4620 remembering them easier. Kept old names for compatibility as
4609 aliases.
4621 aliases.
4610
4622
4611 2002-05-14 Fernando Perez <fperez@colorado.edu>
4623 2002-05-14 Fernando Perez <fperez@colorado.edu>
4612
4624
4613 * IPython/UserConfig/GnuplotMagic.py: I think I finally understood
4625 * IPython/UserConfig/GnuplotMagic.py: I think I finally understood
4614 what the mouse problem was. The trick is to use gnuplot with temp
4626 what the mouse problem was. The trick is to use gnuplot with temp
4615 files and NOT with pipes (for data communication), because having
4627 files and NOT with pipes (for data communication), because having
4616 both pipes and the mouse on is bad news.
4628 both pipes and the mouse on is bad news.
4617
4629
4618 2002-05-13 Fernando Perez <fperez@colorado.edu>
4630 2002-05-13 Fernando Perez <fperez@colorado.edu>
4619
4631
4620 * IPython/Magic.py (Magic._ofind): fixed namespace order search
4632 * IPython/Magic.py (Magic._ofind): fixed namespace order search
4621 bug. Information would be reported about builtins even when
4633 bug. Information would be reported about builtins even when
4622 user-defined functions overrode them.
4634 user-defined functions overrode them.
4623
4635
4624 2002-05-11 Fernando Perez <fperez@colorado.edu>
4636 2002-05-11 Fernando Perez <fperez@colorado.edu>
4625
4637
4626 * IPython/__init__.py (__all__): removed FlexCompleter from
4638 * IPython/__init__.py (__all__): removed FlexCompleter from
4627 __all__ so that things don't fail in platforms without readline.
4639 __all__ so that things don't fail in platforms without readline.
4628
4640
4629 2002-05-10 Fernando Perez <fperez@colorado.edu>
4641 2002-05-10 Fernando Perez <fperez@colorado.edu>
4630
4642
4631 * IPython/__init__.py (__all__): removed numutils from __all__ b/c
4643 * IPython/__init__.py (__all__): removed numutils from __all__ b/c
4632 it requires Numeric, effectively making Numeric a dependency for
4644 it requires Numeric, effectively making Numeric a dependency for
4633 IPython.
4645 IPython.
4634
4646
4635 * Released 0.2.13
4647 * Released 0.2.13
4636
4648
4637 * IPython/Magic.py (Magic.magic_prun): big overhaul to the
4649 * IPython/Magic.py (Magic.magic_prun): big overhaul to the
4638 profiler interface. Now all the major options from the profiler
4650 profiler interface. Now all the major options from the profiler
4639 module are directly supported in IPython, both for single
4651 module are directly supported in IPython, both for single
4640 expressions (@prun) and for full programs (@run -p).
4652 expressions (@prun) and for full programs (@run -p).
4641
4653
4642 2002-05-09 Fernando Perez <fperez@colorado.edu>
4654 2002-05-09 Fernando Perez <fperez@colorado.edu>
4643
4655
4644 * IPython/Magic.py (Magic.magic_doc): fixed to show docstrings of
4656 * IPython/Magic.py (Magic.magic_doc): fixed to show docstrings of
4645 magic properly formatted for screen.
4657 magic properly formatted for screen.
4646
4658
4647 * setup.py (make_shortcut): Changed things to put pdf version in
4659 * setup.py (make_shortcut): Changed things to put pdf version in
4648 doc/ instead of doc/manual (had to change lyxport a bit).
4660 doc/ instead of doc/manual (had to change lyxport a bit).
4649
4661
4650 * IPython/Magic.py (Profile.string_stats): made profile runs go
4662 * IPython/Magic.py (Profile.string_stats): made profile runs go
4651 through pager (they are long and a pager allows searching, saving,
4663 through pager (they are long and a pager allows searching, saving,
4652 etc.)
4664 etc.)
4653
4665
4654 2002-05-08 Fernando Perez <fperez@colorado.edu>
4666 2002-05-08 Fernando Perez <fperez@colorado.edu>
4655
4667
4656 * Released 0.2.12
4668 * Released 0.2.12
4657
4669
4658 2002-05-06 Fernando Perez <fperez@colorado.edu>
4670 2002-05-06 Fernando Perez <fperez@colorado.edu>
4659
4671
4660 * IPython/Magic.py (Magic.magic_hist): small bug fixed (recently
4672 * IPython/Magic.py (Magic.magic_hist): small bug fixed (recently
4661 introduced); 'hist n1 n2' was broken.
4673 introduced); 'hist n1 n2' was broken.
4662 (Magic.magic_pdb): added optional on/off arguments to @pdb
4674 (Magic.magic_pdb): added optional on/off arguments to @pdb
4663 (Magic.magic_run): added option -i to @run, which executes code in
4675 (Magic.magic_run): added option -i to @run, which executes code in
4664 the IPython namespace instead of a clean one. Also added @irun as
4676 the IPython namespace instead of a clean one. Also added @irun as
4665 an alias to @run -i.
4677 an alias to @run -i.
4666
4678
4667 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4679 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4668 fixed (it didn't really do anything, the namespaces were wrong).
4680 fixed (it didn't really do anything, the namespaces were wrong).
4669
4681
4670 * IPython/Debugger.py (__init__): Added workaround for python 2.1
4682 * IPython/Debugger.py (__init__): Added workaround for python 2.1
4671
4683
4672 * IPython/__init__.py (__all__): Fixed package namespace, now
4684 * IPython/__init__.py (__all__): Fixed package namespace, now
4673 'import IPython' does give access to IPython.<all> as
4685 'import IPython' does give access to IPython.<all> as
4674 expected. Also renamed __release__ to Release.
4686 expected. Also renamed __release__ to Release.
4675
4687
4676 * IPython/Debugger.py (__license__): created new Pdb class which
4688 * IPython/Debugger.py (__license__): created new Pdb class which
4677 functions like a drop-in for the normal pdb.Pdb but does NOT
4689 functions like a drop-in for the normal pdb.Pdb but does NOT
4678 import readline by default. This way it doesn't muck up IPython's
4690 import readline by default. This way it doesn't muck up IPython's
4679 readline handling, and now tab-completion finally works in the
4691 readline handling, and now tab-completion finally works in the
4680 debugger -- sort of. It completes things globally visible, but the
4692 debugger -- sort of. It completes things globally visible, but the
4681 completer doesn't track the stack as pdb walks it. That's a bit
4693 completer doesn't track the stack as pdb walks it. That's a bit
4682 tricky, and I'll have to implement it later.
4694 tricky, and I'll have to implement it later.
4683
4695
4684 2002-05-05 Fernando Perez <fperez@colorado.edu>
4696 2002-05-05 Fernando Perez <fperez@colorado.edu>
4685
4697
4686 * IPython/Magic.py (Magic.magic_oinfo): fixed formatting bug for
4698 * IPython/Magic.py (Magic.magic_oinfo): fixed formatting bug for
4687 magic docstrings when printed via ? (explicit \'s were being
4699 magic docstrings when printed via ? (explicit \'s were being
4688 printed).
4700 printed).
4689
4701
4690 * IPython/ipmaker.py (make_IPython): fixed namespace
4702 * IPython/ipmaker.py (make_IPython): fixed namespace
4691 identification bug. Now variables loaded via logs or command-line
4703 identification bug. Now variables loaded via logs or command-line
4692 files are recognized in the interactive namespace by @who.
4704 files are recognized in the interactive namespace by @who.
4693
4705
4694 * IPython/iplib.py (InteractiveShell.safe_execfile): Fixed bug in
4706 * IPython/iplib.py (InteractiveShell.safe_execfile): Fixed bug in
4695 log replay system stemming from the string form of Structs.
4707 log replay system stemming from the string form of Structs.
4696
4708
4697 * IPython/Magic.py (Macro.__init__): improved macros to properly
4709 * IPython/Magic.py (Macro.__init__): improved macros to properly
4698 handle magic commands in them.
4710 handle magic commands in them.
4699 (Magic.magic_logstart): usernames are now expanded so 'logstart
4711 (Magic.magic_logstart): usernames are now expanded so 'logstart
4700 ~/mylog' now works.
4712 ~/mylog' now works.
4701
4713
4702 * IPython/iplib.py (complete): fixed bug where paths starting with
4714 * IPython/iplib.py (complete): fixed bug where paths starting with
4703 '/' would be completed as magic names.
4715 '/' would be completed as magic names.
4704
4716
4705 2002-05-04 Fernando Perez <fperez@colorado.edu>
4717 2002-05-04 Fernando Perez <fperez@colorado.edu>
4706
4718
4707 * IPython/Magic.py (Magic.magic_run): added options -p and -f to
4719 * IPython/Magic.py (Magic.magic_run): added options -p and -f to
4708 allow running full programs under the profiler's control.
4720 allow running full programs under the profiler's control.
4709
4721
4710 * IPython/ultraTB.py (FormattedTB.__init__): Added Verbose_novars
4722 * IPython/ultraTB.py (FormattedTB.__init__): Added Verbose_novars
4711 mode to report exceptions verbosely but without formatting
4723 mode to report exceptions verbosely but without formatting
4712 variables. This addresses the issue of ipython 'freezing' (it's
4724 variables. This addresses the issue of ipython 'freezing' (it's
4713 not frozen, but caught in an expensive formatting loop) when huge
4725 not frozen, but caught in an expensive formatting loop) when huge
4714 variables are in the context of an exception.
4726 variables are in the context of an exception.
4715 (VerboseTB.text): Added '--->' markers at line where exception was
4727 (VerboseTB.text): Added '--->' markers at line where exception was
4716 triggered. Much clearer to read, especially in NoColor modes.
4728 triggered. Much clearer to read, especially in NoColor modes.
4717
4729
4718 * IPython/Magic.py (Magic.magic_run): bugfix: -n option had been
4730 * IPython/Magic.py (Magic.magic_run): bugfix: -n option had been
4719 implemented in reverse when changing to the new parse_options().
4731 implemented in reverse when changing to the new parse_options().
4720
4732
4721 2002-05-03 Fernando Perez <fperez@colorado.edu>
4733 2002-05-03 Fernando Perez <fperez@colorado.edu>
4722
4734
4723 * IPython/Magic.py (Magic.parse_options): new function so that
4735 * IPython/Magic.py (Magic.parse_options): new function so that
4724 magics can parse options easier.
4736 magics can parse options easier.
4725 (Magic.magic_prun): new function similar to profile.run(),
4737 (Magic.magic_prun): new function similar to profile.run(),
4726 suggested by Chris Hart.
4738 suggested by Chris Hart.
4727 (Magic.magic_cd): fixed behavior so that it only changes if
4739 (Magic.magic_cd): fixed behavior so that it only changes if
4728 directory actually is in history.
4740 directory actually is in history.
4729
4741
4730 * IPython/usage.py (__doc__): added information about potential
4742 * IPython/usage.py (__doc__): added information about potential
4731 slowness of Verbose exception mode when there are huge data
4743 slowness of Verbose exception mode when there are huge data
4732 structures to be formatted (thanks to Archie Paulson).
4744 structures to be formatted (thanks to Archie Paulson).
4733
4745
4734 * IPython/ipmaker.py (make_IPython): Changed default logging
4746 * IPython/ipmaker.py (make_IPython): Changed default logging
4735 (when simply called with -log) to use curr_dir/ipython.log in
4747 (when simply called with -log) to use curr_dir/ipython.log in
4736 rotate mode. Fixed crash which was occuring with -log before
4748 rotate mode. Fixed crash which was occuring with -log before
4737 (thanks to Jim Boyle).
4749 (thanks to Jim Boyle).
4738
4750
4739 2002-05-01 Fernando Perez <fperez@colorado.edu>
4751 2002-05-01 Fernando Perez <fperez@colorado.edu>
4740
4752
4741 * Released 0.2.11 for these fixes (mainly the ultraTB one which
4753 * Released 0.2.11 for these fixes (mainly the ultraTB one which
4742 was nasty -- though somewhat of a corner case).
4754 was nasty -- though somewhat of a corner case).
4743
4755
4744 * IPython/ultraTB.py (AutoFormattedTB.text): renamed __text to
4756 * IPython/ultraTB.py (AutoFormattedTB.text): renamed __text to
4745 text (was a bug).
4757 text (was a bug).
4746
4758
4747 2002-04-30 Fernando Perez <fperez@colorado.edu>
4759 2002-04-30 Fernando Perez <fperez@colorado.edu>
4748
4760
4749 * IPython/UserConfig/GnuplotMagic.py (magic_gp): Minor fix to add
4761 * IPython/UserConfig/GnuplotMagic.py (magic_gp): Minor fix to add
4750 a print after ^D or ^C from the user so that the In[] prompt
4762 a print after ^D or ^C from the user so that the In[] prompt
4751 doesn't over-run the gnuplot one.
4763 doesn't over-run the gnuplot one.
4752
4764
4753 2002-04-29 Fernando Perez <fperez@colorado.edu>
4765 2002-04-29 Fernando Perez <fperez@colorado.edu>
4754
4766
4755 * Released 0.2.10
4767 * Released 0.2.10
4756
4768
4757 * IPython/__release__.py (version): get date dynamically.
4769 * IPython/__release__.py (version): get date dynamically.
4758
4770
4759 * Misc. documentation updates thanks to Arnd's comments. Also ran
4771 * Misc. documentation updates thanks to Arnd's comments. Also ran
4760 a full spellcheck on the manual (hadn't been done in a while).
4772 a full spellcheck on the manual (hadn't been done in a while).
4761
4773
4762 2002-04-27 Fernando Perez <fperez@colorado.edu>
4774 2002-04-27 Fernando Perez <fperez@colorado.edu>
4763
4775
4764 * IPython/Magic.py (Magic.magic_logstart): Fixed bug where
4776 * IPython/Magic.py (Magic.magic_logstart): Fixed bug where
4765 starting a log in mid-session would reset the input history list.
4777 starting a log in mid-session would reset the input history list.
4766
4778
4767 2002-04-26 Fernando Perez <fperez@colorado.edu>
4779 2002-04-26 Fernando Perez <fperez@colorado.edu>
4768
4780
4769 * IPython/iplib.py (InteractiveShell.wait): Fixed bug where not
4781 * IPython/iplib.py (InteractiveShell.wait): Fixed bug where not
4770 all files were being included in an update. Now anything in
4782 all files were being included in an update. Now anything in
4771 UserConfig that matches [A-Za-z]*.py will go (this excludes
4783 UserConfig that matches [A-Za-z]*.py will go (this excludes
4772 __init__.py)
4784 __init__.py)
4773
4785
4774 2002-04-25 Fernando Perez <fperez@colorado.edu>
4786 2002-04-25 Fernando Perez <fperez@colorado.edu>
4775
4787
4776 * IPython/iplib.py (InteractiveShell.__init__): Added __IPYTHON__
4788 * IPython/iplib.py (InteractiveShell.__init__): Added __IPYTHON__
4777 to __builtins__ so that any form of embedded or imported code can
4789 to __builtins__ so that any form of embedded or imported code can
4778 test for being inside IPython.
4790 test for being inside IPython.
4779
4791
4780 * IPython/UserConfig/GnuplotMagic.py: (magic_gp_set_instance):
4792 * IPython/UserConfig/GnuplotMagic.py: (magic_gp_set_instance):
4781 changed to GnuplotMagic because it's now an importable module,
4793 changed to GnuplotMagic because it's now an importable module,
4782 this makes the name follow that of the standard Gnuplot module.
4794 this makes the name follow that of the standard Gnuplot module.
4783 GnuplotMagic can now be loaded at any time in mid-session.
4795 GnuplotMagic can now be loaded at any time in mid-session.
4784
4796
4785 2002-04-24 Fernando Perez <fperez@colorado.edu>
4797 2002-04-24 Fernando Perez <fperez@colorado.edu>
4786
4798
4787 * IPython/numutils.py: removed SIUnits. It doesn't properly set
4799 * IPython/numutils.py: removed SIUnits. It doesn't properly set
4788 the globals (IPython has its own namespace) and the
4800 the globals (IPython has its own namespace) and the
4789 PhysicalQuantity stuff is much better anyway.
4801 PhysicalQuantity stuff is much better anyway.
4790
4802
4791 * IPython/UserConfig/example-gnuplot.py (g2): Added gnuplot
4803 * IPython/UserConfig/example-gnuplot.py (g2): Added gnuplot
4792 embedding example to standard user directory for
4804 embedding example to standard user directory for
4793 distribution. Also put it in the manual.
4805 distribution. Also put it in the manual.
4794
4806
4795 * IPython/numutils.py (gnuplot_exec): Changed to take a gnuplot
4807 * IPython/numutils.py (gnuplot_exec): Changed to take a gnuplot
4796 instance as first argument (so it doesn't rely on some obscure
4808 instance as first argument (so it doesn't rely on some obscure
4797 hidden global).
4809 hidden global).
4798
4810
4799 * IPython/UserConfig/ipythonrc.py: put () back in accepted
4811 * IPython/UserConfig/ipythonrc.py: put () back in accepted
4800 delimiters. While it prevents ().TAB from working, it allows
4812 delimiters. While it prevents ().TAB from working, it allows
4801 completions in open (... expressions. This is by far a more common
4813 completions in open (... expressions. This is by far a more common
4802 case.
4814 case.
4803
4815
4804 2002-04-23 Fernando Perez <fperez@colorado.edu>
4816 2002-04-23 Fernando Perez <fperez@colorado.edu>
4805
4817
4806 * IPython/Extensions/InterpreterPasteInput.py: new
4818 * IPython/Extensions/InterpreterPasteInput.py: new
4807 syntax-processing module for pasting lines with >>> or ... at the
4819 syntax-processing module for pasting lines with >>> or ... at the
4808 start.
4820 start.
4809
4821
4810 * IPython/Extensions/PhysicalQ_Interactive.py
4822 * IPython/Extensions/PhysicalQ_Interactive.py
4811 (PhysicalQuantityInteractive.__int__): fixed to work with either
4823 (PhysicalQuantityInteractive.__int__): fixed to work with either
4812 Numeric or math.
4824 Numeric or math.
4813
4825
4814 * IPython/UserConfig/ipythonrc-numeric.py: reorganized the
4826 * IPython/UserConfig/ipythonrc-numeric.py: reorganized the
4815 provided profiles. Now we have:
4827 provided profiles. Now we have:
4816 -math -> math module as * and cmath with its own namespace.
4828 -math -> math module as * and cmath with its own namespace.
4817 -numeric -> Numeric as *, plus gnuplot & grace
4829 -numeric -> Numeric as *, plus gnuplot & grace
4818 -physics -> same as before
4830 -physics -> same as before
4819
4831
4820 * IPython/Magic.py (Magic.magic_magic): Fixed bug where
4832 * IPython/Magic.py (Magic.magic_magic): Fixed bug where
4821 user-defined magics wouldn't be found by @magic if they were
4833 user-defined magics wouldn't be found by @magic if they were
4822 defined as class methods. Also cleaned up the namespace search
4834 defined as class methods. Also cleaned up the namespace search
4823 logic and the string building (to use %s instead of many repeated
4835 logic and the string building (to use %s instead of many repeated
4824 string adds).
4836 string adds).
4825
4837
4826 * IPython/UserConfig/example-magic.py (magic_foo): updated example
4838 * IPython/UserConfig/example-magic.py (magic_foo): updated example
4827 of user-defined magics to operate with class methods (cleaner, in
4839 of user-defined magics to operate with class methods (cleaner, in
4828 line with the gnuplot code).
4840 line with the gnuplot code).
4829
4841
4830 2002-04-22 Fernando Perez <fperez@colorado.edu>
4842 2002-04-22 Fernando Perez <fperez@colorado.edu>
4831
4843
4832 * setup.py: updated dependency list so that manual is updated when
4844 * setup.py: updated dependency list so that manual is updated when
4833 all included files change.
4845 all included files change.
4834
4846
4835 * IPython/ipmaker.py (make_IPython): Fixed bug which was ignoring
4847 * IPython/ipmaker.py (make_IPython): Fixed bug which was ignoring
4836 the delimiter removal option (the fix is ugly right now).
4848 the delimiter removal option (the fix is ugly right now).
4837
4849
4838 * IPython/UserConfig/ipythonrc-physics.py: simplified not to load
4850 * IPython/UserConfig/ipythonrc-physics.py: simplified not to load
4839 all of the math profile (quicker loading, no conflict between
4851 all of the math profile (quicker loading, no conflict between
4840 g-9.8 and g-gnuplot).
4852 g-9.8 and g-gnuplot).
4841
4853
4842 * IPython/CrashHandler.py (CrashHandler.__call__): changed default
4854 * IPython/CrashHandler.py (CrashHandler.__call__): changed default
4843 name of post-mortem files to IPython_crash_report.txt.
4855 name of post-mortem files to IPython_crash_report.txt.
4844
4856
4845 * Cleanup/update of the docs. Added all the new readline info and
4857 * Cleanup/update of the docs. Added all the new readline info and
4846 formatted all lists as 'real lists'.
4858 formatted all lists as 'real lists'.
4847
4859
4848 * IPython/ipmaker.py (make_IPython): removed now-obsolete
4860 * IPython/ipmaker.py (make_IPython): removed now-obsolete
4849 tab-completion options, since the full readline parse_and_bind is
4861 tab-completion options, since the full readline parse_and_bind is
4850 now accessible.
4862 now accessible.
4851
4863
4852 * IPython/iplib.py (InteractiveShell.init_readline): Changed
4864 * IPython/iplib.py (InteractiveShell.init_readline): Changed
4853 handling of readline options. Now users can specify any string to
4865 handling of readline options. Now users can specify any string to
4854 be passed to parse_and_bind(), as well as the delimiters to be
4866 be passed to parse_and_bind(), as well as the delimiters to be
4855 removed.
4867 removed.
4856 (InteractiveShell.__init__): Added __name__ to the global
4868 (InteractiveShell.__init__): Added __name__ to the global
4857 namespace so that things like Itpl which rely on its existence
4869 namespace so that things like Itpl which rely on its existence
4858 don't crash.
4870 don't crash.
4859 (InteractiveShell._prefilter): Defined the default with a _ so
4871 (InteractiveShell._prefilter): Defined the default with a _ so
4860 that prefilter() is easier to override, while the default one
4872 that prefilter() is easier to override, while the default one
4861 remains available.
4873 remains available.
4862
4874
4863 2002-04-18 Fernando Perez <fperez@colorado.edu>
4875 2002-04-18 Fernando Perez <fperez@colorado.edu>
4864
4876
4865 * Added information about pdb in the docs.
4877 * Added information about pdb in the docs.
4866
4878
4867 2002-04-17 Fernando Perez <fperez@colorado.edu>
4879 2002-04-17 Fernando Perez <fperez@colorado.edu>
4868
4880
4869 * IPython/ipmaker.py (make_IPython): added rc_override option to
4881 * IPython/ipmaker.py (make_IPython): added rc_override option to
4870 allow passing config options at creation time which may override
4882 allow passing config options at creation time which may override
4871 anything set in the config files or command line. This is
4883 anything set in the config files or command line. This is
4872 particularly useful for configuring embedded instances.
4884 particularly useful for configuring embedded instances.
4873
4885
4874 2002-04-15 Fernando Perez <fperez@colorado.edu>
4886 2002-04-15 Fernando Perez <fperez@colorado.edu>
4875
4887
4876 * IPython/Logger.py (Logger.log): Fixed a nasty bug which could
4888 * IPython/Logger.py (Logger.log): Fixed a nasty bug which could
4877 crash embedded instances because of the input cache falling out of
4889 crash embedded instances because of the input cache falling out of
4878 sync with the output counter.
4890 sync with the output counter.
4879
4891
4880 * IPython/Shell.py (IPythonShellEmbed.__init__): added a debug
4892 * IPython/Shell.py (IPythonShellEmbed.__init__): added a debug
4881 mode which calls pdb after an uncaught exception in IPython itself.
4893 mode which calls pdb after an uncaught exception in IPython itself.
4882
4894
4883 2002-04-14 Fernando Perez <fperez@colorado.edu>
4895 2002-04-14 Fernando Perez <fperez@colorado.edu>
4884
4896
4885 * IPython/iplib.py (InteractiveShell.showtraceback): pdb mucks up
4897 * IPython/iplib.py (InteractiveShell.showtraceback): pdb mucks up
4886 readline, fix it back after each call.
4898 readline, fix it back after each call.
4887
4899
4888 * IPython/ultraTB.py (AutoFormattedTB.__text): made text a private
4900 * IPython/ultraTB.py (AutoFormattedTB.__text): made text a private
4889 method to force all access via __call__(), which guarantees that
4901 method to force all access via __call__(), which guarantees that
4890 traceback references are properly deleted.
4902 traceback references are properly deleted.
4891
4903
4892 * IPython/Prompts.py (CachedOutput._display): minor fixes to
4904 * IPython/Prompts.py (CachedOutput._display): minor fixes to
4893 improve printing when pprint is in use.
4905 improve printing when pprint is in use.
4894
4906
4895 2002-04-13 Fernando Perez <fperez@colorado.edu>
4907 2002-04-13 Fernando Perez <fperez@colorado.edu>
4896
4908
4897 * IPython/Shell.py (IPythonShellEmbed.__call__): SystemExit
4909 * IPython/Shell.py (IPythonShellEmbed.__call__): SystemExit
4898 exceptions aren't caught anymore. If the user triggers one, he
4910 exceptions aren't caught anymore. If the user triggers one, he
4899 should know why he's doing it and it should go all the way up,
4911 should know why he's doing it and it should go all the way up,
4900 just like any other exception. So now @abort will fully kill the
4912 just like any other exception. So now @abort will fully kill the
4901 embedded interpreter and the embedding code (unless that happens
4913 embedded interpreter and the embedding code (unless that happens
4902 to catch SystemExit).
4914 to catch SystemExit).
4903
4915
4904 * IPython/ultraTB.py (VerboseTB.__init__): added a call_pdb flag
4916 * IPython/ultraTB.py (VerboseTB.__init__): added a call_pdb flag
4905 and a debugger() method to invoke the interactive pdb debugger
4917 and a debugger() method to invoke the interactive pdb debugger
4906 after printing exception information. Also added the corresponding
4918 after printing exception information. Also added the corresponding
4907 -pdb option and @pdb magic to control this feature, and updated
4919 -pdb option and @pdb magic to control this feature, and updated
4908 the docs. After a suggestion from Christopher Hart
4920 the docs. After a suggestion from Christopher Hart
4909 (hart-AT-caltech.edu).
4921 (hart-AT-caltech.edu).
4910
4922
4911 2002-04-12 Fernando Perez <fperez@colorado.edu>
4923 2002-04-12 Fernando Perez <fperez@colorado.edu>
4912
4924
4913 * IPython/Shell.py (IPythonShellEmbed.__init__): modified to use
4925 * IPython/Shell.py (IPythonShellEmbed.__init__): modified to use
4914 the exception handlers defined by the user (not the CrashHandler)
4926 the exception handlers defined by the user (not the CrashHandler)
4915 so that user exceptions don't trigger an ipython bug report.
4927 so that user exceptions don't trigger an ipython bug report.
4916
4928
4917 * IPython/ultraTB.py (ColorTB.__init__): made the color scheme
4929 * IPython/ultraTB.py (ColorTB.__init__): made the color scheme
4918 configurable (it should have always been so).
4930 configurable (it should have always been so).
4919
4931
4920 2002-03-26 Fernando Perez <fperez@colorado.edu>
4932 2002-03-26 Fernando Perez <fperez@colorado.edu>
4921
4933
4922 * IPython/Shell.py (IPythonShellEmbed.__call__): many changes here
4934 * IPython/Shell.py (IPythonShellEmbed.__call__): many changes here
4923 and there to fix embedding namespace issues. This should all be
4935 and there to fix embedding namespace issues. This should all be
4924 done in a more elegant way.
4936 done in a more elegant way.
4925
4937
4926 2002-03-25 Fernando Perez <fperez@colorado.edu>
4938 2002-03-25 Fernando Perez <fperez@colorado.edu>
4927
4939
4928 * IPython/genutils.py (get_home_dir): Try to make it work under
4940 * IPython/genutils.py (get_home_dir): Try to make it work under
4929 win9x also.
4941 win9x also.
4930
4942
4931 2002-03-20 Fernando Perez <fperez@colorado.edu>
4943 2002-03-20 Fernando Perez <fperez@colorado.edu>
4932
4944
4933 * IPython/Shell.py (IPythonShellEmbed.__init__): leave
4945 * IPython/Shell.py (IPythonShellEmbed.__init__): leave
4934 sys.displayhook untouched upon __init__.
4946 sys.displayhook untouched upon __init__.
4935
4947
4936 2002-03-19 Fernando Perez <fperez@colorado.edu>
4948 2002-03-19 Fernando Perez <fperez@colorado.edu>
4937
4949
4938 * Released 0.2.9 (for embedding bug, basically).
4950 * Released 0.2.9 (for embedding bug, basically).
4939
4951
4940 * IPython/Shell.py (IPythonShellEmbed.__call__): Trap SystemExit
4952 * IPython/Shell.py (IPythonShellEmbed.__call__): Trap SystemExit
4941 exceptions so that enclosing shell's state can be restored.
4953 exceptions so that enclosing shell's state can be restored.
4942
4954
4943 * Changed magic_gnuplot.py to magic-gnuplot.py to standardize
4955 * Changed magic_gnuplot.py to magic-gnuplot.py to standardize
4944 naming conventions in the .ipython/ dir.
4956 naming conventions in the .ipython/ dir.
4945
4957
4946 * IPython/iplib.py (InteractiveShell.init_readline): removed '-'
4958 * IPython/iplib.py (InteractiveShell.init_readline): removed '-'
4947 from delimiters list so filenames with - in them get expanded.
4959 from delimiters list so filenames with - in them get expanded.
4948
4960
4949 * IPython/Shell.py (IPythonShellEmbed.__call__): fixed bug with
4961 * IPython/Shell.py (IPythonShellEmbed.__call__): fixed bug with
4950 sys.displayhook not being properly restored after an embedded call.
4962 sys.displayhook not being properly restored after an embedded call.
4951
4963
4952 2002-03-18 Fernando Perez <fperez@colorado.edu>
4964 2002-03-18 Fernando Perez <fperez@colorado.edu>
4953
4965
4954 * Released 0.2.8
4966 * Released 0.2.8
4955
4967
4956 * IPython/iplib.py (InteractiveShell.user_setup): fixed bug where
4968 * IPython/iplib.py (InteractiveShell.user_setup): fixed bug where
4957 some files weren't being included in a -upgrade.
4969 some files weren't being included in a -upgrade.
4958 (InteractiveShell.init_readline): Added 'set show-all-if-ambiguous
4970 (InteractiveShell.init_readline): Added 'set show-all-if-ambiguous
4959 on' so that the first tab completes.
4971 on' so that the first tab completes.
4960 (InteractiveShell.handle_magic): fixed bug with spaces around
4972 (InteractiveShell.handle_magic): fixed bug with spaces around
4961 quotes breaking many magic commands.
4973 quotes breaking many magic commands.
4962
4974
4963 * setup.py: added note about ignoring the syntax error messages at
4975 * setup.py: added note about ignoring the syntax error messages at
4964 installation.
4976 installation.
4965
4977
4966 * IPython/UserConfig/magic_gnuplot.py (magic_gp): finished
4978 * IPython/UserConfig/magic_gnuplot.py (magic_gp): finished
4967 streamlining the gnuplot interface, now there's only one magic @gp.
4979 streamlining the gnuplot interface, now there's only one magic @gp.
4968
4980
4969 2002-03-17 Fernando Perez <fperez@colorado.edu>
4981 2002-03-17 Fernando Perez <fperez@colorado.edu>
4970
4982
4971 * IPython/UserConfig/magic_gnuplot.py: new name for the
4983 * IPython/UserConfig/magic_gnuplot.py: new name for the
4972 example-magic_pm.py file. Much enhanced system, now with a shell
4984 example-magic_pm.py file. Much enhanced system, now with a shell
4973 for communicating directly with gnuplot, one command at a time.
4985 for communicating directly with gnuplot, one command at a time.
4974
4986
4975 * IPython/Magic.py (Magic.magic_run): added option -n to prevent
4987 * IPython/Magic.py (Magic.magic_run): added option -n to prevent
4976 setting __name__=='__main__'.
4988 setting __name__=='__main__'.
4977
4989
4978 * IPython/UserConfig/example-magic_pm.py (magic_pm): Added
4990 * IPython/UserConfig/example-magic_pm.py (magic_pm): Added
4979 mini-shell for accessing gnuplot from inside ipython. Should
4991 mini-shell for accessing gnuplot from inside ipython. Should
4980 extend it later for grace access too. Inspired by Arnd's
4992 extend it later for grace access too. Inspired by Arnd's
4981 suggestion.
4993 suggestion.
4982
4994
4983 * IPython/iplib.py (InteractiveShell.handle_magic): fixed bug when
4995 * IPython/iplib.py (InteractiveShell.handle_magic): fixed bug when
4984 calling magic functions with () in their arguments. Thanks to Arnd
4996 calling magic functions with () in their arguments. Thanks to Arnd
4985 Baecker for pointing this to me.
4997 Baecker for pointing this to me.
4986
4998
4987 * IPython/numutils.py (sum_flat): fixed bug. Would recurse
4999 * IPython/numutils.py (sum_flat): fixed bug. Would recurse
4988 infinitely for integer or complex arrays (only worked with floats).
5000 infinitely for integer or complex arrays (only worked with floats).
4989
5001
4990 2002-03-16 Fernando Perez <fperez@colorado.edu>
5002 2002-03-16 Fernando Perez <fperez@colorado.edu>
4991
5003
4992 * setup.py: Merged setup and setup_windows into a single script
5004 * setup.py: Merged setup and setup_windows into a single script
4993 which properly handles things for windows users.
5005 which properly handles things for windows users.
4994
5006
4995 2002-03-15 Fernando Perez <fperez@colorado.edu>
5007 2002-03-15 Fernando Perez <fperez@colorado.edu>
4996
5008
4997 * Big change to the manual: now the magics are all automatically
5009 * Big change to the manual: now the magics are all automatically
4998 documented. This information is generated from their docstrings
5010 documented. This information is generated from their docstrings
4999 and put in a latex file included by the manual lyx file. This way
5011 and put in a latex file included by the manual lyx file. This way
5000 we get always up to date information for the magics. The manual
5012 we get always up to date information for the magics. The manual
5001 now also has proper version information, also auto-synced.
5013 now also has proper version information, also auto-synced.
5002
5014
5003 For this to work, an undocumented --magic_docstrings option was added.
5015 For this to work, an undocumented --magic_docstrings option was added.
5004
5016
5005 2002-03-13 Fernando Perez <fperez@colorado.edu>
5017 2002-03-13 Fernando Perez <fperez@colorado.edu>
5006
5018
5007 * IPython/ultraTB.py (TermColors): fixed problem with dark colors
5019 * IPython/ultraTB.py (TermColors): fixed problem with dark colors
5008 under CDE terminals. An explicit ;2 color reset is needed in the escapes.
5020 under CDE terminals. An explicit ;2 color reset is needed in the escapes.
5009
5021
5010 2002-03-12 Fernando Perez <fperez@colorado.edu>
5022 2002-03-12 Fernando Perez <fperez@colorado.edu>
5011
5023
5012 * IPython/ultraTB.py (TermColors): changed color escapes again to
5024 * IPython/ultraTB.py (TermColors): changed color escapes again to
5013 fix the (old, reintroduced) line-wrapping bug. Basically, if
5025 fix the (old, reintroduced) line-wrapping bug. Basically, if
5014 \001..\002 aren't given in the color escapes, lines get wrapped
5026 \001..\002 aren't given in the color escapes, lines get wrapped
5015 weirdly. But giving those screws up old xterms and emacs terms. So
5027 weirdly. But giving those screws up old xterms and emacs terms. So
5016 I added some logic for emacs terms to be ok, but I can't identify old
5028 I added some logic for emacs terms to be ok, but I can't identify old
5017 xterms separately ($TERM=='xterm' for many terminals, like konsole).
5029 xterms separately ($TERM=='xterm' for many terminals, like konsole).
5018
5030
5019 2002-03-10 Fernando Perez <fperez@colorado.edu>
5031 2002-03-10 Fernando Perez <fperez@colorado.edu>
5020
5032
5021 * IPython/usage.py (__doc__): Various documentation cleanups and
5033 * IPython/usage.py (__doc__): Various documentation cleanups and
5022 updates, both in usage docstrings and in the manual.
5034 updates, both in usage docstrings and in the manual.
5023
5035
5024 * IPython/Prompts.py (CachedOutput.set_colors): cleanups for
5036 * IPython/Prompts.py (CachedOutput.set_colors): cleanups for
5025 handling of caching. Set minimum acceptabe value for having a
5037 handling of caching. Set minimum acceptabe value for having a
5026 cache at 20 values.
5038 cache at 20 values.
5027
5039
5028 * IPython/iplib.py (InteractiveShell.user_setup): moved the
5040 * IPython/iplib.py (InteractiveShell.user_setup): moved the
5029 install_first_time function to a method, renamed it and added an
5041 install_first_time function to a method, renamed it and added an
5030 'upgrade' mode. Now people can update their config directory with
5042 'upgrade' mode. Now people can update their config directory with
5031 a simple command line switch (-upgrade, also new).
5043 a simple command line switch (-upgrade, also new).
5032
5044
5033 * IPython/Magic.py (Magic.magic_pfile): Made @pfile an alias to
5045 * IPython/Magic.py (Magic.magic_pfile): Made @pfile an alias to
5034 @file (convenient for automagic users under Python >= 2.2).
5046 @file (convenient for automagic users under Python >= 2.2).
5035 Removed @files (it seemed more like a plural than an abbrev. of
5047 Removed @files (it seemed more like a plural than an abbrev. of
5036 'file show').
5048 'file show').
5037
5049
5038 * IPython/iplib.py (install_first_time): Fixed crash if there were
5050 * IPython/iplib.py (install_first_time): Fixed crash if there were
5039 backup files ('~') in .ipython/ install directory.
5051 backup files ('~') in .ipython/ install directory.
5040
5052
5041 * IPython/ipmaker.py (make_IPython): fixes for new prompt
5053 * IPython/ipmaker.py (make_IPython): fixes for new prompt
5042 system. Things look fine, but these changes are fairly
5054 system. Things look fine, but these changes are fairly
5043 intrusive. Test them for a few days.
5055 intrusive. Test them for a few days.
5044
5056
5045 * IPython/Prompts.py (CachedOutput.__init__): Massive rewrite of
5057 * IPython/Prompts.py (CachedOutput.__init__): Massive rewrite of
5046 the prompts system. Now all in/out prompt strings are user
5058 the prompts system. Now all in/out prompt strings are user
5047 controllable. This is particularly useful for embedding, as one
5059 controllable. This is particularly useful for embedding, as one
5048 can tag embedded instances with particular prompts.
5060 can tag embedded instances with particular prompts.
5049
5061
5050 Also removed global use of sys.ps1/2, which now allows nested
5062 Also removed global use of sys.ps1/2, which now allows nested
5051 embeddings without any problems. Added command-line options for
5063 embeddings without any problems. Added command-line options for
5052 the prompt strings.
5064 the prompt strings.
5053
5065
5054 2002-03-08 Fernando Perez <fperez@colorado.edu>
5066 2002-03-08 Fernando Perez <fperez@colorado.edu>
5055
5067
5056 * IPython/UserConfig/example-embed-short.py (ipshell): added
5068 * IPython/UserConfig/example-embed-short.py (ipshell): added
5057 example file with the bare minimum code for embedding.
5069 example file with the bare minimum code for embedding.
5058
5070
5059 * IPython/Shell.py (IPythonShellEmbed.set_dummy_mode): added
5071 * IPython/Shell.py (IPythonShellEmbed.set_dummy_mode): added
5060 functionality for the embeddable shell to be activated/deactivated
5072 functionality for the embeddable shell to be activated/deactivated
5061 either globally or at each call.
5073 either globally or at each call.
5062
5074
5063 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixes the problem of
5075 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixes the problem of
5064 rewriting the prompt with '--->' for auto-inputs with proper
5076 rewriting the prompt with '--->' for auto-inputs with proper
5065 coloring. Now the previous UGLY hack in handle_auto() is gone, and
5077 coloring. Now the previous UGLY hack in handle_auto() is gone, and
5066 this is handled by the prompts class itself, as it should.
5078 this is handled by the prompts class itself, as it should.
5067
5079
5068 2002-03-05 Fernando Perez <fperez@colorado.edu>
5080 2002-03-05 Fernando Perez <fperez@colorado.edu>
5069
5081
5070 * IPython/Magic.py (Magic.magic_logstart): Changed @log to
5082 * IPython/Magic.py (Magic.magic_logstart): Changed @log to
5071 @logstart to avoid name clashes with the math log function.
5083 @logstart to avoid name clashes with the math log function.
5072
5084
5073 * Big updates to X/Emacs section of the manual.
5085 * Big updates to X/Emacs section of the manual.
5074
5086
5075 * Removed ipython_emacs. Milan explained to me how to pass
5087 * Removed ipython_emacs. Milan explained to me how to pass
5076 arguments to ipython through Emacs. Some day I'm going to end up
5088 arguments to ipython through Emacs. Some day I'm going to end up
5077 learning some lisp...
5089 learning some lisp...
5078
5090
5079 2002-03-04 Fernando Perez <fperez@colorado.edu>
5091 2002-03-04 Fernando Perez <fperez@colorado.edu>
5080
5092
5081 * IPython/ipython_emacs: Created script to be used as the
5093 * IPython/ipython_emacs: Created script to be used as the
5082 py-python-command Emacs variable so we can pass IPython
5094 py-python-command Emacs variable so we can pass IPython
5083 parameters. I can't figure out how to tell Emacs directly to pass
5095 parameters. I can't figure out how to tell Emacs directly to pass
5084 parameters to IPython, so a dummy shell script will do it.
5096 parameters to IPython, so a dummy shell script will do it.
5085
5097
5086 Other enhancements made for things to work better under Emacs'
5098 Other enhancements made for things to work better under Emacs'
5087 various types of terminals. Many thanks to Milan Zamazal
5099 various types of terminals. Many thanks to Milan Zamazal
5088 <pdm-AT-zamazal.org> for all the suggestions and pointers.
5100 <pdm-AT-zamazal.org> for all the suggestions and pointers.
5089
5101
5090 2002-03-01 Fernando Perez <fperez@colorado.edu>
5102 2002-03-01 Fernando Perez <fperez@colorado.edu>
5091
5103
5092 * IPython/ipmaker.py (make_IPython): added a --readline! option so
5104 * IPython/ipmaker.py (make_IPython): added a --readline! option so
5093 that loading of readline is now optional. This gives better
5105 that loading of readline is now optional. This gives better
5094 control to emacs users.
5106 control to emacs users.
5095
5107
5096 * IPython/ultraTB.py (__date__): Modified color escape sequences
5108 * IPython/ultraTB.py (__date__): Modified color escape sequences
5097 and now things work fine under xterm and in Emacs' term buffers
5109 and now things work fine under xterm and in Emacs' term buffers
5098 (though not shell ones). Well, in emacs you get colors, but all
5110 (though not shell ones). Well, in emacs you get colors, but all
5099 seem to be 'light' colors (no difference between dark and light
5111 seem to be 'light' colors (no difference between dark and light
5100 ones). But the garbage chars are gone, and also in xterms. It
5112 ones). But the garbage chars are gone, and also in xterms. It
5101 seems that now I'm using 'cleaner' ansi sequences.
5113 seems that now I'm using 'cleaner' ansi sequences.
5102
5114
5103 2002-02-21 Fernando Perez <fperez@colorado.edu>
5115 2002-02-21 Fernando Perez <fperez@colorado.edu>
5104
5116
5105 * Released 0.2.7 (mainly to publish the scoping fix).
5117 * Released 0.2.7 (mainly to publish the scoping fix).
5106
5118
5107 * IPython/Logger.py (Logger.logstate): added. A corresponding
5119 * IPython/Logger.py (Logger.logstate): added. A corresponding
5108 @logstate magic was created.
5120 @logstate magic was created.
5109
5121
5110 * IPython/Magic.py: fixed nested scoping problem under Python
5122 * IPython/Magic.py: fixed nested scoping problem under Python
5111 2.1.x (automagic wasn't working).
5123 2.1.x (automagic wasn't working).
5112
5124
5113 2002-02-20 Fernando Perez <fperez@colorado.edu>
5125 2002-02-20 Fernando Perez <fperez@colorado.edu>
5114
5126
5115 * Released 0.2.6.
5127 * Released 0.2.6.
5116
5128
5117 * IPython/OutputTrap.py (OutputTrap.__init__): added a 'quiet'
5129 * IPython/OutputTrap.py (OutputTrap.__init__): added a 'quiet'
5118 option so that logs can come out without any headers at all.
5130 option so that logs can come out without any headers at all.
5119
5131
5120 * IPython/UserConfig/ipythonrc-scipy.py: created a profile for
5132 * IPython/UserConfig/ipythonrc-scipy.py: created a profile for
5121 SciPy.
5133 SciPy.
5122
5134
5123 * IPython/iplib.py (InteractiveShell.embed_mainloop): Changed so
5135 * IPython/iplib.py (InteractiveShell.embed_mainloop): Changed so
5124 that embedded IPython calls don't require vars() to be explicitly
5136 that embedded IPython calls don't require vars() to be explicitly
5125 passed. Now they are extracted from the caller's frame (code
5137 passed. Now they are extracted from the caller's frame (code
5126 snatched from Eric Jones' weave). Added better documentation to
5138 snatched from Eric Jones' weave). Added better documentation to
5127 the section on embedding and the example file.
5139 the section on embedding and the example file.
5128
5140
5129 * IPython/genutils.py (page): Changed so that under emacs, it just
5141 * IPython/genutils.py (page): Changed so that under emacs, it just
5130 prints the string. You can then page up and down in the emacs
5142 prints the string. You can then page up and down in the emacs
5131 buffer itself. This is how the builtin help() works.
5143 buffer itself. This is how the builtin help() works.
5132
5144
5133 * IPython/Prompts.py (CachedOutput.__call__): Fixed issue with
5145 * IPython/Prompts.py (CachedOutput.__call__): Fixed issue with
5134 macro scoping: macros need to be executed in the user's namespace
5146 macro scoping: macros need to be executed in the user's namespace
5135 to work as if they had been typed by the user.
5147 to work as if they had been typed by the user.
5136
5148
5137 * IPython/Magic.py (Magic.magic_macro): Changed macros so they
5149 * IPython/Magic.py (Magic.magic_macro): Changed macros so they
5138 execute automatically (no need to type 'exec...'). They then
5150 execute automatically (no need to type 'exec...'). They then
5139 behave like 'true macros'. The printing system was also modified
5151 behave like 'true macros'. The printing system was also modified
5140 for this to work.
5152 for this to work.
5141
5153
5142 2002-02-19 Fernando Perez <fperez@colorado.edu>
5154 2002-02-19 Fernando Perez <fperez@colorado.edu>
5143
5155
5144 * IPython/genutils.py (page_file): new function for paging files
5156 * IPython/genutils.py (page_file): new function for paging files
5145 in an OS-independent way. Also necessary for file viewing to work
5157 in an OS-independent way. Also necessary for file viewing to work
5146 well inside Emacs buffers.
5158 well inside Emacs buffers.
5147 (page): Added checks for being in an emacs buffer.
5159 (page): Added checks for being in an emacs buffer.
5148 (page): fixed bug for Windows ($TERM isn't set in Windows). Fixed
5160 (page): fixed bug for Windows ($TERM isn't set in Windows). Fixed
5149 same bug in iplib.
5161 same bug in iplib.
5150
5162
5151 2002-02-18 Fernando Perez <fperez@colorado.edu>
5163 2002-02-18 Fernando Perez <fperez@colorado.edu>
5152
5164
5153 * IPython/iplib.py (InteractiveShell.init_readline): modified use
5165 * IPython/iplib.py (InteractiveShell.init_readline): modified use
5154 of readline so that IPython can work inside an Emacs buffer.
5166 of readline so that IPython can work inside an Emacs buffer.
5155
5167
5156 * IPython/ultraTB.py (AutoFormattedTB.__call__): some fixes to
5168 * IPython/ultraTB.py (AutoFormattedTB.__call__): some fixes to
5157 method signatures (they weren't really bugs, but it looks cleaner
5169 method signatures (they weren't really bugs, but it looks cleaner
5158 and keeps PyChecker happy).
5170 and keeps PyChecker happy).
5159
5171
5160 * IPython/ipmaker.py (make_IPython): added hooks Struct to __IP
5172 * IPython/ipmaker.py (make_IPython): added hooks Struct to __IP
5161 for implementing various user-defined hooks. Currently only
5173 for implementing various user-defined hooks. Currently only
5162 display is done.
5174 display is done.
5163
5175
5164 * IPython/Prompts.py (CachedOutput._display): changed display
5176 * IPython/Prompts.py (CachedOutput._display): changed display
5165 functions so that they can be dynamically changed by users easily.
5177 functions so that they can be dynamically changed by users easily.
5166
5178
5167 * IPython/Extensions/numeric_formats.py (num_display): added an
5179 * IPython/Extensions/numeric_formats.py (num_display): added an
5168 extension for printing NumPy arrays in flexible manners. It
5180 extension for printing NumPy arrays in flexible manners. It
5169 doesn't do anything yet, but all the structure is in
5181 doesn't do anything yet, but all the structure is in
5170 place. Ultimately the plan is to implement output format control
5182 place. Ultimately the plan is to implement output format control
5171 like in Octave.
5183 like in Octave.
5172
5184
5173 * IPython/Magic.py (Magic.lsmagic): changed so that bound magic
5185 * IPython/Magic.py (Magic.lsmagic): changed so that bound magic
5174 methods are found at run-time by all the automatic machinery.
5186 methods are found at run-time by all the automatic machinery.
5175
5187
5176 2002-02-17 Fernando Perez <fperez@colorado.edu>
5188 2002-02-17 Fernando Perez <fperez@colorado.edu>
5177
5189
5178 * setup_Windows.py (make_shortcut): documented. Cleaned up the
5190 * setup_Windows.py (make_shortcut): documented. Cleaned up the
5179 whole file a little.
5191 whole file a little.
5180
5192
5181 * ToDo: closed this document. Now there's a new_design.lyx
5193 * ToDo: closed this document. Now there's a new_design.lyx
5182 document for all new ideas. Added making a pdf of it for the
5194 document for all new ideas. Added making a pdf of it for the
5183 end-user distro.
5195 end-user distro.
5184
5196
5185 * IPython/Logger.py (Logger.switch_log): Created this to replace
5197 * IPython/Logger.py (Logger.switch_log): Created this to replace
5186 logon() and logoff(). It also fixes a nasty crash reported by
5198 logon() and logoff(). It also fixes a nasty crash reported by
5187 Philip Hisley <compsys-AT-starpower.net>. Many thanks to him.
5199 Philip Hisley <compsys-AT-starpower.net>. Many thanks to him.
5188
5200
5189 * IPython/iplib.py (complete): got auto-completion to work with
5201 * IPython/iplib.py (complete): got auto-completion to work with
5190 automagic (I had wanted this for a long time).
5202 automagic (I had wanted this for a long time).
5191
5203
5192 * IPython/Magic.py (Magic.magic_files): Added @files as an alias
5204 * IPython/Magic.py (Magic.magic_files): Added @files as an alias
5193 to @file, since file() is now a builtin and clashes with automagic
5205 to @file, since file() is now a builtin and clashes with automagic
5194 for @file.
5206 for @file.
5195
5207
5196 * Made some new files: Prompts, CrashHandler, Magic, Logger. All
5208 * Made some new files: Prompts, CrashHandler, Magic, Logger. All
5197 of this was previously in iplib, which had grown to more than 2000
5209 of this was previously in iplib, which had grown to more than 2000
5198 lines, way too long. No new functionality, but it makes managing
5210 lines, way too long. No new functionality, but it makes managing
5199 the code a bit easier.
5211 the code a bit easier.
5200
5212
5201 * IPython/iplib.py (IPythonCrashHandler.__call__): Added version
5213 * IPython/iplib.py (IPythonCrashHandler.__call__): Added version
5202 information to crash reports.
5214 information to crash reports.
5203
5215
5204 2002-02-12 Fernando Perez <fperez@colorado.edu>
5216 2002-02-12 Fernando Perez <fperez@colorado.edu>
5205
5217
5206 * Released 0.2.5.
5218 * Released 0.2.5.
5207
5219
5208 2002-02-11 Fernando Perez <fperez@colorado.edu>
5220 2002-02-11 Fernando Perez <fperez@colorado.edu>
5209
5221
5210 * Wrote a relatively complete Windows installer. It puts
5222 * Wrote a relatively complete Windows installer. It puts
5211 everything in place, creates Start Menu entries and fixes the
5223 everything in place, creates Start Menu entries and fixes the
5212 color issues. Nothing fancy, but it works.
5224 color issues. Nothing fancy, but it works.
5213
5225
5214 2002-02-10 Fernando Perez <fperez@colorado.edu>
5226 2002-02-10 Fernando Perez <fperez@colorado.edu>
5215
5227
5216 * IPython/iplib.py (InteractiveShell.safe_execfile): added an
5228 * IPython/iplib.py (InteractiveShell.safe_execfile): added an
5217 os.path.expanduser() call so that we can type @run ~/myfile.py and
5229 os.path.expanduser() call so that we can type @run ~/myfile.py and
5218 have thigs work as expected.
5230 have thigs work as expected.
5219
5231
5220 * IPython/genutils.py (page): fixed exception handling so things
5232 * IPython/genutils.py (page): fixed exception handling so things
5221 work both in Unix and Windows correctly. Quitting a pager triggers
5233 work both in Unix and Windows correctly. Quitting a pager triggers
5222 an IOError/broken pipe in Unix, and in windows not finding a pager
5234 an IOError/broken pipe in Unix, and in windows not finding a pager
5223 is also an IOError, so I had to actually look at the return value
5235 is also an IOError, so I had to actually look at the return value
5224 of the exception, not just the exception itself. Should be ok now.
5236 of the exception, not just the exception itself. Should be ok now.
5225
5237
5226 * IPython/ultraTB.py (ColorSchemeTable.set_active_scheme):
5238 * IPython/ultraTB.py (ColorSchemeTable.set_active_scheme):
5227 modified to allow case-insensitive color scheme changes.
5239 modified to allow case-insensitive color scheme changes.
5228
5240
5229 2002-02-09 Fernando Perez <fperez@colorado.edu>
5241 2002-02-09 Fernando Perez <fperez@colorado.edu>
5230
5242
5231 * IPython/genutils.py (native_line_ends): new function to leave
5243 * IPython/genutils.py (native_line_ends): new function to leave
5232 user config files with os-native line-endings.
5244 user config files with os-native line-endings.
5233
5245
5234 * README and manual updates.
5246 * README and manual updates.
5235
5247
5236 * IPython/genutils.py: fixed unicode bug: use types.StringTypes
5248 * IPython/genutils.py: fixed unicode bug: use types.StringTypes
5237 instead of StringType to catch Unicode strings.
5249 instead of StringType to catch Unicode strings.
5238
5250
5239 * IPython/genutils.py (filefind): fixed bug for paths with
5251 * IPython/genutils.py (filefind): fixed bug for paths with
5240 embedded spaces (very common in Windows).
5252 embedded spaces (very common in Windows).
5241
5253
5242 * IPython/ipmaker.py (make_IPython): added a '.ini' to the rc
5254 * IPython/ipmaker.py (make_IPython): added a '.ini' to the rc
5243 files under Windows, so that they get automatically associated
5255 files under Windows, so that they get automatically associated
5244 with a text editor. Windows makes it a pain to handle
5256 with a text editor. Windows makes it a pain to handle
5245 extension-less files.
5257 extension-less files.
5246
5258
5247 * IPython/iplib.py (InteractiveShell.init_readline): Made the
5259 * IPython/iplib.py (InteractiveShell.init_readline): Made the
5248 warning about readline only occur for Posix. In Windows there's no
5260 warning about readline only occur for Posix. In Windows there's no
5249 way to get readline, so why bother with the warning.
5261 way to get readline, so why bother with the warning.
5250
5262
5251 * IPython/Struct.py (Struct.__str__): fixed to use self.__dict__
5263 * IPython/Struct.py (Struct.__str__): fixed to use self.__dict__
5252 for __str__ instead of dir(self), since dir() changed in 2.2.
5264 for __str__ instead of dir(self), since dir() changed in 2.2.
5253
5265
5254 * Ported to Windows! Tested on XP, I suspect it should work fine
5266 * Ported to Windows! Tested on XP, I suspect it should work fine
5255 on NT/2000, but I don't think it will work on 98 et al. That
5267 on NT/2000, but I don't think it will work on 98 et al. That
5256 series of Windows is such a piece of junk anyway that I won't try
5268 series of Windows is such a piece of junk anyway that I won't try
5257 porting it there. The XP port was straightforward, showed a few
5269 porting it there. The XP port was straightforward, showed a few
5258 bugs here and there (fixed all), in particular some string
5270 bugs here and there (fixed all), in particular some string
5259 handling stuff which required considering Unicode strings (which
5271 handling stuff which required considering Unicode strings (which
5260 Windows uses). This is good, but hasn't been too tested :) No
5272 Windows uses). This is good, but hasn't been too tested :) No
5261 fancy installer yet, I'll put a note in the manual so people at
5273 fancy installer yet, I'll put a note in the manual so people at
5262 least make manually a shortcut.
5274 least make manually a shortcut.
5263
5275
5264 * IPython/iplib.py (Magic.magic_colors): Unified the color options
5276 * IPython/iplib.py (Magic.magic_colors): Unified the color options
5265 into a single one, "colors". This now controls both prompt and
5277 into a single one, "colors". This now controls both prompt and
5266 exception color schemes, and can be changed both at startup
5278 exception color schemes, and can be changed both at startup
5267 (either via command-line switches or via ipythonrc files) and at
5279 (either via command-line switches or via ipythonrc files) and at
5268 runtime, with @colors.
5280 runtime, with @colors.
5269 (Magic.magic_run): renamed @prun to @run and removed the old
5281 (Magic.magic_run): renamed @prun to @run and removed the old
5270 @run. The two were too similar to warrant keeping both.
5282 @run. The two were too similar to warrant keeping both.
5271
5283
5272 2002-02-03 Fernando Perez <fperez@colorado.edu>
5284 2002-02-03 Fernando Perez <fperez@colorado.edu>
5273
5285
5274 * IPython/iplib.py (install_first_time): Added comment on how to
5286 * IPython/iplib.py (install_first_time): Added comment on how to
5275 configure the color options for first-time users. Put a <return>
5287 configure the color options for first-time users. Put a <return>
5276 request at the end so that small-terminal users get a chance to
5288 request at the end so that small-terminal users get a chance to
5277 read the startup info.
5289 read the startup info.
5278
5290
5279 2002-01-23 Fernando Perez <fperez@colorado.edu>
5291 2002-01-23 Fernando Perez <fperez@colorado.edu>
5280
5292
5281 * IPython/iplib.py (CachedOutput.update): Changed output memory
5293 * IPython/iplib.py (CachedOutput.update): Changed output memory
5282 variable names from _o,_oo,_ooo,_o<n> to simply _,__,___,_<n>. For
5294 variable names from _o,_oo,_ooo,_o<n> to simply _,__,___,_<n>. For
5283 input history we still use _i. Did this b/c these variable are
5295 input history we still use _i. Did this b/c these variable are
5284 very commonly used in interactive work, so the less we need to
5296 very commonly used in interactive work, so the less we need to
5285 type the better off we are.
5297 type the better off we are.
5286 (Magic.magic_prun): updated @prun to better handle the namespaces
5298 (Magic.magic_prun): updated @prun to better handle the namespaces
5287 the file will run in, including a fix for __name__ not being set
5299 the file will run in, including a fix for __name__ not being set
5288 before.
5300 before.
5289
5301
5290 2002-01-20 Fernando Perez <fperez@colorado.edu>
5302 2002-01-20 Fernando Perez <fperez@colorado.edu>
5291
5303
5292 * IPython/ultraTB.py (VerboseTB.linereader): Fixed printing of
5304 * IPython/ultraTB.py (VerboseTB.linereader): Fixed printing of
5293 extra garbage for Python 2.2. Need to look more carefully into
5305 extra garbage for Python 2.2. Need to look more carefully into
5294 this later.
5306 this later.
5295
5307
5296 2002-01-19 Fernando Perez <fperez@colorado.edu>
5308 2002-01-19 Fernando Perez <fperez@colorado.edu>
5297
5309
5298 * IPython/iplib.py (InteractiveShell.showtraceback): fixed to
5310 * IPython/iplib.py (InteractiveShell.showtraceback): fixed to
5299 display SyntaxError exceptions properly formatted when they occur
5311 display SyntaxError exceptions properly formatted when they occur
5300 (they can be triggered by imported code).
5312 (they can be triggered by imported code).
5301
5313
5302 2002-01-18 Fernando Perez <fperez@colorado.edu>
5314 2002-01-18 Fernando Perez <fperez@colorado.edu>
5303
5315
5304 * IPython/iplib.py (InteractiveShell.safe_execfile): now
5316 * IPython/iplib.py (InteractiveShell.safe_execfile): now
5305 SyntaxError exceptions are reported nicely formatted, instead of
5317 SyntaxError exceptions are reported nicely formatted, instead of
5306 spitting out only offset information as before.
5318 spitting out only offset information as before.
5307 (Magic.magic_prun): Added the @prun function for executing
5319 (Magic.magic_prun): Added the @prun function for executing
5308 programs with command line args inside IPython.
5320 programs with command line args inside IPython.
5309
5321
5310 2002-01-16 Fernando Perez <fperez@colorado.edu>
5322 2002-01-16 Fernando Perez <fperez@colorado.edu>
5311
5323
5312 * IPython/iplib.py (Magic.magic_hist): Changed @hist and @dhist
5324 * IPython/iplib.py (Magic.magic_hist): Changed @hist and @dhist
5313 to *not* include the last item given in a range. This brings their
5325 to *not* include the last item given in a range. This brings their
5314 behavior in line with Python's slicing:
5326 behavior in line with Python's slicing:
5315 a[n1:n2] -> a[n1]...a[n2-1]
5327 a[n1:n2] -> a[n1]...a[n2-1]
5316 It may be a bit less convenient, but I prefer to stick to Python's
5328 It may be a bit less convenient, but I prefer to stick to Python's
5317 conventions *everywhere*, so users never have to wonder.
5329 conventions *everywhere*, so users never have to wonder.
5318 (Magic.magic_macro): Added @macro function to ease the creation of
5330 (Magic.magic_macro): Added @macro function to ease the creation of
5319 macros.
5331 macros.
5320
5332
5321 2002-01-05 Fernando Perez <fperez@colorado.edu>
5333 2002-01-05 Fernando Perez <fperez@colorado.edu>
5322
5334
5323 * Released 0.2.4.
5335 * Released 0.2.4.
5324
5336
5325 * IPython/iplib.py (Magic.magic_pdef):
5337 * IPython/iplib.py (Magic.magic_pdef):
5326 (InteractiveShell.safe_execfile): report magic lines and error
5338 (InteractiveShell.safe_execfile): report magic lines and error
5327 lines without line numbers so one can easily copy/paste them for
5339 lines without line numbers so one can easily copy/paste them for
5328 re-execution.
5340 re-execution.
5329
5341
5330 * Updated manual with recent changes.
5342 * Updated manual with recent changes.
5331
5343
5332 * IPython/iplib.py (Magic.magic_oinfo): added constructor
5344 * IPython/iplib.py (Magic.magic_oinfo): added constructor
5333 docstring printing when class? is called. Very handy for knowing
5345 docstring printing when class? is called. Very handy for knowing
5334 how to create class instances (as long as __init__ is well
5346 how to create class instances (as long as __init__ is well
5335 documented, of course :)
5347 documented, of course :)
5336 (Magic.magic_doc): print both class and constructor docstrings.
5348 (Magic.magic_doc): print both class and constructor docstrings.
5337 (Magic.magic_pdef): give constructor info if passed a class and
5349 (Magic.magic_pdef): give constructor info if passed a class and
5338 __call__ info for callable object instances.
5350 __call__ info for callable object instances.
5339
5351
5340 2002-01-04 Fernando Perez <fperez@colorado.edu>
5352 2002-01-04 Fernando Perez <fperez@colorado.edu>
5341
5353
5342 * Made deep_reload() off by default. It doesn't always work
5354 * Made deep_reload() off by default. It doesn't always work
5343 exactly as intended, so it's probably safer to have it off. It's
5355 exactly as intended, so it's probably safer to have it off. It's
5344 still available as dreload() anyway, so nothing is lost.
5356 still available as dreload() anyway, so nothing is lost.
5345
5357
5346 2002-01-02 Fernando Perez <fperez@colorado.edu>
5358 2002-01-02 Fernando Perez <fperez@colorado.edu>
5347
5359
5348 * Released 0.2.3 (contacted R.Singh at CU about biopython course,
5360 * Released 0.2.3 (contacted R.Singh at CU about biopython course,
5349 so I wanted an updated release).
5361 so I wanted an updated release).
5350
5362
5351 2001-12-27 Fernando Perez <fperez@colorado.edu>
5363 2001-12-27 Fernando Perez <fperez@colorado.edu>
5352
5364
5353 * IPython/iplib.py (InteractiveShell.interact): Added the original
5365 * IPython/iplib.py (InteractiveShell.interact): Added the original
5354 code from 'code.py' for this module in order to change the
5366 code from 'code.py' for this module in order to change the
5355 handling of a KeyboardInterrupt. This was necessary b/c otherwise
5367 handling of a KeyboardInterrupt. This was necessary b/c otherwise
5356 the history cache would break when the user hit Ctrl-C, and
5368 the history cache would break when the user hit Ctrl-C, and
5357 interact() offers no way to add any hooks to it.
5369 interact() offers no way to add any hooks to it.
5358
5370
5359 2001-12-23 Fernando Perez <fperez@colorado.edu>
5371 2001-12-23 Fernando Perez <fperez@colorado.edu>
5360
5372
5361 * setup.py: added check for 'MANIFEST' before trying to remove
5373 * setup.py: added check for 'MANIFEST' before trying to remove
5362 it. Thanks to Sean Reifschneider.
5374 it. Thanks to Sean Reifschneider.
5363
5375
5364 2001-12-22 Fernando Perez <fperez@colorado.edu>
5376 2001-12-22 Fernando Perez <fperez@colorado.edu>
5365
5377
5366 * Released 0.2.2.
5378 * Released 0.2.2.
5367
5379
5368 * Finished (reasonably) writing the manual. Later will add the
5380 * Finished (reasonably) writing the manual. Later will add the
5369 python-standard navigation stylesheets, but for the time being
5381 python-standard navigation stylesheets, but for the time being
5370 it's fairly complete. Distribution will include html and pdf
5382 it's fairly complete. Distribution will include html and pdf
5371 versions.
5383 versions.
5372
5384
5373 * Bugfix: '.' wasn't being added to sys.path. Thanks to Prabhu
5385 * Bugfix: '.' wasn't being added to sys.path. Thanks to Prabhu
5374 (MayaVi author).
5386 (MayaVi author).
5375
5387
5376 2001-12-21 Fernando Perez <fperez@colorado.edu>
5388 2001-12-21 Fernando Perez <fperez@colorado.edu>
5377
5389
5378 * Released 0.2.1. Barring any nasty bugs, this is it as far as a
5390 * Released 0.2.1. Barring any nasty bugs, this is it as far as a
5379 good public release, I think (with the manual and the distutils
5391 good public release, I think (with the manual and the distutils
5380 installer). The manual can use some work, but that can go
5392 installer). The manual can use some work, but that can go
5381 slowly. Otherwise I think it's quite nice for end users. Next
5393 slowly. Otherwise I think it's quite nice for end users. Next
5382 summer, rewrite the guts of it...
5394 summer, rewrite the guts of it...
5383
5395
5384 * Changed format of ipythonrc files to use whitespace as the
5396 * Changed format of ipythonrc files to use whitespace as the
5385 separator instead of an explicit '='. Cleaner.
5397 separator instead of an explicit '='. Cleaner.
5386
5398
5387 2001-12-20 Fernando Perez <fperez@colorado.edu>
5399 2001-12-20 Fernando Perez <fperez@colorado.edu>
5388
5400
5389 * Started a manual in LyX. For now it's just a quick merge of the
5401 * Started a manual in LyX. For now it's just a quick merge of the
5390 various internal docstrings and READMEs. Later it may grow into a
5402 various internal docstrings and READMEs. Later it may grow into a
5391 nice, full-blown manual.
5403 nice, full-blown manual.
5392
5404
5393 * Set up a distutils based installer. Installation should now be
5405 * Set up a distutils based installer. Installation should now be
5394 trivially simple for end-users.
5406 trivially simple for end-users.
5395
5407
5396 2001-12-11 Fernando Perez <fperez@colorado.edu>
5408 2001-12-11 Fernando Perez <fperez@colorado.edu>
5397
5409
5398 * Released 0.2.0. First public release, announced it at
5410 * Released 0.2.0. First public release, announced it at
5399 comp.lang.python. From now on, just bugfixes...
5411 comp.lang.python. From now on, just bugfixes...
5400
5412
5401 * Went through all the files, set copyright/license notices and
5413 * Went through all the files, set copyright/license notices and
5402 cleaned up things. Ready for release.
5414 cleaned up things. Ready for release.
5403
5415
5404 2001-12-10 Fernando Perez <fperez@colorado.edu>
5416 2001-12-10 Fernando Perez <fperez@colorado.edu>
5405
5417
5406 * Changed the first-time installer not to use tarfiles. It's more
5418 * Changed the first-time installer not to use tarfiles. It's more
5407 robust now and less unix-dependent. Also makes it easier for
5419 robust now and less unix-dependent. Also makes it easier for
5408 people to later upgrade versions.
5420 people to later upgrade versions.
5409
5421
5410 * Changed @exit to @abort to reflect the fact that it's pretty
5422 * Changed @exit to @abort to reflect the fact that it's pretty
5411 brutal (a sys.exit()). The difference between @abort and Ctrl-D
5423 brutal (a sys.exit()). The difference between @abort and Ctrl-D
5412 becomes significant only when IPyhton is embedded: in that case,
5424 becomes significant only when IPyhton is embedded: in that case,
5413 C-D closes IPython only, but @abort kills the enclosing program
5425 C-D closes IPython only, but @abort kills the enclosing program
5414 too (unless it had called IPython inside a try catching
5426 too (unless it had called IPython inside a try catching
5415 SystemExit).
5427 SystemExit).
5416
5428
5417 * Created Shell module which exposes the actuall IPython Shell
5429 * Created Shell module which exposes the actuall IPython Shell
5418 classes, currently the normal and the embeddable one. This at
5430 classes, currently the normal and the embeddable one. This at
5419 least offers a stable interface we won't need to change when
5431 least offers a stable interface we won't need to change when
5420 (later) the internals are rewritten. That rewrite will be confined
5432 (later) the internals are rewritten. That rewrite will be confined
5421 to iplib and ipmaker, but the Shell interface should remain as is.
5433 to iplib and ipmaker, but the Shell interface should remain as is.
5422
5434
5423 * Added embed module which offers an embeddable IPShell object,
5435 * Added embed module which offers an embeddable IPShell object,
5424 useful to fire up IPython *inside* a running program. Great for
5436 useful to fire up IPython *inside* a running program. Great for
5425 debugging or dynamical data analysis.
5437 debugging or dynamical data analysis.
5426
5438
5427 2001-12-08 Fernando Perez <fperez@colorado.edu>
5439 2001-12-08 Fernando Perez <fperez@colorado.edu>
5428
5440
5429 * Fixed small bug preventing seeing info from methods of defined
5441 * Fixed small bug preventing seeing info from methods of defined
5430 objects (incorrect namespace in _ofind()).
5442 objects (incorrect namespace in _ofind()).
5431
5443
5432 * Documentation cleanup. Moved the main usage docstrings to a
5444 * Documentation cleanup. Moved the main usage docstrings to a
5433 separate file, usage.py (cleaner to maintain, and hopefully in the
5445 separate file, usage.py (cleaner to maintain, and hopefully in the
5434 future some perlpod-like way of producing interactive, man and
5446 future some perlpod-like way of producing interactive, man and
5435 html docs out of it will be found).
5447 html docs out of it will be found).
5436
5448
5437 * Added @profile to see your profile at any time.
5449 * Added @profile to see your profile at any time.
5438
5450
5439 * Added @p as an alias for 'print'. It's especially convenient if
5451 * Added @p as an alias for 'print'. It's especially convenient if
5440 using automagic ('p x' prints x).
5452 using automagic ('p x' prints x).
5441
5453
5442 * Small cleanups and fixes after a pychecker run.
5454 * Small cleanups and fixes after a pychecker run.
5443
5455
5444 * Changed the @cd command to handle @cd - and @cd -<n> for
5456 * Changed the @cd command to handle @cd - and @cd -<n> for
5445 visiting any directory in _dh.
5457 visiting any directory in _dh.
5446
5458
5447 * Introduced _dh, a history of visited directories. @dhist prints
5459 * Introduced _dh, a history of visited directories. @dhist prints
5448 it out with numbers.
5460 it out with numbers.
5449
5461
5450 2001-12-07 Fernando Perez <fperez@colorado.edu>
5462 2001-12-07 Fernando Perez <fperez@colorado.edu>
5451
5463
5452 * Released 0.1.22
5464 * Released 0.1.22
5453
5465
5454 * Made initialization a bit more robust against invalid color
5466 * Made initialization a bit more robust against invalid color
5455 options in user input (exit, not traceback-crash).
5467 options in user input (exit, not traceback-crash).
5456
5468
5457 * Changed the bug crash reporter to write the report only in the
5469 * Changed the bug crash reporter to write the report only in the
5458 user's .ipython directory. That way IPython won't litter people's
5470 user's .ipython directory. That way IPython won't litter people's
5459 hard disks with crash files all over the place. Also print on
5471 hard disks with crash files all over the place. Also print on
5460 screen the necessary mail command.
5472 screen the necessary mail command.
5461
5473
5462 * With the new ultraTB, implemented LightBG color scheme for light
5474 * With the new ultraTB, implemented LightBG color scheme for light
5463 background terminals. A lot of people like white backgrounds, so I
5475 background terminals. A lot of people like white backgrounds, so I
5464 guess we should at least give them something readable.
5476 guess we should at least give them something readable.
5465
5477
5466 2001-12-06 Fernando Perez <fperez@colorado.edu>
5478 2001-12-06 Fernando Perez <fperez@colorado.edu>
5467
5479
5468 * Modified the structure of ultraTB. Now there's a proper class
5480 * Modified the structure of ultraTB. Now there's a proper class
5469 for tables of color schemes which allow adding schemes easily and
5481 for tables of color schemes which allow adding schemes easily and
5470 switching the active scheme without creating a new instance every
5482 switching the active scheme without creating a new instance every
5471 time (which was ridiculous). The syntax for creating new schemes
5483 time (which was ridiculous). The syntax for creating new schemes
5472 is also cleaner. I think ultraTB is finally done, with a clean
5484 is also cleaner. I think ultraTB is finally done, with a clean
5473 class structure. Names are also much cleaner (now there's proper
5485 class structure. Names are also much cleaner (now there's proper
5474 color tables, no need for every variable to also have 'color' in
5486 color tables, no need for every variable to also have 'color' in
5475 its name).
5487 its name).
5476
5488
5477 * Broke down genutils into separate files. Now genutils only
5489 * Broke down genutils into separate files. Now genutils only
5478 contains utility functions, and classes have been moved to their
5490 contains utility functions, and classes have been moved to their
5479 own files (they had enough independent functionality to warrant
5491 own files (they had enough independent functionality to warrant
5480 it): ConfigLoader, OutputTrap, Struct.
5492 it): ConfigLoader, OutputTrap, Struct.
5481
5493
5482 2001-12-05 Fernando Perez <fperez@colorado.edu>
5494 2001-12-05 Fernando Perez <fperez@colorado.edu>
5483
5495
5484 * IPython turns 21! Released version 0.1.21, as a candidate for
5496 * IPython turns 21! Released version 0.1.21, as a candidate for
5485 public consumption. If all goes well, release in a few days.
5497 public consumption. If all goes well, release in a few days.
5486
5498
5487 * Fixed path bug (files in Extensions/ directory wouldn't be found
5499 * Fixed path bug (files in Extensions/ directory wouldn't be found
5488 unless IPython/ was explicitly in sys.path).
5500 unless IPython/ was explicitly in sys.path).
5489
5501
5490 * Extended the FlexCompleter class as MagicCompleter to allow
5502 * Extended the FlexCompleter class as MagicCompleter to allow
5491 completion of @-starting lines.
5503 completion of @-starting lines.
5492
5504
5493 * Created __release__.py file as a central repository for release
5505 * Created __release__.py file as a central repository for release
5494 info that other files can read from.
5506 info that other files can read from.
5495
5507
5496 * Fixed small bug in logging: when logging was turned on in
5508 * Fixed small bug in logging: when logging was turned on in
5497 mid-session, old lines with special meanings (!@?) were being
5509 mid-session, old lines with special meanings (!@?) were being
5498 logged without the prepended comment, which is necessary since
5510 logged without the prepended comment, which is necessary since
5499 they are not truly valid python syntax. This should make session
5511 they are not truly valid python syntax. This should make session
5500 restores produce less errors.
5512 restores produce less errors.
5501
5513
5502 * The namespace cleanup forced me to make a FlexCompleter class
5514 * The namespace cleanup forced me to make a FlexCompleter class
5503 which is nothing but a ripoff of rlcompleter, but with selectable
5515 which is nothing but a ripoff of rlcompleter, but with selectable
5504 namespace (rlcompleter only works in __main__.__dict__). I'll try
5516 namespace (rlcompleter only works in __main__.__dict__). I'll try
5505 to submit a note to the authors to see if this change can be
5517 to submit a note to the authors to see if this change can be
5506 incorporated in future rlcompleter releases (Dec.6: done)
5518 incorporated in future rlcompleter releases (Dec.6: done)
5507
5519
5508 * More fixes to namespace handling. It was a mess! Now all
5520 * More fixes to namespace handling. It was a mess! Now all
5509 explicit references to __main__.__dict__ are gone (except when
5521 explicit references to __main__.__dict__ are gone (except when
5510 really needed) and everything is handled through the namespace
5522 really needed) and everything is handled through the namespace
5511 dicts in the IPython instance. We seem to be getting somewhere
5523 dicts in the IPython instance. We seem to be getting somewhere
5512 with this, finally...
5524 with this, finally...
5513
5525
5514 * Small documentation updates.
5526 * Small documentation updates.
5515
5527
5516 * Created the Extensions directory under IPython (with an
5528 * Created the Extensions directory under IPython (with an
5517 __init__.py). Put the PhysicalQ stuff there. This directory should
5529 __init__.py). Put the PhysicalQ stuff there. This directory should
5518 be used for all special-purpose extensions.
5530 be used for all special-purpose extensions.
5519
5531
5520 * File renaming:
5532 * File renaming:
5521 ipythonlib --> ipmaker
5533 ipythonlib --> ipmaker
5522 ipplib --> iplib
5534 ipplib --> iplib
5523 This makes a bit more sense in terms of what these files actually do.
5535 This makes a bit more sense in terms of what these files actually do.
5524
5536
5525 * Moved all the classes and functions in ipythonlib to ipplib, so
5537 * Moved all the classes and functions in ipythonlib to ipplib, so
5526 now ipythonlib only has make_IPython(). This will ease up its
5538 now ipythonlib only has make_IPython(). This will ease up its
5527 splitting in smaller functional chunks later.
5539 splitting in smaller functional chunks later.
5528
5540
5529 * Cleaned up (done, I think) output of @whos. Better column
5541 * Cleaned up (done, I think) output of @whos. Better column
5530 formatting, and now shows str(var) for as much as it can, which is
5542 formatting, and now shows str(var) for as much as it can, which is
5531 typically what one gets with a 'print var'.
5543 typically what one gets with a 'print var'.
5532
5544
5533 2001-12-04 Fernando Perez <fperez@colorado.edu>
5545 2001-12-04 Fernando Perez <fperez@colorado.edu>
5534
5546
5535 * Fixed namespace problems. Now builtin/IPyhton/user names get
5547 * Fixed namespace problems. Now builtin/IPyhton/user names get
5536 properly reported in their namespace. Internal namespace handling
5548 properly reported in their namespace. Internal namespace handling
5537 is finally getting decent (not perfect yet, but much better than
5549 is finally getting decent (not perfect yet, but much better than
5538 the ad-hoc mess we had).
5550 the ad-hoc mess we had).
5539
5551
5540 * Removed -exit option. If people just want to run a python
5552 * Removed -exit option. If people just want to run a python
5541 script, that's what the normal interpreter is for. Less
5553 script, that's what the normal interpreter is for. Less
5542 unnecessary options, less chances for bugs.
5554 unnecessary options, less chances for bugs.
5543
5555
5544 * Added a crash handler which generates a complete post-mortem if
5556 * Added a crash handler which generates a complete post-mortem if
5545 IPython crashes. This will help a lot in tracking bugs down the
5557 IPython crashes. This will help a lot in tracking bugs down the
5546 road.
5558 road.
5547
5559
5548 * Fixed nasty bug in auto-evaluation part of prefilter(). Names
5560 * Fixed nasty bug in auto-evaluation part of prefilter(). Names
5549 which were boud to functions being reassigned would bypass the
5561 which were boud to functions being reassigned would bypass the
5550 logger, breaking the sync of _il with the prompt counter. This
5562 logger, breaking the sync of _il with the prompt counter. This
5551 would then crash IPython later when a new line was logged.
5563 would then crash IPython later when a new line was logged.
5552
5564
5553 2001-12-02 Fernando Perez <fperez@colorado.edu>
5565 2001-12-02 Fernando Perez <fperez@colorado.edu>
5554
5566
5555 * Made IPython a package. This means people don't have to clutter
5567 * Made IPython a package. This means people don't have to clutter
5556 their sys.path with yet another directory. Changed the INSTALL
5568 their sys.path with yet another directory. Changed the INSTALL
5557 file accordingly.
5569 file accordingly.
5558
5570
5559 * Cleaned up the output of @who_ls, @who and @whos. @who_ls now
5571 * Cleaned up the output of @who_ls, @who and @whos. @who_ls now
5560 sorts its output (so @who shows it sorted) and @whos formats the
5572 sorts its output (so @who shows it sorted) and @whos formats the
5561 table according to the width of the first column. Nicer, easier to
5573 table according to the width of the first column. Nicer, easier to
5562 read. Todo: write a generic table_format() which takes a list of
5574 read. Todo: write a generic table_format() which takes a list of
5563 lists and prints it nicely formatted, with optional row/column
5575 lists and prints it nicely formatted, with optional row/column
5564 separators and proper padding and justification.
5576 separators and proper padding and justification.
5565
5577
5566 * Released 0.1.20
5578 * Released 0.1.20
5567
5579
5568 * Fixed bug in @log which would reverse the inputcache list (a
5580 * Fixed bug in @log which would reverse the inputcache list (a
5569 copy operation was missing).
5581 copy operation was missing).
5570
5582
5571 * Code cleanup. @config was changed to use page(). Better, since
5583 * Code cleanup. @config was changed to use page(). Better, since
5572 its output is always quite long.
5584 its output is always quite long.
5573
5585
5574 * Itpl is back as a dependency. I was having too many problems
5586 * Itpl is back as a dependency. I was having too many problems
5575 getting the parametric aliases to work reliably, and it's just
5587 getting the parametric aliases to work reliably, and it's just
5576 easier to code weird string operations with it than playing %()s
5588 easier to code weird string operations with it than playing %()s
5577 games. It's only ~6k, so I don't think it's too big a deal.
5589 games. It's only ~6k, so I don't think it's too big a deal.
5578
5590
5579 * Found (and fixed) a very nasty bug with history. !lines weren't
5591 * Found (and fixed) a very nasty bug with history. !lines weren't
5580 getting cached, and the out of sync caches would crash
5592 getting cached, and the out of sync caches would crash
5581 IPython. Fixed it by reorganizing the prefilter/handlers/logger
5593 IPython. Fixed it by reorganizing the prefilter/handlers/logger
5582 division of labor a bit better. Bug fixed, cleaner structure.
5594 division of labor a bit better. Bug fixed, cleaner structure.
5583
5595
5584 2001-12-01 Fernando Perez <fperez@colorado.edu>
5596 2001-12-01 Fernando Perez <fperez@colorado.edu>
5585
5597
5586 * Released 0.1.19
5598 * Released 0.1.19
5587
5599
5588 * Added option -n to @hist to prevent line number printing. Much
5600 * Added option -n to @hist to prevent line number printing. Much
5589 easier to copy/paste code this way.
5601 easier to copy/paste code this way.
5590
5602
5591 * Created global _il to hold the input list. Allows easy
5603 * Created global _il to hold the input list. Allows easy
5592 re-execution of blocks of code by slicing it (inspired by Janko's
5604 re-execution of blocks of code by slicing it (inspired by Janko's
5593 comment on 'macros').
5605 comment on 'macros').
5594
5606
5595 * Small fixes and doc updates.
5607 * Small fixes and doc updates.
5596
5608
5597 * Rewrote @history function (was @h). Renamed it to @hist, @h is
5609 * Rewrote @history function (was @h). Renamed it to @hist, @h is
5598 much too fragile with automagic. Handles properly multi-line
5610 much too fragile with automagic. Handles properly multi-line
5599 statements and takes parameters.
5611 statements and takes parameters.
5600
5612
5601 2001-11-30 Fernando Perez <fperez@colorado.edu>
5613 2001-11-30 Fernando Perez <fperez@colorado.edu>
5602
5614
5603 * Version 0.1.18 released.
5615 * Version 0.1.18 released.
5604
5616
5605 * Fixed nasty namespace bug in initial module imports.
5617 * Fixed nasty namespace bug in initial module imports.
5606
5618
5607 * Added copyright/license notes to all code files (except
5619 * Added copyright/license notes to all code files (except
5608 DPyGetOpt). For the time being, LGPL. That could change.
5620 DPyGetOpt). For the time being, LGPL. That could change.
5609
5621
5610 * Rewrote a much nicer README, updated INSTALL, cleaned up
5622 * Rewrote a much nicer README, updated INSTALL, cleaned up
5611 ipythonrc-* samples.
5623 ipythonrc-* samples.
5612
5624
5613 * Overall code/documentation cleanup. Basically ready for
5625 * Overall code/documentation cleanup. Basically ready for
5614 release. Only remaining thing: licence decision (LGPL?).
5626 release. Only remaining thing: licence decision (LGPL?).
5615
5627
5616 * Converted load_config to a class, ConfigLoader. Now recursion
5628 * Converted load_config to a class, ConfigLoader. Now recursion
5617 control is better organized. Doesn't include the same file twice.
5629 control is better organized. Doesn't include the same file twice.
5618
5630
5619 2001-11-29 Fernando Perez <fperez@colorado.edu>
5631 2001-11-29 Fernando Perez <fperez@colorado.edu>
5620
5632
5621 * Got input history working. Changed output history variables from
5633 * Got input history working. Changed output history variables from
5622 _p to _o so that _i is for input and _o for output. Just cleaner
5634 _p to _o so that _i is for input and _o for output. Just cleaner
5623 convention.
5635 convention.
5624
5636
5625 * Implemented parametric aliases. This pretty much allows the
5637 * Implemented parametric aliases. This pretty much allows the
5626 alias system to offer full-blown shell convenience, I think.
5638 alias system to offer full-blown shell convenience, I think.
5627
5639
5628 * Version 0.1.17 released, 0.1.18 opened.
5640 * Version 0.1.17 released, 0.1.18 opened.
5629
5641
5630 * dot_ipython/ipythonrc (alias): added documentation.
5642 * dot_ipython/ipythonrc (alias): added documentation.
5631 (xcolor): Fixed small bug (xcolors -> xcolor)
5643 (xcolor): Fixed small bug (xcolors -> xcolor)
5632
5644
5633 * Changed the alias system. Now alias is a magic command to define
5645 * Changed the alias system. Now alias is a magic command to define
5634 aliases just like the shell. Rationale: the builtin magics should
5646 aliases just like the shell. Rationale: the builtin magics should
5635 be there for things deeply connected to IPython's
5647 be there for things deeply connected to IPython's
5636 architecture. And this is a much lighter system for what I think
5648 architecture. And this is a much lighter system for what I think
5637 is the really important feature: allowing users to define quickly
5649 is the really important feature: allowing users to define quickly
5638 magics that will do shell things for them, so they can customize
5650 magics that will do shell things for them, so they can customize
5639 IPython easily to match their work habits. If someone is really
5651 IPython easily to match their work habits. If someone is really
5640 desperate to have another name for a builtin alias, they can
5652 desperate to have another name for a builtin alias, they can
5641 always use __IP.magic_newname = __IP.magic_oldname. Hackish but
5653 always use __IP.magic_newname = __IP.magic_oldname. Hackish but
5642 works.
5654 works.
5643
5655
5644 2001-11-28 Fernando Perez <fperez@colorado.edu>
5656 2001-11-28 Fernando Perez <fperez@colorado.edu>
5645
5657
5646 * Changed @file so that it opens the source file at the proper
5658 * Changed @file so that it opens the source file at the proper
5647 line. Since it uses less, if your EDITOR environment is
5659 line. Since it uses less, if your EDITOR environment is
5648 configured, typing v will immediately open your editor of choice
5660 configured, typing v will immediately open your editor of choice
5649 right at the line where the object is defined. Not as quick as
5661 right at the line where the object is defined. Not as quick as
5650 having a direct @edit command, but for all intents and purposes it
5662 having a direct @edit command, but for all intents and purposes it
5651 works. And I don't have to worry about writing @edit to deal with
5663 works. And I don't have to worry about writing @edit to deal with
5652 all the editors, less does that.
5664 all the editors, less does that.
5653
5665
5654 * Version 0.1.16 released, 0.1.17 opened.
5666 * Version 0.1.16 released, 0.1.17 opened.
5655
5667
5656 * Fixed some nasty bugs in the page/page_dumb combo that could
5668 * Fixed some nasty bugs in the page/page_dumb combo that could
5657 crash IPython.
5669 crash IPython.
5658
5670
5659 2001-11-27 Fernando Perez <fperez@colorado.edu>
5671 2001-11-27 Fernando Perez <fperez@colorado.edu>
5660
5672
5661 * Version 0.1.15 released, 0.1.16 opened.
5673 * Version 0.1.15 released, 0.1.16 opened.
5662
5674
5663 * Finally got ? and ?? to work for undefined things: now it's
5675 * Finally got ? and ?? to work for undefined things: now it's
5664 possible to type {}.get? and get information about the get method
5676 possible to type {}.get? and get information about the get method
5665 of dicts, or os.path? even if only os is defined (so technically
5677 of dicts, or os.path? even if only os is defined (so technically
5666 os.path isn't). Works at any level. For example, after import os,
5678 os.path isn't). Works at any level. For example, after import os,
5667 os?, os.path?, os.path.abspath? all work. This is great, took some
5679 os?, os.path?, os.path.abspath? all work. This is great, took some
5668 work in _ofind.
5680 work in _ofind.
5669
5681
5670 * Fixed more bugs with logging. The sanest way to do it was to add
5682 * Fixed more bugs with logging. The sanest way to do it was to add
5671 to @log a 'mode' parameter. Killed two in one shot (this mode
5683 to @log a 'mode' parameter. Killed two in one shot (this mode
5672 option was a request of Janko's). I think it's finally clean
5684 option was a request of Janko's). I think it's finally clean
5673 (famous last words).
5685 (famous last words).
5674
5686
5675 * Added a page_dumb() pager which does a decent job of paging on
5687 * Added a page_dumb() pager which does a decent job of paging on
5676 screen, if better things (like less) aren't available. One less
5688 screen, if better things (like less) aren't available. One less
5677 unix dependency (someday maybe somebody will port this to
5689 unix dependency (someday maybe somebody will port this to
5678 windows).
5690 windows).
5679
5691
5680 * Fixed problem in magic_log: would lock of logging out if log
5692 * Fixed problem in magic_log: would lock of logging out if log
5681 creation failed (because it would still think it had succeeded).
5693 creation failed (because it would still think it had succeeded).
5682
5694
5683 * Improved the page() function using curses to auto-detect screen
5695 * Improved the page() function using curses to auto-detect screen
5684 size. Now it can make a much better decision on whether to print
5696 size. Now it can make a much better decision on whether to print
5685 or page a string. Option screen_length was modified: a value 0
5697 or page a string. Option screen_length was modified: a value 0
5686 means auto-detect, and that's the default now.
5698 means auto-detect, and that's the default now.
5687
5699
5688 * Version 0.1.14 released, 0.1.15 opened. I think this is ready to
5700 * Version 0.1.14 released, 0.1.15 opened. I think this is ready to
5689 go out. I'll test it for a few days, then talk to Janko about
5701 go out. I'll test it for a few days, then talk to Janko about
5690 licences and announce it.
5702 licences and announce it.
5691
5703
5692 * Fixed the length of the auto-generated ---> prompt which appears
5704 * Fixed the length of the auto-generated ---> prompt which appears
5693 for auto-parens and auto-quotes. Getting this right isn't trivial,
5705 for auto-parens and auto-quotes. Getting this right isn't trivial,
5694 with all the color escapes, different prompt types and optional
5706 with all the color escapes, different prompt types and optional
5695 separators. But it seems to be working in all the combinations.
5707 separators. But it seems to be working in all the combinations.
5696
5708
5697 2001-11-26 Fernando Perez <fperez@colorado.edu>
5709 2001-11-26 Fernando Perez <fperez@colorado.edu>
5698
5710
5699 * Wrote a regexp filter to get option types from the option names
5711 * Wrote a regexp filter to get option types from the option names
5700 string. This eliminates the need to manually keep two duplicate
5712 string. This eliminates the need to manually keep two duplicate
5701 lists.
5713 lists.
5702
5714
5703 * Removed the unneeded check_option_names. Now options are handled
5715 * Removed the unneeded check_option_names. Now options are handled
5704 in a much saner manner and it's easy to visually check that things
5716 in a much saner manner and it's easy to visually check that things
5705 are ok.
5717 are ok.
5706
5718
5707 * Updated version numbers on all files I modified to carry a
5719 * Updated version numbers on all files I modified to carry a
5708 notice so Janko and Nathan have clear version markers.
5720 notice so Janko and Nathan have clear version markers.
5709
5721
5710 * Updated docstring for ultraTB with my changes. I should send
5722 * Updated docstring for ultraTB with my changes. I should send
5711 this to Nathan.
5723 this to Nathan.
5712
5724
5713 * Lots of small fixes. Ran everything through pychecker again.
5725 * Lots of small fixes. Ran everything through pychecker again.
5714
5726
5715 * Made loading of deep_reload an cmd line option. If it's not too
5727 * Made loading of deep_reload an cmd line option. If it's not too
5716 kosher, now people can just disable it. With -nodeep_reload it's
5728 kosher, now people can just disable it. With -nodeep_reload it's
5717 still available as dreload(), it just won't overwrite reload().
5729 still available as dreload(), it just won't overwrite reload().
5718
5730
5719 * Moved many options to the no| form (-opt and -noopt
5731 * Moved many options to the no| form (-opt and -noopt
5720 accepted). Cleaner.
5732 accepted). Cleaner.
5721
5733
5722 * Changed magic_log so that if called with no parameters, it uses
5734 * Changed magic_log so that if called with no parameters, it uses
5723 'rotate' mode. That way auto-generated logs aren't automatically
5735 'rotate' mode. That way auto-generated logs aren't automatically
5724 over-written. For normal logs, now a backup is made if it exists
5736 over-written. For normal logs, now a backup is made if it exists
5725 (only 1 level of backups). A new 'backup' mode was added to the
5737 (only 1 level of backups). A new 'backup' mode was added to the
5726 Logger class to support this. This was a request by Janko.
5738 Logger class to support this. This was a request by Janko.
5727
5739
5728 * Added @logoff/@logon to stop/restart an active log.
5740 * Added @logoff/@logon to stop/restart an active log.
5729
5741
5730 * Fixed a lot of bugs in log saving/replay. It was pretty
5742 * Fixed a lot of bugs in log saving/replay. It was pretty
5731 broken. Now special lines (!@,/) appear properly in the command
5743 broken. Now special lines (!@,/) appear properly in the command
5732 history after a log replay.
5744 history after a log replay.
5733
5745
5734 * Tried and failed to implement full session saving via pickle. My
5746 * Tried and failed to implement full session saving via pickle. My
5735 idea was to pickle __main__.__dict__, but modules can't be
5747 idea was to pickle __main__.__dict__, but modules can't be
5736 pickled. This would be a better alternative to replaying logs, but
5748 pickled. This would be a better alternative to replaying logs, but
5737 seems quite tricky to get to work. Changed -session to be called
5749 seems quite tricky to get to work. Changed -session to be called
5738 -logplay, which more accurately reflects what it does. And if we
5750 -logplay, which more accurately reflects what it does. And if we
5739 ever get real session saving working, -session is now available.
5751 ever get real session saving working, -session is now available.
5740
5752
5741 * Implemented color schemes for prompts also. As for tracebacks,
5753 * Implemented color schemes for prompts also. As for tracebacks,
5742 currently only NoColor and Linux are supported. But now the
5754 currently only NoColor and Linux are supported. But now the
5743 infrastructure is in place, based on a generic ColorScheme
5755 infrastructure is in place, based on a generic ColorScheme
5744 class. So writing and activating new schemes both for the prompts
5756 class. So writing and activating new schemes both for the prompts
5745 and the tracebacks should be straightforward.
5757 and the tracebacks should be straightforward.
5746
5758
5747 * Version 0.1.13 released, 0.1.14 opened.
5759 * Version 0.1.13 released, 0.1.14 opened.
5748
5760
5749 * Changed handling of options for output cache. Now counter is
5761 * Changed handling of options for output cache. Now counter is
5750 hardwired starting at 1 and one specifies the maximum number of
5762 hardwired starting at 1 and one specifies the maximum number of
5751 entries *in the outcache* (not the max prompt counter). This is
5763 entries *in the outcache* (not the max prompt counter). This is
5752 much better, since many statements won't increase the cache
5764 much better, since many statements won't increase the cache
5753 count. It also eliminated some confusing options, now there's only
5765 count. It also eliminated some confusing options, now there's only
5754 one: cache_size.
5766 one: cache_size.
5755
5767
5756 * Added 'alias' magic function and magic_alias option in the
5768 * Added 'alias' magic function and magic_alias option in the
5757 ipythonrc file. Now the user can easily define whatever names he
5769 ipythonrc file. Now the user can easily define whatever names he
5758 wants for the magic functions without having to play weird
5770 wants for the magic functions without having to play weird
5759 namespace games. This gives IPython a real shell-like feel.
5771 namespace games. This gives IPython a real shell-like feel.
5760
5772
5761 * Fixed doc/?/?? for magics. Now all work, in all forms (explicit
5773 * Fixed doc/?/?? for magics. Now all work, in all forms (explicit
5762 @ or not).
5774 @ or not).
5763
5775
5764 This was one of the last remaining 'visible' bugs (that I know
5776 This was one of the last remaining 'visible' bugs (that I know
5765 of). I think if I can clean up the session loading so it works
5777 of). I think if I can clean up the session loading so it works
5766 100% I'll release a 0.2.0 version on c.p.l (talk to Janko first
5778 100% I'll release a 0.2.0 version on c.p.l (talk to Janko first
5767 about licensing).
5779 about licensing).
5768
5780
5769 2001-11-25 Fernando Perez <fperez@colorado.edu>
5781 2001-11-25 Fernando Perez <fperez@colorado.edu>
5770
5782
5771 * Rewrote somewhat oinfo (?/??). Nicer, now uses page() and
5783 * Rewrote somewhat oinfo (?/??). Nicer, now uses page() and
5772 there's a cleaner distinction between what ? and ?? show.
5784 there's a cleaner distinction between what ? and ?? show.
5773
5785
5774 * Added screen_length option. Now the user can define his own
5786 * Added screen_length option. Now the user can define his own
5775 screen size for page() operations.
5787 screen size for page() operations.
5776
5788
5777 * Implemented magic shell-like functions with automatic code
5789 * Implemented magic shell-like functions with automatic code
5778 generation. Now adding another function is just a matter of adding
5790 generation. Now adding another function is just a matter of adding
5779 an entry to a dict, and the function is dynamically generated at
5791 an entry to a dict, and the function is dynamically generated at
5780 run-time. Python has some really cool features!
5792 run-time. Python has some really cool features!
5781
5793
5782 * Renamed many options to cleanup conventions a little. Now all
5794 * Renamed many options to cleanup conventions a little. Now all
5783 are lowercase, and only underscores where needed. Also in the code
5795 are lowercase, and only underscores where needed. Also in the code
5784 option name tables are clearer.
5796 option name tables are clearer.
5785
5797
5786 * Changed prompts a little. Now input is 'In [n]:' instead of
5798 * Changed prompts a little. Now input is 'In [n]:' instead of
5787 'In[n]:='. This allows it the numbers to be aligned with the
5799 'In[n]:='. This allows it the numbers to be aligned with the
5788 Out[n] numbers, and removes usage of ':=' which doesn't exist in
5800 Out[n] numbers, and removes usage of ':=' which doesn't exist in
5789 Python (it was a Mathematica thing). The '...' continuation prompt
5801 Python (it was a Mathematica thing). The '...' continuation prompt
5790 was also changed a little to align better.
5802 was also changed a little to align better.
5791
5803
5792 * Fixed bug when flushing output cache. Not all _p<n> variables
5804 * Fixed bug when flushing output cache. Not all _p<n> variables
5793 exist, so their deletion needs to be wrapped in a try:
5805 exist, so their deletion needs to be wrapped in a try:
5794
5806
5795 * Figured out how to properly use inspect.formatargspec() (it
5807 * Figured out how to properly use inspect.formatargspec() (it
5796 requires the args preceded by *). So I removed all the code from
5808 requires the args preceded by *). So I removed all the code from
5797 _get_pdef in Magic, which was just replicating that.
5809 _get_pdef in Magic, which was just replicating that.
5798
5810
5799 * Added test to prefilter to allow redefining magic function names
5811 * Added test to prefilter to allow redefining magic function names
5800 as variables. This is ok, since the @ form is always available,
5812 as variables. This is ok, since the @ form is always available,
5801 but whe should allow the user to define a variable called 'ls' if
5813 but whe should allow the user to define a variable called 'ls' if
5802 he needs it.
5814 he needs it.
5803
5815
5804 * Moved the ToDo information from README into a separate ToDo.
5816 * Moved the ToDo information from README into a separate ToDo.
5805
5817
5806 * General code cleanup and small bugfixes. I think it's close to a
5818 * General code cleanup and small bugfixes. I think it's close to a
5807 state where it can be released, obviously with a big 'beta'
5819 state where it can be released, obviously with a big 'beta'
5808 warning on it.
5820 warning on it.
5809
5821
5810 * Got the magic function split to work. Now all magics are defined
5822 * Got the magic function split to work. Now all magics are defined
5811 in a separate class. It just organizes things a bit, and now
5823 in a separate class. It just organizes things a bit, and now
5812 Xemacs behaves nicer (it was choking on InteractiveShell b/c it
5824 Xemacs behaves nicer (it was choking on InteractiveShell b/c it
5813 was too long).
5825 was too long).
5814
5826
5815 * Changed @clear to @reset to avoid potential confusions with
5827 * Changed @clear to @reset to avoid potential confusions with
5816 the shell command clear. Also renamed @cl to @clear, which does
5828 the shell command clear. Also renamed @cl to @clear, which does
5817 exactly what people expect it to from their shell experience.
5829 exactly what people expect it to from their shell experience.
5818
5830
5819 Added a check to the @reset command (since it's so
5831 Added a check to the @reset command (since it's so
5820 destructive, it's probably a good idea to ask for confirmation).
5832 destructive, it's probably a good idea to ask for confirmation).
5821 But now reset only works for full namespace resetting. Since the
5833 But now reset only works for full namespace resetting. Since the
5822 del keyword is already there for deleting a few specific
5834 del keyword is already there for deleting a few specific
5823 variables, I don't see the point of having a redundant magic
5835 variables, I don't see the point of having a redundant magic
5824 function for the same task.
5836 function for the same task.
5825
5837
5826 2001-11-24 Fernando Perez <fperez@colorado.edu>
5838 2001-11-24 Fernando Perez <fperez@colorado.edu>
5827
5839
5828 * Updated the builtin docs (esp. the ? ones).
5840 * Updated the builtin docs (esp. the ? ones).
5829
5841
5830 * Ran all the code through pychecker. Not terribly impressed with
5842 * Ran all the code through pychecker. Not terribly impressed with
5831 it: lots of spurious warnings and didn't really find anything of
5843 it: lots of spurious warnings and didn't really find anything of
5832 substance (just a few modules being imported and not used).
5844 substance (just a few modules being imported and not used).
5833
5845
5834 * Implemented the new ultraTB functionality into IPython. New
5846 * Implemented the new ultraTB functionality into IPython. New
5835 option: xcolors. This chooses color scheme. xmode now only selects
5847 option: xcolors. This chooses color scheme. xmode now only selects
5836 between Plain and Verbose. Better orthogonality.
5848 between Plain and Verbose. Better orthogonality.
5837
5849
5838 * Large rewrite of ultraTB. Much cleaner now, with a separation of
5850 * Large rewrite of ultraTB. Much cleaner now, with a separation of
5839 mode and color scheme for the exception handlers. Now it's
5851 mode and color scheme for the exception handlers. Now it's
5840 possible to have the verbose traceback with no coloring.
5852 possible to have the verbose traceback with no coloring.
5841
5853
5842 2001-11-23 Fernando Perez <fperez@colorado.edu>
5854 2001-11-23 Fernando Perez <fperez@colorado.edu>
5843
5855
5844 * Version 0.1.12 released, 0.1.13 opened.
5856 * Version 0.1.12 released, 0.1.13 opened.
5845
5857
5846 * Removed option to set auto-quote and auto-paren escapes by
5858 * Removed option to set auto-quote and auto-paren escapes by
5847 user. The chances of breaking valid syntax are just too high. If
5859 user. The chances of breaking valid syntax are just too high. If
5848 someone *really* wants, they can always dig into the code.
5860 someone *really* wants, they can always dig into the code.
5849
5861
5850 * Made prompt separators configurable.
5862 * Made prompt separators configurable.
5851
5863
5852 2001-11-22 Fernando Perez <fperez@colorado.edu>
5864 2001-11-22 Fernando Perez <fperez@colorado.edu>
5853
5865
5854 * Small bugfixes in many places.
5866 * Small bugfixes in many places.
5855
5867
5856 * Removed the MyCompleter class from ipplib. It seemed redundant
5868 * Removed the MyCompleter class from ipplib. It seemed redundant
5857 with the C-p,C-n history search functionality. Less code to
5869 with the C-p,C-n history search functionality. Less code to
5858 maintain.
5870 maintain.
5859
5871
5860 * Moved all the original ipython.py code into ipythonlib.py. Right
5872 * Moved all the original ipython.py code into ipythonlib.py. Right
5861 now it's just one big dump into a function called make_IPython, so
5873 now it's just one big dump into a function called make_IPython, so
5862 no real modularity has been gained. But at least it makes the
5874 no real modularity has been gained. But at least it makes the
5863 wrapper script tiny, and since ipythonlib is a module, it gets
5875 wrapper script tiny, and since ipythonlib is a module, it gets
5864 compiled and startup is much faster.
5876 compiled and startup is much faster.
5865
5877
5866 This is a reasobably 'deep' change, so we should test it for a
5878 This is a reasobably 'deep' change, so we should test it for a
5867 while without messing too much more with the code.
5879 while without messing too much more with the code.
5868
5880
5869 2001-11-21 Fernando Perez <fperez@colorado.edu>
5881 2001-11-21 Fernando Perez <fperez@colorado.edu>
5870
5882
5871 * Version 0.1.11 released, 0.1.12 opened for further work.
5883 * Version 0.1.11 released, 0.1.12 opened for further work.
5872
5884
5873 * Removed dependency on Itpl. It was only needed in one place. It
5885 * Removed dependency on Itpl. It was only needed in one place. It
5874 would be nice if this became part of python, though. It makes life
5886 would be nice if this became part of python, though. It makes life
5875 *a lot* easier in some cases.
5887 *a lot* easier in some cases.
5876
5888
5877 * Simplified the prefilter code a bit. Now all handlers are
5889 * Simplified the prefilter code a bit. Now all handlers are
5878 expected to explicitly return a value (at least a blank string).
5890 expected to explicitly return a value (at least a blank string).
5879
5891
5880 * Heavy edits in ipplib. Removed the help system altogether. Now
5892 * Heavy edits in ipplib. Removed the help system altogether. Now
5881 obj?/?? is used for inspecting objects, a magic @doc prints
5893 obj?/?? is used for inspecting objects, a magic @doc prints
5882 docstrings, and full-blown Python help is accessed via the 'help'
5894 docstrings, and full-blown Python help is accessed via the 'help'
5883 keyword. This cleans up a lot of code (less to maintain) and does
5895 keyword. This cleans up a lot of code (less to maintain) and does
5884 the job. Since 'help' is now a standard Python component, might as
5896 the job. Since 'help' is now a standard Python component, might as
5885 well use it and remove duplicate functionality.
5897 well use it and remove duplicate functionality.
5886
5898
5887 Also removed the option to use ipplib as a standalone program. By
5899 Also removed the option to use ipplib as a standalone program. By
5888 now it's too dependent on other parts of IPython to function alone.
5900 now it's too dependent on other parts of IPython to function alone.
5889
5901
5890 * Fixed bug in genutils.pager. It would crash if the pager was
5902 * Fixed bug in genutils.pager. It would crash if the pager was
5891 exited immediately after opening (broken pipe).
5903 exited immediately after opening (broken pipe).
5892
5904
5893 * Trimmed down the VerboseTB reporting a little. The header is
5905 * Trimmed down the VerboseTB reporting a little. The header is
5894 much shorter now and the repeated exception arguments at the end
5906 much shorter now and the repeated exception arguments at the end
5895 have been removed. For interactive use the old header seemed a bit
5907 have been removed. For interactive use the old header seemed a bit
5896 excessive.
5908 excessive.
5897
5909
5898 * Fixed small bug in output of @whos for variables with multi-word
5910 * Fixed small bug in output of @whos for variables with multi-word
5899 types (only first word was displayed).
5911 types (only first word was displayed).
5900
5912
5901 2001-11-17 Fernando Perez <fperez@colorado.edu>
5913 2001-11-17 Fernando Perez <fperez@colorado.edu>
5902
5914
5903 * Version 0.1.10 released, 0.1.11 opened for further work.
5915 * Version 0.1.10 released, 0.1.11 opened for further work.
5904
5916
5905 * Modified dirs and friends. dirs now *returns* the stack (not
5917 * Modified dirs and friends. dirs now *returns* the stack (not
5906 prints), so one can manipulate it as a variable. Convenient to
5918 prints), so one can manipulate it as a variable. Convenient to
5907 travel along many directories.
5919 travel along many directories.
5908
5920
5909 * Fixed bug in magic_pdef: would only work with functions with
5921 * Fixed bug in magic_pdef: would only work with functions with
5910 arguments with default values.
5922 arguments with default values.
5911
5923
5912 2001-11-14 Fernando Perez <fperez@colorado.edu>
5924 2001-11-14 Fernando Perez <fperez@colorado.edu>
5913
5925
5914 * Added the PhysicsInput stuff to dot_ipython so it ships as an
5926 * Added the PhysicsInput stuff to dot_ipython so it ships as an
5915 example with IPython. Various other minor fixes and cleanups.
5927 example with IPython. Various other minor fixes and cleanups.
5916
5928
5917 * Version 0.1.9 released, 0.1.10 opened for further work.
5929 * Version 0.1.9 released, 0.1.10 opened for further work.
5918
5930
5919 * Added sys.path to the list of directories searched in the
5931 * Added sys.path to the list of directories searched in the
5920 execfile= option. It used to be the current directory and the
5932 execfile= option. It used to be the current directory and the
5921 user's IPYTHONDIR only.
5933 user's IPYTHONDIR only.
5922
5934
5923 2001-11-13 Fernando Perez <fperez@colorado.edu>
5935 2001-11-13 Fernando Perez <fperez@colorado.edu>
5924
5936
5925 * Reinstated the raw_input/prefilter separation that Janko had
5937 * Reinstated the raw_input/prefilter separation that Janko had
5926 initially. This gives a more convenient setup for extending the
5938 initially. This gives a more convenient setup for extending the
5927 pre-processor from the outside: raw_input always gets a string,
5939 pre-processor from the outside: raw_input always gets a string,
5928 and prefilter has to process it. We can then redefine prefilter
5940 and prefilter has to process it. We can then redefine prefilter
5929 from the outside and implement extensions for special
5941 from the outside and implement extensions for special
5930 purposes.
5942 purposes.
5931
5943
5932 Today I got one for inputting PhysicalQuantity objects
5944 Today I got one for inputting PhysicalQuantity objects
5933 (from Scientific) without needing any function calls at
5945 (from Scientific) without needing any function calls at
5934 all. Extremely convenient, and it's all done as a user-level
5946 all. Extremely convenient, and it's all done as a user-level
5935 extension (no IPython code was touched). Now instead of:
5947 extension (no IPython code was touched). Now instead of:
5936 a = PhysicalQuantity(4.2,'m/s**2')
5948 a = PhysicalQuantity(4.2,'m/s**2')
5937 one can simply say
5949 one can simply say
5938 a = 4.2 m/s**2
5950 a = 4.2 m/s**2
5939 or even
5951 or even
5940 a = 4.2 m/s^2
5952 a = 4.2 m/s^2
5941
5953
5942 I use this, but it's also a proof of concept: IPython really is
5954 I use this, but it's also a proof of concept: IPython really is
5943 fully user-extensible, even at the level of the parsing of the
5955 fully user-extensible, even at the level of the parsing of the
5944 command line. It's not trivial, but it's perfectly doable.
5956 command line. It's not trivial, but it's perfectly doable.
5945
5957
5946 * Added 'add_flip' method to inclusion conflict resolver. Fixes
5958 * Added 'add_flip' method to inclusion conflict resolver. Fixes
5947 the problem of modules being loaded in the inverse order in which
5959 the problem of modules being loaded in the inverse order in which
5948 they were defined in
5960 they were defined in
5949
5961
5950 * Version 0.1.8 released, 0.1.9 opened for further work.
5962 * Version 0.1.8 released, 0.1.9 opened for further work.
5951
5963
5952 * Added magics pdef, source and file. They respectively show the
5964 * Added magics pdef, source and file. They respectively show the
5953 definition line ('prototype' in C), source code and full python
5965 definition line ('prototype' in C), source code and full python
5954 file for any callable object. The object inspector oinfo uses
5966 file for any callable object. The object inspector oinfo uses
5955 these to show the same information.
5967 these to show the same information.
5956
5968
5957 * Version 0.1.7 released, 0.1.8 opened for further work.
5969 * Version 0.1.7 released, 0.1.8 opened for further work.
5958
5970
5959 * Separated all the magic functions into a class called Magic. The
5971 * Separated all the magic functions into a class called Magic. The
5960 InteractiveShell class was becoming too big for Xemacs to handle
5972 InteractiveShell class was becoming too big for Xemacs to handle
5961 (de-indenting a line would lock it up for 10 seconds while it
5973 (de-indenting a line would lock it up for 10 seconds while it
5962 backtracked on the whole class!)
5974 backtracked on the whole class!)
5963
5975
5964 FIXME: didn't work. It can be done, but right now namespaces are
5976 FIXME: didn't work. It can be done, but right now namespaces are
5965 all messed up. Do it later (reverted it for now, so at least
5977 all messed up. Do it later (reverted it for now, so at least
5966 everything works as before).
5978 everything works as before).
5967
5979
5968 * Got the object introspection system (magic_oinfo) working! I
5980 * Got the object introspection system (magic_oinfo) working! I
5969 think this is pretty much ready for release to Janko, so he can
5981 think this is pretty much ready for release to Janko, so he can
5970 test it for a while and then announce it. Pretty much 100% of what
5982 test it for a while and then announce it. Pretty much 100% of what
5971 I wanted for the 'phase 1' release is ready. Happy, tired.
5983 I wanted for the 'phase 1' release is ready. Happy, tired.
5972
5984
5973 2001-11-12 Fernando Perez <fperez@colorado.edu>
5985 2001-11-12 Fernando Perez <fperez@colorado.edu>
5974
5986
5975 * Version 0.1.6 released, 0.1.7 opened for further work.
5987 * Version 0.1.6 released, 0.1.7 opened for further work.
5976
5988
5977 * Fixed bug in printing: it used to test for truth before
5989 * Fixed bug in printing: it used to test for truth before
5978 printing, so 0 wouldn't print. Now checks for None.
5990 printing, so 0 wouldn't print. Now checks for None.
5979
5991
5980 * Fixed bug where auto-execs increase the prompt counter by 2 (b/c
5992 * Fixed bug where auto-execs increase the prompt counter by 2 (b/c
5981 they have to call len(str(sys.ps1)) ). But the fix is ugly, it
5993 they have to call len(str(sys.ps1)) ). But the fix is ugly, it
5982 reaches by hand into the outputcache. Think of a better way to do
5994 reaches by hand into the outputcache. Think of a better way to do
5983 this later.
5995 this later.
5984
5996
5985 * Various small fixes thanks to Nathan's comments.
5997 * Various small fixes thanks to Nathan's comments.
5986
5998
5987 * Changed magic_pprint to magic_Pprint. This way it doesn't
5999 * Changed magic_pprint to magic_Pprint. This way it doesn't
5988 collide with pprint() and the name is consistent with the command
6000 collide with pprint() and the name is consistent with the command
5989 line option.
6001 line option.
5990
6002
5991 * Changed prompt counter behavior to be fully like
6003 * Changed prompt counter behavior to be fully like
5992 Mathematica's. That is, even input that doesn't return a result
6004 Mathematica's. That is, even input that doesn't return a result
5993 raises the prompt counter. The old behavior was kind of confusing
6005 raises the prompt counter. The old behavior was kind of confusing
5994 (getting the same prompt number several times if the operation
6006 (getting the same prompt number several times if the operation
5995 didn't return a result).
6007 didn't return a result).
5996
6008
5997 * Fixed Nathan's last name in a couple of places (Gray, not Graham).
6009 * Fixed Nathan's last name in a couple of places (Gray, not Graham).
5998
6010
5999 * Fixed -Classic mode (wasn't working anymore).
6011 * Fixed -Classic mode (wasn't working anymore).
6000
6012
6001 * Added colored prompts using Nathan's new code. Colors are
6013 * Added colored prompts using Nathan's new code. Colors are
6002 currently hardwired, they can be user-configurable. For
6014 currently hardwired, they can be user-configurable. For
6003 developers, they can be chosen in file ipythonlib.py, at the
6015 developers, they can be chosen in file ipythonlib.py, at the
6004 beginning of the CachedOutput class def.
6016 beginning of the CachedOutput class def.
6005
6017
6006 2001-11-11 Fernando Perez <fperez@colorado.edu>
6018 2001-11-11 Fernando Perez <fperez@colorado.edu>
6007
6019
6008 * Version 0.1.5 released, 0.1.6 opened for further work.
6020 * Version 0.1.5 released, 0.1.6 opened for further work.
6009
6021
6010 * Changed magic_env to *return* the environment as a dict (not to
6022 * Changed magic_env to *return* the environment as a dict (not to
6011 print it). This way it prints, but it can also be processed.
6023 print it). This way it prints, but it can also be processed.
6012
6024
6013 * Added Verbose exception reporting to interactive
6025 * Added Verbose exception reporting to interactive
6014 exceptions. Very nice, now even 1/0 at the prompt gives a verbose
6026 exceptions. Very nice, now even 1/0 at the prompt gives a verbose
6015 traceback. Had to make some changes to the ultraTB file. This is
6027 traceback. Had to make some changes to the ultraTB file. This is
6016 probably the last 'big' thing in my mental todo list. This ties
6028 probably the last 'big' thing in my mental todo list. This ties
6017 in with the next entry:
6029 in with the next entry:
6018
6030
6019 * Changed -Xi and -Xf to a single -xmode option. Now all the user
6031 * Changed -Xi and -Xf to a single -xmode option. Now all the user
6020 has to specify is Plain, Color or Verbose for all exception
6032 has to specify is Plain, Color or Verbose for all exception
6021 handling.
6033 handling.
6022
6034
6023 * Removed ShellServices option. All this can really be done via
6035 * Removed ShellServices option. All this can really be done via
6024 the magic system. It's easier to extend, cleaner and has automatic
6036 the magic system. It's easier to extend, cleaner and has automatic
6025 namespace protection and documentation.
6037 namespace protection and documentation.
6026
6038
6027 2001-11-09 Fernando Perez <fperez@colorado.edu>
6039 2001-11-09 Fernando Perez <fperez@colorado.edu>
6028
6040
6029 * Fixed bug in output cache flushing (missing parameter to
6041 * Fixed bug in output cache flushing (missing parameter to
6030 __init__). Other small bugs fixed (found using pychecker).
6042 __init__). Other small bugs fixed (found using pychecker).
6031
6043
6032 * Version 0.1.4 opened for bugfixing.
6044 * Version 0.1.4 opened for bugfixing.
6033
6045
6034 2001-11-07 Fernando Perez <fperez@colorado.edu>
6046 2001-11-07 Fernando Perez <fperez@colorado.edu>
6035
6047
6036 * Version 0.1.3 released, mainly because of the raw_input bug.
6048 * Version 0.1.3 released, mainly because of the raw_input bug.
6037
6049
6038 * Fixed NASTY bug in raw_input: input line wasn't properly parsed
6050 * Fixed NASTY bug in raw_input: input line wasn't properly parsed
6039 and when testing for whether things were callable, a call could
6051 and when testing for whether things were callable, a call could
6040 actually be made to certain functions. They would get called again
6052 actually be made to certain functions. They would get called again
6041 once 'really' executed, with a resulting double call. A disaster
6053 once 'really' executed, with a resulting double call. A disaster
6042 in many cases (list.reverse() would never work!).
6054 in many cases (list.reverse() would never work!).
6043
6055
6044 * Removed prefilter() function, moved its code to raw_input (which
6056 * Removed prefilter() function, moved its code to raw_input (which
6045 after all was just a near-empty caller for prefilter). This saves
6057 after all was just a near-empty caller for prefilter). This saves
6046 a function call on every prompt, and simplifies the class a tiny bit.
6058 a function call on every prompt, and simplifies the class a tiny bit.
6047
6059
6048 * Fix _ip to __ip name in magic example file.
6060 * Fix _ip to __ip name in magic example file.
6049
6061
6050 * Changed 'tar -x -f' to 'tar xvf' in auto-installer. This should
6062 * Changed 'tar -x -f' to 'tar xvf' in auto-installer. This should
6051 work with non-gnu versions of tar.
6063 work with non-gnu versions of tar.
6052
6064
6053 2001-11-06 Fernando Perez <fperez@colorado.edu>
6065 2001-11-06 Fernando Perez <fperez@colorado.edu>
6054
6066
6055 * Version 0.1.2. Just to keep track of the recent changes.
6067 * Version 0.1.2. Just to keep track of the recent changes.
6056
6068
6057 * Fixed nasty bug in output prompt routine. It used to check 'if
6069 * Fixed nasty bug in output prompt routine. It used to check 'if
6058 arg != None...'. Problem is, this fails if arg implements a
6070 arg != None...'. Problem is, this fails if arg implements a
6059 special comparison (__cmp__) which disallows comparing to
6071 special comparison (__cmp__) which disallows comparing to
6060 None. Found it when trying to use the PhysicalQuantity module from
6072 None. Found it when trying to use the PhysicalQuantity module from
6061 ScientificPython.
6073 ScientificPython.
6062
6074
6063 2001-11-05 Fernando Perez <fperez@colorado.edu>
6075 2001-11-05 Fernando Perez <fperez@colorado.edu>
6064
6076
6065 * Also added dirs. Now the pushd/popd/dirs family functions
6077 * Also added dirs. Now the pushd/popd/dirs family functions
6066 basically like the shell, with the added convenience of going home
6078 basically like the shell, with the added convenience of going home
6067 when called with no args.
6079 when called with no args.
6068
6080
6069 * pushd/popd slightly modified to mimic shell behavior more
6081 * pushd/popd slightly modified to mimic shell behavior more
6070 closely.
6082 closely.
6071
6083
6072 * Added env,pushd,popd from ShellServices as magic functions. I
6084 * Added env,pushd,popd from ShellServices as magic functions. I
6073 think the cleanest will be to port all desired functions from
6085 think the cleanest will be to port all desired functions from
6074 ShellServices as magics and remove ShellServices altogether. This
6086 ShellServices as magics and remove ShellServices altogether. This
6075 will provide a single, clean way of adding functionality
6087 will provide a single, clean way of adding functionality
6076 (shell-type or otherwise) to IP.
6088 (shell-type or otherwise) to IP.
6077
6089
6078 2001-11-04 Fernando Perez <fperez@colorado.edu>
6090 2001-11-04 Fernando Perez <fperez@colorado.edu>
6079
6091
6080 * Added .ipython/ directory to sys.path. This way users can keep
6092 * Added .ipython/ directory to sys.path. This way users can keep
6081 customizations there and access them via import.
6093 customizations there and access them via import.
6082
6094
6083 2001-11-03 Fernando Perez <fperez@colorado.edu>
6095 2001-11-03 Fernando Perez <fperez@colorado.edu>
6084
6096
6085 * Opened version 0.1.1 for new changes.
6097 * Opened version 0.1.1 for new changes.
6086
6098
6087 * Changed version number to 0.1.0: first 'public' release, sent to
6099 * Changed version number to 0.1.0: first 'public' release, sent to
6088 Nathan and Janko.
6100 Nathan and Janko.
6089
6101
6090 * Lots of small fixes and tweaks.
6102 * Lots of small fixes and tweaks.
6091
6103
6092 * Minor changes to whos format. Now strings are shown, snipped if
6104 * Minor changes to whos format. Now strings are shown, snipped if
6093 too long.
6105 too long.
6094
6106
6095 * Changed ShellServices to work on __main__ so they show up in @who
6107 * Changed ShellServices to work on __main__ so they show up in @who
6096
6108
6097 * Help also works with ? at the end of a line:
6109 * Help also works with ? at the end of a line:
6098 ?sin and sin?
6110 ?sin and sin?
6099 both produce the same effect. This is nice, as often I use the
6111 both produce the same effect. This is nice, as often I use the
6100 tab-complete to find the name of a method, but I used to then have
6112 tab-complete to find the name of a method, but I used to then have
6101 to go to the beginning of the line to put a ? if I wanted more
6113 to go to the beginning of the line to put a ? if I wanted more
6102 info. Now I can just add the ? and hit return. Convenient.
6114 info. Now I can just add the ? and hit return. Convenient.
6103
6115
6104 2001-11-02 Fernando Perez <fperez@colorado.edu>
6116 2001-11-02 Fernando Perez <fperez@colorado.edu>
6105
6117
6106 * Python version check (>=2.1) added.
6118 * Python version check (>=2.1) added.
6107
6119
6108 * Added LazyPython documentation. At this point the docs are quite
6120 * Added LazyPython documentation. At this point the docs are quite
6109 a mess. A cleanup is in order.
6121 a mess. A cleanup is in order.
6110
6122
6111 * Auto-installer created. For some bizarre reason, the zipfiles
6123 * Auto-installer created. For some bizarre reason, the zipfiles
6112 module isn't working on my system. So I made a tar version
6124 module isn't working on my system. So I made a tar version
6113 (hopefully the command line options in various systems won't kill
6125 (hopefully the command line options in various systems won't kill
6114 me).
6126 me).
6115
6127
6116 * Fixes to Struct in genutils. Now all dictionary-like methods are
6128 * Fixes to Struct in genutils. Now all dictionary-like methods are
6117 protected (reasonably).
6129 protected (reasonably).
6118
6130
6119 * Added pager function to genutils and changed ? to print usage
6131 * Added pager function to genutils and changed ? to print usage
6120 note through it (it was too long).
6132 note through it (it was too long).
6121
6133
6122 * Added the LazyPython functionality. Works great! I changed the
6134 * Added the LazyPython functionality. Works great! I changed the
6123 auto-quote escape to ';', it's on home row and next to '. But
6135 auto-quote escape to ';', it's on home row and next to '. But
6124 both auto-quote and auto-paren (still /) escapes are command-line
6136 both auto-quote and auto-paren (still /) escapes are command-line
6125 parameters.
6137 parameters.
6126
6138
6127
6139
6128 2001-11-01 Fernando Perez <fperez@colorado.edu>
6140 2001-11-01 Fernando Perez <fperez@colorado.edu>
6129
6141
6130 * Version changed to 0.0.7. Fairly large change: configuration now
6142 * Version changed to 0.0.7. Fairly large change: configuration now
6131 is all stored in a directory, by default .ipython. There, all
6143 is all stored in a directory, by default .ipython. There, all
6132 config files have normal looking names (not .names)
6144 config files have normal looking names (not .names)
6133
6145
6134 * Version 0.0.6 Released first to Lucas and Archie as a test
6146 * Version 0.0.6 Released first to Lucas and Archie as a test
6135 run. Since it's the first 'semi-public' release, change version to
6147 run. Since it's the first 'semi-public' release, change version to
6136 > 0.0.6 for any changes now.
6148 > 0.0.6 for any changes now.
6137
6149
6138 * Stuff I had put in the ipplib.py changelog:
6150 * Stuff I had put in the ipplib.py changelog:
6139
6151
6140 Changes to InteractiveShell:
6152 Changes to InteractiveShell:
6141
6153
6142 - Made the usage message a parameter.
6154 - Made the usage message a parameter.
6143
6155
6144 - Require the name of the shell variable to be given. It's a bit
6156 - Require the name of the shell variable to be given. It's a bit
6145 of a hack, but allows the name 'shell' not to be hardwired in the
6157 of a hack, but allows the name 'shell' not to be hardwired in the
6146 magic (@) handler, which is problematic b/c it requires
6158 magic (@) handler, which is problematic b/c it requires
6147 polluting the global namespace with 'shell'. This in turn is
6159 polluting the global namespace with 'shell'. This in turn is
6148 fragile: if a user redefines a variable called shell, things
6160 fragile: if a user redefines a variable called shell, things
6149 break.
6161 break.
6150
6162
6151 - magic @: all functions available through @ need to be defined
6163 - magic @: all functions available through @ need to be defined
6152 as magic_<name>, even though they can be called simply as
6164 as magic_<name>, even though they can be called simply as
6153 @<name>. This allows the special command @magic to gather
6165 @<name>. This allows the special command @magic to gather
6154 information automatically about all existing magic functions,
6166 information automatically about all existing magic functions,
6155 even if they are run-time user extensions, by parsing the shell
6167 even if they are run-time user extensions, by parsing the shell
6156 instance __dict__ looking for special magic_ names.
6168 instance __dict__ looking for special magic_ names.
6157
6169
6158 - mainloop: added *two* local namespace parameters. This allows
6170 - mainloop: added *two* local namespace parameters. This allows
6159 the class to differentiate between parameters which were there
6171 the class to differentiate between parameters which were there
6160 before and after command line initialization was processed. This
6172 before and after command line initialization was processed. This
6161 way, later @who can show things loaded at startup by the
6173 way, later @who can show things loaded at startup by the
6162 user. This trick was necessary to make session saving/reloading
6174 user. This trick was necessary to make session saving/reloading
6163 really work: ideally after saving/exiting/reloading a session,
6175 really work: ideally after saving/exiting/reloading a session,
6164 *everything* should look the same, including the output of @who. I
6176 *everything* should look the same, including the output of @who. I
6165 was only able to make this work with this double namespace
6177 was only able to make this work with this double namespace
6166 trick.
6178 trick.
6167
6179
6168 - added a header to the logfile which allows (almost) full
6180 - added a header to the logfile which allows (almost) full
6169 session restoring.
6181 session restoring.
6170
6182
6171 - prepend lines beginning with @ or !, with a and log
6183 - prepend lines beginning with @ or !, with a and log
6172 them. Why? !lines: may be useful to know what you did @lines:
6184 them. Why? !lines: may be useful to know what you did @lines:
6173 they may affect session state. So when restoring a session, at
6185 they may affect session state. So when restoring a session, at
6174 least inform the user of their presence. I couldn't quite get
6186 least inform the user of their presence. I couldn't quite get
6175 them to properly re-execute, but at least the user is warned.
6187 them to properly re-execute, but at least the user is warned.
6176
6188
6177 * Started ChangeLog.
6189 * Started ChangeLog.
General Comments 0
You need to be logged in to leave comments. Login now