##// END OF EJS Templates
- Bug fixes in Demo code to support demos with IPython syntax...
fperez -
Show More
@@ -1,3068 +1,3072 b''
1 1 # -*- coding: utf-8 -*-
2 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 7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
8 8 # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
9 9 #
10 10 # Distributed under the terms of the BSD License. The full license is in
11 11 # the file COPYING, distributed as part of this software.
12 12 #*****************************************************************************
13 13
14 14 #****************************************************************************
15 15 # Modules and globals
16 16
17 17 from IPython import Release
18 18 __author__ = '%s <%s>\n%s <%s>' % \
19 19 ( Release.authors['Janko'] + Release.authors['Fernando'] )
20 20 __license__ = Release.license
21 21
22 22 # Python standard modules
23 23 import __builtin__
24 24 import bdb
25 25 import inspect
26 26 import os
27 27 import pdb
28 28 import pydoc
29 29 import sys
30 30 import re
31 31 import tempfile
32 32 import time
33 33 import cPickle as pickle
34 34 import textwrap
35 35 from cStringIO import StringIO
36 36 from getopt import getopt,GetoptError
37 37 from pprint import pprint, pformat
38 38
39 39 # cProfile was added in Python2.5
40 40 try:
41 41 import cProfile as profile
42 42 import pstats
43 43 except ImportError:
44 44 # profile isn't bundled by default in Debian for license reasons
45 45 try:
46 46 import profile,pstats
47 47 except ImportError:
48 48 profile = pstats = None
49 49
50 50 # Homebrewed
51 51 import IPython
52 52 from IPython import Debugger, OInspect, wildcard
53 53 from IPython.FakeModule import FakeModule
54 54 from IPython.Itpl import Itpl, itpl, printpl,itplns
55 55 from IPython.PyColorize import Parser
56 56 from IPython.ipstruct import Struct
57 57 from IPython.macro import Macro
58 58 from IPython.genutils import *
59 59 from IPython import platutils
60 60
61 61 #***************************************************************************
62 62 # Utility functions
63 63 def on_off(tag):
64 64 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
65 65 return ['OFF','ON'][tag]
66 66
67 67 class Bunch: pass
68 68
69 69 #***************************************************************************
70 70 # Main class implementing Magic functionality
71 71 class Magic:
72 72 """Magic functions for InteractiveShell.
73 73
74 74 Shell functions which can be reached as %function_name. All magic
75 75 functions should accept a string, which they can parse for their own
76 76 needs. This can make some functions easier to type, eg `%cd ../`
77 77 vs. `%cd("../")`
78 78
79 79 ALL definitions MUST begin with the prefix magic_. The user won't need it
80 80 at the command line, but it is is needed in the definition. """
81 81
82 82 # class globals
83 83 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
84 84 'Automagic is ON, % prefix NOT needed for magic functions.']
85 85
86 86 #......................................................................
87 87 # some utility functions
88 88
89 89 def __init__(self,shell):
90 90
91 91 self.options_table = {}
92 92 if profile is None:
93 93 self.magic_prun = self.profile_missing_notice
94 94 self.shell = shell
95 95
96 96 # namespace for holding state we may need
97 97 self._magic_state = Bunch()
98 98
99 99 def profile_missing_notice(self, *args, **kwargs):
100 100 error("""\
101 101 The profile module could not be found. If you are a Debian user,
102 102 it has been removed from the standard Debian package because of its non-free
103 103 license. To use profiling, please install"python2.3-profiler" from non-free.""")
104 104
105 105 def default_option(self,fn,optstr):
106 106 """Make an entry in the options_table for fn, with value optstr"""
107 107
108 108 if fn not in self.lsmagic():
109 109 error("%s is not a magic function" % fn)
110 110 self.options_table[fn] = optstr
111 111
112 112 def lsmagic(self):
113 113 """Return a list of currently available magic functions.
114 114
115 115 Gives a list of the bare names after mangling (['ls','cd', ...], not
116 116 ['magic_ls','magic_cd',...]"""
117 117
118 118 # FIXME. This needs a cleanup, in the way the magics list is built.
119 119
120 120 # magics in class definition
121 121 class_magic = lambda fn: fn.startswith('magic_') and \
122 122 callable(Magic.__dict__[fn])
123 123 # in instance namespace (run-time user additions)
124 124 inst_magic = lambda fn: fn.startswith('magic_') and \
125 125 callable(self.__dict__[fn])
126 126 # and bound magics by user (so they can access self):
127 127 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
128 128 callable(self.__class__.__dict__[fn])
129 129 magics = filter(class_magic,Magic.__dict__.keys()) + \
130 130 filter(inst_magic,self.__dict__.keys()) + \
131 131 filter(inst_bound_magic,self.__class__.__dict__.keys())
132 132 out = []
133 133 for fn in magics:
134 134 out.append(fn.replace('magic_','',1))
135 135 out.sort()
136 136 return out
137 137
138 138 def extract_input_slices(self,slices,raw=False):
139 139 """Return as a string a set of input history slices.
140 140
141 141 Inputs:
142 142
143 143 - slices: the set of slices is given as a list of strings (like
144 144 ['1','4:8','9'], since this function is for use by magic functions
145 145 which get their arguments as strings.
146 146
147 147 Optional inputs:
148 148
149 149 - raw(False): by default, the processed input is used. If this is
150 150 true, the raw input history is used instead.
151 151
152 152 Note that slices can be called with two notations:
153 153
154 154 N:M -> standard python form, means including items N...(M-1).
155 155
156 156 N-M -> include items N..M (closed endpoint)."""
157 157
158 158 if raw:
159 159 hist = self.shell.input_hist_raw
160 160 else:
161 161 hist = self.shell.input_hist
162 162
163 163 cmds = []
164 164 for chunk in slices:
165 165 if ':' in chunk:
166 166 ini,fin = map(int,chunk.split(':'))
167 167 elif '-' in chunk:
168 168 ini,fin = map(int,chunk.split('-'))
169 169 fin += 1
170 170 else:
171 171 ini = int(chunk)
172 172 fin = ini+1
173 173 cmds.append(hist[ini:fin])
174 174 return cmds
175 175
176 176 def _ofind(self, oname, namespaces=None):
177 177 """Find an object in the available namespaces.
178 178
179 179 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
180 180
181 181 Has special code to detect magic functions.
182 182 """
183 183
184 184 oname = oname.strip()
185 185
186 186 alias_ns = None
187 187 if namespaces is None:
188 188 # Namespaces to search in:
189 189 # Put them in a list. The order is important so that we
190 190 # find things in the same order that Python finds them.
191 191 namespaces = [ ('Interactive', self.shell.user_ns),
192 192 ('IPython internal', self.shell.internal_ns),
193 193 ('Python builtin', __builtin__.__dict__),
194 194 ('Alias', self.shell.alias_table),
195 195 ]
196 196 alias_ns = self.shell.alias_table
197 197
198 198 # initialize results to 'null'
199 199 found = 0; obj = None; ospace = None; ds = None;
200 200 ismagic = 0; isalias = 0; parent = None
201 201
202 202 # Look for the given name by splitting it in parts. If the head is
203 203 # found, then we look for all the remaining parts as members, and only
204 204 # declare success if we can find them all.
205 205 oname_parts = oname.split('.')
206 206 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
207 207 for nsname,ns in namespaces:
208 208 try:
209 209 obj = ns[oname_head]
210 210 except KeyError:
211 211 continue
212 212 else:
213 213 for part in oname_rest:
214 214 try:
215 215 parent = obj
216 216 obj = getattr(obj,part)
217 217 except:
218 218 # Blanket except b/c some badly implemented objects
219 219 # allow __getattr__ to raise exceptions other than
220 220 # AttributeError, which then crashes IPython.
221 221 break
222 222 else:
223 223 # If we finish the for loop (no break), we got all members
224 224 found = 1
225 225 ospace = nsname
226 226 if ns == alias_ns:
227 227 isalias = 1
228 228 break # namespace loop
229 229
230 230 # Try to see if it's magic
231 231 if not found:
232 232 if oname.startswith(self.shell.ESC_MAGIC):
233 233 oname = oname[1:]
234 234 obj = getattr(self,'magic_'+oname,None)
235 235 if obj is not None:
236 236 found = 1
237 237 ospace = 'IPython internal'
238 238 ismagic = 1
239 239
240 240 # Last try: special-case some literals like '', [], {}, etc:
241 241 if not found and oname_head in ["''",'""','[]','{}','()']:
242 242 obj = eval(oname_head)
243 243 found = 1
244 244 ospace = 'Interactive'
245 245
246 246 return {'found':found, 'obj':obj, 'namespace':ospace,
247 247 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
248 248
249 249 def arg_err(self,func):
250 250 """Print docstring if incorrect arguments were passed"""
251 251 print 'Error in arguments:'
252 252 print OInspect.getdoc(func)
253 253
254 254 def format_latex(self,strng):
255 255 """Format a string for latex inclusion."""
256 256
257 257 # Characters that need to be escaped for latex:
258 258 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
259 259 # Magic command names as headers:
260 260 cmd_name_re = re.compile(r'^(%s.*?):' % self.shell.ESC_MAGIC,
261 261 re.MULTILINE)
262 262 # Magic commands
263 263 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % self.shell.ESC_MAGIC,
264 264 re.MULTILINE)
265 265 # Paragraph continue
266 266 par_re = re.compile(r'\\$',re.MULTILINE)
267 267
268 268 # The "\n" symbol
269 269 newline_re = re.compile(r'\\n')
270 270
271 271 # Now build the string for output:
272 272 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
273 273 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
274 274 strng)
275 275 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
276 276 strng = par_re.sub(r'\\\\',strng)
277 277 strng = escape_re.sub(r'\\\1',strng)
278 278 strng = newline_re.sub(r'\\textbackslash{}n',strng)
279 279 return strng
280 280
281 281 def format_screen(self,strng):
282 282 """Format a string for screen printing.
283 283
284 284 This removes some latex-type format codes."""
285 285 # Paragraph continue
286 286 par_re = re.compile(r'\\$',re.MULTILINE)
287 287 strng = par_re.sub('',strng)
288 288 return strng
289 289
290 290 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
291 291 """Parse options passed to an argument string.
292 292
293 293 The interface is similar to that of getopt(), but it returns back a
294 294 Struct with the options as keys and the stripped argument string still
295 295 as a string.
296 296
297 297 arg_str is quoted as a true sys.argv vector by using shlex.split.
298 298 This allows us to easily expand variables, glob files, quote
299 299 arguments, etc.
300 300
301 301 Options:
302 302 -mode: default 'string'. If given as 'list', the argument string is
303 303 returned as a list (split on whitespace) instead of a string.
304 304
305 305 -list_all: put all option values in lists. Normally only options
306 306 appearing more than once are put in a list.
307 307
308 308 -posix (True): whether to split the input line in POSIX mode or not,
309 309 as per the conventions outlined in the shlex module from the
310 310 standard library."""
311 311
312 312 # inject default options at the beginning of the input line
313 313 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
314 314 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
315 315
316 316 mode = kw.get('mode','string')
317 317 if mode not in ['string','list']:
318 318 raise ValueError,'incorrect mode given: %s' % mode
319 319 # Get options
320 320 list_all = kw.get('list_all',0)
321 321 posix = kw.get('posix',True)
322 322
323 323 # Check if we have more than one argument to warrant extra processing:
324 324 odict = {} # Dictionary with options
325 325 args = arg_str.split()
326 326 if len(args) >= 1:
327 327 # If the list of inputs only has 0 or 1 thing in it, there's no
328 328 # need to look for options
329 329 argv = arg_split(arg_str,posix)
330 330 # Do regular option processing
331 331 try:
332 332 opts,args = getopt(argv,opt_str,*long_opts)
333 333 except GetoptError,e:
334 334 raise GetoptError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
335 335 " ".join(long_opts)))
336 336 for o,a in opts:
337 337 if o.startswith('--'):
338 338 o = o[2:]
339 339 else:
340 340 o = o[1:]
341 341 try:
342 342 odict[o].append(a)
343 343 except AttributeError:
344 344 odict[o] = [odict[o],a]
345 345 except KeyError:
346 346 if list_all:
347 347 odict[o] = [a]
348 348 else:
349 349 odict[o] = a
350 350
351 351 # Prepare opts,args for return
352 352 opts = Struct(odict)
353 353 if mode == 'string':
354 354 args = ' '.join(args)
355 355
356 356 return opts,args
357 357
358 358 #......................................................................
359 359 # And now the actual magic functions
360 360
361 361 # Functions for IPython shell work (vars,funcs, config, etc)
362 362 def magic_lsmagic(self, parameter_s = ''):
363 363 """List currently available magic functions."""
364 364 mesc = self.shell.ESC_MAGIC
365 365 print 'Available magic functions:\n'+mesc+\
366 366 (' '+mesc).join(self.lsmagic())
367 367 print '\n' + Magic.auto_status[self.shell.rc.automagic]
368 368 return None
369 369
370 370 def magic_magic(self, parameter_s = ''):
371 371 """Print information about the magic function system."""
372 372
373 373 mode = ''
374 374 try:
375 375 if parameter_s.split()[0] == '-latex':
376 376 mode = 'latex'
377 377 if parameter_s.split()[0] == '-brief':
378 378 mode = 'brief'
379 379 except:
380 380 pass
381 381
382 382 magic_docs = []
383 383 for fname in self.lsmagic():
384 384 mname = 'magic_' + fname
385 385 for space in (Magic,self,self.__class__):
386 386 try:
387 387 fn = space.__dict__[mname]
388 388 except KeyError:
389 389 pass
390 390 else:
391 391 break
392 392 if mode == 'brief':
393 393 # only first line
394 394 fndoc = fn.__doc__.split('\n',1)[0]
395 395 else:
396 396 fndoc = fn.__doc__
397 397
398 398 magic_docs.append('%s%s:\n\t%s\n' %(self.shell.ESC_MAGIC,
399 399 fname,fndoc))
400 400 magic_docs = ''.join(magic_docs)
401 401
402 402 if mode == 'latex':
403 403 print self.format_latex(magic_docs)
404 404 return
405 405 else:
406 406 magic_docs = self.format_screen(magic_docs)
407 407 if mode == 'brief':
408 408 return magic_docs
409 409
410 410 outmsg = """
411 411 IPython's 'magic' functions
412 412 ===========================
413 413
414 414 The magic function system provides a series of functions which allow you to
415 415 control the behavior of IPython itself, plus a lot of system-type
416 416 features. All these functions are prefixed with a % character, but parameters
417 417 are given without parentheses or quotes.
418 418
419 419 NOTE: If you have 'automagic' enabled (via the command line option or with the
420 420 %automagic function), you don't need to type in the % explicitly. By default,
421 421 IPython ships with automagic on, so you should only rarely need the % escape.
422 422
423 423 Example: typing '%cd mydir' (without the quotes) changes you working directory
424 424 to 'mydir', if it exists.
425 425
426 426 You can define your own magic functions to extend the system. See the supplied
427 427 ipythonrc and example-magic.py files for details (in your ipython
428 428 configuration directory, typically $HOME/.ipython/).
429 429
430 430 You can also define your own aliased names for magic functions. In your
431 431 ipythonrc file, placing a line like:
432 432
433 433 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
434 434
435 435 will define %pf as a new name for %profile.
436 436
437 437 You can also call magics in code using the ipmagic() function, which IPython
438 438 automatically adds to the builtin namespace. Type 'ipmagic?' for details.
439 439
440 440 For a list of the available magic functions, use %lsmagic. For a description
441 441 of any of them, type %magic_name?, e.g. '%cd?'.
442 442
443 443 Currently the magic system has the following functions:\n"""
444 444
445 445 mesc = self.shell.ESC_MAGIC
446 446 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
447 447 "\n\n%s%s\n\n%s" % (outmsg,
448 448 magic_docs,mesc,mesc,
449 449 (' '+mesc).join(self.lsmagic()),
450 450 Magic.auto_status[self.shell.rc.automagic] ) )
451 451
452 452 page(outmsg,screen_lines=self.shell.rc.screen_length)
453 453
454 454 def magic_automagic(self, parameter_s = ''):
455 455 """Make magic functions callable without having to type the initial %.
456 456
457 457 Toggles on/off (when off, you must call it as %automagic, of
458 458 course). Note that magic functions have lowest priority, so if there's
459 459 a variable whose name collides with that of a magic fn, automagic
460 460 won't work for that function (you get the variable instead). However,
461 461 if you delete the variable (del var), the previously shadowed magic
462 462 function becomes visible to automagic again."""
463 463
464 464 rc = self.shell.rc
465 465 rc.automagic = not rc.automagic
466 466 print '\n' + Magic.auto_status[rc.automagic]
467 467
468 468 def magic_autocall(self, parameter_s = ''):
469 469 """Make functions callable without having to type parentheses.
470 470
471 471 Usage:
472 472
473 473 %autocall [mode]
474 474
475 475 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
476 476 value is toggled on and off (remembering the previous state)."""
477 477
478 478 rc = self.shell.rc
479 479
480 480 if parameter_s:
481 481 arg = int(parameter_s)
482 482 else:
483 483 arg = 'toggle'
484 484
485 485 if not arg in (0,1,2,'toggle'):
486 486 error('Valid modes: (0->Off, 1->Smart, 2->Full')
487 487 return
488 488
489 489 if arg in (0,1,2):
490 490 rc.autocall = arg
491 491 else: # toggle
492 492 if rc.autocall:
493 493 self._magic_state.autocall_save = rc.autocall
494 494 rc.autocall = 0
495 495 else:
496 496 try:
497 497 rc.autocall = self._magic_state.autocall_save
498 498 except AttributeError:
499 499 rc.autocall = self._magic_state.autocall_save = 1
500 500
501 501 print "Automatic calling is:",['OFF','Smart','Full'][rc.autocall]
502 502
503 503 def magic_autoindent(self, parameter_s = ''):
504 504 """Toggle autoindent on/off (if available)."""
505 505
506 506 self.shell.set_autoindent()
507 507 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
508 508
509 509 def magic_system_verbose(self, parameter_s = ''):
510 510 """Set verbose printing of system calls.
511 511
512 512 If called without an argument, act as a toggle"""
513 513
514 514 if parameter_s:
515 515 val = bool(eval(parameter_s))
516 516 else:
517 517 val = None
518 518
519 519 self.shell.rc_set_toggle('system_verbose',val)
520 520 print "System verbose printing is:",\
521 521 ['OFF','ON'][self.shell.rc.system_verbose]
522 522
523 523 def magic_history(self, parameter_s = ''):
524 524 """Print input history (_i<n> variables), with most recent last.
525 525
526 526 %history -> print at most 40 inputs (some may be multi-line)\\
527 527 %history n -> print at most n inputs\\
528 528 %history n1 n2 -> print inputs between n1 and n2 (n2 not included)\\
529 529
530 530 Each input's number <n> is shown, and is accessible as the
531 531 automatically generated variable _i<n>. Multi-line statements are
532 532 printed starting at a new line for easy copy/paste.
533 533
534 534
535 535 Options:
536 536
537 537 -n: do NOT print line numbers. This is useful if you want to get a
538 538 printout of many lines which can be directly pasted into a text
539 539 editor.
540 540
541 541 This feature is only available if numbered prompts are in use.
542 542
543 543 -r: print the 'raw' history. IPython filters your input and
544 544 converts it all into valid Python source before executing it (things
545 545 like magics or aliases are turned into function calls, for
546 546 example). With this option, you'll see the unfiltered history
547 547 instead of the filtered version: '%cd /' will be seen as '%cd /'
548 548 instead of '_ip.magic("%cd /")'.
549 549 """
550 550
551 551 shell = self.shell
552 552 if not shell.outputcache.do_full_cache:
553 553 print 'This feature is only available if numbered prompts are in use.'
554 554 return
555 555 opts,args = self.parse_options(parameter_s,'nr',mode='list')
556 556
557 557 if opts.has_key('r'):
558 558 input_hist = shell.input_hist_raw
559 559 else:
560 560 input_hist = shell.input_hist
561 561
562 562 default_length = 40
563 563 if len(args) == 0:
564 564 final = len(input_hist)
565 565 init = max(1,final-default_length)
566 566 elif len(args) == 1:
567 567 final = len(input_hist)
568 568 init = max(1,final-int(args[0]))
569 569 elif len(args) == 2:
570 570 init,final = map(int,args)
571 571 else:
572 572 warn('%hist takes 0, 1 or 2 arguments separated by spaces.')
573 573 print self.magic_hist.__doc__
574 574 return
575 575 width = len(str(final))
576 576 line_sep = ['','\n']
577 577 print_nums = not opts.has_key('n')
578 578 for in_num in range(init,final):
579 579 inline = input_hist[in_num]
580 580 multiline = int(inline.count('\n') > 1)
581 581 if print_nums:
582 582 print '%s:%s' % (str(in_num).ljust(width),line_sep[multiline]),
583 583 print inline,
584 584
585 585 def magic_hist(self, parameter_s=''):
586 586 """Alternate name for %history."""
587 587 return self.magic_history(parameter_s)
588 588
589 589 def magic_p(self, parameter_s=''):
590 590 """Just a short alias for Python's 'print'."""
591 591 exec 'print ' + parameter_s in self.shell.user_ns
592 592
593 593 def magic_r(self, parameter_s=''):
594 594 """Repeat previous input.
595 595
596 596 If given an argument, repeats the previous command which starts with
597 597 the same string, otherwise it just repeats the previous input.
598 598
599 599 Shell escaped commands (with ! as first character) are not recognized
600 600 by this system, only pure python code and magic commands.
601 601 """
602 602
603 603 start = parameter_s.strip()
604 604 esc_magic = self.shell.ESC_MAGIC
605 605 # Identify magic commands even if automagic is on (which means
606 606 # the in-memory version is different from that typed by the user).
607 607 if self.shell.rc.automagic:
608 608 start_magic = esc_magic+start
609 609 else:
610 610 start_magic = start
611 611 # Look through the input history in reverse
612 612 for n in range(len(self.shell.input_hist)-2,0,-1):
613 613 input = self.shell.input_hist[n]
614 614 # skip plain 'r' lines so we don't recurse to infinity
615 615 if input != '_ip.magic("r")\n' and \
616 616 (input.startswith(start) or input.startswith(start_magic)):
617 617 #print 'match',`input` # dbg
618 618 print 'Executing:',input,
619 619 self.shell.runlines(input)
620 620 return
621 621 print 'No previous input matching `%s` found.' % start
622 622
623 623 def magic_page(self, parameter_s=''):
624 624 """Pretty print the object and display it through a pager.
625 625
626 626 %page [options] OBJECT
627 627
628 628 If no object is given, use _ (last output).
629 629
630 630 Options:
631 631
632 632 -r: page str(object), don't pretty-print it."""
633 633
634 634 # After a function contributed by Olivier Aubert, slightly modified.
635 635
636 636 # Process options/args
637 637 opts,args = self.parse_options(parameter_s,'r')
638 638 raw = 'r' in opts
639 639
640 640 oname = args and args or '_'
641 641 info = self._ofind(oname)
642 642 if info['found']:
643 643 txt = (raw and str or pformat)( info['obj'] )
644 644 page(txt)
645 645 else:
646 646 print 'Object `%s` not found' % oname
647 647
648 648 def magic_profile(self, parameter_s=''):
649 649 """Print your currently active IPyhton profile."""
650 650 if self.shell.rc.profile:
651 651 printpl('Current IPython profile: $self.shell.rc.profile.')
652 652 else:
653 653 print 'No profile active.'
654 654
655 655 def _inspect(self,meth,oname,namespaces=None,**kw):
656 656 """Generic interface to the inspector system.
657 657
658 658 This function is meant to be called by pdef, pdoc & friends."""
659 659
660 660 oname = oname.strip()
661 661 info = Struct(self._ofind(oname, namespaces))
662 662
663 663 if info.found:
664 664 # Get the docstring of the class property if it exists.
665 665 path = oname.split('.')
666 666 root = '.'.join(path[:-1])
667 667 if info.parent is not None:
668 668 try:
669 669 target = getattr(info.parent, '__class__')
670 670 # The object belongs to a class instance.
671 671 try:
672 672 target = getattr(target, path[-1])
673 673 # The class defines the object.
674 674 if isinstance(target, property):
675 675 oname = root + '.__class__.' + path[-1]
676 676 info = Struct(self._ofind(oname))
677 677 except AttributeError: pass
678 678 except AttributeError: pass
679 679
680 680 pmethod = getattr(self.shell.inspector,meth)
681 681 formatter = info.ismagic and self.format_screen or None
682 682 if meth == 'pdoc':
683 683 pmethod(info.obj,oname,formatter)
684 684 elif meth == 'pinfo':
685 685 pmethod(info.obj,oname,formatter,info,**kw)
686 686 else:
687 687 pmethod(info.obj,oname)
688 688 else:
689 689 print 'Object `%s` not found.' % oname
690 690 return 'not found' # so callers can take other action
691 691
692 692 def magic_pdef(self, parameter_s='', namespaces=None):
693 693 """Print the definition header for any callable object.
694 694
695 695 If the object is a class, print the constructor information."""
696 696 self._inspect('pdef',parameter_s, namespaces)
697 697
698 698 def magic_pdoc(self, parameter_s='', namespaces=None):
699 699 """Print the docstring for an object.
700 700
701 701 If the given object is a class, it will print both the class and the
702 702 constructor docstrings."""
703 703 self._inspect('pdoc',parameter_s, namespaces)
704 704
705 705 def magic_psource(self, parameter_s='', namespaces=None):
706 706 """Print (or run through pager) the source code for an object."""
707 707 self._inspect('psource',parameter_s, namespaces)
708 708
709 709 def magic_pfile(self, parameter_s=''):
710 710 """Print (or run through pager) the file where an object is defined.
711 711
712 712 The file opens at the line where the object definition begins. IPython
713 713 will honor the environment variable PAGER if set, and otherwise will
714 714 do its best to print the file in a convenient form.
715 715
716 716 If the given argument is not an object currently defined, IPython will
717 717 try to interpret it as a filename (automatically adding a .py extension
718 718 if needed). You can thus use %pfile as a syntax highlighting code
719 719 viewer."""
720 720
721 721 # first interpret argument as an object name
722 722 out = self._inspect('pfile',parameter_s)
723 723 # if not, try the input as a filename
724 724 if out == 'not found':
725 725 try:
726 726 filename = get_py_filename(parameter_s)
727 727 except IOError,msg:
728 728 print msg
729 729 return
730 730 page(self.shell.inspector.format(file(filename).read()))
731 731
732 732 def magic_pinfo(self, parameter_s='', namespaces=None):
733 733 """Provide detailed information about an object.
734 734
735 735 '%pinfo object' is just a synonym for object? or ?object."""
736 736
737 737 #print 'pinfo par: <%s>' % parameter_s # dbg
738 738
739 739 # detail_level: 0 -> obj? , 1 -> obj??
740 740 detail_level = 0
741 741 # We need to detect if we got called as 'pinfo pinfo foo', which can
742 742 # happen if the user types 'pinfo foo?' at the cmd line.
743 743 pinfo,qmark1,oname,qmark2 = \
744 744 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
745 745 if pinfo or qmark1 or qmark2:
746 746 detail_level = 1
747 747 if "*" in oname:
748 748 self.magic_psearch(oname)
749 749 else:
750 750 self._inspect('pinfo', oname, detail_level=detail_level,
751 751 namespaces=namespaces)
752 752
753 753 def magic_psearch(self, parameter_s=''):
754 754 """Search for object in namespaces by wildcard.
755 755
756 756 %psearch [options] PATTERN [OBJECT TYPE]
757 757
758 758 Note: ? can be used as a synonym for %psearch, at the beginning or at
759 759 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
760 760 rest of the command line must be unchanged (options come first), so
761 761 for example the following forms are equivalent
762 762
763 763 %psearch -i a* function
764 764 -i a* function?
765 765 ?-i a* function
766 766
767 767 Arguments:
768 768
769 769 PATTERN
770 770
771 771 where PATTERN is a string containing * as a wildcard similar to its
772 772 use in a shell. The pattern is matched in all namespaces on the
773 773 search path. By default objects starting with a single _ are not
774 774 matched, many IPython generated objects have a single
775 775 underscore. The default is case insensitive matching. Matching is
776 776 also done on the attributes of objects and not only on the objects
777 777 in a module.
778 778
779 779 [OBJECT TYPE]
780 780
781 781 Is the name of a python type from the types module. The name is
782 782 given in lowercase without the ending type, ex. StringType is
783 783 written string. By adding a type here only objects matching the
784 784 given type are matched. Using all here makes the pattern match all
785 785 types (this is the default).
786 786
787 787 Options:
788 788
789 789 -a: makes the pattern match even objects whose names start with a
790 790 single underscore. These names are normally ommitted from the
791 791 search.
792 792
793 793 -i/-c: make the pattern case insensitive/sensitive. If neither of
794 794 these options is given, the default is read from your ipythonrc
795 795 file. The option name which sets this value is
796 796 'wildcards_case_sensitive'. If this option is not specified in your
797 797 ipythonrc file, IPython's internal default is to do a case sensitive
798 798 search.
799 799
800 800 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
801 801 specifiy can be searched in any of the following namespaces:
802 802 'builtin', 'user', 'user_global','internal', 'alias', where
803 803 'builtin' and 'user' are the search defaults. Note that you should
804 804 not use quotes when specifying namespaces.
805 805
806 806 'Builtin' contains the python module builtin, 'user' contains all
807 807 user data, 'alias' only contain the shell aliases and no python
808 808 objects, 'internal' contains objects used by IPython. The
809 809 'user_global' namespace is only used by embedded IPython instances,
810 810 and it contains module-level globals. You can add namespaces to the
811 811 search with -s or exclude them with -e (these options can be given
812 812 more than once).
813 813
814 814 Examples:
815 815
816 816 %psearch a* -> objects beginning with an a
817 817 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
818 818 %psearch a* function -> all functions beginning with an a
819 819 %psearch re.e* -> objects beginning with an e in module re
820 820 %psearch r*.e* -> objects that start with e in modules starting in r
821 821 %psearch r*.* string -> all strings in modules beginning with r
822 822
823 823 Case sensitve search:
824 824
825 825 %psearch -c a* list all object beginning with lower case a
826 826
827 827 Show objects beginning with a single _:
828 828
829 829 %psearch -a _* list objects beginning with a single underscore"""
830 830
831 831 # default namespaces to be searched
832 832 def_search = ['user','builtin']
833 833
834 834 # Process options/args
835 835 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
836 836 opt = opts.get
837 837 shell = self.shell
838 838 psearch = shell.inspector.psearch
839 839
840 840 # select case options
841 841 if opts.has_key('i'):
842 842 ignore_case = True
843 843 elif opts.has_key('c'):
844 844 ignore_case = False
845 845 else:
846 846 ignore_case = not shell.rc.wildcards_case_sensitive
847 847
848 848 # Build list of namespaces to search from user options
849 849 def_search.extend(opt('s',[]))
850 850 ns_exclude = ns_exclude=opt('e',[])
851 851 ns_search = [nm for nm in def_search if nm not in ns_exclude]
852 852
853 853 # Call the actual search
854 854 try:
855 855 psearch(args,shell.ns_table,ns_search,
856 856 show_all=opt('a'),ignore_case=ignore_case)
857 857 except:
858 858 shell.showtraceback()
859 859
860 860 def magic_who_ls(self, parameter_s=''):
861 861 """Return a sorted list of all interactive variables.
862 862
863 863 If arguments are given, only variables of types matching these
864 864 arguments are returned."""
865 865
866 866 user_ns = self.shell.user_ns
867 867 internal_ns = self.shell.internal_ns
868 868 user_config_ns = self.shell.user_config_ns
869 869 out = []
870 870 typelist = parameter_s.split()
871 871
872 872 for i in user_ns:
873 873 if not (i.startswith('_') or i.startswith('_i')) \
874 874 and not (i in internal_ns or i in user_config_ns):
875 875 if typelist:
876 876 if type(user_ns[i]).__name__ in typelist:
877 877 out.append(i)
878 878 else:
879 879 out.append(i)
880 880 out.sort()
881 881 return out
882 882
883 883 def magic_who(self, parameter_s=''):
884 884 """Print all interactive variables, with some minimal formatting.
885 885
886 886 If any arguments are given, only variables whose type matches one of
887 887 these are printed. For example:
888 888
889 889 %who function str
890 890
891 891 will only list functions and strings, excluding all other types of
892 892 variables. To find the proper type names, simply use type(var) at a
893 893 command line to see how python prints type names. For example:
894 894
895 895 In [1]: type('hello')\\
896 896 Out[1]: <type 'str'>
897 897
898 898 indicates that the type name for strings is 'str'.
899 899
900 900 %who always excludes executed names loaded through your configuration
901 901 file and things which are internal to IPython.
902 902
903 903 This is deliberate, as typically you may load many modules and the
904 904 purpose of %who is to show you only what you've manually defined."""
905 905
906 906 varlist = self.magic_who_ls(parameter_s)
907 907 if not varlist:
908 908 print 'Interactive namespace is empty.'
909 909 return
910 910
911 911 # if we have variables, move on...
912 912
913 913 # stupid flushing problem: when prompts have no separators, stdout is
914 914 # getting lost. I'm starting to think this is a python bug. I'm having
915 915 # to force a flush with a print because even a sys.stdout.flush
916 916 # doesn't seem to do anything!
917 917
918 918 count = 0
919 919 for i in varlist:
920 920 print i+'\t',
921 921 count += 1
922 922 if count > 8:
923 923 count = 0
924 924 print
925 925 sys.stdout.flush() # FIXME. Why the hell isn't this flushing???
926 926
927 927 print # well, this does force a flush at the expense of an extra \n
928 928
929 929 def magic_whos(self, parameter_s=''):
930 930 """Like %who, but gives some extra information about each variable.
931 931
932 932 The same type filtering of %who can be applied here.
933 933
934 934 For all variables, the type is printed. Additionally it prints:
935 935
936 936 - For {},[],(): their length.
937 937
938 938 - For Numeric arrays, a summary with shape, number of elements,
939 939 typecode and size in memory.
940 940
941 941 - Everything else: a string representation, snipping their middle if
942 942 too long."""
943 943
944 944 varnames = self.magic_who_ls(parameter_s)
945 945 if not varnames:
946 946 print 'Interactive namespace is empty.'
947 947 return
948 948
949 949 # if we have variables, move on...
950 950
951 951 # for these types, show len() instead of data:
952 952 seq_types = [types.DictType,types.ListType,types.TupleType]
953 953
954 954 # for Numeric arrays, display summary info
955 955 try:
956 956 import Numeric
957 957 except ImportError:
958 958 array_type = None
959 959 else:
960 960 array_type = Numeric.ArrayType.__name__
961 961
962 962 # Find all variable names and types so we can figure out column sizes
963 963
964 964 def get_vars(i):
965 965 return self.shell.user_ns[i]
966 966
967 967 # some types are well known and can be shorter
968 968 abbrevs = {'IPython.macro.Macro' : 'Macro'}
969 969 def type_name(v):
970 970 tn = type(v).__name__
971 971 return abbrevs.get(tn,tn)
972 972
973 973 varlist = map(get_vars,varnames)
974 974
975 975 typelist = []
976 976 for vv in varlist:
977 977 tt = type_name(vv)
978 978
979 979 if tt=='instance':
980 980 typelist.append( abbrevs.get(str(vv.__class__),str(vv.__class__)))
981 981 else:
982 982 typelist.append(tt)
983 983
984 984 # column labels and # of spaces as separator
985 985 varlabel = 'Variable'
986 986 typelabel = 'Type'
987 987 datalabel = 'Data/Info'
988 988 colsep = 3
989 989 # variable format strings
990 990 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
991 991 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
992 992 aformat = "%s: %s elems, type `%s`, %s bytes"
993 993 # find the size of the columns to format the output nicely
994 994 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
995 995 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
996 996 # table header
997 997 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
998 998 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
999 999 # and the table itself
1000 1000 kb = 1024
1001 1001 Mb = 1048576 # kb**2
1002 1002 for vname,var,vtype in zip(varnames,varlist,typelist):
1003 1003 print itpl(vformat),
1004 1004 if vtype in seq_types:
1005 1005 print len(var)
1006 1006 elif vtype==array_type:
1007 1007 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
1008 1008 vsize = Numeric.size(var)
1009 1009 vbytes = vsize*var.itemsize()
1010 1010 if vbytes < 100000:
1011 1011 print aformat % (vshape,vsize,var.typecode(),vbytes)
1012 1012 else:
1013 1013 print aformat % (vshape,vsize,var.typecode(),vbytes),
1014 1014 if vbytes < Mb:
1015 1015 print '(%s kb)' % (vbytes/kb,)
1016 1016 else:
1017 1017 print '(%s Mb)' % (vbytes/Mb,)
1018 1018 else:
1019 1019 vstr = str(var).replace('\n','\\n')
1020 1020 if len(vstr) < 50:
1021 1021 print vstr
1022 1022 else:
1023 1023 printpl(vfmt_short)
1024 1024
1025 1025 def magic_reset(self, parameter_s=''):
1026 1026 """Resets the namespace by removing all names defined by the user.
1027 1027
1028 1028 Input/Output history are left around in case you need them."""
1029 1029
1030 1030 ans = self.shell.ask_yes_no(
1031 1031 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1032 1032 if not ans:
1033 1033 print 'Nothing done.'
1034 1034 return
1035 1035 user_ns = self.shell.user_ns
1036 1036 for i in self.magic_who_ls():
1037 1037 del(user_ns[i])
1038 1038
1039 1039 def magic_logstart(self,parameter_s=''):
1040 1040 """Start logging anywhere in a session.
1041 1041
1042 1042 %logstart [-o|-r|-t] [log_name [log_mode]]
1043 1043
1044 1044 If no name is given, it defaults to a file named 'ipython_log.py' in your
1045 1045 current directory, in 'rotate' mode (see below).
1046 1046
1047 1047 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1048 1048 history up to that point and then continues logging.
1049 1049
1050 1050 %logstart takes a second optional parameter: logging mode. This can be one
1051 1051 of (note that the modes are given unquoted):\\
1052 1052 append: well, that says it.\\
1053 1053 backup: rename (if exists) to name~ and start name.\\
1054 1054 global: single logfile in your home dir, appended to.\\
1055 1055 over : overwrite existing log.\\
1056 1056 rotate: create rotating logs name.1~, name.2~, etc.
1057 1057
1058 1058 Options:
1059 1059
1060 1060 -o: log also IPython's output. In this mode, all commands which
1061 1061 generate an Out[NN] prompt are recorded to the logfile, right after
1062 1062 their corresponding input line. The output lines are always
1063 1063 prepended with a '#[Out]# ' marker, so that the log remains valid
1064 1064 Python code.
1065 1065
1066 1066 Since this marker is always the same, filtering only the output from
1067 1067 a log is very easy, using for example a simple awk call:
1068 1068
1069 1069 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1070 1070
1071 1071 -r: log 'raw' input. Normally, IPython's logs contain the processed
1072 1072 input, so that user lines are logged in their final form, converted
1073 1073 into valid Python. For example, %Exit is logged as
1074 1074 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1075 1075 exactly as typed, with no transformations applied.
1076 1076
1077 1077 -t: put timestamps before each input line logged (these are put in
1078 1078 comments)."""
1079 1079
1080 1080 opts,par = self.parse_options(parameter_s,'ort')
1081 1081 log_output = 'o' in opts
1082 1082 log_raw_input = 'r' in opts
1083 1083 timestamp = 't' in opts
1084 1084
1085 1085 rc = self.shell.rc
1086 1086 logger = self.shell.logger
1087 1087
1088 1088 # if no args are given, the defaults set in the logger constructor by
1089 1089 # ipytohn remain valid
1090 1090 if par:
1091 1091 try:
1092 1092 logfname,logmode = par.split()
1093 1093 except:
1094 1094 logfname = par
1095 1095 logmode = 'backup'
1096 1096 else:
1097 1097 logfname = logger.logfname
1098 1098 logmode = logger.logmode
1099 1099 # put logfname into rc struct as if it had been called on the command
1100 1100 # line, so it ends up saved in the log header Save it in case we need
1101 1101 # to restore it...
1102 1102 old_logfile = rc.opts.get('logfile','')
1103 1103 if logfname:
1104 1104 logfname = os.path.expanduser(logfname)
1105 1105 rc.opts.logfile = logfname
1106 1106 loghead = self.shell.loghead_tpl % (rc.opts,rc.args)
1107 1107 try:
1108 1108 started = logger.logstart(logfname,loghead,logmode,
1109 1109 log_output,timestamp,log_raw_input)
1110 1110 except:
1111 1111 rc.opts.logfile = old_logfile
1112 1112 warn("Couldn't start log: %s" % sys.exc_info()[1])
1113 1113 else:
1114 1114 # log input history up to this point, optionally interleaving
1115 1115 # output if requested
1116 1116
1117 1117 if timestamp:
1118 1118 # disable timestamping for the previous history, since we've
1119 1119 # lost those already (no time machine here).
1120 1120 logger.timestamp = False
1121 1121
1122 1122 if log_raw_input:
1123 1123 input_hist = self.shell.input_hist_raw
1124 1124 else:
1125 1125 input_hist = self.shell.input_hist
1126 1126
1127 1127 if log_output:
1128 1128 log_write = logger.log_write
1129 1129 output_hist = self.shell.output_hist
1130 1130 for n in range(1,len(input_hist)-1):
1131 1131 log_write(input_hist[n].rstrip())
1132 1132 if n in output_hist:
1133 1133 log_write(repr(output_hist[n]),'output')
1134 1134 else:
1135 1135 logger.log_write(input_hist[1:])
1136 1136 if timestamp:
1137 1137 # re-enable timestamping
1138 1138 logger.timestamp = True
1139 1139
1140 1140 print ('Activating auto-logging. '
1141 1141 'Current session state plus future input saved.')
1142 1142 logger.logstate()
1143 1143
1144 1144 def magic_logoff(self,parameter_s=''):
1145 1145 """Temporarily stop logging.
1146 1146
1147 1147 You must have previously started logging."""
1148 1148 self.shell.logger.switch_log(0)
1149 1149
1150 1150 def magic_logon(self,parameter_s=''):
1151 1151 """Restart logging.
1152 1152
1153 1153 This function is for restarting logging which you've temporarily
1154 1154 stopped with %logoff. For starting logging for the first time, you
1155 1155 must use the %logstart function, which allows you to specify an
1156 1156 optional log filename."""
1157 1157
1158 1158 self.shell.logger.switch_log(1)
1159 1159
1160 1160 def magic_logstate(self,parameter_s=''):
1161 1161 """Print the status of the logging system."""
1162 1162
1163 1163 self.shell.logger.logstate()
1164 1164
1165 1165 def magic_pdb(self, parameter_s=''):
1166 1166 """Control the automatic calling of the pdb interactive debugger.
1167 1167
1168 1168 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1169 1169 argument it works as a toggle.
1170 1170
1171 1171 When an exception is triggered, IPython can optionally call the
1172 1172 interactive pdb debugger after the traceback printout. %pdb toggles
1173 1173 this feature on and off.
1174 1174
1175 1175 The initial state of this feature is set in your ipythonrc
1176 1176 configuration file (the variable is called 'pdb').
1177 1177
1178 1178 If you want to just activate the debugger AFTER an exception has fired,
1179 1179 without having to type '%pdb on' and rerunning your code, you can use
1180 1180 the %debug magic."""
1181 1181
1182 1182 par = parameter_s.strip().lower()
1183 1183
1184 1184 if par:
1185 1185 try:
1186 1186 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1187 1187 except KeyError:
1188 1188 print ('Incorrect argument. Use on/1, off/0, '
1189 1189 'or nothing for a toggle.')
1190 1190 return
1191 1191 else:
1192 1192 # toggle
1193 1193 new_pdb = not self.shell.call_pdb
1194 1194
1195 1195 # set on the shell
1196 1196 self.shell.call_pdb = new_pdb
1197 1197 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1198 1198
1199 1199 def magic_debug(self, parameter_s=''):
1200 1200 """Activate the interactive debugger in post-mortem mode.
1201 1201
1202 1202 If an exception has just occurred, this lets you inspect its stack
1203 1203 frames interactively. Note that this will always work only on the last
1204 1204 traceback that occurred, so you must call this quickly after an
1205 1205 exception that you wish to inspect has fired, because if another one
1206 1206 occurs, it clobbers the previous one.
1207 1207
1208 1208 If you want IPython to automatically do this on every exception, see
1209 1209 the %pdb magic for more details.
1210 1210 """
1211 1211
1212 1212 self.shell.debugger(force=True)
1213 1213
1214 1214 def magic_prun(self, parameter_s ='',user_mode=1,
1215 1215 opts=None,arg_lst=None,prog_ns=None):
1216 1216
1217 1217 """Run a statement through the python code profiler.
1218 1218
1219 1219 Usage:\\
1220 1220 %prun [options] statement
1221 1221
1222 1222 The given statement (which doesn't require quote marks) is run via the
1223 1223 python profiler in a manner similar to the profile.run() function.
1224 1224 Namespaces are internally managed to work correctly; profile.run
1225 1225 cannot be used in IPython because it makes certain assumptions about
1226 1226 namespaces which do not hold under IPython.
1227 1227
1228 1228 Options:
1229 1229
1230 1230 -l <limit>: you can place restrictions on what or how much of the
1231 1231 profile gets printed. The limit value can be:
1232 1232
1233 1233 * A string: only information for function names containing this string
1234 1234 is printed.
1235 1235
1236 1236 * An integer: only these many lines are printed.
1237 1237
1238 1238 * A float (between 0 and 1): this fraction of the report is printed
1239 1239 (for example, use a limit of 0.4 to see the topmost 40% only).
1240 1240
1241 1241 You can combine several limits with repeated use of the option. For
1242 1242 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1243 1243 information about class constructors.
1244 1244
1245 1245 -r: return the pstats.Stats object generated by the profiling. This
1246 1246 object has all the information about the profile in it, and you can
1247 1247 later use it for further analysis or in other functions.
1248 1248
1249 1249 -s <key>: sort profile by given key. You can provide more than one key
1250 1250 by using the option several times: '-s key1 -s key2 -s key3...'. The
1251 1251 default sorting key is 'time'.
1252 1252
1253 1253 The following is copied verbatim from the profile documentation
1254 1254 referenced below:
1255 1255
1256 1256 When more than one key is provided, additional keys are used as
1257 1257 secondary criteria when the there is equality in all keys selected
1258 1258 before them.
1259 1259
1260 1260 Abbreviations can be used for any key names, as long as the
1261 1261 abbreviation is unambiguous. The following are the keys currently
1262 1262 defined:
1263 1263
1264 1264 Valid Arg Meaning\\
1265 1265 "calls" call count\\
1266 1266 "cumulative" cumulative time\\
1267 1267 "file" file name\\
1268 1268 "module" file name\\
1269 1269 "pcalls" primitive call count\\
1270 1270 "line" line number\\
1271 1271 "name" function name\\
1272 1272 "nfl" name/file/line\\
1273 1273 "stdname" standard name\\
1274 1274 "time" internal time
1275 1275
1276 1276 Note that all sorts on statistics are in descending order (placing
1277 1277 most time consuming items first), where as name, file, and line number
1278 1278 searches are in ascending order (i.e., alphabetical). The subtle
1279 1279 distinction between "nfl" and "stdname" is that the standard name is a
1280 1280 sort of the name as printed, which means that the embedded line
1281 1281 numbers get compared in an odd way. For example, lines 3, 20, and 40
1282 1282 would (if the file names were the same) appear in the string order
1283 1283 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1284 1284 line numbers. In fact, sort_stats("nfl") is the same as
1285 1285 sort_stats("name", "file", "line").
1286 1286
1287 1287 -T <filename>: save profile results as shown on screen to a text
1288 1288 file. The profile is still shown on screen.
1289 1289
1290 1290 -D <filename>: save (via dump_stats) profile statistics to given
1291 1291 filename. This data is in a format understod by the pstats module, and
1292 1292 is generated by a call to the dump_stats() method of profile
1293 1293 objects. The profile is still shown on screen.
1294 1294
1295 1295 If you want to run complete programs under the profiler's control, use
1296 1296 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1297 1297 contains profiler specific options as described here.
1298 1298
1299 1299 You can read the complete documentation for the profile module with:\\
1300 1300 In [1]: import profile; profile.help() """
1301 1301
1302 1302 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1303 1303 # protect user quote marks
1304 1304 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1305 1305
1306 1306 if user_mode: # regular user call
1307 1307 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1308 1308 list_all=1)
1309 1309 namespace = self.shell.user_ns
1310 1310 else: # called to run a program by %run -p
1311 1311 try:
1312 1312 filename = get_py_filename(arg_lst[0])
1313 1313 except IOError,msg:
1314 1314 error(msg)
1315 1315 return
1316 1316
1317 1317 arg_str = 'execfile(filename,prog_ns)'
1318 1318 namespace = locals()
1319 1319
1320 1320 opts.merge(opts_def)
1321 1321
1322 1322 prof = profile.Profile()
1323 1323 try:
1324 1324 prof = prof.runctx(arg_str,namespace,namespace)
1325 1325 sys_exit = ''
1326 1326 except SystemExit:
1327 1327 sys_exit = """*** SystemExit exception caught in code being profiled."""
1328 1328
1329 1329 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1330 1330
1331 1331 lims = opts.l
1332 1332 if lims:
1333 1333 lims = [] # rebuild lims with ints/floats/strings
1334 1334 for lim in opts.l:
1335 1335 try:
1336 1336 lims.append(int(lim))
1337 1337 except ValueError:
1338 1338 try:
1339 1339 lims.append(float(lim))
1340 1340 except ValueError:
1341 1341 lims.append(lim)
1342 1342
1343 1343 # trap output
1344 1344 sys_stdout = sys.stdout
1345 1345 stdout_trap = StringIO()
1346 1346 try:
1347 1347 sys.stdout = stdout_trap
1348 1348 stats.print_stats(*lims)
1349 1349 finally:
1350 1350 sys.stdout = sys_stdout
1351 1351 output = stdout_trap.getvalue()
1352 1352 output = output.rstrip()
1353 1353
1354 1354 page(output,screen_lines=self.shell.rc.screen_length)
1355 1355 print sys_exit,
1356 1356
1357 1357 dump_file = opts.D[0]
1358 1358 text_file = opts.T[0]
1359 1359 if dump_file:
1360 1360 prof.dump_stats(dump_file)
1361 1361 print '\n*** Profile stats marshalled to file',\
1362 1362 `dump_file`+'.',sys_exit
1363 1363 if text_file:
1364 1364 file(text_file,'w').write(output)
1365 1365 print '\n*** Profile printout saved to text file',\
1366 1366 `text_file`+'.',sys_exit
1367 1367
1368 1368 if opts.has_key('r'):
1369 1369 return stats
1370 1370 else:
1371 1371 return None
1372 1372
1373 1373 def magic_run(self, parameter_s ='',runner=None):
1374 1374 """Run the named file inside IPython as a program.
1375 1375
1376 1376 Usage:\\
1377 1377 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1378 1378
1379 1379 Parameters after the filename are passed as command-line arguments to
1380 1380 the program (put in sys.argv). Then, control returns to IPython's
1381 1381 prompt.
1382 1382
1383 1383 This is similar to running at a system prompt:\\
1384 1384 $ python file args\\
1385 1385 but with the advantage of giving you IPython's tracebacks, and of
1386 1386 loading all variables into your interactive namespace for further use
1387 1387 (unless -p is used, see below).
1388 1388
1389 1389 The file is executed in a namespace initially consisting only of
1390 1390 __name__=='__main__' and sys.argv constructed as indicated. It thus
1391 1391 sees its environment as if it were being run as a stand-alone
1392 1392 program. But after execution, the IPython interactive namespace gets
1393 1393 updated with all variables defined in the program (except for __name__
1394 1394 and sys.argv). This allows for very convenient loading of code for
1395 1395 interactive work, while giving each program a 'clean sheet' to run in.
1396 1396
1397 1397 Options:
1398 1398
1399 1399 -n: __name__ is NOT set to '__main__', but to the running file's name
1400 1400 without extension (as python does under import). This allows running
1401 1401 scripts and reloading the definitions in them without calling code
1402 1402 protected by an ' if __name__ == "__main__" ' clause.
1403 1403
1404 1404 -i: run the file in IPython's namespace instead of an empty one. This
1405 1405 is useful if you are experimenting with code written in a text editor
1406 1406 which depends on variables defined interactively.
1407 1407
1408 1408 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1409 1409 being run. This is particularly useful if IPython is being used to
1410 1410 run unittests, which always exit with a sys.exit() call. In such
1411 1411 cases you are interested in the output of the test results, not in
1412 1412 seeing a traceback of the unittest module.
1413 1413
1414 1414 -t: print timing information at the end of the run. IPython will give
1415 1415 you an estimated CPU time consumption for your script, which under
1416 1416 Unix uses the resource module to avoid the wraparound problems of
1417 1417 time.clock(). Under Unix, an estimate of time spent on system tasks
1418 1418 is also given (for Windows platforms this is reported as 0.0).
1419 1419
1420 1420 If -t is given, an additional -N<N> option can be given, where <N>
1421 1421 must be an integer indicating how many times you want the script to
1422 1422 run. The final timing report will include total and per run results.
1423 1423
1424 1424 For example (testing the script uniq_stable.py):
1425 1425
1426 1426 In [1]: run -t uniq_stable
1427 1427
1428 1428 IPython CPU timings (estimated):\\
1429 1429 User : 0.19597 s.\\
1430 1430 System: 0.0 s.\\
1431 1431
1432 1432 In [2]: run -t -N5 uniq_stable
1433 1433
1434 1434 IPython CPU timings (estimated):\\
1435 1435 Total runs performed: 5\\
1436 1436 Times : Total Per run\\
1437 1437 User : 0.910862 s, 0.1821724 s.\\
1438 1438 System: 0.0 s, 0.0 s.
1439 1439
1440 1440 -d: run your program under the control of pdb, the Python debugger.
1441 1441 This allows you to execute your program step by step, watch variables,
1442 1442 etc. Internally, what IPython does is similar to calling:
1443 1443
1444 1444 pdb.run('execfile("YOURFILENAME")')
1445 1445
1446 1446 with a breakpoint set on line 1 of your file. You can change the line
1447 1447 number for this automatic breakpoint to be <N> by using the -bN option
1448 1448 (where N must be an integer). For example:
1449 1449
1450 1450 %run -d -b40 myscript
1451 1451
1452 1452 will set the first breakpoint at line 40 in myscript.py. Note that
1453 1453 the first breakpoint must be set on a line which actually does
1454 1454 something (not a comment or docstring) for it to stop execution.
1455 1455
1456 1456 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1457 1457 first enter 'c' (without qoutes) to start execution up to the first
1458 1458 breakpoint.
1459 1459
1460 1460 Entering 'help' gives information about the use of the debugger. You
1461 1461 can easily see pdb's full documentation with "import pdb;pdb.help()"
1462 1462 at a prompt.
1463 1463
1464 1464 -p: run program under the control of the Python profiler module (which
1465 1465 prints a detailed report of execution times, function calls, etc).
1466 1466
1467 1467 You can pass other options after -p which affect the behavior of the
1468 1468 profiler itself. See the docs for %prun for details.
1469 1469
1470 1470 In this mode, the program's variables do NOT propagate back to the
1471 1471 IPython interactive namespace (because they remain in the namespace
1472 1472 where the profiler executes them).
1473 1473
1474 1474 Internally this triggers a call to %prun, see its documentation for
1475 1475 details on the options available specifically for profiling.
1476 1476
1477 1477 There is one special usage for which the text above doesn't apply:
1478 1478 if the filename ends with .ipy, the file is run as ipython script,
1479 1479 just as if the commands were written on IPython prompt.
1480 1480 """
1481 1481
1482 1482 # get arguments and set sys.argv for program to be run.
1483 1483 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1484 1484 mode='list',list_all=1)
1485 1485
1486 1486 try:
1487 1487 filename = get_py_filename(arg_lst[0])
1488 1488 except IndexError:
1489 1489 warn('you must provide at least a filename.')
1490 1490 print '\n%run:\n',OInspect.getdoc(self.magic_run)
1491 1491 return
1492 1492 except IOError,msg:
1493 1493 error(msg)
1494 1494 return
1495 1495
1496 1496 if filename.lower().endswith('.ipy'):
1497 1497 self.api.runlines(open(filename).read())
1498 1498 return
1499 1499
1500 1500 # Control the response to exit() calls made by the script being run
1501 1501 exit_ignore = opts.has_key('e')
1502 1502
1503 1503 # Make sure that the running script gets a proper sys.argv as if it
1504 1504 # were run from a system shell.
1505 1505 save_argv = sys.argv # save it for later restoring
1506 1506 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1507 1507
1508 1508 if opts.has_key('i'):
1509 1509 prog_ns = self.shell.user_ns
1510 1510 __name__save = self.shell.user_ns['__name__']
1511 1511 prog_ns['__name__'] = '__main__'
1512 1512 else:
1513 1513 if opts.has_key('n'):
1514 1514 name = os.path.splitext(os.path.basename(filename))[0]
1515 1515 else:
1516 1516 name = '__main__'
1517 1517 prog_ns = {'__name__':name}
1518 1518
1519 1519 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1520 1520 # set the __file__ global in the script's namespace
1521 1521 prog_ns['__file__'] = filename
1522 1522
1523 1523 # pickle fix. See iplib for an explanation. But we need to make sure
1524 1524 # that, if we overwrite __main__, we replace it at the end
1525 1525 if prog_ns['__name__'] == '__main__':
1526 1526 restore_main = sys.modules['__main__']
1527 1527 else:
1528 1528 restore_main = False
1529 1529
1530 1530 sys.modules[prog_ns['__name__']] = FakeModule(prog_ns)
1531 1531
1532 1532 stats = None
1533 1533 try:
1534 1534 if self.shell.has_readline:
1535 1535 self.shell.savehist()
1536 1536
1537 1537 if opts.has_key('p'):
1538 1538 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1539 1539 else:
1540 1540 if opts.has_key('d'):
1541 1541 deb = Debugger.Pdb(self.shell.rc.colors)
1542 1542 # reset Breakpoint state, which is moronically kept
1543 1543 # in a class
1544 1544 bdb.Breakpoint.next = 1
1545 1545 bdb.Breakpoint.bplist = {}
1546 1546 bdb.Breakpoint.bpbynumber = [None]
1547 1547 # Set an initial breakpoint to stop execution
1548 1548 maxtries = 10
1549 1549 bp = int(opts.get('b',[1])[0])
1550 1550 checkline = deb.checkline(filename,bp)
1551 1551 if not checkline:
1552 1552 for bp in range(bp+1,bp+maxtries+1):
1553 1553 if deb.checkline(filename,bp):
1554 1554 break
1555 1555 else:
1556 1556 msg = ("\nI failed to find a valid line to set "
1557 1557 "a breakpoint\n"
1558 1558 "after trying up to line: %s.\n"
1559 1559 "Please set a valid breakpoint manually "
1560 1560 "with the -b option." % bp)
1561 1561 error(msg)
1562 1562 return
1563 1563 # if we find a good linenumber, set the breakpoint
1564 1564 deb.do_break('%s:%s' % (filename,bp))
1565 1565 # Start file run
1566 1566 print "NOTE: Enter 'c' at the",
1567 1567 print "%s prompt to start your script." % deb.prompt
1568 1568 try:
1569 1569 deb.run('execfile("%s")' % filename,prog_ns)
1570 1570
1571 1571 except:
1572 1572 etype, value, tb = sys.exc_info()
1573 1573 # Skip three frames in the traceback: the %run one,
1574 1574 # one inside bdb.py, and the command-line typed by the
1575 1575 # user (run by exec in pdb itself).
1576 1576 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1577 1577 else:
1578 1578 if runner is None:
1579 1579 runner = self.shell.safe_execfile
1580 1580 if opts.has_key('t'):
1581 1581 try:
1582 1582 nruns = int(opts['N'][0])
1583 1583 if nruns < 1:
1584 1584 error('Number of runs must be >=1')
1585 1585 return
1586 1586 except (KeyError):
1587 1587 nruns = 1
1588 1588 if nruns == 1:
1589 1589 t0 = clock2()
1590 1590 runner(filename,prog_ns,prog_ns,
1591 1591 exit_ignore=exit_ignore)
1592 1592 t1 = clock2()
1593 1593 t_usr = t1[0]-t0[0]
1594 1594 t_sys = t1[1]-t1[1]
1595 1595 print "\nIPython CPU timings (estimated):"
1596 1596 print " User : %10s s." % t_usr
1597 1597 print " System: %10s s." % t_sys
1598 1598 else:
1599 1599 runs = range(nruns)
1600 1600 t0 = clock2()
1601 1601 for nr in runs:
1602 1602 runner(filename,prog_ns,prog_ns,
1603 1603 exit_ignore=exit_ignore)
1604 1604 t1 = clock2()
1605 1605 t_usr = t1[0]-t0[0]
1606 1606 t_sys = t1[1]-t1[1]
1607 1607 print "\nIPython CPU timings (estimated):"
1608 1608 print "Total runs performed:",nruns
1609 1609 print " Times : %10s %10s" % ('Total','Per run')
1610 1610 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1611 1611 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1612 1612
1613 1613 else:
1614 1614 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1615 1615 if opts.has_key('i'):
1616 1616 self.shell.user_ns['__name__'] = __name__save
1617 1617 else:
1618 1618 # update IPython interactive namespace
1619 1619 del prog_ns['__name__']
1620 1620 self.shell.user_ns.update(prog_ns)
1621 1621 finally:
1622 1622 sys.argv = save_argv
1623 1623 if restore_main:
1624 1624 sys.modules['__main__'] = restore_main
1625 1625 if self.shell.has_readline:
1626 1626 self.shell.readline.read_history_file(self.shell.histfile)
1627 1627
1628 1628 return stats
1629 1629
1630 1630 def magic_runlog(self, parameter_s =''):
1631 1631 """Run files as logs.
1632 1632
1633 1633 Usage:\\
1634 1634 %runlog file1 file2 ...
1635 1635
1636 1636 Run the named files (treating them as log files) in sequence inside
1637 1637 the interpreter, and return to the prompt. This is much slower than
1638 1638 %run because each line is executed in a try/except block, but it
1639 1639 allows running files with syntax errors in them.
1640 1640
1641 1641 Normally IPython will guess when a file is one of its own logfiles, so
1642 1642 you can typically use %run even for logs. This shorthand allows you to
1643 1643 force any file to be treated as a log file."""
1644 1644
1645 1645 for f in parameter_s.split():
1646 1646 self.shell.safe_execfile(f,self.shell.user_ns,
1647 1647 self.shell.user_ns,islog=1)
1648 1648
1649 1649 def magic_timeit(self, parameter_s =''):
1650 1650 """Time execution of a Python statement or expression
1651 1651
1652 1652 Usage:\\
1653 1653 %timeit [-n<N> -r<R> [-t|-c]] statement
1654 1654
1655 1655 Time execution of a Python statement or expression using the timeit
1656 1656 module.
1657 1657
1658 1658 Options:
1659 1659 -n<N>: execute the given statement <N> times in a loop. If this value
1660 1660 is not given, a fitting value is chosen.
1661 1661
1662 1662 -r<R>: repeat the loop iteration <R> times and take the best result.
1663 1663 Default: 3
1664 1664
1665 1665 -t: use time.time to measure the time, which is the default on Unix.
1666 1666 This function measures wall time.
1667 1667
1668 1668 -c: use time.clock to measure the time, which is the default on
1669 1669 Windows and measures wall time. On Unix, resource.getrusage is used
1670 1670 instead and returns the CPU user time.
1671 1671
1672 1672 -p<P>: use a precision of <P> digits to display the timing result.
1673 1673 Default: 3
1674 1674
1675 1675
1676 1676 Examples:\\
1677 1677 In [1]: %timeit pass
1678 1678 10000000 loops, best of 3: 53.3 ns per loop
1679 1679
1680 1680 In [2]: u = None
1681 1681
1682 1682 In [3]: %timeit u is None
1683 1683 10000000 loops, best of 3: 184 ns per loop
1684 1684
1685 1685 In [4]: %timeit -r 4 u == None
1686 1686 1000000 loops, best of 4: 242 ns per loop
1687 1687
1688 1688 In [5]: import time
1689 1689
1690 1690 In [6]: %timeit -n1 time.sleep(2)
1691 1691 1 loops, best of 3: 2 s per loop
1692 1692
1693 1693
1694 1694 The times reported by %timeit will be slightly higher than those
1695 1695 reported by the timeit.py script when variables are accessed. This is
1696 1696 due to the fact that %timeit executes the statement in the namespace
1697 1697 of the shell, compared with timeit.py, which uses a single setup
1698 1698 statement to import function or create variables. Generally, the bias
1699 1699 does not matter as long as results from timeit.py are not mixed with
1700 1700 those from %timeit."""
1701 1701
1702 1702 import timeit
1703 1703 import math
1704 1704
1705 1705 units = ["s", "ms", "\xc2\xb5s", "ns"]
1706 1706 scaling = [1, 1e3, 1e6, 1e9]
1707 1707
1708 1708 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1709 1709 posix=False)
1710 1710 if stmt == "":
1711 1711 return
1712 1712 timefunc = timeit.default_timer
1713 1713 number = int(getattr(opts, "n", 0))
1714 1714 repeat = int(getattr(opts, "r", timeit.default_repeat))
1715 1715 precision = int(getattr(opts, "p", 3))
1716 1716 if hasattr(opts, "t"):
1717 1717 timefunc = time.time
1718 1718 if hasattr(opts, "c"):
1719 1719 timefunc = clock
1720 1720
1721 1721 timer = timeit.Timer(timer=timefunc)
1722 1722 # this code has tight coupling to the inner workings of timeit.Timer,
1723 1723 # but is there a better way to achieve that the code stmt has access
1724 1724 # to the shell namespace?
1725 1725
1726 1726 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1727 1727 'setup': "pass"}
1728 1728 code = compile(src, "<magic-timeit>", "exec")
1729 1729 ns = {}
1730 1730 exec code in self.shell.user_ns, ns
1731 1731 timer.inner = ns["inner"]
1732 1732
1733 1733 if number == 0:
1734 1734 # determine number so that 0.2 <= total time < 2.0
1735 1735 number = 1
1736 1736 for i in range(1, 10):
1737 1737 number *= 10
1738 1738 if timer.timeit(number) >= 0.2:
1739 1739 break
1740 1740
1741 1741 best = min(timer.repeat(repeat, number)) / number
1742 1742
1743 1743 if best > 0.0:
1744 1744 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1745 1745 else:
1746 1746 order = 3
1747 1747 print "%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1748 1748 precision,
1749 1749 best * scaling[order],
1750 1750 units[order])
1751 1751
1752 1752 def magic_time(self,parameter_s = ''):
1753 1753 """Time execution of a Python statement or expression.
1754 1754
1755 1755 The CPU and wall clock times are printed, and the value of the
1756 1756 expression (if any) is returned. Note that under Win32, system time
1757 1757 is always reported as 0, since it can not be measured.
1758 1758
1759 1759 This function provides very basic timing functionality. In Python
1760 1760 2.3, the timeit module offers more control and sophistication, so this
1761 1761 could be rewritten to use it (patches welcome).
1762 1762
1763 1763 Some examples:
1764 1764
1765 1765 In [1]: time 2**128
1766 1766 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1767 1767 Wall time: 0.00
1768 1768 Out[1]: 340282366920938463463374607431768211456L
1769 1769
1770 1770 In [2]: n = 1000000
1771 1771
1772 1772 In [3]: time sum(range(n))
1773 1773 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1774 1774 Wall time: 1.37
1775 1775 Out[3]: 499999500000L
1776 1776
1777 1777 In [4]: time print 'hello world'
1778 1778 hello world
1779 1779 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1780 1780 Wall time: 0.00
1781 1781 """
1782 1782
1783 1783 # fail immediately if the given expression can't be compiled
1784 1784 try:
1785 1785 mode = 'eval'
1786 1786 code = compile(parameter_s,'<timed eval>',mode)
1787 1787 except SyntaxError:
1788 1788 mode = 'exec'
1789 1789 code = compile(parameter_s,'<timed exec>',mode)
1790 1790 # skew measurement as little as possible
1791 1791 glob = self.shell.user_ns
1792 1792 clk = clock2
1793 1793 wtime = time.time
1794 1794 # time execution
1795 1795 wall_st = wtime()
1796 1796 if mode=='eval':
1797 1797 st = clk()
1798 1798 out = eval(code,glob)
1799 1799 end = clk()
1800 1800 else:
1801 1801 st = clk()
1802 1802 exec code in glob
1803 1803 end = clk()
1804 1804 out = None
1805 1805 wall_end = wtime()
1806 1806 # Compute actual times and report
1807 1807 wall_time = wall_end-wall_st
1808 1808 cpu_user = end[0]-st[0]
1809 1809 cpu_sys = end[1]-st[1]
1810 1810 cpu_tot = cpu_user+cpu_sys
1811 1811 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1812 1812 (cpu_user,cpu_sys,cpu_tot)
1813 1813 print "Wall time: %.2f" % wall_time
1814 1814 return out
1815 1815
1816 1816 def magic_macro(self,parameter_s = ''):
1817 1817 """Define a set of input lines as a macro for future re-execution.
1818 1818
1819 1819 Usage:\\
1820 1820 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1821 1821
1822 1822 Options:
1823 1823
1824 1824 -r: use 'raw' input. By default, the 'processed' history is used,
1825 1825 so that magics are loaded in their transformed version to valid
1826 1826 Python. If this option is given, the raw input as typed as the
1827 1827 command line is used instead.
1828 1828
1829 1829 This will define a global variable called `name` which is a string
1830 1830 made of joining the slices and lines you specify (n1,n2,... numbers
1831 1831 above) from your input history into a single string. This variable
1832 1832 acts like an automatic function which re-executes those lines as if
1833 1833 you had typed them. You just type 'name' at the prompt and the code
1834 1834 executes.
1835 1835
1836 1836 The notation for indicating number ranges is: n1-n2 means 'use line
1837 1837 numbers n1,...n2' (the endpoint is included). That is, '5-7' means
1838 1838 using the lines numbered 5,6 and 7.
1839 1839
1840 1840 Note: as a 'hidden' feature, you can also use traditional python slice
1841 1841 notation, where N:M means numbers N through M-1.
1842 1842
1843 1843 For example, if your history contains (%hist prints it):
1844 1844
1845 1845 44: x=1\\
1846 1846 45: y=3\\
1847 1847 46: z=x+y\\
1848 1848 47: print x\\
1849 1849 48: a=5\\
1850 1850 49: print 'x',x,'y',y\\
1851 1851
1852 1852 you can create a macro with lines 44 through 47 (included) and line 49
1853 1853 called my_macro with:
1854 1854
1855 1855 In [51]: %macro my_macro 44-47 49
1856 1856
1857 1857 Now, typing `my_macro` (without quotes) will re-execute all this code
1858 1858 in one pass.
1859 1859
1860 1860 You don't need to give the line-numbers in order, and any given line
1861 1861 number can appear multiple times. You can assemble macros with any
1862 1862 lines from your input history in any order.
1863 1863
1864 1864 The macro is a simple object which holds its value in an attribute,
1865 1865 but IPython's display system checks for macros and executes them as
1866 1866 code instead of printing them when you type their name.
1867 1867
1868 1868 You can view a macro's contents by explicitly printing it with:
1869 1869
1870 1870 'print macro_name'.
1871 1871
1872 1872 For one-off cases which DON'T contain magic function calls in them you
1873 1873 can obtain similar results by explicitly executing slices from your
1874 1874 input history with:
1875 1875
1876 1876 In [60]: exec In[44:48]+In[49]"""
1877 1877
1878 1878 opts,args = self.parse_options(parameter_s,'r',mode='list')
1879 1879 name,ranges = args[0], args[1:]
1880 1880 #print 'rng',ranges # dbg
1881 1881 lines = self.extract_input_slices(ranges,opts.has_key('r'))
1882 1882 macro = Macro(lines)
1883 1883 self.shell.user_ns.update({name:macro})
1884 1884 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
1885 1885 print 'Macro contents:'
1886 1886 print macro,
1887 1887
1888 1888 def magic_save(self,parameter_s = ''):
1889 1889 """Save a set of lines to a given filename.
1890 1890
1891 1891 Usage:\\
1892 1892 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
1893 1893
1894 1894 Options:
1895 1895
1896 1896 -r: use 'raw' input. By default, the 'processed' history is used,
1897 1897 so that magics are loaded in their transformed version to valid
1898 1898 Python. If this option is given, the raw input as typed as the
1899 1899 command line is used instead.
1900 1900
1901 1901 This function uses the same syntax as %macro for line extraction, but
1902 1902 instead of creating a macro it saves the resulting string to the
1903 1903 filename you specify.
1904 1904
1905 1905 It adds a '.py' extension to the file if you don't do so yourself, and
1906 1906 it asks for confirmation before overwriting existing files."""
1907 1907
1908 1908 opts,args = self.parse_options(parameter_s,'r',mode='list')
1909 1909 fname,ranges = args[0], args[1:]
1910 1910 if not fname.endswith('.py'):
1911 1911 fname += '.py'
1912 1912 if os.path.isfile(fname):
1913 1913 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
1914 1914 if ans.lower() not in ['y','yes']:
1915 1915 print 'Operation cancelled.'
1916 1916 return
1917 1917 cmds = ''.join(self.extract_input_slices(ranges,opts.has_key('r')))
1918 1918 f = file(fname,'w')
1919 1919 f.write(cmds)
1920 1920 f.close()
1921 1921 print 'The following commands were written to file `%s`:' % fname
1922 1922 print cmds
1923 1923
1924 1924 def _edit_macro(self,mname,macro):
1925 1925 """open an editor with the macro data in a file"""
1926 1926 filename = self.shell.mktempfile(macro.value)
1927 1927 self.shell.hooks.editor(filename)
1928 1928
1929 1929 # and make a new macro object, to replace the old one
1930 1930 mfile = open(filename)
1931 1931 mvalue = mfile.read()
1932 1932 mfile.close()
1933 1933 self.shell.user_ns[mname] = Macro(mvalue)
1934 1934
1935 1935 def magic_ed(self,parameter_s=''):
1936 1936 """Alias to %edit."""
1937 1937 return self.magic_edit(parameter_s)
1938 1938
1939 1939 def magic_edit(self,parameter_s='',last_call=['','']):
1940 1940 """Bring up an editor and execute the resulting code.
1941 1941
1942 1942 Usage:
1943 1943 %edit [options] [args]
1944 1944
1945 1945 %edit runs IPython's editor hook. The default version of this hook is
1946 1946 set to call the __IPYTHON__.rc.editor command. This is read from your
1947 1947 environment variable $EDITOR. If this isn't found, it will default to
1948 1948 vi under Linux/Unix and to notepad under Windows. See the end of this
1949 1949 docstring for how to change the editor hook.
1950 1950
1951 1951 You can also set the value of this editor via the command line option
1952 1952 '-editor' or in your ipythonrc file. This is useful if you wish to use
1953 1953 specifically for IPython an editor different from your typical default
1954 1954 (and for Windows users who typically don't set environment variables).
1955 1955
1956 1956 This command allows you to conveniently edit multi-line code right in
1957 1957 your IPython session.
1958 1958
1959 1959 If called without arguments, %edit opens up an empty editor with a
1960 1960 temporary file and will execute the contents of this file when you
1961 1961 close it (don't forget to save it!).
1962 1962
1963 1963
1964 1964 Options:
1965 1965
1966 1966 -n <number>: open the editor at a specified line number. By default,
1967 1967 the IPython editor hook uses the unix syntax 'editor +N filename', but
1968 1968 you can configure this by providing your own modified hook if your
1969 1969 favorite editor supports line-number specifications with a different
1970 1970 syntax.
1971 1971
1972 1972 -p: this will call the editor with the same data as the previous time
1973 1973 it was used, regardless of how long ago (in your current session) it
1974 1974 was.
1975 1975
1976 1976 -r: use 'raw' input. This option only applies to input taken from the
1977 1977 user's history. By default, the 'processed' history is used, so that
1978 1978 magics are loaded in their transformed version to valid Python. If
1979 1979 this option is given, the raw input as typed as the command line is
1980 1980 used instead. When you exit the editor, it will be executed by
1981 1981 IPython's own processor.
1982 1982
1983 1983 -x: do not execute the edited code immediately upon exit. This is
1984 1984 mainly useful if you are editing programs which need to be called with
1985 1985 command line arguments, which you can then do using %run.
1986 1986
1987 1987
1988 1988 Arguments:
1989 1989
1990 1990 If arguments are given, the following possibilites exist:
1991 1991
1992 1992 - The arguments are numbers or pairs of colon-separated numbers (like
1993 1993 1 4:8 9). These are interpreted as lines of previous input to be
1994 1994 loaded into the editor. The syntax is the same of the %macro command.
1995 1995
1996 1996 - If the argument doesn't start with a number, it is evaluated as a
1997 1997 variable and its contents loaded into the editor. You can thus edit
1998 1998 any string which contains python code (including the result of
1999 1999 previous edits).
2000 2000
2001 2001 - If the argument is the name of an object (other than a string),
2002 2002 IPython will try to locate the file where it was defined and open the
2003 2003 editor at the point where it is defined. You can use `%edit function`
2004 2004 to load an editor exactly at the point where 'function' is defined,
2005 2005 edit it and have the file be executed automatically.
2006 2006
2007 2007 If the object is a macro (see %macro for details), this opens up your
2008 2008 specified editor with a temporary file containing the macro's data.
2009 2009 Upon exit, the macro is reloaded with the contents of the file.
2010 2010
2011 2011 Note: opening at an exact line is only supported under Unix, and some
2012 2012 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2013 2013 '+NUMBER' parameter necessary for this feature. Good editors like
2014 2014 (X)Emacs, vi, jed, pico and joe all do.
2015 2015
2016 2016 - If the argument is not found as a variable, IPython will look for a
2017 2017 file with that name (adding .py if necessary) and load it into the
2018 2018 editor. It will execute its contents with execfile() when you exit,
2019 2019 loading any code in the file into your interactive namespace.
2020 2020
2021 2021 After executing your code, %edit will return as output the code you
2022 2022 typed in the editor (except when it was an existing file). This way
2023 2023 you can reload the code in further invocations of %edit as a variable,
2024 2024 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2025 2025 the output.
2026 2026
2027 2027 Note that %edit is also available through the alias %ed.
2028 2028
2029 2029 This is an example of creating a simple function inside the editor and
2030 2030 then modifying it. First, start up the editor:
2031 2031
2032 2032 In [1]: ed\\
2033 2033 Editing... done. Executing edited code...\\
2034 2034 Out[1]: 'def foo():\\n print "foo() was defined in an editing session"\\n'
2035 2035
2036 2036 We can then call the function foo():
2037 2037
2038 2038 In [2]: foo()\\
2039 2039 foo() was defined in an editing session
2040 2040
2041 2041 Now we edit foo. IPython automatically loads the editor with the
2042 2042 (temporary) file where foo() was previously defined:
2043 2043
2044 2044 In [3]: ed foo\\
2045 2045 Editing... done. Executing edited code...
2046 2046
2047 2047 And if we call foo() again we get the modified version:
2048 2048
2049 2049 In [4]: foo()\\
2050 2050 foo() has now been changed!
2051 2051
2052 2052 Here is an example of how to edit a code snippet successive
2053 2053 times. First we call the editor:
2054 2054
2055 2055 In [8]: ed\\
2056 2056 Editing... done. Executing edited code...\\
2057 2057 hello\\
2058 2058 Out[8]: "print 'hello'\\n"
2059 2059
2060 2060 Now we call it again with the previous output (stored in _):
2061 2061
2062 2062 In [9]: ed _\\
2063 2063 Editing... done. Executing edited code...\\
2064 2064 hello world\\
2065 2065 Out[9]: "print 'hello world'\\n"
2066 2066
2067 2067 Now we call it with the output #8 (stored in _8, also as Out[8]):
2068 2068
2069 2069 In [10]: ed _8\\
2070 2070 Editing... done. Executing edited code...\\
2071 2071 hello again\\
2072 2072 Out[10]: "print 'hello again'\\n"
2073 2073
2074 2074
2075 2075 Changing the default editor hook:
2076 2076
2077 2077 If you wish to write your own editor hook, you can put it in a
2078 2078 configuration file which you load at startup time. The default hook
2079 2079 is defined in the IPython.hooks module, and you can use that as a
2080 2080 starting example for further modifications. That file also has
2081 2081 general instructions on how to set a new hook for use once you've
2082 2082 defined it."""
2083 2083
2084 2084 # FIXME: This function has become a convoluted mess. It needs a
2085 2085 # ground-up rewrite with clean, simple logic.
2086 2086
2087 2087 def make_filename(arg):
2088 2088 "Make a filename from the given args"
2089 2089 try:
2090 2090 filename = get_py_filename(arg)
2091 2091 except IOError:
2092 2092 if args.endswith('.py'):
2093 2093 filename = arg
2094 2094 else:
2095 2095 filename = None
2096 2096 return filename
2097 2097
2098 2098 # custom exceptions
2099 2099 class DataIsObject(Exception): pass
2100 2100
2101 2101 opts,args = self.parse_options(parameter_s,'prxn:')
2102 2102 # Set a few locals from the options for convenience:
2103 2103 opts_p = opts.has_key('p')
2104 2104 opts_r = opts.has_key('r')
2105 2105
2106 2106 # Default line number value
2107 2107 lineno = opts.get('n',None)
2108 2108
2109 2109 if opts_p:
2110 2110 args = '_%s' % last_call[0]
2111 2111 if not self.shell.user_ns.has_key(args):
2112 2112 args = last_call[1]
2113 2113
2114 2114 # use last_call to remember the state of the previous call, but don't
2115 2115 # let it be clobbered by successive '-p' calls.
2116 2116 try:
2117 2117 last_call[0] = self.shell.outputcache.prompt_count
2118 2118 if not opts_p:
2119 2119 last_call[1] = parameter_s
2120 2120 except:
2121 2121 pass
2122 2122
2123 2123 # by default this is done with temp files, except when the given
2124 2124 # arg is a filename
2125 2125 use_temp = 1
2126 2126
2127 2127 if re.match(r'\d',args):
2128 2128 # Mode where user specifies ranges of lines, like in %macro.
2129 2129 # This means that you can't edit files whose names begin with
2130 2130 # numbers this way. Tough.
2131 2131 ranges = args.split()
2132 2132 data = ''.join(self.extract_input_slices(ranges,opts_r))
2133 2133 elif args.endswith('.py'):
2134 2134 filename = make_filename(args)
2135 2135 data = ''
2136 2136 use_temp = 0
2137 2137 elif args:
2138 2138 try:
2139 2139 # Load the parameter given as a variable. If not a string,
2140 2140 # process it as an object instead (below)
2141 2141
2142 2142 #print '*** args',args,'type',type(args) # dbg
2143 2143 data = eval(args,self.shell.user_ns)
2144 2144 if not type(data) in StringTypes:
2145 2145 raise DataIsObject
2146 2146
2147 2147 except (NameError,SyntaxError):
2148 2148 # given argument is not a variable, try as a filename
2149 2149 filename = make_filename(args)
2150 2150 if filename is None:
2151 2151 warn("Argument given (%s) can't be found as a variable "
2152 2152 "or as a filename." % args)
2153 2153 return
2154 2154
2155 2155 data = ''
2156 2156 use_temp = 0
2157 2157 except DataIsObject:
2158 2158
2159 2159 # macros have a special edit function
2160 2160 if isinstance(data,Macro):
2161 2161 self._edit_macro(args,data)
2162 2162 return
2163 2163
2164 2164 # For objects, try to edit the file where they are defined
2165 2165 try:
2166 2166 filename = inspect.getabsfile(data)
2167 2167 datafile = 1
2168 2168 except TypeError:
2169 2169 filename = make_filename(args)
2170 2170 datafile = 1
2171 2171 warn('Could not find file where `%s` is defined.\n'
2172 2172 'Opening a file named `%s`' % (args,filename))
2173 2173 # Now, make sure we can actually read the source (if it was in
2174 2174 # a temp file it's gone by now).
2175 2175 if datafile:
2176 2176 try:
2177 2177 if lineno is None:
2178 2178 lineno = inspect.getsourcelines(data)[1]
2179 2179 except IOError:
2180 2180 filename = make_filename(args)
2181 2181 if filename is None:
2182 2182 warn('The file `%s` where `%s` was defined cannot '
2183 2183 'be read.' % (filename,data))
2184 2184 return
2185 2185 use_temp = 0
2186 2186 else:
2187 2187 data = ''
2188 2188
2189 2189 if use_temp:
2190 2190 filename = self.shell.mktempfile(data)
2191 2191 print 'IPython will make a temporary file named:',filename
2192 2192
2193 2193 # do actual editing here
2194 2194 print 'Editing...',
2195 2195 sys.stdout.flush()
2196 2196 self.shell.hooks.editor(filename,lineno)
2197 2197 if opts.has_key('x'): # -x prevents actual execution
2198 2198 print
2199 2199 else:
2200 2200 print 'done. Executing edited code...'
2201 2201 if opts_r:
2202 2202 self.shell.runlines(file_read(filename))
2203 2203 else:
2204 2204 self.shell.safe_execfile(filename,self.shell.user_ns)
2205 2205 if use_temp:
2206 2206 try:
2207 2207 return open(filename).read()
2208 2208 except IOError,msg:
2209 2209 if msg.filename == filename:
2210 2210 warn('File not found. Did you forget to save?')
2211 2211 return
2212 2212 else:
2213 2213 self.shell.showtraceback()
2214 2214
2215 2215 def magic_xmode(self,parameter_s = ''):
2216 2216 """Switch modes for the exception handlers.
2217 2217
2218 2218 Valid modes: Plain, Context and Verbose.
2219 2219
2220 2220 If called without arguments, acts as a toggle."""
2221 2221
2222 2222 def xmode_switch_err(name):
2223 2223 warn('Error changing %s exception modes.\n%s' %
2224 2224 (name,sys.exc_info()[1]))
2225 2225
2226 2226 shell = self.shell
2227 2227 new_mode = parameter_s.strip().capitalize()
2228 2228 try:
2229 2229 shell.InteractiveTB.set_mode(mode=new_mode)
2230 2230 print 'Exception reporting mode:',shell.InteractiveTB.mode
2231 2231 except:
2232 2232 xmode_switch_err('user')
2233 2233
2234 2234 # threaded shells use a special handler in sys.excepthook
2235 2235 if shell.isthreaded:
2236 2236 try:
2237 2237 shell.sys_excepthook.set_mode(mode=new_mode)
2238 2238 except:
2239 2239 xmode_switch_err('threaded')
2240 2240
2241 2241 def magic_colors(self,parameter_s = ''):
2242 2242 """Switch color scheme for prompts, info system and exception handlers.
2243 2243
2244 2244 Currently implemented schemes: NoColor, Linux, LightBG.
2245 2245
2246 2246 Color scheme names are not case-sensitive."""
2247 2247
2248 2248 def color_switch_err(name):
2249 2249 warn('Error changing %s color schemes.\n%s' %
2250 2250 (name,sys.exc_info()[1]))
2251 2251
2252 2252
2253 2253 new_scheme = parameter_s.strip()
2254 2254 if not new_scheme:
2255 2255 print 'You must specify a color scheme.'
2256 2256 return
2257 2257 import IPython.rlineimpl as readline
2258 2258 if not readline.have_readline:
2259 2259 msg = """\
2260 2260 Proper color support under MS Windows requires the pyreadline library.
2261 2261 You can find it at:
2262 2262 http://ipython.scipy.org/moin/PyReadline/Intro
2263 2263 Gary's readline needs the ctypes module, from:
2264 2264 http://starship.python.net/crew/theller/ctypes
2265 2265 (Note that ctypes is already part of Python versions 2.5 and newer).
2266 2266
2267 2267 Defaulting color scheme to 'NoColor'"""
2268 2268 new_scheme = 'NoColor'
2269 2269 warn(msg)
2270 2270 # local shortcut
2271 2271 shell = self.shell
2272 2272
2273 2273 # Set prompt colors
2274 2274 try:
2275 2275 shell.outputcache.set_colors(new_scheme)
2276 2276 except:
2277 2277 color_switch_err('prompt')
2278 2278 else:
2279 2279 shell.rc.colors = \
2280 2280 shell.outputcache.color_table.active_scheme_name
2281 2281 # Set exception colors
2282 2282 try:
2283 2283 shell.InteractiveTB.set_colors(scheme = new_scheme)
2284 2284 shell.SyntaxTB.set_colors(scheme = new_scheme)
2285 2285 except:
2286 2286 color_switch_err('exception')
2287 2287
2288 2288 # threaded shells use a verbose traceback in sys.excepthook
2289 2289 if shell.isthreaded:
2290 2290 try:
2291 2291 shell.sys_excepthook.set_colors(scheme=new_scheme)
2292 2292 except:
2293 2293 color_switch_err('system exception handler')
2294 2294
2295 2295 # Set info (for 'object?') colors
2296 2296 if shell.rc.color_info:
2297 2297 try:
2298 2298 shell.inspector.set_active_scheme(new_scheme)
2299 2299 except:
2300 2300 color_switch_err('object inspector')
2301 2301 else:
2302 2302 shell.inspector.set_active_scheme('NoColor')
2303 2303
2304 2304 def magic_color_info(self,parameter_s = ''):
2305 2305 """Toggle color_info.
2306 2306
2307 2307 The color_info configuration parameter controls whether colors are
2308 2308 used for displaying object details (by things like %psource, %pfile or
2309 2309 the '?' system). This function toggles this value with each call.
2310 2310
2311 2311 Note that unless you have a fairly recent pager (less works better
2312 2312 than more) in your system, using colored object information displays
2313 2313 will not work properly. Test it and see."""
2314 2314
2315 2315 self.shell.rc.color_info = 1 - self.shell.rc.color_info
2316 2316 self.magic_colors(self.shell.rc.colors)
2317 2317 print 'Object introspection functions have now coloring:',
2318 2318 print ['OFF','ON'][self.shell.rc.color_info]
2319 2319
2320 2320 def magic_Pprint(self, parameter_s=''):
2321 2321 """Toggle pretty printing on/off."""
2322 2322
2323 2323 self.shell.rc.pprint = 1 - self.shell.rc.pprint
2324 2324 print 'Pretty printing has been turned', \
2325 2325 ['OFF','ON'][self.shell.rc.pprint]
2326 2326
2327 2327 def magic_exit(self, parameter_s=''):
2328 2328 """Exit IPython, confirming if configured to do so.
2329 2329
2330 2330 You can configure whether IPython asks for confirmation upon exit by
2331 2331 setting the confirm_exit flag in the ipythonrc file."""
2332 2332
2333 2333 self.shell.exit()
2334 2334
2335 2335 def magic_quit(self, parameter_s=''):
2336 2336 """Exit IPython, confirming if configured to do so (like %exit)"""
2337 2337
2338 2338 self.shell.exit()
2339 2339
2340 2340 def magic_Exit(self, parameter_s=''):
2341 2341 """Exit IPython without confirmation."""
2342 2342
2343 2343 self.shell.exit_now = True
2344 2344
2345 2345 def magic_Quit(self, parameter_s=''):
2346 2346 """Exit IPython without confirmation (like %Exit)."""
2347 2347
2348 2348 self.shell.exit_now = True
2349 2349
2350 2350 #......................................................................
2351 2351 # Functions to implement unix shell-type things
2352 2352
2353 2353 def magic_alias(self, parameter_s = ''):
2354 2354 """Define an alias for a system command.
2355 2355
2356 2356 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2357 2357
2358 2358 Then, typing 'alias_name params' will execute the system command 'cmd
2359 2359 params' (from your underlying operating system).
2360 2360
2361 2361 Aliases have lower precedence than magic functions and Python normal
2362 2362 variables, so if 'foo' is both a Python variable and an alias, the
2363 2363 alias can not be executed until 'del foo' removes the Python variable.
2364 2364
2365 2365 You can use the %l specifier in an alias definition to represent the
2366 2366 whole line when the alias is called. For example:
2367 2367
2368 2368 In [2]: alias all echo "Input in brackets: <%l>"\\
2369 2369 In [3]: all hello world\\
2370 2370 Input in brackets: <hello world>
2371 2371
2372 2372 You can also define aliases with parameters using %s specifiers (one
2373 2373 per parameter):
2374 2374
2375 2375 In [1]: alias parts echo first %s second %s\\
2376 2376 In [2]: %parts A B\\
2377 2377 first A second B\\
2378 2378 In [3]: %parts A\\
2379 2379 Incorrect number of arguments: 2 expected.\\
2380 2380 parts is an alias to: 'echo first %s second %s'
2381 2381
2382 2382 Note that %l and %s are mutually exclusive. You can only use one or
2383 2383 the other in your aliases.
2384 2384
2385 2385 Aliases expand Python variables just like system calls using ! or !!
2386 2386 do: all expressions prefixed with '$' get expanded. For details of
2387 2387 the semantic rules, see PEP-215:
2388 2388 http://www.python.org/peps/pep-0215.html. This is the library used by
2389 2389 IPython for variable expansion. If you want to access a true shell
2390 2390 variable, an extra $ is necessary to prevent its expansion by IPython:
2391 2391
2392 2392 In [6]: alias show echo\\
2393 2393 In [7]: PATH='A Python string'\\
2394 2394 In [8]: show $PATH\\
2395 2395 A Python string\\
2396 2396 In [9]: show $$PATH\\
2397 2397 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2398 2398
2399 2399 You can use the alias facility to acess all of $PATH. See the %rehash
2400 2400 and %rehashx functions, which automatically create aliases for the
2401 2401 contents of your $PATH.
2402 2402
2403 2403 If called with no parameters, %alias prints the current alias table."""
2404 2404
2405 2405 par = parameter_s.strip()
2406 2406 if not par:
2407 2407 stored = self.db.get('stored_aliases', {} )
2408 2408 atab = self.shell.alias_table
2409 2409 aliases = atab.keys()
2410 2410 aliases.sort()
2411 2411 res = []
2412 2412 showlast = []
2413 2413 for alias in aliases:
2414 2414 tgt = atab[alias][1]
2415 2415 # 'interesting' aliases
2416 2416 if (alias in stored or
2417 2417 alias != os.path.splitext(tgt)[0] or
2418 2418 ' ' in tgt):
2419 2419 showlast.append((alias, tgt))
2420 2420 else:
2421 2421 res.append((alias, tgt ))
2422 2422
2423 2423 # show most interesting aliases last
2424 2424 res.extend(showlast)
2425 2425 print "Total number of aliases:",len(aliases)
2426 2426 return res
2427 2427 try:
2428 2428 alias,cmd = par.split(None,1)
2429 2429 except:
2430 2430 print OInspect.getdoc(self.magic_alias)
2431 2431 else:
2432 2432 nargs = cmd.count('%s')
2433 2433 if nargs>0 and cmd.find('%l')>=0:
2434 2434 error('The %s and %l specifiers are mutually exclusive '
2435 2435 'in alias definitions.')
2436 2436 else: # all looks OK
2437 2437 self.shell.alias_table[alias] = (nargs,cmd)
2438 2438 self.shell.alias_table_validate(verbose=0)
2439 2439 # end magic_alias
2440 2440
2441 2441 def magic_unalias(self, parameter_s = ''):
2442 2442 """Remove an alias"""
2443 2443
2444 2444 aname = parameter_s.strip()
2445 2445 if aname in self.shell.alias_table:
2446 2446 del self.shell.alias_table[aname]
2447 2447 stored = self.db.get('stored_aliases', {} )
2448 2448 if aname in stored:
2449 2449 print "Removing %stored alias",aname
2450 2450 del stored[aname]
2451 2451 self.db['stored_aliases'] = stored
2452 2452
2453 2453 def magic_rehash(self, parameter_s = ''):
2454 2454 """Update the alias table with all entries in $PATH.
2455 2455
2456 2456 This version does no checks on execute permissions or whether the
2457 2457 contents of $PATH are truly files (instead of directories or something
2458 2458 else). For such a safer (but slower) version, use %rehashx."""
2459 2459
2460 2460 # This function (and rehashx) manipulate the alias_table directly
2461 2461 # rather than calling magic_alias, for speed reasons. A rehash on a
2462 2462 # typical Linux box involves several thousand entries, so efficiency
2463 2463 # here is a top concern.
2464 2464
2465 2465 path = filter(os.path.isdir,os.environ['PATH'].split(os.pathsep))
2466 2466 alias_table = self.shell.alias_table
2467 2467 for pdir in path:
2468 2468 for ff in os.listdir(pdir):
2469 2469 # each entry in the alias table must be (N,name), where
2470 2470 # N is the number of positional arguments of the alias.
2471 2471 alias_table[ff] = (0,ff)
2472 2472 # Make sure the alias table doesn't contain keywords or builtins
2473 2473 self.shell.alias_table_validate()
2474 2474 # Call again init_auto_alias() so we get 'rm -i' and other modified
2475 2475 # aliases since %rehash will probably clobber them
2476 2476 self.shell.init_auto_alias()
2477 2477
2478 2478 def magic_rehashx(self, parameter_s = ''):
2479 2479 """Update the alias table with all executable files in $PATH.
2480 2480
2481 2481 This version explicitly checks that every entry in $PATH is a file
2482 2482 with execute access (os.X_OK), so it is much slower than %rehash.
2483 2483
2484 2484 Under Windows, it checks executability as a match agains a
2485 2485 '|'-separated string of extensions, stored in the IPython config
2486 2486 variable win_exec_ext. This defaults to 'exe|com|bat'. """
2487 2487
2488 2488 path = [os.path.abspath(os.path.expanduser(p)) for p in
2489 2489 os.environ['PATH'].split(os.pathsep)]
2490 2490 path = filter(os.path.isdir,path)
2491 2491
2492 2492 alias_table = self.shell.alias_table
2493 2493 syscmdlist = []
2494 2494 if os.name == 'posix':
2495 2495 isexec = lambda fname:os.path.isfile(fname) and \
2496 2496 os.access(fname,os.X_OK)
2497 2497 else:
2498 2498
2499 2499 try:
2500 2500 winext = os.environ['pathext'].replace(';','|').replace('.','')
2501 2501 except KeyError:
2502 2502 winext = 'exe|com|bat|py'
2503 2503 if 'py' not in winext:
2504 2504 winext += '|py'
2505 2505 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2506 2506 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2507 2507 savedir = os.getcwd()
2508 2508 try:
2509 2509 # write the whole loop for posix/Windows so we don't have an if in
2510 2510 # the innermost part
2511 2511 if os.name == 'posix':
2512 2512 for pdir in path:
2513 2513 os.chdir(pdir)
2514 2514 for ff in os.listdir(pdir):
2515 2515 if isexec(ff) and ff not in self.shell.no_alias:
2516 2516 # each entry in the alias table must be (N,name),
2517 2517 # where N is the number of positional arguments of the
2518 2518 # alias.
2519 2519 alias_table[ff] = (0,ff)
2520 2520 syscmdlist.append(ff)
2521 2521 else:
2522 2522 for pdir in path:
2523 2523 os.chdir(pdir)
2524 2524 for ff in os.listdir(pdir):
2525 2525 base, ext = os.path.splitext(ff)
2526 2526 if isexec(ff) and base not in self.shell.no_alias:
2527 2527 if ext.lower() == '.exe':
2528 2528 ff = base
2529 2529 alias_table[base] = (0,ff)
2530 2530 syscmdlist.append(ff)
2531 2531 # Make sure the alias table doesn't contain keywords or builtins
2532 2532 self.shell.alias_table_validate()
2533 2533 # Call again init_auto_alias() so we get 'rm -i' and other
2534 2534 # modified aliases since %rehashx will probably clobber them
2535 2535 self.shell.init_auto_alias()
2536 2536 db = self.getapi().db
2537 2537 db['syscmdlist'] = syscmdlist
2538 2538 finally:
2539 2539 os.chdir(savedir)
2540 2540
2541 2541 def magic_pwd(self, parameter_s = ''):
2542 2542 """Return the current working directory path."""
2543 2543 return os.getcwd()
2544 2544
2545 2545 def magic_cd(self, parameter_s=''):
2546 2546 """Change the current working directory.
2547 2547
2548 2548 This command automatically maintains an internal list of directories
2549 2549 you visit during your IPython session, in the variable _dh. The
2550 2550 command %dhist shows this history nicely formatted. You can also
2551 2551 do 'cd -<tab>' to see directory history conveniently.
2552 2552
2553 2553 Usage:
2554 2554
2555 2555 cd 'dir': changes to directory 'dir'.
2556 2556
2557 2557 cd -: changes to the last visited directory.
2558 2558
2559 2559 cd -<n>: changes to the n-th directory in the directory history.
2560 2560
2561 2561 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2562 2562 (note: cd <bookmark_name> is enough if there is no
2563 2563 directory <bookmark_name>, but a bookmark with the name exists.)
2564 2564 'cd -b <tab>' allows you to tab-complete bookmark names.
2565 2565
2566 2566 Options:
2567 2567
2568 2568 -q: quiet. Do not print the working directory after the cd command is
2569 2569 executed. By default IPython's cd command does print this directory,
2570 2570 since the default prompts do not display path information.
2571 2571
2572 2572 Note that !cd doesn't work for this purpose because the shell where
2573 2573 !command runs is immediately discarded after executing 'command'."""
2574 2574
2575 2575 parameter_s = parameter_s.strip()
2576 2576 #bkms = self.shell.persist.get("bookmarks",{})
2577 2577
2578 2578 numcd = re.match(r'(-)(\d+)$',parameter_s)
2579 2579 # jump in directory history by number
2580 2580 if numcd:
2581 2581 nn = int(numcd.group(2))
2582 2582 try:
2583 2583 ps = self.shell.user_ns['_dh'][nn]
2584 2584 except IndexError:
2585 2585 print 'The requested directory does not exist in history.'
2586 2586 return
2587 2587 else:
2588 2588 opts = {}
2589 2589 else:
2590 2590 #turn all non-space-escaping backslashes to slashes,
2591 2591 # for c:\windows\directory\names\
2592 2592 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2593 2593 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2594 2594 # jump to previous
2595 2595 if ps == '-':
2596 2596 try:
2597 2597 ps = self.shell.user_ns['_dh'][-2]
2598 2598 except IndexError:
2599 2599 print 'No previous directory to change to.'
2600 2600 return
2601 2601 # jump to bookmark if needed
2602 2602 else:
2603 2603 if not os.path.isdir(ps) or opts.has_key('b'):
2604 2604 bkms = self.db.get('bookmarks', {})
2605 2605
2606 2606 if bkms.has_key(ps):
2607 2607 target = bkms[ps]
2608 2608 print '(bookmark:%s) -> %s' % (ps,target)
2609 2609 ps = target
2610 2610 else:
2611 2611 if opts.has_key('b'):
2612 2612 error("Bookmark '%s' not found. "
2613 2613 "Use '%%bookmark -l' to see your bookmarks." % ps)
2614 2614 return
2615 2615
2616 2616 # at this point ps should point to the target dir
2617 2617 if ps:
2618 2618 try:
2619 2619 os.chdir(os.path.expanduser(ps))
2620 ttitle = ("IPy:" + (
2621 os.getcwd() == '/' and '/' or os.path.basename(os.getcwd())))
2622 platutils.set_term_title(ttitle)
2620 if self.shell.rc.term_title:
2621 #print 'set term title:',self.shell.rc.term_title # dbg
2622 ttitle = ("IPy:" + (
2623 os.getcwd() == '/' and '/' or \
2624 os.path.basename(os.getcwd())))
2625 platutils.set_term_title(ttitle)
2623 2626 except OSError:
2624 2627 print sys.exc_info()[1]
2625 2628 else:
2626 2629 self.shell.user_ns['_dh'].append(os.getcwd())
2627 2630 else:
2628 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 2634 self.shell.user_ns['_dh'].append(os.getcwd())
2631 2635 if not 'q' in opts:
2632 2636 print self.shell.user_ns['_dh'][-1]
2633 2637
2634 2638 def magic_dhist(self, parameter_s=''):
2635 2639 """Print your history of visited directories.
2636 2640
2637 2641 %dhist -> print full history\\
2638 2642 %dhist n -> print last n entries only\\
2639 2643 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2640 2644
2641 2645 This history is automatically maintained by the %cd command, and
2642 2646 always available as the global list variable _dh. You can use %cd -<n>
2643 2647 to go to directory number <n>."""
2644 2648
2645 2649 dh = self.shell.user_ns['_dh']
2646 2650 if parameter_s:
2647 2651 try:
2648 2652 args = map(int,parameter_s.split())
2649 2653 except:
2650 2654 self.arg_err(Magic.magic_dhist)
2651 2655 return
2652 2656 if len(args) == 1:
2653 2657 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2654 2658 elif len(args) == 2:
2655 2659 ini,fin = args
2656 2660 else:
2657 2661 self.arg_err(Magic.magic_dhist)
2658 2662 return
2659 2663 else:
2660 2664 ini,fin = 0,len(dh)
2661 2665 nlprint(dh,
2662 2666 header = 'Directory history (kept in _dh)',
2663 2667 start=ini,stop=fin)
2664 2668
2665 2669 def magic_env(self, parameter_s=''):
2666 2670 """List environment variables."""
2667 2671
2668 2672 return os.environ.data
2669 2673
2670 2674 def magic_pushd(self, parameter_s=''):
2671 2675 """Place the current dir on stack and change directory.
2672 2676
2673 2677 Usage:\\
2674 2678 %pushd ['dirname']
2675 2679
2676 2680 %pushd with no arguments does a %pushd to your home directory.
2677 2681 """
2678 2682 if parameter_s == '': parameter_s = '~'
2679 2683 dir_s = self.shell.dir_stack
2680 2684 if len(dir_s)>0 and os.path.expanduser(parameter_s) != \
2681 2685 os.path.expanduser(self.shell.dir_stack[0]):
2682 2686 try:
2683 2687 self.magic_cd(parameter_s)
2684 2688 dir_s.insert(0,os.getcwd().replace(self.home_dir,'~'))
2685 2689 self.magic_dirs()
2686 2690 except:
2687 2691 print 'Invalid directory'
2688 2692 else:
2689 2693 print 'You are already there!'
2690 2694
2691 2695 def magic_popd(self, parameter_s=''):
2692 2696 """Change to directory popped off the top of the stack.
2693 2697 """
2694 2698 if len (self.shell.dir_stack) > 1:
2695 2699 self.shell.dir_stack.pop(0)
2696 2700 self.magic_cd(self.shell.dir_stack[0])
2697 2701 print self.shell.dir_stack[0]
2698 2702 else:
2699 2703 print "You can't remove the starting directory from the stack:",\
2700 2704 self.shell.dir_stack
2701 2705
2702 2706 def magic_dirs(self, parameter_s=''):
2703 2707 """Return the current directory stack."""
2704 2708
2705 2709 return self.shell.dir_stack[:]
2706 2710
2707 2711 def magic_sc(self, parameter_s=''):
2708 2712 """Shell capture - execute a shell command and capture its output.
2709 2713
2710 2714 DEPRECATED. Suboptimal, retained for backwards compatibility.
2711 2715
2712 2716 You should use the form 'var = !command' instead. Example:
2713 2717
2714 2718 "%sc -l myfiles = ls ~" should now be written as
2715 2719
2716 2720 "myfiles = !ls ~"
2717 2721
2718 2722 myfiles.s, myfiles.l and myfiles.n still apply as documented
2719 2723 below.
2720 2724
2721 2725 --
2722 2726 %sc [options] varname=command
2723 2727
2724 2728 IPython will run the given command using commands.getoutput(), and
2725 2729 will then update the user's interactive namespace with a variable
2726 2730 called varname, containing the value of the call. Your command can
2727 2731 contain shell wildcards, pipes, etc.
2728 2732
2729 2733 The '=' sign in the syntax is mandatory, and the variable name you
2730 2734 supply must follow Python's standard conventions for valid names.
2731 2735
2732 2736 (A special format without variable name exists for internal use)
2733 2737
2734 2738 Options:
2735 2739
2736 2740 -l: list output. Split the output on newlines into a list before
2737 2741 assigning it to the given variable. By default the output is stored
2738 2742 as a single string.
2739 2743
2740 2744 -v: verbose. Print the contents of the variable.
2741 2745
2742 2746 In most cases you should not need to split as a list, because the
2743 2747 returned value is a special type of string which can automatically
2744 2748 provide its contents either as a list (split on newlines) or as a
2745 2749 space-separated string. These are convenient, respectively, either
2746 2750 for sequential processing or to be passed to a shell command.
2747 2751
2748 2752 For example:
2749 2753
2750 2754 # Capture into variable a
2751 2755 In [9]: sc a=ls *py
2752 2756
2753 2757 # a is a string with embedded newlines
2754 2758 In [10]: a
2755 2759 Out[10]: 'setup.py\nwin32_manual_post_install.py'
2756 2760
2757 2761 # which can be seen as a list:
2758 2762 In [11]: a.l
2759 2763 Out[11]: ['setup.py', 'win32_manual_post_install.py']
2760 2764
2761 2765 # or as a whitespace-separated string:
2762 2766 In [12]: a.s
2763 2767 Out[12]: 'setup.py win32_manual_post_install.py'
2764 2768
2765 2769 # a.s is useful to pass as a single command line:
2766 2770 In [13]: !wc -l $a.s
2767 2771 146 setup.py
2768 2772 130 win32_manual_post_install.py
2769 2773 276 total
2770 2774
2771 2775 # while the list form is useful to loop over:
2772 2776 In [14]: for f in a.l:
2773 2777 ....: !wc -l $f
2774 2778 ....:
2775 2779 146 setup.py
2776 2780 130 win32_manual_post_install.py
2777 2781
2778 2782 Similiarly, the lists returned by the -l option are also special, in
2779 2783 the sense that you can equally invoke the .s attribute on them to
2780 2784 automatically get a whitespace-separated string from their contents:
2781 2785
2782 2786 In [1]: sc -l b=ls *py
2783 2787
2784 2788 In [2]: b
2785 2789 Out[2]: ['setup.py', 'win32_manual_post_install.py']
2786 2790
2787 2791 In [3]: b.s
2788 2792 Out[3]: 'setup.py win32_manual_post_install.py'
2789 2793
2790 2794 In summary, both the lists and strings used for ouptut capture have
2791 2795 the following special attributes:
2792 2796
2793 2797 .l (or .list) : value as list.
2794 2798 .n (or .nlstr): value as newline-separated string.
2795 2799 .s (or .spstr): value as space-separated string.
2796 2800 """
2797 2801
2798 2802 opts,args = self.parse_options(parameter_s,'lv')
2799 2803 # Try to get a variable name and command to run
2800 2804 try:
2801 2805 # the variable name must be obtained from the parse_options
2802 2806 # output, which uses shlex.split to strip options out.
2803 2807 var,_ = args.split('=',1)
2804 2808 var = var.strip()
2805 2809 # But the the command has to be extracted from the original input
2806 2810 # parameter_s, not on what parse_options returns, to avoid the
2807 2811 # quote stripping which shlex.split performs on it.
2808 2812 _,cmd = parameter_s.split('=',1)
2809 2813 except ValueError:
2810 2814 var,cmd = '',''
2811 2815 # If all looks ok, proceed
2812 2816 out,err = self.shell.getoutputerror(cmd)
2813 2817 if err:
2814 2818 print >> Term.cerr,err
2815 2819 if opts.has_key('l'):
2816 2820 out = SList(out.split('\n'))
2817 2821 else:
2818 2822 out = LSString(out)
2819 2823 if opts.has_key('v'):
2820 2824 print '%s ==\n%s' % (var,pformat(out))
2821 2825 if var:
2822 2826 self.shell.user_ns.update({var:out})
2823 2827 else:
2824 2828 return out
2825 2829
2826 2830 def magic_sx(self, parameter_s=''):
2827 2831 """Shell execute - run a shell command and capture its output.
2828 2832
2829 2833 %sx command
2830 2834
2831 2835 IPython will run the given command using commands.getoutput(), and
2832 2836 return the result formatted as a list (split on '\\n'). Since the
2833 2837 output is _returned_, it will be stored in ipython's regular output
2834 2838 cache Out[N] and in the '_N' automatic variables.
2835 2839
2836 2840 Notes:
2837 2841
2838 2842 1) If an input line begins with '!!', then %sx is automatically
2839 2843 invoked. That is, while:
2840 2844 !ls
2841 2845 causes ipython to simply issue system('ls'), typing
2842 2846 !!ls
2843 2847 is a shorthand equivalent to:
2844 2848 %sx ls
2845 2849
2846 2850 2) %sx differs from %sc in that %sx automatically splits into a list,
2847 2851 like '%sc -l'. The reason for this is to make it as easy as possible
2848 2852 to process line-oriented shell output via further python commands.
2849 2853 %sc is meant to provide much finer control, but requires more
2850 2854 typing.
2851 2855
2852 2856 3) Just like %sc -l, this is a list with special attributes:
2853 2857
2854 2858 .l (or .list) : value as list.
2855 2859 .n (or .nlstr): value as newline-separated string.
2856 2860 .s (or .spstr): value as whitespace-separated string.
2857 2861
2858 2862 This is very useful when trying to use such lists as arguments to
2859 2863 system commands."""
2860 2864
2861 2865 if parameter_s:
2862 2866 out,err = self.shell.getoutputerror(parameter_s)
2863 2867 if err:
2864 2868 print >> Term.cerr,err
2865 2869 return SList(out.split('\n'))
2866 2870
2867 2871 def magic_bg(self, parameter_s=''):
2868 2872 """Run a job in the background, in a separate thread.
2869 2873
2870 2874 For example,
2871 2875
2872 2876 %bg myfunc(x,y,z=1)
2873 2877
2874 2878 will execute 'myfunc(x,y,z=1)' in a background thread. As soon as the
2875 2879 execution starts, a message will be printed indicating the job
2876 2880 number. If your job number is 5, you can use
2877 2881
2878 2882 myvar = jobs.result(5) or myvar = jobs[5].result
2879 2883
2880 2884 to assign this result to variable 'myvar'.
2881 2885
2882 2886 IPython has a job manager, accessible via the 'jobs' object. You can
2883 2887 type jobs? to get more information about it, and use jobs.<TAB> to see
2884 2888 its attributes. All attributes not starting with an underscore are
2885 2889 meant for public use.
2886 2890
2887 2891 In particular, look at the jobs.new() method, which is used to create
2888 2892 new jobs. This magic %bg function is just a convenience wrapper
2889 2893 around jobs.new(), for expression-based jobs. If you want to create a
2890 2894 new job with an explicit function object and arguments, you must call
2891 2895 jobs.new() directly.
2892 2896
2893 2897 The jobs.new docstring also describes in detail several important
2894 2898 caveats associated with a thread-based model for background job
2895 2899 execution. Type jobs.new? for details.
2896 2900
2897 2901 You can check the status of all jobs with jobs.status().
2898 2902
2899 2903 The jobs variable is set by IPython into the Python builtin namespace.
2900 2904 If you ever declare a variable named 'jobs', you will shadow this
2901 2905 name. You can either delete your global jobs variable to regain
2902 2906 access to the job manager, or make a new name and assign it manually
2903 2907 to the manager (stored in IPython's namespace). For example, to
2904 2908 assign the job manager to the Jobs name, use:
2905 2909
2906 2910 Jobs = __builtins__.jobs"""
2907 2911
2908 2912 self.shell.jobs.new(parameter_s,self.shell.user_ns)
2909 2913
2910 2914
2911 2915 def magic_bookmark(self, parameter_s=''):
2912 2916 """Manage IPython's bookmark system.
2913 2917
2914 2918 %bookmark <name> - set bookmark to current dir
2915 2919 %bookmark <name> <dir> - set bookmark to <dir>
2916 2920 %bookmark -l - list all bookmarks
2917 2921 %bookmark -d <name> - remove bookmark
2918 2922 %bookmark -r - remove all bookmarks
2919 2923
2920 2924 You can later on access a bookmarked folder with:
2921 2925 %cd -b <name>
2922 2926 or simply '%cd <name>' if there is no directory called <name> AND
2923 2927 there is such a bookmark defined.
2924 2928
2925 2929 Your bookmarks persist through IPython sessions, but they are
2926 2930 associated with each profile."""
2927 2931
2928 2932 opts,args = self.parse_options(parameter_s,'drl',mode='list')
2929 2933 if len(args) > 2:
2930 2934 error('You can only give at most two arguments')
2931 2935 return
2932 2936
2933 2937 bkms = self.db.get('bookmarks',{})
2934 2938
2935 2939 if opts.has_key('d'):
2936 2940 try:
2937 2941 todel = args[0]
2938 2942 except IndexError:
2939 2943 error('You must provide a bookmark to delete')
2940 2944 else:
2941 2945 try:
2942 2946 del bkms[todel]
2943 2947 except:
2944 2948 error("Can't delete bookmark '%s'" % todel)
2945 2949 elif opts.has_key('r'):
2946 2950 bkms = {}
2947 2951 elif opts.has_key('l'):
2948 2952 bks = bkms.keys()
2949 2953 bks.sort()
2950 2954 if bks:
2951 2955 size = max(map(len,bks))
2952 2956 else:
2953 2957 size = 0
2954 2958 fmt = '%-'+str(size)+'s -> %s'
2955 2959 print 'Current bookmarks:'
2956 2960 for bk in bks:
2957 2961 print fmt % (bk,bkms[bk])
2958 2962 else:
2959 2963 if not args:
2960 2964 error("You must specify the bookmark name")
2961 2965 elif len(args)==1:
2962 2966 bkms[args[0]] = os.getcwd()
2963 2967 elif len(args)==2:
2964 2968 bkms[args[0]] = args[1]
2965 2969 self.db['bookmarks'] = bkms
2966 2970
2967 2971 def magic_pycat(self, parameter_s=''):
2968 2972 """Show a syntax-highlighted file through a pager.
2969 2973
2970 2974 This magic is similar to the cat utility, but it will assume the file
2971 2975 to be Python source and will show it with syntax highlighting. """
2972 2976
2973 2977 try:
2974 2978 filename = get_py_filename(parameter_s)
2975 2979 cont = file_read(filename)
2976 2980 except IOError:
2977 2981 try:
2978 2982 cont = eval(parameter_s,self.user_ns)
2979 2983 except NameError:
2980 2984 cont = None
2981 2985 if cont is None:
2982 2986 print "Error: no such file or variable"
2983 2987 return
2984 2988
2985 2989 page(self.shell.pycolorize(cont),
2986 2990 screen_lines=self.shell.rc.screen_length)
2987 2991
2988 2992 def magic_cpaste(self, parameter_s=''):
2989 2993 """Allows you to paste & execute a pre-formatted code block from clipboard
2990 2994
2991 2995 You must terminate the block with '--' (two minus-signs) alone on the
2992 2996 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
2993 2997 is the new sentinel for this operation)
2994 2998
2995 2999 The block is dedented prior to execution to enable execution of
2996 3000 method definitions. '>' characters at the beginning of a line is
2997 3001 ignored, to allow pasting directly from e-mails. The executed block
2998 3002 is also assigned to variable named 'pasted_block' for later editing
2999 3003 with '%edit pasted_block'.
3000 3004
3001 3005 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
3002 3006 This assigns the pasted block to variable 'foo' as string, without
3003 3007 dedenting or executing it.
3004 3008
3005 3009 Do not be alarmed by garbled output on Windows (it's a readline bug).
3006 3010 Just press enter and type -- (and press enter again) and the block
3007 3011 will be what was just pasted.
3008 3012
3009 3013 IPython statements (magics, shell escapes) are not supported (yet).
3010 3014 """
3011 3015 opts,args = self.parse_options(parameter_s,'s:',mode='string')
3012 3016 par = args.strip()
3013 3017 sentinel = opts.get('s','--')
3014 3018
3015 3019 from IPython import iplib
3016 3020 lines = []
3017 3021 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3018 3022 while 1:
3019 3023 l = iplib.raw_input_original(':')
3020 3024 if l ==sentinel:
3021 3025 break
3022 3026 lines.append(l.lstrip('>'))
3023 3027 block = "\n".join(lines) + '\n'
3024 3028 #print "block:\n",block
3025 3029 if not par:
3026 3030 b = textwrap.dedent(block)
3027 3031 exec b in self.user_ns
3028 3032 self.user_ns['pasted_block'] = b
3029 3033 else:
3030 3034 self.user_ns[par] = block
3031 3035 print "Block assigned to '%s'" % par
3032 3036
3033 3037 def magic_quickref(self,arg):
3034 3038 """ Show a quick reference sheet """
3035 3039 import IPython.usage
3036 3040 qr = IPython.usage.quick_reference + self.magic_magic('-brief')
3037 3041
3038 3042 page(qr)
3039 3043
3040 3044 def magic_upgrade(self,arg):
3041 3045 """ Upgrade your IPython installation
3042 3046
3043 3047 This will copy the config files that don't yet exist in your
3044 3048 ipython dir from the system config dir. Use this after upgrading
3045 3049 IPython if you don't wish to delete your .ipython dir.
3046 3050
3047 3051 Call with -nolegacy to get rid of ipythonrc* files (recommended for
3048 3052 new users)
3049 3053
3050 3054 """
3051 3055 ip = self.getapi()
3052 3056 ipinstallation = path(IPython.__file__).dirname()
3053 3057 upgrade_script = '%s "%s"' % (sys.executable,ipinstallation / 'upgrade_dir.py')
3054 3058 src_config = ipinstallation / 'UserConfig'
3055 3059 userdir = path(ip.options.ipythondir)
3056 3060 cmd = '%s "%s" "%s"' % (upgrade_script, src_config, userdir)
3057 3061 print ">",cmd
3058 3062 shell(cmd)
3059 3063 if arg == '-nolegacy':
3060 3064 legacy = userdir.files('ipythonrc*')
3061 3065 print "Nuking legacy files:",legacy
3062 3066
3063 3067 [p.remove() for p in legacy]
3064 3068 suffix = (sys.platform == 'win32' and '.ini' or '')
3065 3069 (userdir / ('ipythonrc' + suffix)).write_text('# Empty, see ipy_user_conf.py\n')
3066 3070
3067 3071
3068 3072 # end Magic
@@ -1,419 +1,467 b''
1 1 """Module for interactive demos using IPython.
2 2
3 3 This module implements a few classes for running Python scripts interactively
4 4 in IPython for demonstrations. With very simple markup (a few tags in
5 5 comments), you can control points where the script stops executing and returns
6 6 control to IPython.
7 7
8
9 Provided classes
10 ================
11
8 12 The classes are (see their docstrings for further details):
9 13
10 14 - Demo: pure python demos
11 15
12 16 - IPythonDemo: demos with input to be processed by IPython as if it had been
13 17 typed interactively (so magics work, as well as any other special syntax you
14 18 may have added via input prefilters).
15 19
16 20 - LineDemo: single-line version of the Demo class. These demos are executed
17 21 one line at a time, and require no markup.
18 22
19 23 - IPythonLineDemo: IPython version of the LineDemo class (the demo is
20 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 45 The file is run in its own empty namespace (though you can pass it a string of
24 46 arguments as if in a command line environment, and it will see those as
25 47 sys.argv). But at each stop, the global IPython namespace is updated with the
26 48 current internal demo namespace, so you can work interactively with the data
27 49 accumulated so far.
28 50
29 51 By default, each block of code is printed (with syntax highlighting) before
30 52 executing it and you have to confirm execution. This is intended to show the
31 53 code to an audience first so you can discuss it, and only proceed with
32 54 execution once you agree. There are a few tags which allow you to modify this
33 55 behavior.
34 56
35 57 The supported tags are:
36 58
37 59 # <demo> --- stop ---
38 60
39 61 Defines block boundaries, the points where IPython stops execution of the
40 62 file and returns to the interactive prompt.
41 63
42 64 # <demo> silent
43 65
44 66 Make a block execute silently (and hence automatically). Typically used in
45 67 cases where you have some boilerplate or initialization code which you need
46 68 executed but do not want to be seen in the demo.
47 69
48 70 # <demo> auto
49 71
50 72 Make a block execute automatically, but still being printed. Useful for
51 73 simple code which does not warrant discussion, since it avoids the extra
52 74 manual confirmation.
53 75
54 76 # <demo> auto_all
55 77
56 78 This tag can _only_ be in the first block, and if given it overrides the
57 79 individual auto tags to make the whole demo fully automatic (no block asks
58 80 for confirmation). It can also be given at creation time (or the attribute
59 81 set later) to override what's in the file.
60 82
61 83 While _any_ python file can be run as a Demo instance, if there are no stop
62 84 tags the whole file will run in a single block (no different that calling
63 85 first %pycat and then %run). The minimal markup to make this useful is to
64 86 place a set of stop tags; the other tags are only there to let you fine-tune
65 87 the execution.
66 88
67 89 This is probably best explained with the simple example file below. You can
68 90 copy this into a file named ex_demo.py, and try running it via:
69 91
70 92 from IPython.demo import Demo
71 93 d = Demo('ex_demo.py')
72 94 d() <--- Call the d object (omit the parens if you have autocall set to 2).
73 95
74 96 Each time you call the demo object, it runs the next block. The demo object
75 97 has a few useful methods for navigation, like again(), edit(), jump(), seek()
76 98 and back(). It can be reset for a new run via reset() or reloaded from disk
77 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 107 #################### EXAMPLE DEMO <ex_demo.py> ###############################
80 108 '''A simple interactive demo to illustrate the use of IPython's Demo class.'''
81 109
82 110 print 'Hello, welcome to an interactive IPython demo.'
83 111
84 112 # The mark below defines a block boundary, which is a point where IPython will
85 113 # stop execution and return to the interactive prompt.
86 114 # Note that in actual interactive execution,
87 115 # <demo> --- stop ---
88 116
89 117 x = 1
90 118 y = 2
91 119
92 120 # <demo> --- stop ---
93 121
94 122 # the mark below makes this block as silent
95 123 # <demo> silent
96 124
97 125 print 'This is a silent block, which gets executed but not printed.'
98 126
99 127 # <demo> --- stop ---
100 128 # <demo> auto
101 129 print 'This is an automatic block.'
102 130 print 'It is executed without asking for confirmation, but printed.'
103 131 z = x+y
104 132
105 133 print 'z=',x
106 134
107 135 # <demo> --- stop ---
108 136 # This is just another normal block.
109 137 print 'z is now:', z
110 138
111 139 print 'bye!'
112 140 ################### END EXAMPLE DEMO <ex_demo.py> ############################
113 141 """
142
114 143 #*****************************************************************************
115 144 # Copyright (C) 2005-2006 Fernando Perez. <Fernando.Perez@colorado.edu>
116 145 #
117 146 # Distributed under the terms of the BSD License. The full license is in
118 147 # the file COPYING, distributed as part of this software.
119 148 #
120 149 #*****************************************************************************
121 150
122 151 import exceptions
123 152 import os
124 153 import re
125 154 import shlex
126 155 import sys
127 156
128 157 from IPython.PyColorize import Parser
129 158 from IPython.genutils import marquee, file_read, file_readlines
130 159
131 160 __all__ = ['Demo','IPythonDemo','LineDemo','IPythonLineDemo','DemoError']
132 161
133 162 class DemoError(exceptions.Exception): pass
134 163
135 164 def re_mark(mark):
136 165 return re.compile(r'^\s*#\s+<demo>\s+%s\s*$' % mark,re.MULTILINE)
137 166
138 167 class Demo:
139 168
140 169 re_stop = re_mark('---\s?stop\s?---')
141 170 re_silent = re_mark('silent')
142 171 re_auto = re_mark('auto')
143 172 re_auto_all = re_mark('auto_all')
144 173
145 174 def __init__(self,fname,arg_str='',auto_all=None):
146 175 """Make a new demo object. To run the demo, simply call the object.
147 176
148 177 See the module docstring for full details and an example (you can use
149 178 IPython.Demo? in IPython to see it).
150 179
151 180 Inputs:
152 181
153 182 - fname = filename.
154 183
155 184 Optional inputs:
156 185
157 186 - arg_str(''): a string of arguments, internally converted to a list
158 187 just like sys.argv, so the demo script can see a similar
159 188 environment.
160 189
161 190 - auto_all(None): global flag to run all blocks automatically without
162 191 confirmation. This attribute overrides the block-level tags and
163 192 applies to the whole demo. It is an attribute of the object, and
164 193 can be changed at runtime simply by reassigning it to a boolean
165 194 value.
166 195 """
167 196
168 197 self.fname = fname
169 198 self.sys_argv = [fname] + shlex.split(arg_str)
170 199 self.auto_all = auto_all
171 200
172 201 # get a few things from ipython. While it's a bit ugly design-wise,
173 202 # it ensures that things like color scheme and the like are always in
174 203 # sync with the ipython mode being used. This class is only meant to
175 204 # be used inside ipython anyways, so it's OK.
176 205 self.ip_ns = __IPYTHON__.user_ns
177 206 self.ip_colorize = __IPYTHON__.pycolorize
178 207 self.ip_showtb = __IPYTHON__.showtraceback
179 208 self.ip_runlines = __IPYTHON__.runlines
180 209 self.shell = __IPYTHON__
181 210
182 211 # load user data and initialize data structures
183 212 self.reload()
184 213
185 214 def reload(self):
186 215 """Reload source from disk and initialize state."""
187 216 # read data and parse into blocks
188 217 self.src = file_read(self.fname)
189 218 src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
190 219 self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
191 220 self._auto = [bool(self.re_auto.findall(b)) for b in src_b]
192 221
193 222 # if auto_all is not given (def. None), we read it from the file
194 223 if self.auto_all is None:
195 224 self.auto_all = bool(self.re_auto_all.findall(src_b[0]))
196 225 else:
197 226 self.auto_all = bool(self.auto_all)
198 227
199 228 # Clean the sources from all markup so it doesn't get displayed when
200 229 # running the demo
201 230 src_blocks = []
202 231 auto_strip = lambda s: self.re_auto.sub('',s)
203 232 for i,b in enumerate(src_b):
204 233 if self._auto[i]:
205 234 src_blocks.append(auto_strip(b))
206 235 else:
207 236 src_blocks.append(b)
208 237 # remove the auto_all marker
209 238 src_blocks[0] = self.re_auto_all.sub('',src_blocks[0])
210 239
211 240 self.nblocks = len(src_blocks)
212 241 self.src_blocks = src_blocks
213 242
214 243 # also build syntax-highlighted source
215 244 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
216 245
217 246 # ensure clean namespace and seek offset
218 247 self.reset()
219 248
220 249 def reset(self):
221 250 """Reset the namespace and seek pointer to restart the demo"""
222 251 self.user_ns = {}
223 252 self.finished = False
224 253 self.block_index = 0
225 254
226 255 def _validate_index(self,index):
227 256 if index<0 or index>=self.nblocks:
228 257 raise ValueError('invalid block index %s' % index)
229 258
230 259 def _get_index(self,index):
231 260 """Get the current block index, validating and checking status.
232 261
233 262 Returns None if the demo is finished"""
234 263
235 264 if index is None:
236 265 if self.finished:
237 266 print 'Demo finished. Use reset() if you want to rerun it.'
238 267 return None
239 268 index = self.block_index
240 269 else:
241 270 self._validate_index(index)
242 271 return index
243 272
244 273 def seek(self,index):
245 274 """Move the current seek pointer to the given block"""
246 275 self._validate_index(index)
247 276 self.block_index = index
248 277 self.finished = False
249 278
250 279 def back(self,num=1):
251 280 """Move the seek pointer back num blocks (default is 1)."""
252 281 self.seek(self.block_index-num)
253 282
254 283 def jump(self,num):
255 284 """Jump a given number of blocks relative to the current one."""
256 285 self.seek(self.block_index+num)
257 286
258 287 def again(self):
259 288 """Move the seek pointer back one block and re-execute."""
260 289 self.back(1)
261 290 self()
262 291
263 292 def edit(self,index=None):
264 293 """Edit a block.
265 294
266 295 If no number is given, use the last block executed.
267 296
268 297 This edits the in-memory copy of the demo, it does NOT modify the
269 298 original source file. If you want to do that, simply open the file in
270 299 an editor and use reload() when you make changes to the file. This
271 300 method is meant to let you change a block during a demonstration for
272 301 explanatory purposes, without damaging your original script."""
273 302
274 303 index = self._get_index(index)
275 304 if index is None:
276 305 return
277 306 # decrease the index by one (unless we're at the very beginning), so
278 307 # that the default demo.edit() call opens up the sblock we've last run
279 308 if index>0:
280 309 index -= 1
281 310
282 311 filename = self.shell.mktempfile(self.src_blocks[index])
283 312 self.shell.hooks.editor(filename,1)
284 313 new_block = file_read(filename)
285 314 # update the source and colored block
286 315 self.src_blocks[index] = new_block
287 316 self.src_blocks_colored[index] = self.ip_colorize(new_block)
288 317 self.block_index = index
289 318 # call to run with the newly edited index
290 319 self()
291 320
292 321 def show(self,index=None):
293 322 """Show a single block on screen"""
294 323
295 324 index = self._get_index(index)
296 325 if index is None:
297 326 return
298 327
299 print marquee('<%s> block # %s (%s remaining)' %
300 (self.fname,index,self.nblocks-index-1))
328 print self.marquee('<%s> block # %s (%s remaining)' %
329 (self.fname,index,self.nblocks-index-1))
301 330 print self.src_blocks_colored[index],
302 331 sys.stdout.flush()
303 332
304 333 def show_all(self):
305 334 """Show entire demo on screen, block by block"""
306 335
307 336 fname = self.fname
308 337 nblocks = self.nblocks
309 338 silent = self._silent
339 marquee = self.marquee
310 340 for index,block in enumerate(self.src_blocks_colored):
311 341 if silent[index]:
312 342 print marquee('<%s> SILENT block # %s (%s remaining)' %
313 343 (fname,index,nblocks-index-1))
314 344 else:
315 345 print marquee('<%s> block # %s (%s remaining)' %
316 346 (fname,index,nblocks-index-1))
317 347 print block,
318 348 sys.stdout.flush()
319 349
320 350 def runlines(self,source):
321 351 """Execute a string with one or more lines of code"""
322 352
323 353 exec source in self.user_ns
324 354
325 355 def __call__(self,index=None):
326 356 """run a block of the demo.
327 357
328 358 If index is given, it should be an integer >=1 and <= nblocks. This
329 359 means that the calling convention is one off from typical Python
330 360 lists. The reason for the inconsistency is that the demo always
331 361 prints 'Block n/N, and N is the total, so it would be very odd to use
332 362 zero-indexing here."""
333 363
334 364 index = self._get_index(index)
335 365 if index is None:
336 366 return
337 367 try:
368 marquee = self.marquee
338 369 next_block = self.src_blocks[index]
339 370 self.block_index += 1
340 371 if self._silent[index]:
341 372 print marquee('Executing silent block # %s (%s remaining)' %
342 373 (index,self.nblocks-index-1))
343 374 else:
344 375 self.show(index)
345 376 if self.auto_all or self._auto[index]:
346 377 print marquee('output')
347 378 else:
348 379 print marquee('Press <q> to quit, <Enter> to execute...'),
349 380 ans = raw_input().strip()
350 381 if ans:
351 382 print marquee('Block NOT executed')
352 383 return
353 384 try:
354 385 save_argv = sys.argv
355 386 sys.argv = self.sys_argv
387 self.pre_cmd()
356 388 self.runlines(next_block)
389 self.post_cmd()
357 390 finally:
358 391 sys.argv = save_argv
359 392
360 393 except:
361 394 self.ip_showtb(filename=self.fname)
362 395 else:
363 396 self.ip_ns.update(self.user_ns)
364 397
365 398 if self.block_index == self.nblocks:
366 399 print
367 print marquee(' END OF DEMO ')
368 print marquee('Use reset() if you want to rerun it.')
400 print self.marquee(' END OF DEMO ')
401 print self.marquee('Use reset() if you want to rerun it.')
369 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 419 class IPythonDemo(Demo):
372 420 """Class for interactive demos with IPython's input processing applied.
373 421
374 422 This subclasses Demo, but instead of executing each block by the Python
375 423 interpreter (via exec), it actually calls IPython on it, so that any input
376 424 filters which may be in place are applied to the input block.
377 425
378 426 If you have an interactive environment which exposes special input
379 427 processing, you can use this class instead to write demo scripts which
380 428 operate exactly as if you had typed them interactively. The default Demo
381 429 class requires the input to be valid, pure Python code.
382 430 """
383 431
384 432 def runlines(self,source):
385 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 437 class LineDemo(Demo):
390 438 """Demo where each line is executed as a separate block.
391 439
392 440 The input script should be valid Python code.
393 441
394 442 This class doesn't require any markup at all, and it's meant for simple
395 443 scripts (with no nesting or any kind of indentation) which consist of
396 444 multiple lines of input to be executed, one at a time, as if they had been
397 445 typed in the interactive prompt."""
398 446
399 447 def reload(self):
400 448 """Reload source from disk and initialize state."""
401 449 # read data and parse into blocks
402 450 src_b = [l for l in file_readlines(self.fname) if l.strip()]
403 451 nblocks = len(src_b)
404 452 self.src = os.linesep.join(file_readlines(self.fname))
405 453 self._silent = [False]*nblocks
406 454 self._auto = [True]*nblocks
407 455 self.auto_all = True
408 456 self.nblocks = nblocks
409 457 self.src_blocks = src_b
410 458
411 459 # also build syntax-highlighted source
412 460 self.src_blocks_colored = map(self.ip_colorize,self.src_blocks)
413 461
414 462 # ensure clean namespace and seek offset
415 463 self.reset()
416 464
417 465 class IPythonLineDemo(IPythonDemo,LineDemo):
418 466 """Variant of the LineDemo class whose input is processed by IPython."""
419 467 pass
@@ -1,753 +1,754 b''
1 1 # -*- coding: utf-8 -*-
2 2 """
3 3 IPython -- An enhanced Interactive Python
4 4
5 5 Requires Python 2.1 or better.
6 6
7 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 12 # Copyright (C) 2001-2006 Fernando Perez. <fperez@colorado.edu>
13 13 #
14 14 # Distributed under the terms of the BSD License. The full license is in
15 15 # the file COPYING, distributed as part of this software.
16 16 #*****************************************************************************
17 17
18 18 from IPython import Release
19 19 __author__ = '%s <%s>' % Release.authors['Fernando']
20 20 __license__ = Release.license
21 21 __version__ = Release.version
22 22
23 23 credits._Printer__data = """
24 24 Python: %s
25 25
26 26 IPython: Fernando Perez, Janko Hauser, Nathan Gray, and many users.
27 27 See http://ipython.scipy.org for more information.""" \
28 28 % credits._Printer__data
29 29
30 30 copyright._Printer__data += """
31 31
32 32 Copyright (c) 2001-2004 Fernando Perez, Janko Hauser, Nathan Gray.
33 33 All Rights Reserved."""
34 34
35 35 #****************************************************************************
36 36 # Required modules
37 37
38 38 # From the standard library
39 39 import __main__
40 40 import __builtin__
41 41 import os
42 42 import re
43 43 import sys
44 44 import types
45 45 from pprint import pprint,pformat
46 46
47 47 # Our own
48 48 from IPython import DPyGetOpt
49 49 from IPython.ipstruct import Struct
50 50 from IPython.OutputTrap import OutputTrap
51 51 from IPython.ConfigLoader import ConfigLoader
52 52 from IPython.iplib import InteractiveShell
53 53 from IPython.usage import cmd_line_usage,interactive_usage
54 54 from IPython.genutils import *
55 55
56 56 #-----------------------------------------------------------------------------
57 57 def make_IPython(argv=None,user_ns=None,user_global_ns=None,debug=1,
58 58 rc_override=None,shell_class=InteractiveShell,
59 59 embedded=False,**kw):
60 60 """This is a dump of IPython into a single function.
61 61
62 62 Later it will have to be broken up in a sensible manner.
63 63
64 64 Arguments:
65 65
66 66 - argv: a list similar to sys.argv[1:]. It should NOT contain the desired
67 67 script name, b/c DPyGetOpt strips the first argument only for the real
68 68 sys.argv.
69 69
70 70 - user_ns: a dict to be used as the user's namespace."""
71 71
72 72 #----------------------------------------------------------------------
73 73 # Defaults and initialization
74 74
75 75 # For developer debugging, deactivates crash handler and uses pdb.
76 76 DEVDEBUG = False
77 77
78 78 if argv is None:
79 79 argv = sys.argv
80 80
81 81 # __IP is the main global that lives throughout and represents the whole
82 82 # application. If the user redefines it, all bets are off as to what
83 83 # happens.
84 84
85 85 # __IP is the name of he global which the caller will have accessible as
86 86 # __IP.name. We set its name via the first parameter passed to
87 87 # InteractiveShell:
88 88
89 89 IP = shell_class('__IP',user_ns=user_ns,user_global_ns=user_global_ns,
90 90 embedded=embedded,**kw)
91 91
92 92 # Put 'help' in the user namespace
93 93 from site import _Helper
94 94 IP.user_ns['help'] = _Helper()
95 95
96 96
97 97 if DEVDEBUG:
98 98 # For developer debugging only (global flag)
99 99 from IPython import ultraTB
100 100 sys.excepthook = ultraTB.VerboseTB(call_pdb=1)
101 101
102 102 IP.BANNER_PARTS = ['Python %s\n'
103 103 'Type "copyright", "credits" or "license" '
104 104 'for more information.\n'
105 105 % (sys.version.split('\n')[0],),
106 106 "IPython %s -- An enhanced Interactive Python."
107 107 % (__version__,),
108 108 """? -> Introduction to IPython's features.
109 109 %magic -> Information about IPython's 'magic' % functions.
110 110 help -> Python's own help system.
111 111 object? -> Details about 'object'. ?object also works, ?? prints more.
112 112 """ ]
113 113
114 114 IP.usage = interactive_usage
115 115
116 116 # Platform-dependent suffix and directory names. We use _ipython instead
117 117 # of .ipython under win32 b/c there's software that breaks with .named
118 118 # directories on that platform.
119 119 if os.name == 'posix':
120 120 rc_suffix = ''
121 121 ipdir_def = '.ipython'
122 122 else:
123 123 rc_suffix = '.ini'
124 124 ipdir_def = '_ipython'
125 125
126 126 # default directory for configuration
127 127 ipythondir_def = os.path.abspath(os.environ.get('IPYTHONDIR',
128 128 os.path.join(IP.home_dir,ipdir_def)))
129 129
130 130 sys.path.insert(0, '') # add . to sys.path. Fix from Prabhu Ramachandran
131 131
132 132 # we need the directory where IPython itself is installed
133 133 import IPython
134 134 IPython_dir = os.path.dirname(IPython.__file__)
135 135 del IPython
136 136
137 137 #-------------------------------------------------------------------------
138 138 # Command line handling
139 139
140 140 # Valid command line options (uses DPyGetOpt syntax, like Perl's
141 141 # GetOpt::Long)
142 142
143 143 # Any key not listed here gets deleted even if in the file (like session
144 144 # or profile). That's deliberate, to maintain the rc namespace clean.
145 145
146 146 # Each set of options appears twice: under _conv only the names are
147 147 # listed, indicating which type they must be converted to when reading the
148 148 # ipythonrc file. And under DPyGetOpt they are listed with the regular
149 149 # DPyGetOpt syntax (=s,=i,:f,etc).
150 150
151 151 # Make sure there's a space before each end of line (they get auto-joined!)
152 152 cmdline_opts = ('autocall=i autoindent! automagic! banner! cache_size|cs=i '
153 153 'c=s classic|cl color_info! colors=s confirm_exit! '
154 154 'debug! deep_reload! editor=s log|l messages! nosep '
155 155 'object_info_string_level=i pdb! '
156 156 'pprint! prompt_in1|pi1=s prompt_in2|pi2=s prompt_out|po=s '
157 157 'quick screen_length|sl=i prompts_pad_left=i '
158 158 'logfile|lf=s logplay|lp=s profile|p=s '
159 159 'readline! readline_merge_completions! '
160 160 'readline_omit__names! '
161 161 'rcfile=s separate_in|si=s separate_out|so=s '
162 162 'separate_out2|so2=s xmode=s wildcards_case_sensitive! '
163 163 'magic_docstrings system_verbose! '
164 164 'multi_line_specials! '
165 'wxversion=s '
165 'term_title! wxversion=s '
166 166 'autoedit_syntax!')
167 167
168 168 # Options that can *only* appear at the cmd line (not in rcfiles).
169 169
170 170 # The "ignore" option is a kludge so that Emacs buffers don't crash, since
171 171 # the 'C-c !' command in emacs automatically appends a -i option at the end.
172 172 cmdline_only = ('help ignore|i ipythondir=s Version upgrade '
173 173 'gthread! qthread! q4thread! wthread! pylab! tk!')
174 174
175 175 # Build the actual name list to be used by DPyGetOpt
176 176 opts_names = qw(cmdline_opts) + qw(cmdline_only)
177 177
178 178 # Set sensible command line defaults.
179 179 # This should have everything from cmdline_opts and cmdline_only
180 180 opts_def = Struct(autocall = 1,
181 181 autoedit_syntax = 0,
182 182 autoindent = 0,
183 183 automagic = 1,
184 184 banner = 1,
185 185 cache_size = 1000,
186 186 c = '',
187 187 classic = 0,
188 188 colors = 'NoColor',
189 189 color_info = 0,
190 190 confirm_exit = 1,
191 191 debug = 0,
192 192 deep_reload = 0,
193 193 editor = '0',
194 194 help = 0,
195 195 ignore = 0,
196 196 ipythondir = ipythondir_def,
197 197 log = 0,
198 198 logfile = '',
199 199 logplay = '',
200 200 multi_line_specials = 1,
201 201 messages = 1,
202 202 object_info_string_level = 0,
203 203 nosep = 0,
204 204 pdb = 0,
205 205 pprint = 0,
206 206 profile = '',
207 207 prompt_in1 = 'In [\\#]: ',
208 208 prompt_in2 = ' .\\D.: ',
209 209 prompt_out = 'Out[\\#]: ',
210 210 prompts_pad_left = 1,
211 211 quiet = 0,
212 212 quick = 0,
213 213 readline = 1,
214 214 readline_merge_completions = 1,
215 215 readline_omit__names = 0,
216 216 rcfile = 'ipythonrc' + rc_suffix,
217 217 screen_length = 0,
218 218 separate_in = '\n',
219 219 separate_out = '\n',
220 220 separate_out2 = '',
221 221 system_header = 'IPython system call: ',
222 222 system_verbose = 0,
223 223 gthread = 0,
224 224 qthread = 0,
225 225 q4thread = 0,
226 226 wthread = 0,
227 227 pylab = 0,
228 term_title = 1,
228 229 tk = 0,
229 230 upgrade = 0,
230 231 Version = 0,
231 232 xmode = 'Verbose',
232 233 wildcards_case_sensitive = 1,
233 234 wxversion = '0',
234 235 magic_docstrings = 0, # undocumented, for doc generation
235 236 )
236 237
237 238 # Things that will *only* appear in rcfiles (not at the command line).
238 239 # Make sure there's a space before each end of line (they get auto-joined!)
239 240 rcfile_opts = { qwflat: 'include import_mod import_all execfile ',
240 241 qw_lol: 'import_some ',
241 242 # for things with embedded whitespace:
242 243 list_strings:'execute alias readline_parse_and_bind ',
243 244 # Regular strings need no conversion:
244 245 None:'readline_remove_delims ',
245 246 }
246 247 # Default values for these
247 248 rc_def = Struct(include = [],
248 249 import_mod = [],
249 250 import_all = [],
250 251 import_some = [[]],
251 252 execute = [],
252 253 execfile = [],
253 254 alias = [],
254 255 readline_parse_and_bind = [],
255 256 readline_remove_delims = '',
256 257 )
257 258
258 259 # Build the type conversion dictionary from the above tables:
259 260 typeconv = rcfile_opts.copy()
260 261 typeconv.update(optstr2types(cmdline_opts))
261 262
262 263 # FIXME: the None key appears in both, put that back together by hand. Ugly!
263 264 typeconv[None] += ' ' + rcfile_opts[None]
264 265
265 266 # Remove quotes at ends of all strings (used to protect spaces)
266 267 typeconv[unquote_ends] = typeconv[None]
267 268 del typeconv[None]
268 269
269 270 # Build the list we'll use to make all config decisions with defaults:
270 271 opts_all = opts_def.copy()
271 272 opts_all.update(rc_def)
272 273
273 274 # Build conflict resolver for recursive loading of config files:
274 275 # - preserve means the outermost file maintains the value, it is not
275 276 # overwritten if an included file has the same key.
276 277 # - add_flip applies + to the two values, so it better make sense to add
277 278 # those types of keys. But it flips them first so that things loaded
278 279 # deeper in the inclusion chain have lower precedence.
279 280 conflict = {'preserve': ' '.join([ typeconv[int],
280 281 typeconv[unquote_ends] ]),
281 282 'add_flip': ' '.join([ typeconv[qwflat],
282 283 typeconv[qw_lol],
283 284 typeconv[list_strings] ])
284 285 }
285 286
286 287 # Now actually process the command line
287 288 getopt = DPyGetOpt.DPyGetOpt()
288 289 getopt.setIgnoreCase(0)
289 290
290 291 getopt.parseConfiguration(opts_names)
291 292
292 293 try:
293 294 getopt.processArguments(argv)
294 295 except:
295 296 print cmd_line_usage
296 297 warn('\nError in Arguments: ' + `sys.exc_value`)
297 298 sys.exit(1)
298 299
299 300 # convert the options dict to a struct for much lighter syntax later
300 301 opts = Struct(getopt.optionValues)
301 302 args = getopt.freeValues
302 303
303 304 # this is the struct (which has default values at this point) with which
304 305 # we make all decisions:
305 306 opts_all.update(opts)
306 307
307 308 # Options that force an immediate exit
308 309 if opts_all.help:
309 310 page(cmd_line_usage)
310 311 sys.exit()
311 312
312 313 if opts_all.Version:
313 314 print __version__
314 315 sys.exit()
315 316
316 317 if opts_all.magic_docstrings:
317 318 IP.magic_magic('-latex')
318 319 sys.exit()
319 320
320 321 # add personal ipythondir to sys.path so that users can put things in
321 322 # there for customization
322 323 sys.path.append(os.path.abspath(opts_all.ipythondir))
323 324
324 325 # Create user config directory if it doesn't exist. This must be done
325 326 # *after* getting the cmd line options.
326 327 if not os.path.isdir(opts_all.ipythondir):
327 328 IP.user_setup(opts_all.ipythondir,rc_suffix,'install')
328 329
329 330 # upgrade user config files while preserving a copy of the originals
330 331 if opts_all.upgrade:
331 332 IP.user_setup(opts_all.ipythondir,rc_suffix,'upgrade')
332 333
333 334 # check mutually exclusive options in the *original* command line
334 335 mutex_opts(opts,[qw('log logfile'),qw('rcfile profile'),
335 336 qw('classic profile'),qw('classic rcfile')])
336 337
337 338 #---------------------------------------------------------------------------
338 339 # Log replay
339 340
340 341 # if -logplay, we need to 'become' the other session. That basically means
341 342 # replacing the current command line environment with that of the old
342 343 # session and moving on.
343 344
344 345 # this is needed so that later we know we're in session reload mode, as
345 346 # opts_all will get overwritten:
346 347 load_logplay = 0
347 348
348 349 if opts_all.logplay:
349 350 load_logplay = opts_all.logplay
350 351 opts_debug_save = opts_all.debug
351 352 try:
352 353 logplay = open(opts_all.logplay)
353 354 except IOError:
354 355 if opts_all.debug: IP.InteractiveTB()
355 356 warn('Could not open logplay file '+`opts_all.logplay`)
356 357 # restore state as if nothing had happened and move on, but make
357 358 # sure that later we don't try to actually load the session file
358 359 logplay = None
359 360 load_logplay = 0
360 361 del opts_all.logplay
361 362 else:
362 363 try:
363 364 logplay.readline()
364 365 logplay.readline();
365 366 # this reloads that session's command line
366 367 cmd = logplay.readline()[6:]
367 368 exec cmd
368 369 # restore the true debug flag given so that the process of
369 370 # session loading itself can be monitored.
370 371 opts.debug = opts_debug_save
371 372 # save the logplay flag so later we don't overwrite the log
372 373 opts.logplay = load_logplay
373 374 # now we must update our own structure with defaults
374 375 opts_all.update(opts)
375 376 # now load args
376 377 cmd = logplay.readline()[6:]
377 378 exec cmd
378 379 logplay.close()
379 380 except:
380 381 logplay.close()
381 382 if opts_all.debug: IP.InteractiveTB()
382 383 warn("Logplay file lacking full configuration information.\n"
383 384 "I'll try to read it, but some things may not work.")
384 385
385 386 #-------------------------------------------------------------------------
386 387 # set up output traps: catch all output from files, being run, modules
387 388 # loaded, etc. Then give it to the user in a clean form at the end.
388 389
389 390 msg_out = 'Output messages. '
390 391 msg_err = 'Error messages. '
391 392 msg_sep = '\n'
392 393 msg = Struct(config = OutputTrap('Configuration Loader',msg_out,
393 394 msg_err,msg_sep,debug,
394 395 quiet_out=1),
395 396 user_exec = OutputTrap('User File Execution',msg_out,
396 397 msg_err,msg_sep,debug),
397 398 logplay = OutputTrap('Log Loader',msg_out,
398 399 msg_err,msg_sep,debug),
399 400 summary = ''
400 401 )
401 402
402 403 #-------------------------------------------------------------------------
403 404 # Process user ipythonrc-type configuration files
404 405
405 406 # turn on output trapping and log to msg.config
406 407 # remember that with debug on, trapping is actually disabled
407 408 msg.config.trap_all()
408 409
409 410 # look for rcfile in current or default directory
410 411 try:
411 412 opts_all.rcfile = filefind(opts_all.rcfile,opts_all.ipythondir)
412 413 except IOError:
413 414 if opts_all.debug: IP.InteractiveTB()
414 415 warn('Configuration file %s not found. Ignoring request.'
415 416 % (opts_all.rcfile) )
416 417
417 418 # 'profiles' are a shorthand notation for config filenames
418 419 if opts_all.profile:
419 420
420 421 try:
421 422 opts_all.rcfile = filefind('ipythonrc-' + opts_all.profile
422 423 + rc_suffix,
423 424 opts_all.ipythondir)
424 425 except IOError:
425 426 if opts_all.debug: IP.InteractiveTB()
426 427 opts.profile = '' # remove profile from options if invalid
427 428 # We won't warn anymore, primary method is ipy_profile_PROFNAME
428 429 # which does trigger a warning.
429 430
430 431 # load the config file
431 432 rcfiledata = None
432 433 if opts_all.quick:
433 434 print 'Launching IPython in quick mode. No config file read.'
434 435 elif opts_all.rcfile:
435 436 try:
436 437 cfg_loader = ConfigLoader(conflict)
437 438 rcfiledata = cfg_loader.load(opts_all.rcfile,typeconv,
438 439 'include',opts_all.ipythondir,
439 440 purge = 1,
440 441 unique = conflict['preserve'])
441 442 except:
442 443 IP.InteractiveTB()
443 444 warn('Problems loading configuration file '+
444 445 `opts_all.rcfile`+
445 446 '\nStarting with default -bare bones- configuration.')
446 447 else:
447 448 warn('No valid configuration file found in either currrent directory\n'+
448 449 'or in the IPython config. directory: '+`opts_all.ipythondir`+
449 450 '\nProceeding with internal defaults.')
450 451
451 452 #------------------------------------------------------------------------
452 453 # Set exception handlers in mode requested by user.
453 454 otrap = OutputTrap(trap_out=1) # trap messages from magic_xmode
454 455 IP.magic_xmode(opts_all.xmode)
455 456 otrap.release_out()
456 457
457 458 #------------------------------------------------------------------------
458 459 # Execute user config
459 460
460 461 # Create a valid config structure with the right precedence order:
461 462 # defaults < rcfile < command line. This needs to be in the instance, so
462 463 # that method calls below that rely on it find it.
463 464 IP.rc = rc_def.copy()
464 465
465 466 # Work with a local alias inside this routine to avoid unnecessary
466 467 # attribute lookups.
467 468 IP_rc = IP.rc
468 469
469 470 IP_rc.update(opts_def)
470 471 if rcfiledata:
471 472 # now we can update
472 473 IP_rc.update(rcfiledata)
473 474 IP_rc.update(opts)
474 475 IP_rc.update(rc_override)
475 476
476 477 # Store the original cmd line for reference:
477 478 IP_rc.opts = opts
478 479 IP_rc.args = args
479 480
480 481 # create a *runtime* Struct like rc for holding parameters which may be
481 482 # created and/or modified by runtime user extensions.
482 483 IP.runtime_rc = Struct()
483 484
484 485 # from this point on, all config should be handled through IP_rc,
485 486 # opts* shouldn't be used anymore.
486 487
487 488
488 489 # update IP_rc with some special things that need manual
489 490 # tweaks. Basically options which affect other options. I guess this
490 491 # should just be written so that options are fully orthogonal and we
491 492 # wouldn't worry about this stuff!
492 493
493 494 if IP_rc.classic:
494 495 IP_rc.quick = 1
495 496 IP_rc.cache_size = 0
496 497 IP_rc.pprint = 0
497 498 IP_rc.prompt_in1 = '>>> '
498 499 IP_rc.prompt_in2 = '... '
499 500 IP_rc.prompt_out = ''
500 501 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
501 502 IP_rc.colors = 'NoColor'
502 503 IP_rc.xmode = 'Plain'
503 504
504 505 IP.pre_config_initialization()
505 506 # configure readline
506 507 # Define the history file for saving commands in between sessions
507 508 if IP_rc.profile:
508 509 histfname = 'history-%s' % IP_rc.profile
509 510 else:
510 511 histfname = 'history'
511 512 IP.histfile = os.path.join(opts_all.ipythondir,histfname)
512 513
513 514 # update exception handlers with rc file status
514 515 otrap.trap_out() # I don't want these messages ever.
515 516 IP.magic_xmode(IP_rc.xmode)
516 517 otrap.release_out()
517 518
518 519 # activate logging if requested and not reloading a log
519 520 if IP_rc.logplay:
520 521 IP.magic_logstart(IP_rc.logplay + ' append')
521 522 elif IP_rc.logfile:
522 523 IP.magic_logstart(IP_rc.logfile)
523 524 elif IP_rc.log:
524 525 IP.magic_logstart()
525 526
526 527 # find user editor so that it we don't have to look it up constantly
527 528 if IP_rc.editor.strip()=='0':
528 529 try:
529 530 ed = os.environ['EDITOR']
530 531 except KeyError:
531 532 if os.name == 'posix':
532 533 ed = 'vi' # the only one guaranteed to be there!
533 534 else:
534 535 ed = 'notepad' # same in Windows!
535 536 IP_rc.editor = ed
536 537
537 538 # Keep track of whether this is an embedded instance or not (useful for
538 539 # post-mortems).
539 540 IP_rc.embedded = IP.embedded
540 541
541 542 # Recursive reload
542 543 try:
543 544 from IPython import deep_reload
544 545 if IP_rc.deep_reload:
545 546 __builtin__.reload = deep_reload.reload
546 547 else:
547 548 __builtin__.dreload = deep_reload.reload
548 549 del deep_reload
549 550 except ImportError:
550 551 pass
551 552
552 553 # Save the current state of our namespace so that the interactive shell
553 554 # can later know which variables have been created by us from config files
554 555 # and loading. This way, loading a file (in any way) is treated just like
555 556 # defining things on the command line, and %who works as expected.
556 557
557 558 # DON'T do anything that affects the namespace beyond this point!
558 559 IP.internal_ns.update(__main__.__dict__)
559 560
560 561 #IP.internal_ns.update(locals()) # so our stuff doesn't show up in %who
561 562
562 563 # Now run through the different sections of the users's config
563 564 if IP_rc.debug:
564 565 print 'Trying to execute the following configuration structure:'
565 566 print '(Things listed first are deeper in the inclusion tree and get'
566 567 print 'loaded first).\n'
567 568 pprint(IP_rc.__dict__)
568 569
569 570 for mod in IP_rc.import_mod:
570 571 try:
571 572 exec 'import '+mod in IP.user_ns
572 573 except :
573 574 IP.InteractiveTB()
574 575 import_fail_info(mod)
575 576
576 577 for mod_fn in IP_rc.import_some:
577 578 if not mod_fn == []:
578 579 mod,fn = mod_fn[0],','.join(mod_fn[1:])
579 580 try:
580 581 exec 'from '+mod+' import '+fn in IP.user_ns
581 582 except :
582 583 IP.InteractiveTB()
583 584 import_fail_info(mod,fn)
584 585
585 586 for mod in IP_rc.import_all:
586 587 try:
587 588 exec 'from '+mod+' import *' in IP.user_ns
588 589 except :
589 590 IP.InteractiveTB()
590 591 import_fail_info(mod)
591 592
592 593 for code in IP_rc.execute:
593 594 try:
594 595 exec code in IP.user_ns
595 596 except:
596 597 IP.InteractiveTB()
597 598 warn('Failure executing code: ' + `code`)
598 599
599 600 # Execute the files the user wants in ipythonrc
600 601 for file in IP_rc.execfile:
601 602 try:
602 603 file = filefind(file,sys.path+[IPython_dir])
603 604 except IOError:
604 605 warn(itpl('File $file not found. Skipping it.'))
605 606 else:
606 607 IP.safe_execfile(os.path.expanduser(file),IP.user_ns)
607 608
608 609 # finally, try importing ipy_*_conf for final configuration
609 610 try:
610 611 import ipy_system_conf
611 612 except ImportError:
612 613 if opts_all.debug: IP.InteractiveTB()
613 614 warn("Could not import 'ipy_system_conf'")
614 615 except:
615 616 IP.InteractiveTB()
616 617 import_fail_info('ipy_system_conf')
617 618
618 619 if opts_all.profile:
619 620 profmodname = 'ipy_profile_' + opts_all.profile
620 621 try:
621 622 __import__(profmodname)
622 623 except ImportError:
623 624 # only warn if ipythonrc-PROFNAME didn't exist
624 625 if opts.profile =='':
625 626 warn("Could not start with profile '%s'!\n"
626 627 "('%s/%s.py' does not exist? run '%%upgrade')" %
627 628 (opts_all.profile, opts_all.ipythondir, profmodname) )
628 629 except:
629 630 print "Error importing",profmodname,"- perhaps you should run %upgrade?"
630 631 IP.InteractiveTB()
631 632 import_fail_info(profmodname)
632 633
633 634 try:
634 635 import ipy_user_conf
635 636 except ImportError:
636 637 if opts_all.debug: IP.InteractiveTB()
637 638 warn("Could not import user config!\n "
638 639 "('%s/ipy_user_conf.py' does not exist? Please run '%%upgrade')\n"
639 640 % opts_all.ipythondir)
640 641 except:
641 642 print "Error importing ipy_user_conf - perhaps you should run %upgrade?"
642 643 IP.InteractiveTB()
643 644 import_fail_info("ipy_user_conf")
644 645
645 646 # release stdout and stderr and save config log into a global summary
646 647 msg.config.release_all()
647 648 if IP_rc.messages:
648 649 msg.summary += msg.config.summary_all()
649 650
650 651 #------------------------------------------------------------------------
651 652 # Setup interactive session
652 653
653 654 # Now we should be fully configured. We can then execute files or load
654 655 # things only needed for interactive use. Then we'll open the shell.
655 656
656 657 # Take a snapshot of the user namespace before opening the shell. That way
657 658 # we'll be able to identify which things were interactively defined and
658 659 # which were defined through config files.
659 660 IP.user_config_ns = IP.user_ns.copy()
660 661
661 662 # Force reading a file as if it were a session log. Slower but safer.
662 663 if load_logplay:
663 664 print 'Replaying log...'
664 665 try:
665 666 if IP_rc.debug:
666 667 logplay_quiet = 0
667 668 else:
668 669 logplay_quiet = 1
669 670
670 671 msg.logplay.trap_all()
671 672 IP.safe_execfile(load_logplay,IP.user_ns,
672 673 islog = 1, quiet = logplay_quiet)
673 674 msg.logplay.release_all()
674 675 if IP_rc.messages:
675 676 msg.summary += msg.logplay.summary_all()
676 677 except:
677 678 warn('Problems replaying logfile %s.' % load_logplay)
678 679 IP.InteractiveTB()
679 680
680 681 # Load remaining files in command line
681 682 msg.user_exec.trap_all()
682 683
683 684 # Do NOT execute files named in the command line as scripts to be loaded
684 685 # by embedded instances. Doing so has the potential for an infinite
685 686 # recursion if there are exceptions thrown in the process.
686 687
687 688 # XXX FIXME: the execution of user files should be moved out to after
688 689 # ipython is fully initialized, just as if they were run via %run at the
689 690 # ipython prompt. This would also give them the benefit of ipython's
690 691 # nice tracebacks.
691 692
692 693 if (not embedded and IP_rc.args and
693 694 not IP_rc.args[0].lower().endswith('.ipy')):
694 695 name_save = IP.user_ns['__name__']
695 696 IP.user_ns['__name__'] = '__main__'
696 697 # Set our own excepthook in case the user code tries to call it
697 698 # directly. This prevents triggering the IPython crash handler.
698 699 old_excepthook,sys.excepthook = sys.excepthook, IP.excepthook
699 700
700 701 save_argv = sys.argv[1:] # save it for later restoring
701 702
702 703 sys.argv = args
703 704
704 705 try:
705 706 IP.safe_execfile(args[0], IP.user_ns)
706 707 finally:
707 708 # Reset our crash handler in place
708 709 sys.excepthook = old_excepthook
709 710 sys.argv[:] = save_argv
710 711 IP.user_ns['__name__'] = name_save
711 712
712 713 msg.user_exec.release_all()
713 714
714 715 if IP_rc.messages:
715 716 msg.summary += msg.user_exec.summary_all()
716 717
717 718 # since we can't specify a null string on the cmd line, 0 is the equivalent:
718 719 if IP_rc.nosep:
719 720 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
720 721 if IP_rc.separate_in == '0': IP_rc.separate_in = ''
721 722 if IP_rc.separate_out == '0': IP_rc.separate_out = ''
722 723 if IP_rc.separate_out2 == '0': IP_rc.separate_out2 = ''
723 724 IP_rc.separate_in = IP_rc.separate_in.replace('\\n','\n')
724 725 IP_rc.separate_out = IP_rc.separate_out.replace('\\n','\n')
725 726 IP_rc.separate_out2 = IP_rc.separate_out2.replace('\\n','\n')
726 727
727 728 # Determine how many lines at the bottom of the screen are needed for
728 729 # showing prompts, so we can know wheter long strings are to be printed or
729 730 # paged:
730 731 num_lines_bot = IP_rc.separate_in.count('\n')+1
731 732 IP_rc.screen_length = IP_rc.screen_length - num_lines_bot
732 733
733 734 # configure startup banner
734 735 if IP_rc.c: # regular python doesn't print the banner with -c
735 736 IP_rc.banner = 0
736 737 if IP_rc.banner:
737 738 BANN_P = IP.BANNER_PARTS
738 739 else:
739 740 BANN_P = []
740 741
741 742 if IP_rc.profile: BANN_P.append('IPython profile: %s\n' % IP_rc.profile)
742 743
743 744 # add message log (possibly empty)
744 745 if msg.summary: BANN_P.append(msg.summary)
745 746 # Final banner is a string
746 747 IP.BANNER = '\n'.join(BANN_P)
747 748
748 749 # Finalize the IPython instance. This assumes the rc structure is fully
749 750 # in place.
750 751 IP.post_config_initialization()
751 752
752 753 return IP
753 754 #************************ end of file <ipmaker.py> **************************
@@ -1,314 +1,360 b''
1 1 #!/usr/bin/env python
2 2 """Module for interactively running scripts.
3 3
4 4 This module implements classes for interactively running scripts written for
5 5 any system with a prompt which can be matched by a regexp suitable for
6 6 pexpect. It can be used to run as if they had been typed up interactively, an
7 7 arbitrary series of commands for the target system.
8 8
9 9 The module includes classes ready for IPython (with the default prompts),
10 10 plain Python and SAGE, but making a new one is trivial. To see how to use it,
11 11 simply run the module as a script:
12 12
13 13 ./irunner.py --help
14 14
15 15
16 16 This is an extension of Ken Schutte <kschutte-AT-csail.mit.edu>'s script
17 17 contributed on the ipython-user list:
18 18
19 19 http://scipy.net/pipermail/ipython-user/2006-May/001705.html
20 20
21 21
22 22 NOTES:
23 23
24 24 - This module requires pexpect, available in most linux distros, or which can
25 25 be downloaded from
26 26
27 27 http://pexpect.sourceforge.net
28 28
29 29 - Because pexpect only works under Unix or Windows-Cygwin, this has the same
30 30 limitations. This means that it will NOT work under native windows Python.
31 31 """
32 32
33 33 # Stdlib imports
34 34 import optparse
35 35 import os
36 36 import sys
37 37
38 38 # Third-party modules.
39 39 import pexpect
40 40
41 41 # Global usage strings, to avoid indentation issues when typing it below.
42 42 USAGE = """
43 43 Interactive script runner, type: %s
44 44
45 45 runner [opts] script_name
46 46 """
47 47
48 48 # The generic runner class
49 49 class InteractiveRunner(object):
50 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 53 """Construct a runner.
54 54
55 55 Inputs:
56 56
57 57 - program: command to execute the given program.
58 58
59 59 - prompts: a list of patterns to match as valid prompts, in the
60 60 format used by pexpect. This basically means that it can be either
61 61 a string (to be compiled as a regular expression) or a list of such
62 62 (it must be a true list, as pexpect does type checks).
63 63
64 64 If more than one prompt is given, the first is treated as the main
65 65 program prompt and the others as 'continuation' prompts, like
66 66 python's. This means that blank lines in the input source are
67 67 ommitted when the first prompt is matched, but are NOT ommitted when
68 68 the continuation one matches, since this is how python signals the
69 69 end of multiline input interactively.
70 70
71 71 Optional inputs:
72 72
73 73 - args(None): optional list of strings to pass as arguments to the
74 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 79 Public members not parameterized in the constructor:
77 80
78 81 - delaybeforesend(0): Newer versions of pexpect have a delay before
79 82 sending each new input. For our purposes here, it's typically best
80 83 to just set this to zero, but if you encounter reliability problems
81 84 or want an interactive run to pause briefly at each prompt, just
82 85 increase this value (it is measured in seconds). Note that this
83 86 variable is not honored at all by older versions of pexpect.
84 87 """
85 88
86 89 self.program = program
87 90 self.prompts = prompts
88 91 if args is None: args = []
89 92 self.args = args
93 self.out = out
94 self.echo = echo
90 95 # Other public members which we don't make as parameters, but which
91 96 # users may occasionally want to tweak
92 97 self.delaybeforesend = 0
93
94 def run_file(self,fname,interact=False):
98
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 117 """Run the given file interactively.
96 118
97 119 Inputs:
98 120
99 121 -fname: name of the file to execute.
100 122
101 123 See the run_source docstring for the meaning of the optional
102 124 arguments."""
103 125
104 126 fobj = open(fname,'r')
105 127 try:
106 self.run_source(fobj,interact)
128 out = self.run_source(fobj,interact,get_output)
107 129 finally:
108 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 135 """Run the given source code interactively.
112 136
113 137 Inputs:
114 138
115 139 - source: a string of code to be executed, or an open file object we
116 140 can iterate over.
117 141
118 142 Optional inputs:
119 143
120 144 - interact(False): if true, start to interact with the running
121 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 154 # if the source is a string, chop it up in lines so we can iterate
125 155 # over it just as if it were an open file.
126 156 if not isinstance(source,file):
127 157 source = source.splitlines(True)
128 158
129 # grab the true write method of stdout, in case anything later
130 # reassigns sys.stdout, so that we really are writing to the true
131 # stdout and not to something else. We also normalize all strings we
132 # write to use the native OS line separators.
133 linesep = os.linesep
134 stdwrite = sys.stdout.write
135 write = lambda s: stdwrite(s.replace('\r\n',linesep))
136
137 c = pexpect.spawn(self.program,self.args,timeout=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)
159 if self.echo:
160 # normalize all strings we write to use the native OS line
161 # separators.
162 linesep = os.linesep
163 stdwrite = self.out.write
164 write = lambda s: stdwrite(s.replace('\r\n',linesep))
165 else:
166 # Quiet mode, all writes are no-ops
167 write = lambda s: None
147 168
169 c = self.child
148 170 prompts = c.compile_pattern_list(self.prompts)
149
150 171 prompt_idx = c.expect_list(prompts)
172
151 173 # Flag whether the script ends normally or not, to know whether we can
152 174 # do anything further with the underlying process.
153 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 182 for cmd in source:
155 183 # skip blank lines for all matches to the 'main' prompt, while the
156 184 # secondary prompts do not
157 185 if prompt_idx==0 and \
158 186 (cmd.isspace() or cmd.lstrip().startswith('#')):
159 print cmd,
187 write(cmd)
160 188 continue
161 189
190 #write('AFTER: '+c.after) # dbg
162 191 write(c.after)
163 192 c.send(cmd)
164 193 try:
165 194 prompt_idx = c.expect_list(prompts)
166 195 except pexpect.EOF:
167 196 # this will happen if the child dies unexpectedly
168 197 write(c.before)
169 198 end_normal = False
170 199 break
200
171 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 211 if end_normal:
174 212 if interact:
175 213 c.send('\n')
176 214 print '<< Starting interactive mode >>',
177 215 try:
178 216 c.interact()
179 217 except OSError:
180 218 # This is what fires when the child stops. Simply print a
181 219 # newline so the system prompt is aligned. The extra
182 220 # space is there to make sure it gets printed, otherwise
183 221 # OS buffering sometimes just suppresses it.
184 222 write(' \n')
185 sys.stdout.flush()
186 else:
187 c.close()
223 self.out.flush()
188 224 else:
189 225 if interact:
190 226 e="Further interaction is not possible: child process is dead."
191 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 237 def main(self,argv=None):
194 238 """Run as a command-line script."""
195 239
196 240 parser = optparse.OptionParser(usage=USAGE % self.__class__.__name__)
197 241 newopt = parser.add_option
198 242 newopt('-i','--interact',action='store_true',default=False,
199 243 help='Interact with the program after the script is run.')
200 244
201 245 opts,args = parser.parse_args(argv)
202 246
203 247 if len(args) != 1:
204 248 print >> sys.stderr,"You must supply exactly one file to run."
205 249 sys.exit(1)
206 250
207 251 self.run_file(args[0],opts.interact)
208 252
209 253
210 254 # Specific runners for particular programs
211 255 class IPythonRunner(InteractiveRunner):
212 256 """Interactive IPython runner.
213 257
214 258 This initalizes IPython in 'nocolor' mode for simplicity. This lets us
215 259 avoid having to write a regexp that matches ANSI sequences, though pexpect
216 260 does support them. If anyone contributes patches for ANSI color support,
217 261 they will be welcome.
218 262
219 263 It also sets the prompts manually, since the prompt regexps for
220 264 pexpect need to be matched to the actual prompts, so user-customized
221 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 269 """New runner, optionally passing the ipython command to use."""
226 270
227 271 args0 = ['-colors','NoColor',
228 272 '-pi1','In [\\#]: ',
229 '-pi2',' .\\D.: ']
273 '-pi2',' .\\D.: ',
274 '-noterm_title',
275 '-noautoindent']
230 276 if args is None: args = args0
231 277 else: args = args0 + args
232 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 282 class PythonRunner(InteractiveRunner):
237 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 286 """New runner, optionally passing the python command to use."""
241 287
242 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 292 class SAGERunner(InteractiveRunner):
247 293 """Interactive SAGE runner.
248 294
249 295 WARNING: this runner only works if you manually configure your SAGE copy
250 296 to use 'colors NoColor' in the ipythonrc config file, since currently the
251 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 300 """New runner, optionally passing the sage command to use."""
255 301
256 302 prompts = ['sage: ',r'\s*\.\.\. ']
257 InteractiveRunner.__init__(self,program,prompts,args)
303 InteractiveRunner.__init__(self,program,prompts,args,out,echo)
258 304
259 305 # Global usage string, to avoid indentation issues if typed in a function def.
260 306 MAIN_USAGE = """
261 307 %prog [options] file_to_run
262 308
263 309 This is an interface to the various interactive runners available in this
264 310 module. If you want to pass specific options to one of the runners, you need
265 311 to first terminate the main options with a '--', and then provide the runner's
266 312 options. For example:
267 313
268 314 irunner.py --python -- --help
269 315
270 316 will pass --help to the python runner. Similarly,
271 317
272 318 irunner.py --ipython -- --interact script.ipy
273 319
274 320 will run the script.ipy file under the IPython runner, and then will start to
275 321 interact with IPython at the end of the script (instead of exiting).
276 322
277 323 The already implemented runners are listed below; adding one for a new program
278 324 is a trivial task, see the source for examples.
279 325
280 326 WARNING: the SAGE runner only works if you manually configure your SAGE copy
281 327 to use 'colors NoColor' in the ipythonrc config file, since currently the
282 328 prompt matching regexp does not identify color sequences.
283 329 """
284 330
285 331 def main():
286 332 """Run as a command-line script."""
287 333
288 334 parser = optparse.OptionParser(usage=MAIN_USAGE)
289 335 newopt = parser.add_option
290 336 parser.set_defaults(mode='ipython')
291 337 newopt('--ipython',action='store_const',dest='mode',const='ipython',
292 338 help='IPython interactive runner (default).')
293 339 newopt('--python',action='store_const',dest='mode',const='python',
294 340 help='Python interactive runner.')
295 341 newopt('--sage',action='store_const',dest='mode',const='sage',
296 342 help='SAGE interactive runner.')
297 343
298 344 opts,args = parser.parse_args()
299 345 runners = dict(ipython=IPythonRunner,
300 346 python=PythonRunner,
301 347 sage=SAGERunner)
302 348
303 349 try:
304 350 ext = os.path.splitext(args[0])[-1]
305 351 except IndexError:
306 352 ext = ''
307 353 modes = {'.ipy':'ipython',
308 354 '.py':'python',
309 355 '.sage':'sage'}
310 356 mode = modes.get(ext,opts.mode)
311 357 runners[mode]().main(args)
312 358
313 359 if __name__ == '__main__':
314 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 13 2007-01-24 Fernando Perez <Fernando.Perez@colorado.edu>
2 14
3 15 * IPython/irunner.py (main): fix small bug where extensions were
4 16 not being correctly recognized.
5 17
6 18 2007-01-23 Walter Doerwald <walter@livinglogic.de>
7 19
8 20 * IPython/Extensions/ipipe.py (xiter): Make sure that iterating
9 21 a string containing a single line yields the string itself as the
10 22 only item.
11 23
12 24 * IPython/Extensions/ibrowse.py (ibrowse): Avoid entering an
13 25 object if it's the same as the one on the last level (This avoids
14 26 infinite recursion for one line strings).
15 27
16 28 2007-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
17 29
18 30 * IPython/ultraTB.py (AutoFormattedTB.__call__): properly flush
19 31 all output streams before printing tracebacks. This ensures that
20 32 user output doesn't end up interleaved with traceback output.
21 33
22 34 2007-01-10 Ville Vainio <vivainio@gmail.com>
23 35
24 36 * Extensions/envpersist.py: Turbocharged %env that remembers
25 37 env vars across sessions; e.g. "%env PATH+=;/opt/scripts" or
26 38 "%env VISUAL=jed".
27 39
28 40 2007-01-05 Fernando Perez <Fernando.Perez@colorado.edu>
29 41
30 42 * IPython/iplib.py (showtraceback): ensure that we correctly call
31 43 custom handlers in all cases (some with pdb were slipping through,
32 44 but I'm not exactly sure why).
33 45
34 46 * IPython/Debugger.py (Tracer.__init__): added new class to
35 47 support set_trace-like usage of IPython's enhanced debugger.
36 48
37 49 2006-12-24 Ville Vainio <vivainio@gmail.com>
38 50
39 51 * ipmaker.py: more informative message when ipy_user_conf
40 52 import fails (suggest running %upgrade).
41 53
42 54 * tools/run_ipy_in_profiler.py: Utility to see where
43 55 the time during IPython startup is spent.
44 56
45 57 2006-12-20 Ville Vainio <vivainio@gmail.com>
46 58
47 59 * 0.7.3 is out - merge all from 0.7.3 branch to trunk
48 60
49 61 * ipapi.py: Add new ipapi method, expand_alias.
50 62
51 63 * Release.py: Bump up version to 0.7.4.svn
52 64
53 65 2006-12-17 Ville Vainio <vivainio@gmail.com>
54 66
55 67 * Extensions/jobctrl.py: Fixed &cmd arg arg...
56 68 to work properly on posix too
57 69
58 70 * Release.py: Update revnum (version is still just 0.7.3).
59 71
60 72 2006-12-15 Ville Vainio <vivainio@gmail.com>
61 73
62 74 * scripts/ipython_win_post_install: create ipython.py in
63 75 prefix + "/scripts".
64 76
65 77 * Release.py: Update version to 0.7.3.
66 78
67 79 2006-12-14 Ville Vainio <vivainio@gmail.com>
68 80
69 81 * scripts/ipython_win_post_install: Overwrite old shortcuts
70 82 if they already exist
71 83
72 84 * Release.py: release 0.7.3rc2
73 85
74 86 2006-12-13 Ville Vainio <vivainio@gmail.com>
75 87
76 88 * Branch and update Release.py for 0.7.3rc1
77 89
78 90 2006-12-13 Fernando Perez <Fernando.Perez@colorado.edu>
79 91
80 92 * IPython/Shell.py (IPShellWX): update for current WX naming
81 93 conventions, to avoid a deprecation warning with current WX
82 94 versions. Thanks to a report by Danny Shevitz.
83 95
84 96 2006-12-12 Ville Vainio <vivainio@gmail.com>
85 97
86 98 * ipmaker.py: apply david cournapeau's patch to make
87 99 import_some work properly even when ipythonrc does
88 100 import_some on empty list (it was an old bug!).
89 101
90 102 * UserConfig/ipy_user_conf.py, UserConfig/ipythonrc:
91 103 Add deprecation note to ipythonrc and a url to wiki
92 104 in ipy_user_conf.py
93 105
94 106
95 107 * Magic.py (%run): %run myscript.ipy now runs myscript.ipy
96 108 as if it was typed on IPython command prompt, i.e.
97 109 as IPython script.
98 110
99 111 * example-magic.py, magic_grepl.py: remove outdated examples
100 112
101 113 2006-12-11 Fernando Perez <Fernando.Perez@colorado.edu>
102 114
103 115 * IPython/iplib.py (debugger): prevent a nasty traceback if %debug
104 116 is called before any exception has occurred.
105 117
106 118 2006-12-08 Ville Vainio <vivainio@gmail.com>
107 119
108 120 * Extensions/ipy_stock_completers.py.py: fix cd completer
109 121 to translate /'s to \'s again.
110 122
111 123 * completer.py: prevent traceback on file completions w/
112 124 backslash.
113 125
114 126 * Release.py: Update release number to 0.7.3b3 for release
115 127
116 128 2006-12-07 Ville Vainio <vivainio@gmail.com>
117 129
118 130 * Extensions/ipy_signals.py: Ignore ctrl+C in IPython process
119 131 while executing external code. Provides more shell-like behaviour
120 132 and overall better response to ctrl + C / ctrl + break.
121 133
122 134 * tools/make_tarball.py: new script to create tarball straight from svn
123 135 (setup.py sdist doesn't work on win32).
124 136
125 137 * Extensions/ipy_stock_completers.py: fix cd completer to give up
126 138 on dirnames with spaces and use the default completer instead.
127 139
128 140 * Revision.py: Change version to 0.7.3b2 for release.
129 141
130 142 2006-12-05 Ville Vainio <vivainio@gmail.com>
131 143
132 144 * Magic.py, iplib.py, completer.py: Apply R. Bernstein's
133 145 pydb patch 4 (rm debug printing, py 2.5 checking)
134 146
135 147 2006-11-30 Walter Doerwald <walter@livinglogic.de>
136 148 * IPython/Extensions/ibrowse.py: Add two new commands to ibrowse:
137 149 "refresh" (mapped to "r") refreshes the screen by restarting the iterator.
138 150 "refreshfind" (mapped to "R") does the same but tries to go back to the same
139 151 object the cursor was on before the refresh. The command "markrange" is
140 152 mapped to "%" now.
141 153 * IPython/Extensions/ibrowse.py: Make igrpentry and ipwdentry comparable.
142 154
143 155 2006-11-29 Fernando Perez <Fernando.Perez@colorado.edu>
144 156
145 157 * IPython/Magic.py (magic_debug): new %debug magic to activate the
146 158 interactive debugger on the last traceback, without having to call
147 159 %pdb and rerun your code. Made minor changes in various modules,
148 160 should automatically recognize pydb if available.
149 161
150 162 2006-11-28 Ville Vainio <vivainio@gmail.com>
151 163
152 164 * completer.py: If the text start with !, show file completions
153 165 properly. This helps when trying to complete command name
154 166 for shell escapes.
155 167
156 168 2006-11-27 Ville Vainio <vivainio@gmail.com>
157 169
158 170 * ipy_stock_completers.py: bzr completer submitted by Stefan van
159 171 der Walt. Clean up svn and hg completers by using a common
160 172 vcs_completer.
161 173
162 174 2006-11-26 Ville Vainio <vivainio@gmail.com>
163 175
164 176 * Remove ipconfig and %config; you should use _ip.options structure
165 177 directly instead!
166 178
167 179 * genutils.py: add wrap_deprecated function for deprecating callables
168 180
169 181 * iplib.py: deprecate ipmagic, ipsystem, ipalias. Use _ip.magic and
170 182 _ip.system instead. ipalias is redundant.
171 183
172 184 * Magic.py: %rehashdir no longer aliases 'cmdname' to 'cmdname.exe' on
173 185 win32, but just 'cmdname'. Other extensions (non-'exe') are still made
174 186 explicit.
175 187
176 188 * ipy_stock_completers.py: 'hg' (mercurial VCS) now has a custom
177 189 completer. Try it by entering 'hg ' and pressing tab.
178 190
179 191 * macro.py: Give Macro a useful __repr__ method
180 192
181 193 * Magic.py: %whos abbreviates the typename of Macro for brevity.
182 194
183 195 2006-11-24 Walter Doerwald <walter@livinglogic.de>
184 196 * IPython/Extensions/astyle.py: Do a relative import of ipipe, so that
185 197 we don't get a duplicate ipipe module, where registration of the xrepr
186 198 implementation for Text is useless.
187 199
188 200 * IPython/Extensions/ipipe.py: Fix __xrepr__() implementation for ils.
189 201
190 202 * IPython/Extensions/ibrowse.py: Fix keymapping for the enter command.
191 203
192 204 2006-11-24 Ville Vainio <vivainio@gmail.com>
193 205
194 206 * Magic.py, manual_base.lyx: Kirill Smelkov patch:
195 207 try to use "cProfile" instead of the slower pure python
196 208 "profile"
197 209
198 210 2006-11-23 Ville Vainio <vivainio@gmail.com>
199 211
200 212 * manual_base.lyx: Kirill Smelkov patch: Fix wrong
201 213 Qt+IPython+Designer link in documentation.
202 214
203 215 * Extensions/ipy_pydb.py: R. Bernstein's patch for passing
204 216 correct Pdb object to %pydb.
205 217
206 218
207 219 2006-11-22 Walter Doerwald <walter@livinglogic.de>
208 220 * IPython/Extensions/astyle.py: Text needs it's own implemenation of the
209 221 generic xrepr(), otherwise the list implementation would kick in.
210 222
211 223 2006-11-21 Ville Vainio <vivainio@gmail.com>
212 224
213 225 * upgrade_dir.py: Now actually overwrites a nonmodified user file
214 226 with one from UserConfig.
215 227
216 228 * ipy_profile_sh.py: Add dummy "depth" to var_expand lambda,
217 229 it was missing which broke the sh profile.
218 230
219 231 * completer.py: file completer now uses explicit '/' instead
220 232 of os.path.join, expansion of 'foo' was broken on win32
221 233 if there was one directory with name 'foobar'.
222 234
223 235 * A bunch of patches from Kirill Smelkov:
224 236
225 237 * [patch 9/9] doc: point bug-tracker URL to IPythons trac-tickets.
226 238
227 239 * [patch 7/9] Implement %page -r (page in raw mode) -
228 240
229 241 * [patch 5/9] ScientificPython webpage has moved
230 242
231 243 * [patch 4/9] The manual mentions %ds, should be %dhist
232 244
233 245 * [patch 3/9] Kill old bits from %prun doc.
234 246
235 247 * [patch 1/9] Fix typos here and there.
236 248
237 249 2006-11-08 Ville Vainio <vivainio@gmail.com>
238 250
239 251 * completer.py (attr_matches): catch all exceptions raised
240 252 by eval of expr with dots.
241 253
242 254 2006-11-07 Fernando Perez <Fernando.Perez@colorado.edu>
243 255
244 256 * IPython/iplib.py (runsource): Prepend an 'if 1:' to the user
245 257 input if it starts with whitespace. This allows you to paste
246 258 indented input from any editor without manually having to type in
247 259 the 'if 1:', which is convenient when working interactively.
248 260 Slightly modifed version of a patch by Bo Peng
249 261 <bpeng-AT-rice.edu>.
250 262
251 263 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
252 264
253 265 * IPython/irunner.py (main): modified irunner so it automatically
254 266 recognizes the right runner to use based on the extension (.py for
255 267 python, .ipy for ipython and .sage for sage).
256 268
257 269 * IPython/iplib.py (InteractiveShell.ipconfig): new builtin, also
258 270 visible in ipapi as ip.config(), to programatically control the
259 271 internal rc object. There's an accompanying %config magic for
260 272 interactive use, which has been enhanced to match the
261 273 funtionality in ipconfig.
262 274
263 275 * IPython/Magic.py (magic_system_verbose): Change %system_verbose
264 276 so it's not just a toggle, it now takes an argument. Add support
265 277 for a customizable header when making system calls, as the new
266 278 system_header variable in the ipythonrc file.
267 279
268 280 2006-11-03 Walter Doerwald <walter@livinglogic.de>
269 281
270 282 * IPython/Extensions/ipipe.py: xrepr(), xiter() and xattrs() are now
271 283 generic functions (using Philip J. Eby's simplegeneric package).
272 284 This makes it possible to customize the display of third-party classes
273 285 without having to monkeypatch them. xiter() no longer supports a mode
274 286 argument and the XMode class has been removed. The same functionality can
275 287 be implemented via IterAttributeDescriptor and IterMethodDescriptor.
276 288 One consequence of the switch to generic functions is that xrepr() and
277 289 xattrs() implementation must define the default value for the mode
278 290 argument themselves and xattrs() implementations must return real
279 291 descriptors.
280 292
281 293 * IPython/external: This new subpackage will contain all third-party
282 294 packages that are bundled with IPython. (The first one is simplegeneric).
283 295
284 296 * IPython/Extensions/ipipe.py (ifile/ils): Readd output of the parent
285 297 directory which as been dropped in r1703.
286 298
287 299 * IPython/Extensions/ipipe.py (iless): Fixed.
288 300
289 301 * IPython/Extensions/ibrowse: Fixed sorting under Python 2.3.
290 302
291 303 2006-11-03 Fernando Perez <Fernando.Perez@colorado.edu>
292 304
293 305 * IPython/iplib.py (InteractiveShell.var_expand): fix stack
294 306 handling in variable expansion so that shells and magics recognize
295 307 function local scopes correctly. Bug reported by Brian.
296 308
297 309 * scripts/ipython: remove the very first entry in sys.path which
298 310 Python auto-inserts for scripts, so that sys.path under IPython is
299 311 as similar as possible to that under plain Python.
300 312
301 313 * IPython/completer.py (IPCompleter.file_matches): Fix
302 314 tab-completion so that quotes are not closed unless the completion
303 315 is unambiguous. After a request by Stefan. Minor cleanups in
304 316 ipy_stock_completers.
305 317
306 318 2006-11-02 Ville Vainio <vivainio@gmail.com>
307 319
308 320 * ipy_stock_completers.py: Add %run and %cd completers.
309 321
310 322 * completer.py: Try running custom completer for both
311 323 "foo" and "%foo" if the command is just "foo". Ignore case
312 324 when filtering possible completions.
313 325
314 326 * UserConfig/ipy_user_conf.py: install stock completers as default
315 327
316 328 * iplib.py (history_saving_wrapper), debugger(), ipy_pydb.py:
317 329 simplified readline history save / restore through a wrapper
318 330 function
319 331
320 332
321 333 2006-10-31 Ville Vainio <vivainio@gmail.com>
322 334
323 335 * strdispatch.py, completer.py, ipy_stock_completers.py:
324 336 Allow str_key ("command") in completer hooks. Implement
325 337 trivial completer for 'import' (stdlib modules only). Rename
326 338 ipy_linux_package_managers.py to ipy_stock_completers.py.
327 339 SVN completer.
328 340
329 341 * Extensions/ledit.py: %magic line editor for easily and
330 342 incrementally manipulating lists of strings. The magic command
331 343 name is %led.
332 344
333 345 2006-10-30 Ville Vainio <vivainio@gmail.com>
334 346
335 347 * Debugger.py, iplib.py (debugger()): Add last set of Rocky
336 348 Bernsteins's patches for pydb integration.
337 349 http://bashdb.sourceforge.net/pydb/
338 350
339 351 * strdispatch.py, iplib.py, completer.py, IPython/__init__.py,
340 352 Extensions/ipy_linux_package_managers.py, hooks.py: Implement
341 353 custom completer hook to allow the users to implement their own
342 354 completers. See ipy_linux_package_managers.py for example. The
343 355 hook name is 'complete_command'.
344 356
345 357 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu>
346 358
347 359 * IPython/UserConfig/ipythonrc-scipy: minor cleanups to remove old
348 360 Numeric leftovers.
349 361
350 362 * ipython.el (py-execute-region): apply Stefan's patch to fix
351 363 garbled results if the python shell hasn't been previously started.
352 364
353 365 * IPython/genutils.py (arg_split): moved to genutils, since it's a
354 366 pretty generic function and useful for other things.
355 367
356 368 * IPython/OInspect.py (getsource): Add customizable source
357 369 extractor. After a request/patch form W. Stein (SAGE).
358 370
359 371 * IPython/irunner.py (InteractiveRunner.run_source): reset tty
360 372 window size to a more reasonable value from what pexpect does,
361 373 since their choice causes wrapping bugs with long input lines.
362 374
363 375 2006-10-28 Ville Vainio <vivainio@gmail.com>
364 376
365 377 * Magic.py (%run): Save and restore the readline history from
366 378 file around %run commands to prevent side effects from
367 379 %runned programs that might use readline (e.g. pydb).
368 380
369 381 * extensions/ipy_pydb.py: Adds %pydb magic when imported, for
370 382 invoking the pydb enhanced debugger.
371 383
372 384 2006-10-23 Walter Doerwald <walter@livinglogic.de>
373 385
374 386 * IPython/Extensions/ipipe.py (ifile): Remove all methods that
375 387 call the base class method and propagate the return value to
376 388 ifile. This is now done by path itself.
377 389
378 390 2006-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
379 391
380 392 * IPython/ipapi.py (IPApi.__init__): Added new entry to public
381 393 api: set_crash_handler(), to expose the ability to change the
382 394 internal crash handler.
383 395
384 396 * IPython/CrashHandler.py (CrashHandler.__init__): abstract out
385 397 the various parameters of the crash handler so that apps using
386 398 IPython as their engine can customize crash handling. Ipmlemented
387 399 at the request of SAGE.
388 400
389 401 2006-10-14 Ville Vainio <vivainio@gmail.com>
390 402
391 403 * Magic.py, ipython.el: applied first "safe" part of Rocky
392 404 Bernstein's patch set for pydb integration.
393 405
394 406 * Magic.py (%unalias, %alias): %store'd aliases can now be
395 407 removed with '%unalias'. %alias w/o args now shows most
396 408 interesting (stored / manually defined) aliases last
397 409 where they catch the eye w/o scrolling.
398 410
399 411 * Magic.py (%rehashx), ext_rehashdir.py: files with
400 412 'py' extension are always considered executable, even
401 413 when not in PATHEXT environment variable.
402 414
403 415 2006-10-12 Ville Vainio <vivainio@gmail.com>
404 416
405 417 * jobctrl.py: Add new "jobctrl" extension for spawning background
406 418 processes with "&find /". 'import jobctrl' to try it out. Requires
407 419 'subprocess' module, standard in python 2.4+.
408 420
409 421 * iplib.py (expand_aliases, handle_alias): Aliases expand transitively,
410 422 so if foo -> bar and bar -> baz, then foo -> baz.
411 423
412 424 2006-10-09 Fernando Perez <Fernando.Perez@colorado.edu>
413 425
414 426 * IPython/Magic.py (Magic.parse_options): add a new posix option
415 427 to allow parsing of input args in magics that doesn't strip quotes
416 428 (if posix=False). This also closes %timeit bug reported by
417 429 Stefan.
418 430
419 431 2006-10-03 Ville Vainio <vivainio@gmail.com>
420 432
421 433 * iplib.py (raw_input, interact): Return ValueError catching for
422 434 raw_input. Fixes infinite loop for sys.stdin.close() or
423 435 sys.stdout.close().
424 436
425 437 2006-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
426 438
427 439 * IPython/irunner.py (InteractiveRunner.run_source): small fixes
428 440 to help in handling doctests. irunner is now pretty useful for
429 441 running standalone scripts and simulate a full interactive session
430 442 in a format that can be then pasted as a doctest.
431 443
432 444 * IPython/iplib.py (InteractiveShell.__init__): Install exit/quit
433 445 on top of the default (useless) ones. This also fixes the nasty
434 446 way in which 2.5's Quitter() exits (reverted [1785]).
435 447
436 448 * IPython/Debugger.py (Pdb.__init__): Fix ipdb to work with python
437 449 2.5.
438 450
439 451 * IPython/ultraTB.py (TBTools.set_colors): Make sure that ipdb
440 452 color scheme is updated as well when color scheme is changed
441 453 interactively.
442 454
443 455 2006-09-27 Ville Vainio <vivainio@gmail.com>
444 456
445 457 * iplib.py (raw_input): python 2.5 closes stdin on quit -> avoid
446 458 infinite loop and just exit. It's a hack, but will do for a while.
447 459
448 460 2006-08-25 Walter Doerwald <walter@livinglogic.de>
449 461
450 462 * IPython/Extensions/ipipe.py (ils): Add arguments dirs and files to
451 463 the constructor, this makes it possible to get a list of only directories
452 464 or only files.
453 465
454 466 2006-08-12 Ville Vainio <vivainio@gmail.com>
455 467
456 468 * Fakemodule.py, OInspect.py: Reverted 2006-08-11 mods,
457 469 they broke unittest
458 470
459 471 2006-08-11 Ville Vainio <vivainio@gmail.com>
460 472
461 473 * Fakemodule.py, OInspect.py: remove 2006-08-09 monkepatch
462 474 by resolving issue properly, i.e. by inheriting FakeModule
463 475 from types.ModuleType. Pickling ipython interactive data
464 476 should still work as usual (testing appreciated).
465 477
466 478 2006-08-09 Fernando Perez <Fernando.Perez@colorado.edu>
467 479
468 480 * IPython/OInspect.py: monkeypatch inspect from the stdlib if
469 481 running under python 2.3 with code from 2.4 to fix a bug with
470 482 help(). Reported by the Debian maintainers, Norbert Tretkowski
471 483 <norbert-AT-tretkowski.de> and Alexandre Fayolle
472 484 <afayolle-AT-debian.org>.
473 485
474 486 2006-08-04 Walter Doerwald <walter@livinglogic.de>
475 487
476 488 * IPython/Extensions/ibrowse.py: Fixed the help message in the footer
477 489 (which was displaying "quit" twice).
478 490
479 491 2006-07-28 Walter Doerwald <walter@livinglogic.de>
480 492
481 493 * IPython/Extensions/ipipe.py: Fix isort.__iter__() (was still using
482 494 the mode argument).
483 495
484 496 2006-07-27 Walter Doerwald <walter@livinglogic.de>
485 497
486 498 * IPython/Extensions/ipipe.py: Fix getglobals() if we're
487 499 not running under IPython.
488 500
489 501 * IPython/Extensions/ipipe.py: Rename XAttr to AttributeDetail
490 502 and make it iterable (iterating over the attribute itself). Add two new
491 503 magic strings for __xattrs__(): If the string starts with "-", the attribute
492 504 will not be displayed in ibrowse's detail view (but it can still be
493 505 iterated over). This makes it possible to add attributes that are large
494 506 lists or generator methods to the detail view. Replace magic attribute names
495 507 and _attrname() and _getattr() with "descriptors": For each type of magic
496 508 attribute name there's a subclass of Descriptor: None -> SelfDescriptor();
497 509 "foo" -> AttributeDescriptor("foo"); "foo()" -> MethodDescriptor("foo");
498 510 "-foo" -> IterAttributeDescriptor("foo"); "-foo()" -> IterMethodDescriptor("foo");
499 511 foo() -> FunctionDescriptor(foo). Magic strings returned from __xattrs__()
500 512 are still supported.
501 513
502 514 * IPython/Extensions/ibrowse.py: If fetching the next row from the input
503 515 fails in ibrowse.fetch(), the exception object is added as the last item
504 516 and item fetching is canceled. This prevents ibrowse from aborting if e.g.
505 517 a generator throws an exception midway through execution.
506 518
507 519 * IPython/Extensions/ipipe.py: Turn ifile's properties mimetype and
508 520 encoding into methods.
509 521
510 522 2006-07-26 Ville Vainio <vivainio@gmail.com>
511 523
512 524 * iplib.py: history now stores multiline input as single
513 525 history entries. Patch by Jorgen Cederlof.
514 526
515 527 2006-07-18 Walter Doerwald <walter@livinglogic.de>
516 528
517 529 * IPython/Extensions/ibrowse.py: Make cursor visible over
518 530 non existing attributes.
519 531
520 532 2006-07-14 Walter Doerwald <walter@livinglogic.de>
521 533
522 534 * IPython/Extensions/ipipe.py (ix): Use os.popen4() so that the
523 535 error output of the running command doesn't mess up the screen.
524 536
525 537 2006-07-13 Walter Doerwald <walter@livinglogic.de>
526 538
527 539 * IPython/Extensions/ipipe.py (isort): Make isort usable without
528 540 argument. This sorts the items themselves.
529 541
530 542 2006-07-12 Walter Doerwald <walter@livinglogic.de>
531 543
532 544 * IPython/Extensions/ipipe.py (eval, ifilter, isort, ieval):
533 545 Compile expression strings into code objects. This should speed
534 546 up ifilter and friends somewhat.
535 547
536 548 2006-07-08 Ville Vainio <vivainio@gmail.com>
537 549
538 550 * Magic.py: %cpaste now strips > from the beginning of lines
539 551 to ease pasting quoted code from emails. Contributed by
540 552 Stefan van der Walt.
541 553
542 554 2006-06-29 Ville Vainio <vivainio@gmail.com>
543 555
544 556 * ipmaker.py, Shell.py: qt4agg matplotlib backend support for pylab
545 557 mode, patch contributed by Darren Dale. NEEDS TESTING!
546 558
547 559 2006-06-28 Walter Doerwald <walter@livinglogic.de>
548 560
549 561 * IPython/Extensions/ibrowse.py: Give the ibrowse cursor row
550 562 a blue background. Fix fetching new display rows when the browser
551 563 scrolls more than a screenful (e.g. by using the goto command).
552 564
553 565 2006-06-27 Ville Vainio <vivainio@gmail.com>
554 566
555 567 * Magic.py (_inspect, _ofind) Apply David Huard's
556 568 patch for displaying the correct docstring for 'property'
557 569 attributes.
558 570
559 571 2006-06-23 Walter Doerwald <walter@livinglogic.de>
560 572
561 573 * IPython/Extensions/ibrowse.py: Put the documentation of the keyboard
562 574 commands into the methods implementing them.
563 575
564 576 2006-06-22 Fernando Perez <Fernando.Perez@colorado.edu>
565 577
566 578 * ipython.el (ipython-indentation-hook): cleanup patch, submitted
567 579 by Kov Chai <tchaikov-AT-gmail.com>. He notes that the original
568 580 autoindent support was authored by Jin Liu.
569 581
570 582 2006-06-22 Walter Doerwald <walter@livinglogic.de>
571 583
572 584 * IPython/Extensions/ibrowse.py: Replace the plain dictionaries used
573 585 for keymaps with a custom class that simplifies handling.
574 586
575 587 2006-06-19 Walter Doerwald <walter@livinglogic.de>
576 588
577 589 * IPython/Extensions/ibrowse.py: ibrowse now properly handles terminal
578 590 resizing. This requires Python 2.5 to work.
579 591
580 592 2006-06-16 Walter Doerwald <walter@livinglogic.de>
581 593
582 594 * IPython/Extensions/ibrowse.py: Add two new commands to
583 595 ibrowse: "hideattr" (mapped to "h") hides the attribute under
584 596 the cursor. "unhiderattrs" (mapped to "H") reveals all hidden
585 597 attributes again. Remapped the help command to "?". Display
586 598 keycodes in the range 0x01-0x1F as CTRL-xx. Add CTRL-a and CTRL-e
587 599 as keys for the "home" and "end" commands. Add three new commands
588 600 to the input mode for "find" and friends: "delend" (CTRL-K)
589 601 deletes to the end of line. "incsearchup" searches upwards in the
590 602 command history for an input that starts with the text before the cursor.
591 603 "incsearchdown" does the same downwards. Removed a bogus mapping of
592 604 the x key to "delete".
593 605
594 606 2006-06-15 Ville Vainio <vivainio@gmail.com>
595 607
596 608 * iplib.py, hooks.py: Added new generate_prompt hook that can be
597 609 used to create prompts dynamically, instead of the "old" way of
598 610 assigning "magic" strings to prompt_in1 and prompt_in2. The old
599 611 way still works (it's invoked by the default hook), of course.
600 612
601 613 * Prompts.py: added generate_output_prompt hook for altering output
602 614 prompt
603 615
604 616 * Release.py: Changed version string to 0.7.3.svn.
605 617
606 618 2006-06-15 Walter Doerwald <walter@livinglogic.de>
607 619
608 620 * IPython/Extensions/ibrowse.py: Change _BrowserLevel.moveto() so that
609 621 the call to fetch() always tries to fetch enough data for at least one
610 622 full screen. This makes it possible to simply call moveto(0,0,True) in
611 623 the constructor. Fix typos and removed the obsolete goto attribute.
612 624
613 625 2006-06-12 Ville Vainio <vivainio@gmail.com>
614 626
615 627 * ipy_profile_sh.py: applied Krisha Mohan Gundu's patch for
616 628 allowing $variable interpolation within multiline statements,
617 629 though so far only with "sh" profile for a testing period.
618 630 The patch also enables splitting long commands with \ but it
619 631 doesn't work properly yet.
620 632
621 633 2006-06-12 Walter Doerwald <walter@livinglogic.de>
622 634
623 635 * IPython/Extensions/ibrowse.py (_dodisplay): Display the length of the
624 636 input history and the position of the cursor in the input history for
625 637 the find, findbackwards and goto command.
626 638
627 639 2006-06-10 Walter Doerwald <walter@livinglogic.de>
628 640
629 641 * IPython/Extensions/ibrowse.py: Add a class _CommandInput that
630 642 implements the basic functionality of browser commands that require
631 643 input. Reimplement the goto, find and findbackwards commands as
632 644 subclasses of _CommandInput. Add an input history and keymaps to those
633 645 commands. Add "\r" as a keyboard shortcut for the enterdefault and
634 646 execute commands.
635 647
636 648 2006-06-07 Ville Vainio <vivainio@gmail.com>
637 649
638 650 * iplib.py: ipython mybatch.ipy exits ipython immediately after
639 651 running the batch files instead of leaving the session open.
640 652
641 653 2006-06-07 Fernando Perez <Fernando.Perez@colorado.edu>
642 654
643 655 * IPython/iplib.py (InteractiveShell.__init__): update BSD fix, as
644 656 the original fix was incomplete. Patch submitted by W. Maier.
645 657
646 658 2006-06-07 Ville Vainio <vivainio@gmail.com>
647 659
648 660 * iplib.py,Magic.py, ipmaker.py (magic_rehashx):
649 661 Confirmation prompts can be supressed by 'quiet' option.
650 662 _ip.options.quiet = 1 means "assume yes for all yes/no queries".
651 663
652 664 2006-06-06 *** Released version 0.7.2
653 665
654 666 2006-06-06 Fernando Perez <Fernando.Perez@colorado.edu>
655 667
656 668 * IPython/Release.py (version): Made 0.7.2 final for release.
657 669 Repo tagged and release cut.
658 670
659 671 2006-06-05 Ville Vainio <vivainio@gmail.com>
660 672
661 673 * Magic.py (magic_rehashx): Honor no_alias list earlier in
662 674 %rehashx, to avoid clobbering builtins in ipy_profile_sh.py
663 675
664 676 * upgrade_dir.py: try import 'path' module a bit harder
665 677 (for %upgrade)
666 678
667 679 2006-06-03 Fernando Perez <Fernando.Perez@colorado.edu>
668 680
669 681 * IPython/genutils.py (ask_yes_no): treat EOF as a default answer
670 682 instead of looping 20 times.
671 683
672 684 * IPython/ipmaker.py (make_IPython): honor -ipythondir flag
673 685 correctly at initialization time. Bug reported by Krishna Mohan
674 686 Gundu <gkmohan-AT-gmail.com> on the user list.
675 687
676 688 * IPython/Release.py (version): Mark 0.7.2 version to start
677 689 testing for release on 06/06.
678 690
679 691 2006-05-31 Fernando Perez <Fernando.Perez@colorado.edu>
680 692
681 693 * scripts/irunner: thin script interface so users don't have to
682 694 find the module and call it as an executable, since modules rarely
683 695 live in people's PATH.
684 696
685 697 * IPython/irunner.py (InteractiveRunner.__init__): added
686 698 delaybeforesend attribute to control delays with newer versions of
687 699 pexpect. Thanks to detailed help from pexpect's author, Noah
688 700 Spurrier <noah-AT-noah.org>. Noted how to use the SAGE runner
689 701 correctly (it works in NoColor mode).
690 702
691 703 * IPython/iplib.py (handle_normal): fix nasty crash reported on
692 704 SAGE list, from improper log() calls.
693 705
694 706 2006-05-31 Ville Vainio <vivainio@gmail.com>
695 707
696 708 * upgrade_dir.py, Magic.py (magic_upgrade): call upgrade_dir
697 709 with args in parens to work correctly with dirs that have spaces.
698 710
699 711 2006-05-30 Fernando Perez <Fernando.Perez@colorado.edu>
700 712
701 713 * IPython/Logger.py (Logger.logstart): add option to log raw input
702 714 instead of the processed one. A -r flag was added to the
703 715 %logstart magic used for controlling logging.
704 716
705 717 2006-05-29 Fernando Perez <Fernando.Perez@colorado.edu>
706 718
707 719 * IPython/iplib.py (InteractiveShell.__init__): add check for the
708 720 *BSDs to omit --color from all 'ls' aliases, since *BSD ls doesn't
709 721 recognize the option. After a bug report by Will Maier. This
710 722 closes #64 (will do it after confirmation from W. Maier).
711 723
712 724 * IPython/irunner.py: New module to run scripts as if manually
713 725 typed into an interactive environment, based on pexpect. After a
714 726 submission by Ken Schutte <kschutte-AT-csail.mit.edu> on the
715 727 ipython-user list. Simple unittests in the tests/ directory.
716 728
717 729 * tools/release: add Will Maier, OpenBSD port maintainer, to
718 730 recepients list. We are now officially part of the OpenBSD ports:
719 731 http://www.openbsd.org/ports.html ! Many thanks to Will for the
720 732 work.
721 733
722 734 2006-05-26 Fernando Perez <Fernando.Perez@colorado.edu>
723 735
724 736 * IPython/ipmaker.py (make_IPython): modify sys.argv fix (below)
725 737 so that it doesn't break tkinter apps.
726 738
727 739 * IPython/iplib.py (_prefilter): fix bug where aliases would
728 740 shadow variables when autocall was fully off. Reported by SAGE
729 741 author William Stein.
730 742
731 743 * IPython/OInspect.py (Inspector.__init__): add a flag to control
732 744 at what detail level strings are computed when foo? is requested.
733 745 This allows users to ask for example that the string form of an
734 746 object is only computed when foo?? is called, or even never, by
735 747 setting the object_info_string_level >= 2 in the configuration
736 748 file. This new option has been added and documented. After a
737 749 request by SAGE to be able to control the printing of very large
738 750 objects more easily.
739 751
740 752 2006-05-25 Fernando Perez <Fernando.Perez@colorado.edu>
741 753
742 754 * IPython/ipmaker.py (make_IPython): remove the ipython call path
743 755 from sys.argv, to be 100% consistent with how Python itself works
744 756 (as seen for example with python -i file.py). After a bug report
745 757 by Jeffrey Collins.
746 758
747 759 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix
748 760 nasty bug which was preventing custom namespaces with -pylab,
749 761 reported by M. Foord. Minor cleanup, remove old matplotlib.matlab
750 762 compatibility (long gone from mpl).
751 763
752 764 * IPython/ipapi.py (make_session): name change: create->make. We
753 765 use make in other places (ipmaker,...), it's shorter and easier to
754 766 type and say, etc. I'm trying to clean things before 0.7.2 so
755 767 that I can keep things stable wrt to ipapi in the chainsaw branch.
756 768
757 769 * ipython.el: fix the py-pdbtrack-input-prompt variable so that
758 770 python-mode recognizes our debugger mode. Add support for
759 771 autoindent inside (X)emacs. After a patch sent in by Jin Liu
760 772 <m.liu.jin-AT-gmail.com> originally written by
761 773 doxgen-AT-newsmth.net (with minor modifications for xemacs
762 774 compatibility)
763 775
764 776 * IPython/Debugger.py (Pdb.format_stack_entry): fix formatting of
765 777 tracebacks when walking the stack so that the stack tracking system
766 778 in emacs' python-mode can identify the frames correctly.
767 779
768 780 * IPython/ipmaker.py (make_IPython): make the internal (and
769 781 default config) autoedit_syntax value false by default. Too many
770 782 users have complained to me (both on and off-list) about problems
771 783 with this option being on by default, so I'm making it default to
772 784 off. It can still be enabled by anyone via the usual mechanisms.
773 785
774 786 * IPython/completer.py (Completer.attr_matches): add support for
775 787 PyCrust-style _getAttributeNames magic method. Patch contributed
776 788 by <mscott-AT-goldenspud.com>. Closes #50.
777 789
778 790 * IPython/iplib.py (InteractiveShell.__init__): remove the
779 791 deletion of exit/quit from __builtin__, which can break
780 792 third-party tools like the Zope debugging console. The
781 793 %exit/%quit magics remain. In general, it's probably a good idea
782 794 not to delete anything from __builtin__, since we never know what
783 795 that will break. In any case, python now (for 2.5) will support
784 796 'real' exit/quit, so this issue is moot. Closes #55.
785 797
786 798 * IPython/genutils.py (with_obj): rename the 'with' function to
787 799 'withobj' to avoid incompatibilities with Python 2.5, where 'with'
788 800 becomes a language keyword. Closes #53.
789 801
790 802 * IPython/FakeModule.py (FakeModule.__init__): add a proper
791 803 __file__ attribute to this so it fools more things into thinking
792 804 it is a real module. Closes #59.
793 805
794 806 * IPython/Magic.py (magic_edit): add -n option to open the editor
795 807 at a specific line number. After a patch by Stefan van der Walt.
796 808
797 809 2006-05-23 Fernando Perez <Fernando.Perez@colorado.edu>
798 810
799 811 * IPython/iplib.py (edit_syntax_error): fix crash when for some
800 812 reason the file could not be opened. After automatic crash
801 813 reports sent by James Graham <jgraham-AT-ast.cam.ac.uk> and
802 814 Charles Dolan <charlespatrickdolan-AT-yahoo.com>.
803 815 (_should_recompile): Don't fire editor if using %bg, since there
804 816 is no file in the first place. From the same report as above.
805 817 (raw_input): protect against faulty third-party prefilters. After
806 818 an automatic crash report sent by Dirk Laurie <dirk-AT-sun.ac.za>
807 819 while running under SAGE.
808 820
809 821 2006-05-23 Ville Vainio <vivainio@gmail.com>
810 822
811 823 * ipapi.py: Stripped down ip.to_user_ns() to work only as
812 824 ip.to_user_ns("x1 y1"), which exposes vars x1 and y1. ipapi.get()
813 825 now returns None (again), unless dummy is specifically allowed by
814 826 ipapi.get(allow_dummy=True).
815 827
816 828 2006-05-18 Fernando Perez <Fernando.Perez@colorado.edu>
817 829
818 830 * IPython: remove all 2.2-compatibility objects and hacks from
819 831 everywhere, since we only support 2.3 at this point. Docs
820 832 updated.
821 833
822 834 * IPython/ipapi.py (IPApi.__init__): Cleanup of all getters.
823 835 Anything requiring extra validation can be turned into a Python
824 836 property in the future. I used a property for the db one b/c
825 837 there was a nasty circularity problem with the initialization
826 838 order, which right now I don't have time to clean up.
827 839
828 840 * IPython/Shell.py (MTInteractiveShell.runcode): Fix, I think,
829 841 another locking bug reported by Jorgen. I'm not 100% sure though,
830 842 so more testing is needed...
831 843
832 844 2006-05-17 Fernando Perez <Fernando.Perez@colorado.edu>
833 845
834 846 * IPython/ipapi.py (IPApi.to_user_ns): New function to inject
835 847 local variables from any routine in user code (typically executed
836 848 with %run) directly into the interactive namespace. Very useful
837 849 when doing complex debugging.
838 850 (IPythonNotRunning): Changed the default None object to a dummy
839 851 whose attributes can be queried as well as called without
840 852 exploding, to ease writing code which works transparently both in
841 853 and out of ipython and uses some of this API.
842 854
843 855 2006-05-16 Fernando Perez <Fernando.Perez@colorado.edu>
844 856
845 857 * IPython/hooks.py (result_display): Fix the fact that our display
846 858 hook was using str() instead of repr(), as the default python
847 859 console does. This had gone unnoticed b/c it only happened if
848 860 %Pprint was off, but the inconsistency was there.
849 861
850 862 2006-05-15 Ville Vainio <vivainio@gmail.com>
851 863
852 864 * Oinspect.py: Only show docstring for nonexisting/binary files
853 865 when doing object??, closing ticket #62
854 866
855 867 2006-05-13 Fernando Perez <Fernando.Perez@colorado.edu>
856 868
857 869 * IPython/Shell.py (MTInteractiveShell.runsource): Fix threading
858 870 bug, closes http://www.scipy.net/roundup/ipython/issue55. A lock
859 871 was being released in a routine which hadn't checked if it had
860 872 been the one to acquire it.
861 873
862 874 2006-05-07 Fernando Perez <Fernando.Perez@colorado.edu>
863 875
864 876 * IPython/Release.py (version): put out 0.7.2.rc1 for testing.
865 877
866 878 2006-04-11 Ville Vainio <vivainio@gmail.com>
867 879
868 880 * iplib.py, ipmaker.py: .ipy extension now means "ipython batch file"
869 881 in command line. E.g. "ipython test.ipy" runs test.ipy with ipython
870 882 prefilters, allowing stuff like magics and aliases in the file.
871 883
872 884 * Prompts.py, Extensions/clearcmd.py, ipy_system_conf.py: %clear magic
873 885 added. Supported now are "%clear in" and "%clear out" (clear input and
874 886 output history, respectively). Also fixed CachedOutput.flush to
875 887 properly flush the output cache.
876 888
877 889 * Extensions/pspersistence.py: Fix %store to avoid "%store obj.attr"
878 890 half-success (and fail explicitly).
879 891
880 892 2006-03-28 Ville Vainio <vivainio@gmail.com>
881 893
882 894 * iplib.py: Fix quoting of aliases so that only argless ones
883 895 are quoted
884 896
885 897 2006-03-28 Ville Vainio <vivainio@gmail.com>
886 898
887 899 * iplib.py: Quote aliases with spaces in the name.
888 900 "c:\program files\blah\bin" is now legal alias target.
889 901
890 902 * ext_rehashdir.py: Space no longer allowed as arg
891 903 separator, since space is legal in path names.
892 904
893 905 2006-03-16 Ville Vainio <vivainio@gmail.com>
894 906
895 907 * upgrade_dir.py: Take path.py from Extensions, correcting
896 908 %upgrade magic
897 909
898 910 * ipmaker.py: Suggest using %upgrade if ipy_user_conf.py isn't found.
899 911
900 912 * hooks.py: Only enclose editor binary in quotes if legal and
901 913 necessary (space in the name, and is an existing file). Fixes a bug
902 914 reported by Zachary Pincus.
903 915
904 916 2006-03-13 Fernando Perez <Fernando.Perez@colorado.edu>
905 917
906 918 * Manual: thanks to a tip on proper color handling for Emacs, by
907 919 Eric J Haywiser <ejh1-AT-MIT.EDU>.
908 920
909 921 * ipython.el: close http://www.scipy.net/roundup/ipython/issue57
910 922 by applying the provided patch. Thanks to Liu Jin
911 923 <m.liu.jin-AT-gmail.com> for the contribution. No problems under
912 924 XEmacs/Linux, I'm trusting the submitter that it actually helps
913 925 under win32/GNU Emacs. Will revisit if any problems are reported.
914 926
915 927 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
916 928
917 929 * IPython/Gnuplot2.py (_FileClass): update for current Gnuplot.py
918 930 from SVN, thanks to a patch by Ryan Woodard <rywo@bas.ac.uk>.
919 931
920 932 2006-03-12 Ville Vainio <vivainio@gmail.com>
921 933
922 934 * Magic.py (magic_timeit): Added %timeit magic, contributed by
923 935 Torsten Marek.
924 936
925 937 2006-03-12 Fernando Perez <Fernando.Perez@colorado.edu>
926 938
927 939 * IPython/Magic.py (magic_macro): fix so that the n1-n2 syntax for
928 940 line ranges works again.
929 941
930 942 2006-03-11 Fernando Perez <Fernando.Perez@colorado.edu>
931 943
932 944 * IPython/iplib.py (showtraceback): add back sys.last_traceback
933 945 and friends, after a discussion with Zach Pincus on ipython-user.
934 946 I'm not 100% sure, but after thinking about it quite a bit, it may
935 947 be OK. Testing with the multithreaded shells didn't reveal any
936 948 problems, but let's keep an eye out.
937 949
938 950 In the process, I fixed a few things which were calling
939 951 self.InteractiveTB() directly (like safe_execfile), which is a
940 952 mistake: ALL exception reporting should be done by calling
941 953 self.showtraceback(), which handles state and tab-completion and
942 954 more.
943 955
944 956 2006-03-01 Ville Vainio <vivainio@gmail.com>
945 957
946 958 * Extensions/ipipe.py: Added Walter Doerwald's "ipipe" module.
947 959 To use, do "from ipipe import *".
948 960
949 961 2006-02-24 Ville Vainio <vivainio@gmail.com>
950 962
951 963 * Magic.py, upgrade_dir.py: %upgrade magic added. Does things more
952 964 "cleanly" and safely than the older upgrade mechanism.
953 965
954 966 2006-02-21 Ville Vainio <vivainio@gmail.com>
955 967
956 968 * Magic.py: %save works again.
957 969
958 970 2006-02-15 Ville Vainio <vivainio@gmail.com>
959 971
960 972 * Magic.py: %Pprint works again
961 973
962 974 * Extensions/ipy_sane_defaults.py: Provide everything provided
963 975 in default ipythonrc, to make it possible to have a completely empty
964 976 ipythonrc (and thus completely rc-file free configuration)
965 977
966 978 2006-02-11 Fernando Perez <Fernando.Perez@colorado.edu>
967 979
968 980 * IPython/hooks.py (editor): quote the call to the editor command,
969 981 to allow commands with spaces in them. Problem noted by watching
970 982 Ian Oswald's video about textpad under win32 at
971 983 http://showmedo.com/videoListPage?listKey=PythonIPythonSeries
972 984
973 985 * IPython/UserConfig/ipythonrc: Replace @ signs with % when
974 986 describing magics (we haven't used @ for a loong time).
975 987
976 988 * IPython/ultraTB.py (VerboseTB.text.text_repr): Added patch
977 989 contributed by marienz to close
978 990 http://www.scipy.net/roundup/ipython/issue53.
979 991
980 992 2006-02-10 Ville Vainio <vivainio@gmail.com>
981 993
982 994 * genutils.py: getoutput now works in win32 too
983 995
984 996 * completer.py: alias and magic completion only invoked
985 997 at the first "item" in the line, to avoid "cd %store"
986 998 nonsense.
987 999
988 1000 2006-02-09 Ville Vainio <vivainio@gmail.com>
989 1001
990 1002 * test/*: Added a unit testing framework (finally).
991 1003 '%run runtests.py' to run test_*.
992 1004
993 1005 * ipapi.py: Exposed runlines and set_custom_exc
994 1006
995 1007 2006-02-07 Ville Vainio <vivainio@gmail.com>
996 1008
997 1009 * iplib.py: don't split "f 1 2" to "f(1,2)" in autocall,
998 1010 instead use "f(1 2)" as before.
999 1011
1000 1012 2006-02-05 Fernando Perez <Fernando.Perez@colorado.edu>
1001 1013
1002 1014 * IPython/demo.py (IPythonDemo): Add new classes to the demo
1003 1015 facilities, for demos processed by the IPython input filter
1004 1016 (IPythonDemo), and for running a script one-line-at-a-time as a
1005 1017 demo, both for pure Python (LineDemo) and for IPython-processed
1006 1018 input (IPythonLineDemo). After a request by Dave Kohel, from the
1007 1019 SAGE team.
1008 1020 (Demo.edit): added an edit() method to the demo objects, to edit
1009 1021 the in-memory copy of the last executed block.
1010 1022
1011 1023 * IPython/Magic.py (magic_edit): add '-r' option for 'raw'
1012 1024 processing to %edit, %macro and %save. These commands can now be
1013 1025 invoked on the unprocessed input as it was typed by the user
1014 1026 (without any prefilters applied). After requests by the SAGE team
1015 1027 at SAGE days 2006: http://modular.ucsd.edu/sage/days1/schedule.html.
1016 1028
1017 1029 2006-02-01 Ville Vainio <vivainio@gmail.com>
1018 1030
1019 1031 * setup.py, eggsetup.py: easy_install ipython==dev works
1020 1032 correctly now (on Linux)
1021 1033
1022 1034 * ipy_user_conf,ipmaker: user config changes, removed spurious
1023 1035 warnings
1024 1036
1025 1037 * iplib: if rc.banner is string, use it as is.
1026 1038
1027 1039 * Magic: %pycat accepts a string argument and pages it's contents.
1028 1040
1029 1041
1030 1042 2006-01-30 Ville Vainio <vivainio@gmail.com>
1031 1043
1032 1044 * pickleshare,pspersistence,ipapi,Magic: persistence overhaul.
1033 1045 Now %store and bookmarks work through PickleShare, meaning that
1034 1046 concurrent access is possible and all ipython sessions see the
1035 1047 same database situation all the time, instead of snapshot of
1036 1048 the situation when the session was started. Hence, %bookmark
1037 1049 results are immediately accessible from othes sessions. The database
1038 1050 is also available for use by user extensions. See:
1039 1051 http://www.python.org/pypi/pickleshare
1040 1052
1041 1053 * hooks.py: Two new hooks, 'shutdown_hook' and 'late_startup_hook'.
1042 1054
1043 1055 * aliases can now be %store'd
1044 1056
1045 1057 * path.py moved to Extensions so that pickleshare does not need
1046 1058 IPython-specific import. Extensions added to pythonpath right
1047 1059 at __init__.
1048 1060
1049 1061 * iplib.py: ipalias deprecated/redundant; aliases are converted and
1050 1062 called with _ip.system and the pre-transformed command string.
1051 1063
1052 1064 2006-01-29 Fernando Perez <Fernando.Perez@colorado.edu>
1053 1065
1054 1066 * IPython/iplib.py (interact): Fix that we were not catching
1055 1067 KeyboardInterrupt exceptions properly. I'm not quite sure why the
1056 1068 logic here had to change, but it's fixed now.
1057 1069
1058 1070 2006-01-29 Ville Vainio <vivainio@gmail.com>
1059 1071
1060 1072 * iplib.py: Try to import pyreadline on Windows.
1061 1073
1062 1074 2006-01-27 Ville Vainio <vivainio@gmail.com>
1063 1075
1064 1076 * iplib.py: Expose ipapi as _ip in builtin namespace.
1065 1077 Makes ipmagic (-> _ip.magic), ipsystem (-> _ip.system)
1066 1078 and ip_set_hook (-> _ip.set_hook) redundant. % and !
1067 1079 syntax now produce _ip.* variant of the commands.
1068 1080
1069 1081 * "_ip.options().autoedit_syntax = 2" automatically throws
1070 1082 user to editor for syntax error correction without prompting.
1071 1083
1072 1084 2006-01-27 Ville Vainio <vivainio@gmail.com>
1073 1085
1074 1086 * ipmaker.py: Give "realistic" sys.argv for scripts (without
1075 1087 'ipython' at argv[0]) executed through command line.
1076 1088 NOTE: this DEPRECATES calling ipython with multiple scripts
1077 1089 ("ipython a.py b.py c.py")
1078 1090
1079 1091 * iplib.py, hooks.py: Added configurable input prefilter,
1080 1092 named 'input_prefilter'. See ext_rescapture.py for example
1081 1093 usage.
1082 1094
1083 1095 * ext_rescapture.py, Magic.py: Better system command output capture
1084 1096 through 'var = !ls' (deprecates user-visible %sc). Same notation
1085 1097 applies for magics, 'var = %alias' assigns alias list to var.
1086 1098
1087 1099 * ipapi.py: added meta() for accessing extension-usable data store.
1088 1100
1089 1101 * iplib.py: added InteractiveShell.getapi(). New magics should be
1090 1102 written doing self.getapi() instead of using the shell directly.
1091 1103
1092 1104 * Magic.py: %store now allows doing %store foo > ~/myfoo.txt and
1093 1105 %store foo >> ~/myfoo.txt to store variables to files (in clean
1094 1106 textual form, not a restorable pickle).
1095 1107
1096 1108 * ipmaker.py: now import ipy_profile_PROFILENAME automatically
1097 1109
1098 1110 * usage.py, Magic.py: added %quickref
1099 1111
1100 1112 * iplib.py: ESC_PAREN fixes: /f 1 2 -> f(1,2), not f(1 2).
1101 1113
1102 1114 * GetoptErrors when invoking magics etc. with wrong args
1103 1115 are now more helpful:
1104 1116 GetoptError: option -l not recognized (allowed: "qb" )
1105 1117
1106 1118 2006-01-25 Fernando Perez <Fernando.Perez@colorado.edu>
1107 1119
1108 1120 * IPython/demo.py (Demo.show): Flush stdout after each block, so
1109 1121 computationally intensive blocks don't appear to stall the demo.
1110 1122
1111 1123 2006-01-24 Ville Vainio <vivainio@gmail.com>
1112 1124
1113 1125 * iplib.py, hooks.py: 'result_display' hook can return a non-None
1114 1126 value to manipulate resulting history entry.
1115 1127
1116 1128 * ipapi.py: Moved TryNext here from hooks.py. Moved functions
1117 1129 to instance methods of IPApi class, to make extending an embedded
1118 1130 IPython feasible. See ext_rehashdir.py for example usage.
1119 1131
1120 1132 * Merged 1071-1076 from branches/0.7.1
1121 1133
1122 1134
1123 1135 2006-01-23 Fernando Perez <Fernando.Perez@colorado.edu>
1124 1136
1125 1137 * tools/release (daystamp): Fix build tools to use the new
1126 1138 eggsetup.py script to build lightweight eggs.
1127 1139
1128 1140 * Applied changesets 1062 and 1064 before 0.7.1 release.
1129 1141
1130 1142 * IPython/Magic.py (magic_history): Add '-r' option to %hist, to
1131 1143 see the raw input history (without conversions like %ls ->
1132 1144 ipmagic("ls")). After a request from W. Stein, SAGE
1133 1145 (http://modular.ucsd.edu/sage) developer. This information is
1134 1146 stored in the input_hist_raw attribute of the IPython instance, so
1135 1147 developers can access it if needed (it's an InputList instance).
1136 1148
1137 1149 * Versionstring = 0.7.2.svn
1138 1150
1139 1151 * eggsetup.py: A separate script for constructing eggs, creates
1140 1152 proper launch scripts even on Windows (an .exe file in
1141 1153 \python24\scripts).
1142 1154
1143 1155 * ipapi.py: launch_new_instance, launch entry point needed for the
1144 1156 egg.
1145 1157
1146 1158 2006-01-23 Ville Vainio <vivainio@gmail.com>
1147 1159
1148 1160 * Added %cpaste magic for pasting python code
1149 1161
1150 1162 2006-01-22 Ville Vainio <vivainio@gmail.com>
1151 1163
1152 1164 * Merge from branches/0.7.1 into trunk, revs 1052-1057
1153 1165
1154 1166 * Versionstring = 0.7.2.svn
1155 1167
1156 1168 * eggsetup.py: A separate script for constructing eggs, creates
1157 1169 proper launch scripts even on Windows (an .exe file in
1158 1170 \python24\scripts).
1159 1171
1160 1172 * ipapi.py: launch_new_instance, launch entry point needed for the
1161 1173 egg.
1162 1174
1163 1175 2006-01-22 Fernando Perez <Fernando.Perez@colorado.edu>
1164 1176
1165 1177 * IPython/OInspect.py (Inspector.pinfo): fix bug where foo?? or
1166 1178 %pfile foo would print the file for foo even if it was a binary.
1167 1179 Now, extensions '.so' and '.dll' are skipped.
1168 1180
1169 1181 * IPython/Shell.py (MTInteractiveShell.__init__): Fix threading
1170 1182 bug, where macros would fail in all threaded modes. I'm not 100%
1171 1183 sure, so I'm going to put out an rc instead of making a release
1172 1184 today, and wait for feedback for at least a few days.
1173 1185
1174 1186 * IPython/iplib.py (handle_normal): fix (finally? somehow I doubt
1175 1187 it...) the handling of pasting external code with autoindent on.
1176 1188 To get out of a multiline input, the rule will appear for most
1177 1189 users unchanged: two blank lines or change the indent level
1178 1190 proposed by IPython. But there is a twist now: you can
1179 1191 add/subtract only *one or two spaces*. If you add/subtract three
1180 1192 or more (unless you completely delete the line), IPython will
1181 1193 accept that line, and you'll need to enter a second one of pure
1182 1194 whitespace. I know it sounds complicated, but I can't find a
1183 1195 different solution that covers all the cases, with the right
1184 1196 heuristics. Hopefully in actual use, nobody will really notice
1185 1197 all these strange rules and things will 'just work'.
1186 1198
1187 1199 2006-01-21 Fernando Perez <Fernando.Perez@colorado.edu>
1188 1200
1189 1201 * IPython/iplib.py (interact): catch exceptions which can be
1190 1202 triggered asynchronously by signal handlers. Thanks to an
1191 1203 automatic crash report, submitted by Colin Kingsley
1192 1204 <tercel-AT-gentoo.org>.
1193 1205
1194 1206 2006-01-20 Ville Vainio <vivainio@gmail.com>
1195 1207
1196 1208 * Ipython/Extensions/ext_rehashdir.py: Created a usable example
1197 1209 (%rehashdir, very useful, try it out) of how to extend ipython
1198 1210 with new magics. Also added Extensions dir to pythonpath to make
1199 1211 importing extensions easy.
1200 1212
1201 1213 * %store now complains when trying to store interactively declared
1202 1214 classes / instances of those classes.
1203 1215
1204 1216 * Extensions/ipy_system_conf.py, UserConfig/ipy_user_conf.py,
1205 1217 ipmaker.py: Config rehaul. Now ipy_..._conf.py are always imported
1206 1218 if they exist, and ipy_user_conf.py with some defaults is created for
1207 1219 the user.
1208 1220
1209 1221 * Startup rehashing done by the config file, not InterpreterExec.
1210 1222 This means system commands are available even without selecting the
1211 1223 pysh profile. It's the sensible default after all.
1212 1224
1213 1225 2006-01-20 Fernando Perez <Fernando.Perez@colorado.edu>
1214 1226
1215 1227 * IPython/iplib.py (raw_input): I _think_ I got the pasting of
1216 1228 multiline code with autoindent on working. But I am really not
1217 1229 sure, so this needs more testing. Will commit a debug-enabled
1218 1230 version for now, while I test it some more, so that Ville and
1219 1231 others may also catch any problems. Also made
1220 1232 self.indent_current_str() a method, to ensure that there's no
1221 1233 chance of the indent space count and the corresponding string
1222 1234 falling out of sync. All code needing the string should just call
1223 1235 the method.
1224 1236
1225 1237 2006-01-18 Fernando Perez <Fernando.Perez@colorado.edu>
1226 1238
1227 1239 * IPython/Magic.py (magic_edit): fix check for when users don't
1228 1240 save their output files, the try/except was in the wrong section.
1229 1241
1230 1242 2006-01-17 Fernando Perez <Fernando.Perez@colorado.edu>
1231 1243
1232 1244 * IPython/Magic.py (magic_run): fix __file__ global missing from
1233 1245 script's namespace when executed via %run. After a report by
1234 1246 Vivian.
1235 1247
1236 1248 * IPython/Debugger.py (Pdb.__init__): Fix breakage with '%run -d'
1237 1249 when using python 2.4. The parent constructor changed in 2.4, and
1238 1250 we need to track it directly (we can't call it, as it messes up
1239 1251 readline and tab-completion inside our pdb would stop working).
1240 1252 After a bug report by R. Bernstein <rocky-AT-panix.com>.
1241 1253
1242 1254 2006-01-16 Ville Vainio <vivainio@gmail.com>
1243 1255
1244 1256 * Ipython/magic.py: Reverted back to old %edit functionality
1245 1257 that returns file contents on exit.
1246 1258
1247 1259 * IPython/path.py: Added Jason Orendorff's "path" module to
1248 1260 IPython tree, http://www.jorendorff.com/articles/python/path/.
1249 1261 You can get path objects conveniently through %sc, and !!, e.g.:
1250 1262 sc files=ls
1251 1263 for p in files.paths: # or files.p
1252 1264 print p,p.mtime
1253 1265
1254 1266 * Ipython/iplib.py:"," and ";" autoquoting-upon-autocall
1255 1267 now work again without considering the exclusion regexp -
1256 1268 hence, things like ',foo my/path' turn to 'foo("my/path")'
1257 1269 instead of syntax error.
1258 1270
1259 1271
1260 1272 2006-01-14 Ville Vainio <vivainio@gmail.com>
1261 1273
1262 1274 * IPython/ipapi.py (ashook, asmagic, options): Added convenience
1263 1275 ipapi decorators for python 2.4 users, options() provides access to rc
1264 1276 data.
1265 1277
1266 1278 * IPython/Magic.py (magic_cd): %cd now accepts backslashes
1267 1279 as path separators (even on Linux ;-). Space character after
1268 1280 backslash (as yielded by tab completer) is still space;
1269 1281 "%cd long\ name" works as expected.
1270 1282
1271 1283 * IPython/ipapi.py,hooks.py,iplib.py: Hooks now implemented
1272 1284 as "chain of command", with priority. API stays the same,
1273 1285 TryNext exception raised by a hook function signals that
1274 1286 current hook failed and next hook should try handling it, as
1275 1287 suggested by Walter DΓΆrwald <walter@livinglogic.de>. Walter also
1276 1288 requested configurable display hook, which is now implemented.
1277 1289
1278 1290 2006-01-13 Ville Vainio <vivainio@gmail.com>
1279 1291
1280 1292 * IPython/platutils*.py: platform specific utility functions,
1281 1293 so far only set_term_title is implemented (change terminal
1282 1294 label in windowing systems). %cd now changes the title to
1283 1295 current dir.
1284 1296
1285 1297 * IPython/Release.py: Added myself to "authors" list,
1286 1298 had to create new files.
1287 1299
1288 1300 * IPython/iplib.py (handle_shell_escape): fixed logical flaw in
1289 1301 shell escape; not a known bug but had potential to be one in the
1290 1302 future.
1291 1303
1292 1304 * IPython/ipapi.py (added),OInspect.py,iplib.py: "Public"
1293 1305 extension API for IPython! See the module for usage example. Fix
1294 1306 OInspect for docstring-less magic functions.
1295 1307
1296 1308
1297 1309 2006-01-13 Fernando Perez <Fernando.Perez@colorado.edu>
1298 1310
1299 1311 * IPython/iplib.py (raw_input): temporarily deactivate all
1300 1312 attempts at allowing pasting of code with autoindent on. It
1301 1313 introduced bugs (reported by Prabhu) and I can't seem to find a
1302 1314 robust combination which works in all cases. Will have to revisit
1303 1315 later.
1304 1316
1305 1317 * IPython/genutils.py: remove isspace() function. We've dropped
1306 1318 2.2 compatibility, so it's OK to use the string method.
1307 1319
1308 1320 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1309 1321
1310 1322 * IPython/iplib.py (InteractiveShell.__init__): fix regexp
1311 1323 matching what NOT to autocall on, to include all python binary
1312 1324 operators (including things like 'and', 'or', 'is' and 'in').
1313 1325 Prompted by a bug report on 'foo & bar', but I realized we had
1314 1326 many more potential bug cases with other operators. The regexp is
1315 1327 self.re_exclude_auto, it's fairly commented.
1316 1328
1317 1329 2006-01-12 Ville Vainio <vivainio@gmail.com>
1318 1330
1319 1331 * IPython/iplib.py (make_quoted_expr,handle_shell_escape):
1320 1332 Prettified and hardened string/backslash quoting with ipsystem(),
1321 1333 ipalias() and ipmagic(). Now even \ characters are passed to
1322 1334 %magics, !shell escapes and aliases exactly as they are in the
1323 1335 ipython command line. Should improve backslash experience,
1324 1336 particularly in Windows (path delimiter for some commands that
1325 1337 won't understand '/'), but Unix benefits as well (regexps). %cd
1326 1338 magic still doesn't support backslash path delimiters, though. Also
1327 1339 deleted all pretense of supporting multiline command strings in
1328 1340 !system or %magic commands. Thanks to Jerry McRae for suggestions.
1329 1341
1330 1342 * doc/build_doc_instructions.txt added. Documentation on how to
1331 1343 use doc/update_manual.py, added yesterday. Both files contributed
1332 1344 by JΓΆrgen Stenarson <jorgen.stenarson-AT-bostream.nu>. This slates
1333 1345 doc/*.sh for deprecation at a later date.
1334 1346
1335 1347 * /ipython.py Added ipython.py to root directory for
1336 1348 zero-installation (tar xzvf ipython.tgz; cd ipython; python
1337 1349 ipython.py) and development convenience (no need to keep doing
1338 1350 "setup.py install" between changes).
1339 1351
1340 1352 * Made ! and !! shell escapes work (again) in multiline expressions:
1341 1353 if 1:
1342 1354 !ls
1343 1355 !!ls
1344 1356
1345 1357 2006-01-12 Fernando Perez <Fernando.Perez@colorado.edu>
1346 1358
1347 1359 * IPython/ipstruct.py (Struct): Rename IPython.Struct to
1348 1360 IPython.ipstruct, to avoid local shadowing of the stdlib 'struct'
1349 1361 module in case-insensitive installation. Was causing crashes
1350 1362 under win32. Closes http://www.scipy.net/roundup/ipython/issue49.
1351 1363
1352 1364 * IPython/Magic.py (magic_pycat): Fix pycat, patch by Marien Zwart
1353 1365 <marienz-AT-gentoo.org>, closes
1354 1366 http://www.scipy.net/roundup/ipython/issue51.
1355 1367
1356 1368 2006-01-11 Fernando Perez <Fernando.Perez@colorado.edu>
1357 1369
1358 1370 * IPython/Shell.py (IPShellGTK.on_timer): Finally fix the
1359 1371 problem of excessive CPU usage under *nix and keyboard lag under
1360 1372 win32.
1361 1373
1362 1374 2006-01-10 *** Released version 0.7.0
1363 1375
1364 1376 2006-01-10 Fernando Perez <Fernando.Perez@colorado.edu>
1365 1377
1366 1378 * IPython/Release.py (revision): tag version number to 0.7.0,
1367 1379 ready for release.
1368 1380
1369 1381 * IPython/Magic.py (magic_edit): Add print statement to %edit so
1370 1382 it informs the user of the name of the temp. file used. This can
1371 1383 help if you decide later to reuse that same file, so you know
1372 1384 where to copy the info from.
1373 1385
1374 1386 2006-01-09 Fernando Perez <Fernando.Perez@colorado.edu>
1375 1387
1376 1388 * setup_bdist_egg.py: little script to build an egg. Added
1377 1389 support in the release tools as well.
1378 1390
1379 1391 2006-01-08 Fernando Perez <Fernando.Perez@colorado.edu>
1380 1392
1381 1393 * IPython/Shell.py (IPShellWX.__init__): add support for WXPython
1382 1394 version selection (new -wxversion command line and ipythonrc
1383 1395 parameter). Patch contributed by Arnd Baecker
1384 1396 <arnd.baecker-AT-web.de>.
1385 1397
1386 1398 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1387 1399 embedded instances, for variables defined at the interactive
1388 1400 prompt of the embedded ipython. Reported by Arnd.
1389 1401
1390 1402 * IPython/Magic.py (magic_autocall): Fix %autocall magic. Now
1391 1403 it can be used as a (stateful) toggle, or with a direct parameter.
1392 1404
1393 1405 * IPython/ultraTB.py (_fixed_getinnerframes): remove debug assert which
1394 1406 could be triggered in certain cases and cause the traceback
1395 1407 printer not to work.
1396 1408
1397 1409 2006-01-07 Fernando Perez <Fernando.Perez@colorado.edu>
1398 1410
1399 1411 * IPython/iplib.py (_should_recompile): Small fix, closes
1400 1412 http://www.scipy.net/roundup/ipython/issue48. Patch by Scott.
1401 1413
1402 1414 2006-01-04 Fernando Perez <Fernando.Perez@colorado.edu>
1403 1415
1404 1416 * IPython/Shell.py (IPShellGTK.mainloop): fix bug in the GTK
1405 1417 backend for matplotlib (100% cpu utiliziation). Thanks to Charlie
1406 1418 Moad for help with tracking it down.
1407 1419
1408 1420 * IPython/iplib.py (handle_auto): fix autocall handling for
1409 1421 objects which support BOTH __getitem__ and __call__ (so that f [x]
1410 1422 is left alone, instead of becoming f([x]) automatically).
1411 1423
1412 1424 * IPython/Magic.py (magic_cd): fix crash when cd -b was used.
1413 1425 Ville's patch.
1414 1426
1415 1427 2006-01-03 Fernando Perez <Fernando.Perez@colorado.edu>
1416 1428
1417 1429 * IPython/iplib.py (handle_auto): changed autocall semantics to
1418 1430 include 'smart' mode, where the autocall transformation is NOT
1419 1431 applied if there are no arguments on the line. This allows you to
1420 1432 just type 'foo' if foo is a callable to see its internal form,
1421 1433 instead of having it called with no arguments (typically a
1422 1434 mistake). The old 'full' autocall still exists: for that, you
1423 1435 need to set the 'autocall' parameter to 2 in your ipythonrc file.
1424 1436
1425 1437 * IPython/completer.py (Completer.attr_matches): add
1426 1438 tab-completion support for Enthoughts' traits. After a report by
1427 1439 Arnd and a patch by Prabhu.
1428 1440
1429 1441 2006-01-02 Fernando Perez <Fernando.Perez@colorado.edu>
1430 1442
1431 1443 * IPython/ultraTB.py (_fixed_getinnerframes): added Alex
1432 1444 Schmolck's patch to fix inspect.getinnerframes().
1433 1445
1434 1446 * IPython/iplib.py (InteractiveShell.__init__): significant fixes
1435 1447 for embedded instances, regarding handling of namespaces and items
1436 1448 added to the __builtin__ one. Multiple embedded instances and
1437 1449 recursive embeddings should work better now (though I'm not sure
1438 1450 I've got all the corner cases fixed, that code is a bit of a brain
1439 1451 twister).
1440 1452
1441 1453 * IPython/Magic.py (magic_edit): added support to edit in-memory
1442 1454 macros (automatically creates the necessary temp files). %edit
1443 1455 also doesn't return the file contents anymore, it's just noise.
1444 1456
1445 1457 * IPython/completer.py (Completer.attr_matches): revert change to
1446 1458 complete only on attributes listed in __all__. I realized it
1447 1459 cripples the tab-completion system as a tool for exploring the
1448 1460 internals of unknown libraries (it renders any non-__all__
1449 1461 attribute off-limits). I got bit by this when trying to see
1450 1462 something inside the dis module.
1451 1463
1452 1464 2005-12-31 Fernando Perez <Fernando.Perez@colorado.edu>
1453 1465
1454 1466 * IPython/iplib.py (InteractiveShell.__init__): add .meta
1455 1467 namespace for users and extension writers to hold data in. This
1456 1468 follows the discussion in
1457 1469 http://projects.scipy.org/ipython/ipython/wiki/RefactoringIPython.
1458 1470
1459 1471 * IPython/completer.py (IPCompleter.complete): small patch to help
1460 1472 tab-completion under Emacs, after a suggestion by John Barnard
1461 1473 <barnarj-AT-ccf.org>.
1462 1474
1463 1475 * IPython/Magic.py (Magic.extract_input_slices): added support for
1464 1476 the slice notation in magics to use N-M to represent numbers N...M
1465 1477 (closed endpoints). This is used by %macro and %save.
1466 1478
1467 1479 * IPython/completer.py (Completer.attr_matches): for modules which
1468 1480 define __all__, complete only on those. After a patch by Jeffrey
1469 1481 Collins <jcollins_boulder-AT-earthlink.net>. Also, clean up and
1470 1482 speed up this routine.
1471 1483
1472 1484 * IPython/Logger.py (Logger.log): fix a history handling bug. I
1473 1485 don't know if this is the end of it, but the behavior now is
1474 1486 certainly much more correct. Note that coupled with macros,
1475 1487 slightly surprising (at first) behavior may occur: a macro will in
1476 1488 general expand to multiple lines of input, so upon exiting, the
1477 1489 in/out counters will both be bumped by the corresponding amount
1478 1490 (as if the macro's contents had been typed interactively). Typing
1479 1491 %hist will reveal the intermediate (silently processed) lines.
1480 1492
1481 1493 * IPython/Magic.py (magic_run): fix a subtle bug which could cause
1482 1494 pickle to fail (%run was overwriting __main__ and not restoring
1483 1495 it, but pickle relies on __main__ to operate).
1484 1496
1485 1497 * IPython/iplib.py (InteractiveShell): fix pdb calling: I'm now
1486 1498 using properties, but forgot to make the main InteractiveShell
1487 1499 class a new-style class. Properties fail silently, and
1488 1500 mysteriously, with old-style class (getters work, but
1489 1501 setters don't do anything).
1490 1502
1491 1503 2005-12-30 Fernando Perez <Fernando.Perez@colorado.edu>
1492 1504
1493 1505 * IPython/Magic.py (magic_history): fix history reporting bug (I
1494 1506 know some nasties are still there, I just can't seem to find a
1495 1507 reproducible test case to track them down; the input history is
1496 1508 falling out of sync...)
1497 1509
1498 1510 * IPython/iplib.py (handle_shell_escape): fix bug where both
1499 1511 aliases and system accesses where broken for indented code (such
1500 1512 as loops).
1501 1513
1502 1514 * IPython/genutils.py (shell): fix small but critical bug for
1503 1515 win32 system access.
1504 1516
1505 1517 2005-12-29 Fernando Perez <Fernando.Perez@colorado.edu>
1506 1518
1507 1519 * IPython/iplib.py (showtraceback): remove use of the
1508 1520 sys.last_{type/value/traceback} structures, which are non
1509 1521 thread-safe.
1510 1522 (_prefilter): change control flow to ensure that we NEVER
1511 1523 introspect objects when autocall is off. This will guarantee that
1512 1524 having an input line of the form 'x.y', where access to attribute
1513 1525 'y' has side effects, doesn't trigger the side effect TWICE. It
1514 1526 is important to note that, with autocall on, these side effects
1515 1527 can still happen.
1516 1528 (ipsystem): new builtin, to complete the ip{magic/alias/system}
1517 1529 trio. IPython offers these three kinds of special calls which are
1518 1530 not python code, and it's a good thing to have their call method
1519 1531 be accessible as pure python functions (not just special syntax at
1520 1532 the command line). It gives us a better internal implementation
1521 1533 structure, as well as exposing these for user scripting more
1522 1534 cleanly.
1523 1535
1524 1536 * IPython/macro.py (Macro.__init__): moved macros to a standalone
1525 1537 file. Now that they'll be more likely to be used with the
1526 1538 persistance system (%store), I want to make sure their module path
1527 1539 doesn't change in the future, so that we don't break things for
1528 1540 users' persisted data.
1529 1541
1530 1542 * IPython/iplib.py (autoindent_update): move indentation
1531 1543 management into the _text_ processing loop, not the keyboard
1532 1544 interactive one. This is necessary to correctly process non-typed
1533 1545 multiline input (such as macros).
1534 1546
1535 1547 * IPython/Magic.py (Magic.format_latex): patch by Stefan van der
1536 1548 Walt <stefan-AT-sun.ac.za> to fix latex formatting of docstrings,
1537 1549 which was producing problems in the resulting manual.
1538 1550 (magic_whos): improve reporting of instances (show their class,
1539 1551 instead of simply printing 'instance' which isn't terribly
1540 1552 informative).
1541 1553
1542 1554 * IPython/genutils.py (shell): commit Jorgen Stenarson's patch
1543 1555 (minor mods) to support network shares under win32.
1544 1556
1545 1557 * IPython/winconsole.py (get_console_size): add new winconsole
1546 1558 module and fixes to page_dumb() to improve its behavior under
1547 1559 win32. Contributed by Alexander Belchenko <bialix-AT-ukr.net>.
1548 1560
1549 1561 * IPython/Magic.py (Macro): simplified Macro class to just
1550 1562 subclass list. We've had only 2.2 compatibility for a very long
1551 1563 time, yet I was still avoiding subclassing the builtin types. No
1552 1564 more (I'm also starting to use properties, though I won't shift to
1553 1565 2.3-specific features quite yet).
1554 1566 (magic_store): added Ville's patch for lightweight variable
1555 1567 persistence, after a request on the user list by Matt Wilkie
1556 1568 <maphew-AT-gmail.com>. The new %store magic's docstring has full
1557 1569 details.
1558 1570
1559 1571 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1560 1572 changed the default logfile name from 'ipython.log' to
1561 1573 'ipython_log.py'. These logs are real python files, and now that
1562 1574 we have much better multiline support, people are more likely to
1563 1575 want to use them as such. Might as well name them correctly.
1564 1576
1565 1577 * IPython/Magic.py: substantial cleanup. While we can't stop
1566 1578 using magics as mixins, due to the existing customizations 'out
1567 1579 there' which rely on the mixin naming conventions, at least I
1568 1580 cleaned out all cross-class name usage. So once we are OK with
1569 1581 breaking compatibility, the two systems can be separated.
1570 1582
1571 1583 * IPython/Logger.py: major cleanup. This one is NOT a mixin
1572 1584 anymore, and the class is a fair bit less hideous as well. New
1573 1585 features were also introduced: timestamping of input, and logging
1574 1586 of output results. These are user-visible with the -t and -o
1575 1587 options to %logstart. Closes
1576 1588 http://www.scipy.net/roundup/ipython/issue11 and a request by
1577 1589 William Stein (SAGE developer - http://modular.ucsd.edu/sage).
1578 1590
1579 1591 2005-12-28 Fernando Perez <Fernando.Perez@colorado.edu>
1580 1592
1581 1593 * IPython/iplib.py (handle_shell_escape): add Ville's patch to
1582 1594 better handle backslashes in paths. See the thread 'More Windows
1583 1595 questions part 2 - \/ characters revisited' on the iypthon user
1584 1596 list:
1585 1597 http://scipy.net/pipermail/ipython-user/2005-June/000907.html
1586 1598
1587 1599 (InteractiveShell.__init__): fix tab-completion bug in threaded shells.
1588 1600
1589 1601 (InteractiveShell.__init__): change threaded shells to not use the
1590 1602 ipython crash handler. This was causing more problems than not,
1591 1603 as exceptions in the main thread (GUI code, typically) would
1592 1604 always show up as a 'crash', when they really weren't.
1593 1605
1594 1606 The colors and exception mode commands (%colors/%xmode) have been
1595 1607 synchronized to also take this into account, so users can get
1596 1608 verbose exceptions for their threaded code as well. I also added
1597 1609 support for activating pdb inside this exception handler as well,
1598 1610 so now GUI authors can use IPython's enhanced pdb at runtime.
1599 1611
1600 1612 * IPython/ipmaker.py (make_IPython): make the autoedit_syntax flag
1601 1613 true by default, and add it to the shipped ipythonrc file. Since
1602 1614 this asks the user before proceeding, I think it's OK to make it
1603 1615 true by default.
1604 1616
1605 1617 * IPython/Magic.py (magic_exit): make new exit/quit magics instead
1606 1618 of the previous special-casing of input in the eval loop. I think
1607 1619 this is cleaner, as they really are commands and shouldn't have
1608 1620 a special role in the middle of the core code.
1609 1621
1610 1622 2005-12-27 Fernando Perez <Fernando.Perez@colorado.edu>
1611 1623
1612 1624 * IPython/iplib.py (edit_syntax_error): added support for
1613 1625 automatically reopening the editor if the file had a syntax error
1614 1626 in it. Thanks to scottt who provided the patch at:
1615 1627 http://www.scipy.net/roundup/ipython/issue36 (slightly modified
1616 1628 version committed).
1617 1629
1618 1630 * IPython/iplib.py (handle_normal): add suport for multi-line
1619 1631 input with emtpy lines. This fixes
1620 1632 http://www.scipy.net/roundup/ipython/issue43 and a similar
1621 1633 discussion on the user list.
1622 1634
1623 1635 WARNING: a behavior change is necessarily introduced to support
1624 1636 blank lines: now a single blank line with whitespace does NOT
1625 1637 break the input loop, which means that when autoindent is on, by
1626 1638 default hitting return on the next (indented) line does NOT exit.
1627 1639
1628 1640 Instead, to exit a multiline input you can either have:
1629 1641
1630 1642 - TWO whitespace lines (just hit return again), or
1631 1643 - a single whitespace line of a different length than provided
1632 1644 by the autoindent (add or remove a space).
1633 1645
1634 1646 * IPython/completer.py (MagicCompleter.__init__): new 'completer'
1635 1647 module to better organize all readline-related functionality.
1636 1648 I've deleted FlexCompleter and put all completion clases here.
1637 1649
1638 1650 * IPython/iplib.py (raw_input): improve indentation management.
1639 1651 It is now possible to paste indented code with autoindent on, and
1640 1652 the code is interpreted correctly (though it still looks bad on
1641 1653 screen, due to the line-oriented nature of ipython).
1642 1654 (MagicCompleter.complete): change behavior so that a TAB key on an
1643 1655 otherwise empty line actually inserts a tab, instead of completing
1644 1656 on the entire global namespace. This makes it easier to use the
1645 1657 TAB key for indentation. After a request by Hans Meine
1646 1658 <hans_meine-AT-gmx.net>
1647 1659 (_prefilter): add support so that typing plain 'exit' or 'quit'
1648 1660 does a sensible thing. Originally I tried to deviate as little as
1649 1661 possible from the default python behavior, but even that one may
1650 1662 change in this direction (thread on python-dev to that effect).
1651 1663 Regardless, ipython should do the right thing even if CPython's
1652 1664 '>>>' prompt doesn't.
1653 1665 (InteractiveShell): removed subclassing code.InteractiveConsole
1654 1666 class. By now we'd overridden just about all of its methods: I've
1655 1667 copied the remaining two over, and now ipython is a standalone
1656 1668 class. This will provide a clearer picture for the chainsaw
1657 1669 branch refactoring.
1658 1670
1659 1671 2005-12-26 Fernando Perez <Fernando.Perez@colorado.edu>
1660 1672
1661 1673 * IPython/ultraTB.py (VerboseTB.text): harden reporting against
1662 1674 failures for objects which break when dir() is called on them.
1663 1675
1664 1676 * IPython/FlexCompleter.py (Completer.__init__): Added support for
1665 1677 distinct local and global namespaces in the completer API. This
1666 1678 change allows us to properly handle completion with distinct
1667 1679 scopes, including in embedded instances (this had never really
1668 1680 worked correctly).
1669 1681
1670 1682 Note: this introduces a change in the constructor for
1671 1683 MagicCompleter, as a new global_namespace parameter is now the
1672 1684 second argument (the others were bumped one position).
1673 1685
1674 1686 2005-12-25 Fernando Perez <Fernando.Perez@colorado.edu>
1675 1687
1676 1688 * IPython/iplib.py (embed_mainloop): fix tab-completion in
1677 1689 embedded instances (which can be done now thanks to Vivian's
1678 1690 frame-handling fixes for pdb).
1679 1691 (InteractiveShell.__init__): Fix namespace handling problem in
1680 1692 embedded instances. We were overwriting __main__ unconditionally,
1681 1693 and this should only be done for 'full' (non-embedded) IPython;
1682 1694 embedded instances must respect the caller's __main__. Thanks to
1683 1695 a bug report by Yaroslav Bulatov <yaroslavvb-AT-gmail.com>
1684 1696
1685 1697 2005-12-24 Fernando Perez <Fernando.Perez@colorado.edu>
1686 1698
1687 1699 * setup.py: added download_url to setup(). This registers the
1688 1700 download address at PyPI, which is not only useful to humans
1689 1701 browsing the site, but is also picked up by setuptools (the Eggs
1690 1702 machinery). Thanks to Ville and R. Kern for the info/discussion
1691 1703 on this.
1692 1704
1693 1705 2005-12-23 Fernando Perez <Fernando.Perez@colorado.edu>
1694 1706
1695 1707 * IPython/Debugger.py (Pdb.__init__): Major pdb mode enhancements.
1696 1708 This brings a lot of nice functionality to the pdb mode, which now
1697 1709 has tab-completion, syntax highlighting, and better stack handling
1698 1710 than before. Many thanks to Vivian De Smedt
1699 1711 <vivian-AT-vdesmedt.com> for the original patches.
1700 1712
1701 1713 2005-12-08 Fernando Perez <Fernando.Perez@colorado.edu>
1702 1714
1703 1715 * IPython/Shell.py (IPShellGTK.mainloop): fix mainloop() calling
1704 1716 sequence to consistently accept the banner argument. The
1705 1717 inconsistency was tripping SAGE, thanks to Gary Zablackis
1706 1718 <gzabl-AT-yahoo.com> for the report.
1707 1719
1708 1720 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1709 1721
1710 1722 * IPython/iplib.py (InteractiveShell.post_config_initialization):
1711 1723 Fix bug where a naked 'alias' call in the ipythonrc file would
1712 1724 cause a crash. Bug reported by Jorgen Stenarson.
1713 1725
1714 1726 2005-11-15 Fernando Perez <Fernando.Perez@colorado.edu>
1715 1727
1716 1728 * IPython/ipmaker.py (make_IPython): cleanups which should improve
1717 1729 startup time.
1718 1730
1719 1731 * IPython/iplib.py (runcode): my globals 'fix' for embedded
1720 1732 instances had introduced a bug with globals in normal code. Now
1721 1733 it's working in all cases.
1722 1734
1723 1735 * IPython/Magic.py (magic_psearch): Finish wildcard cleanup and
1724 1736 API changes. A new ipytonrc option, 'wildcards_case_sensitive'
1725 1737 has been introduced to set the default case sensitivity of the
1726 1738 searches. Users can still select either mode at runtime on a
1727 1739 per-search basis.
1728 1740
1729 1741 2005-11-13 Fernando Perez <Fernando.Perez@colorado.edu>
1730 1742
1731 1743 * IPython/wildcard.py (NameSpace.__init__): fix resolution of
1732 1744 attributes in wildcard searches for subclasses. Modified version
1733 1745 of a patch by Jorgen.
1734 1746
1735 1747 2005-11-12 Fernando Perez <Fernando.Perez@colorado.edu>
1736 1748
1737 1749 * IPython/iplib.py (embed_mainloop): Fix handling of globals for
1738 1750 embedded instances. I added a user_global_ns attribute to the
1739 1751 InteractiveShell class to handle this.
1740 1752
1741 1753 2005-10-31 Fernando Perez <Fernando.Perez@colorado.edu>
1742 1754
1743 1755 * IPython/Shell.py (IPShellGTK.mainloop): Change timeout_add to
1744 1756 idle_add, which fixes horrible keyboard lag problems under gtk 2.6
1745 1757 (reported under win32, but may happen also in other platforms).
1746 1758 Bug report and fix courtesy of Sean Moore <smm-AT-logic.bm>
1747 1759
1748 1760 2005-10-15 Fernando Perez <Fernando.Perez@colorado.edu>
1749 1761
1750 1762 * IPython/Magic.py (magic_psearch): new support for wildcard
1751 1763 patterns. Now, typing ?a*b will list all names which begin with a
1752 1764 and end in b, for example. The %psearch magic has full
1753 1765 docstrings. Many thanks to JΓΆrgen Stenarson
1754 1766 <jorgen.stenarson-AT-bostream.nu>, author of the patches
1755 1767 implementing this functionality.
1756 1768
1757 1769 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1758 1770
1759 1771 * Manual: fixed long-standing annoyance of double-dashes (as in
1760 1772 --prefix=~, for example) being stripped in the HTML version. This
1761 1773 is a latex2html bug, but a workaround was provided. Many thanks
1762 1774 to George K. Thiruvathukal <gthiruv-AT-luc.edu> for the detailed
1763 1775 help, and Michael Tobis <mtobis-AT-gmail.com> for getting the ball
1764 1776 rolling. This seemingly small issue had tripped a number of users
1765 1777 when first installing, so I'm glad to see it gone.
1766 1778
1767 1779 2005-09-27 Fernando Perez <Fernando.Perez@colorado.edu>
1768 1780
1769 1781 * IPython/Extensions/numeric_formats.py: fix missing import,
1770 1782 reported by Stephen Walton.
1771 1783
1772 1784 2005-09-24 Fernando Perez <Fernando.Perez@colorado.edu>
1773 1785
1774 1786 * IPython/demo.py: finish demo module, fully documented now.
1775 1787
1776 1788 * IPython/genutils.py (file_read): simple little utility to read a
1777 1789 file and ensure it's closed afterwards.
1778 1790
1779 1791 2005-09-23 Fernando Perez <Fernando.Perez@colorado.edu>
1780 1792
1781 1793 * IPython/demo.py (Demo.__init__): added support for individually
1782 1794 tagging blocks for automatic execution.
1783 1795
1784 1796 * IPython/Magic.py (magic_pycat): new %pycat magic for showing
1785 1797 syntax-highlighted python sources, requested by John.
1786 1798
1787 1799 2005-09-22 Fernando Perez <Fernando.Perez@colorado.edu>
1788 1800
1789 1801 * IPython/demo.py (Demo.again): fix bug where again() blocks after
1790 1802 finishing.
1791 1803
1792 1804 * IPython/genutils.py (shlex_split): moved from Magic to here,
1793 1805 where all 2.2 compatibility stuff lives. I needed it for demo.py.
1794 1806
1795 1807 * IPython/demo.py (Demo.__init__): added support for silent
1796 1808 blocks, improved marks as regexps, docstrings written.
1797 1809 (Demo.__init__): better docstring, added support for sys.argv.
1798 1810
1799 1811 * IPython/genutils.py (marquee): little utility used by the demo
1800 1812 code, handy in general.
1801 1813
1802 1814 * IPython/demo.py (Demo.__init__): new class for interactive
1803 1815 demos. Not documented yet, I just wrote it in a hurry for
1804 1816 scipy'05. Will docstring later.
1805 1817
1806 1818 2005-09-20 Fernando Perez <Fernando.Perez@colorado.edu>
1807 1819
1808 1820 * IPython/Shell.py (sigint_handler): Drastic simplification which
1809 1821 also seems to make Ctrl-C work correctly across threads! This is
1810 1822 so simple, that I can't beleive I'd missed it before. Needs more
1811 1823 testing, though.
1812 1824 (KBINT): Never mind, revert changes. I'm sure I'd tried something
1813 1825 like this before...
1814 1826
1815 1827 * IPython/genutils.py (get_home_dir): add protection against
1816 1828 non-dirs in win32 registry.
1817 1829
1818 1830 * IPython/iplib.py (InteractiveShell.alias_table_validate): fix
1819 1831 bug where dict was mutated while iterating (pysh crash).
1820 1832
1821 1833 2005-09-06 Fernando Perez <Fernando.Perez@colorado.edu>
1822 1834
1823 1835 * IPython/iplib.py (handle_auto): Fix inconsistency arising from
1824 1836 spurious newlines added by this routine. After a report by
1825 1837 F. Mantegazza.
1826 1838
1827 1839 2005-09-05 Fernando Perez <Fernando.Perez@colorado.edu>
1828 1840
1829 1841 * IPython/Shell.py (hijack_gtk): remove pygtk.require("2.0")
1830 1842 calls. These were a leftover from the GTK 1.x days, and can cause
1831 1843 problems in certain cases (after a report by John Hunter).
1832 1844
1833 1845 * IPython/iplib.py (InteractiveShell.__init__): Trap exception if
1834 1846 os.getcwd() fails at init time. Thanks to patch from David Remahl
1835 1847 <chmod007-AT-mac.com>.
1836 1848 (InteractiveShell.__init__): prevent certain special magics from
1837 1849 being shadowed by aliases. Closes
1838 1850 http://www.scipy.net/roundup/ipython/issue41.
1839 1851
1840 1852 2005-08-31 Fernando Perez <Fernando.Perez@colorado.edu>
1841 1853
1842 1854 * IPython/iplib.py (InteractiveShell.complete): Added new
1843 1855 top-level completion method to expose the completion mechanism
1844 1856 beyond readline-based environments.
1845 1857
1846 1858 2005-08-19 Fernando Perez <Fernando.Perez@colorado.edu>
1847 1859
1848 1860 * tools/ipsvnc (svnversion): fix svnversion capture.
1849 1861
1850 1862 * IPython/iplib.py (InteractiveShell.__init__): Add has_readline
1851 1863 attribute to self, which was missing. Before, it was set by a
1852 1864 routine which in certain cases wasn't being called, so the
1853 1865 instance could end up missing the attribute. This caused a crash.
1854 1866 Closes http://www.scipy.net/roundup/ipython/issue40.
1855 1867
1856 1868 2005-08-16 Fernando Perez <fperez@colorado.edu>
1857 1869
1858 1870 * IPython/ultraTB.py (VerboseTB.text): don't crash if object
1859 1871 contains non-string attribute. Closes
1860 1872 http://www.scipy.net/roundup/ipython/issue38.
1861 1873
1862 1874 2005-08-14 Fernando Perez <fperez@colorado.edu>
1863 1875
1864 1876 * tools/ipsvnc: Minor improvements, to add changeset info.
1865 1877
1866 1878 2005-08-12 Fernando Perez <fperez@colorado.edu>
1867 1879
1868 1880 * IPython/iplib.py (runsource): remove self.code_to_run_src
1869 1881 attribute. I realized this is nothing more than
1870 1882 '\n'.join(self.buffer), and having the same data in two different
1871 1883 places is just asking for synchronization bugs. This may impact
1872 1884 people who have custom exception handlers, so I need to warn
1873 1885 ipython-dev about it (F. Mantegazza may use them).
1874 1886
1875 1887 2005-07-29 Fernando Perez <Fernando.Perez@colorado.edu>
1876 1888
1877 1889 * IPython/genutils.py: fix 2.2 compatibility (generators)
1878 1890
1879 1891 2005-07-18 Fernando Perez <fperez@colorado.edu>
1880 1892
1881 1893 * IPython/genutils.py (get_home_dir): fix to help users with
1882 1894 invalid $HOME under win32.
1883 1895
1884 1896 2005-07-17 Fernando Perez <fperez@colorado.edu>
1885 1897
1886 1898 * IPython/Prompts.py (str_safe): Make unicode-safe. Also remove
1887 1899 some old hacks and clean up a bit other routines; code should be
1888 1900 simpler and a bit faster.
1889 1901
1890 1902 * IPython/iplib.py (interact): removed some last-resort attempts
1891 1903 to survive broken stdout/stderr. That code was only making it
1892 1904 harder to abstract out the i/o (necessary for gui integration),
1893 1905 and the crashes it could prevent were extremely rare in practice
1894 1906 (besides being fully user-induced in a pretty violent manner).
1895 1907
1896 1908 * IPython/genutils.py (IOStream.__init__): Simplify the i/o stuff.
1897 1909 Nothing major yet, but the code is simpler to read; this should
1898 1910 make it easier to do more serious modifications in the future.
1899 1911
1900 1912 * IPython/Extensions/InterpreterExec.py: Fix auto-quoting in pysh,
1901 1913 which broke in .15 (thanks to a report by Ville).
1902 1914
1903 1915 * IPython/Itpl.py (Itpl.__init__): add unicode support (it may not
1904 1916 be quite correct, I know next to nothing about unicode). This
1905 1917 will allow unicode strings to be used in prompts, amongst other
1906 1918 cases. It also will prevent ipython from crashing when unicode
1907 1919 shows up unexpectedly in many places. If ascii encoding fails, we
1908 1920 assume utf_8. Currently the encoding is not a user-visible
1909 1921 setting, though it could be made so if there is demand for it.
1910 1922
1911 1923 * IPython/ipmaker.py (make_IPython): remove old 2.1-specific hack.
1912 1924
1913 1925 * IPython/Struct.py (Struct.merge): switch keys() to iterator.
1914 1926
1915 1927 * IPython/background_jobs.py: moved 2.2 compatibility to genutils.
1916 1928
1917 1929 * IPython/genutils.py: Add 2.2 compatibility here, so all other
1918 1930 code can work transparently for 2.2/2.3.
1919 1931
1920 1932 2005-07-16 Fernando Perez <fperez@colorado.edu>
1921 1933
1922 1934 * IPython/ultraTB.py (ExceptionColors): Make a global variable
1923 1935 out of the color scheme table used for coloring exception
1924 1936 tracebacks. This allows user code to add new schemes at runtime.
1925 1937 This is a minimally modified version of the patch at
1926 1938 http://www.scipy.net/roundup/ipython/issue35, many thanks to pabw
1927 1939 for the contribution.
1928 1940
1929 1941 * IPython/FlexCompleter.py (Completer.attr_matches): Add a
1930 1942 slightly modified version of the patch in
1931 1943 http://www.scipy.net/roundup/ipython/issue34, which also allows me
1932 1944 to remove the previous try/except solution (which was costlier).
1933 1945 Thanks to Gaetan Lehmann <gaetan.lehmann-AT-jouy.inra.fr> for the fix.
1934 1946
1935 1947 2005-06-08 Fernando Perez <fperez@colorado.edu>
1936 1948
1937 1949 * IPython/iplib.py (write/write_err): Add methods to abstract all
1938 1950 I/O a bit more.
1939 1951
1940 1952 * IPython/Shell.py (IPShellGTK.mainloop): Fix GTK deprecation
1941 1953 warning, reported by Aric Hagberg, fix by JD Hunter.
1942 1954
1943 1955 2005-06-02 *** Released version 0.6.15
1944 1956
1945 1957 2005-06-01 Fernando Perez <fperez@colorado.edu>
1946 1958
1947 1959 * IPython/iplib.py (MagicCompleter.file_matches): Fix
1948 1960 tab-completion of filenames within open-quoted strings. Note that
1949 1961 this requires that in ~/.ipython/ipythonrc, users change the
1950 1962 readline delimiters configuration to read:
1951 1963
1952 1964 readline_remove_delims -/~
1953 1965
1954 1966
1955 1967 2005-05-31 *** Released version 0.6.14
1956 1968
1957 1969 2005-05-29 Fernando Perez <fperez@colorado.edu>
1958 1970
1959 1971 * IPython/ultraTB.py (VerboseTB.text): Fix crash for tracebacks
1960 1972 with files not on the filesystem. Reported by Eliyahu Sandler
1961 1973 <eli@gondolin.net>
1962 1974
1963 1975 2005-05-22 Fernando Perez <fperez@colorado.edu>
1964 1976
1965 1977 * IPython/iplib.py: Fix a few crashes in the --upgrade option.
1966 1978 After an initial report by LUK ShunTim <shuntim.luk@polyu.edu.hk>.
1967 1979
1968 1980 2005-05-19 Fernando Perez <fperez@colorado.edu>
1969 1981
1970 1982 * IPython/iplib.py (safe_execfile): close a file which could be
1971 1983 left open (causing problems in win32, which locks open files).
1972 1984 Thanks to a bug report by D Brown <dbrown2@yahoo.com>.
1973 1985
1974 1986 2005-05-18 Fernando Perez <fperez@colorado.edu>
1975 1987
1976 1988 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): pass all
1977 1989 keyword arguments correctly to safe_execfile().
1978 1990
1979 1991 2005-05-13 Fernando Perez <fperez@colorado.edu>
1980 1992
1981 1993 * ipython.1: Added info about Qt to manpage, and threads warning
1982 1994 to usage page (invoked with --help).
1983 1995
1984 1996 * IPython/iplib.py (MagicCompleter.python_func_kw_matches): Added
1985 1997 new matcher (it goes at the end of the priority list) to do
1986 1998 tab-completion on named function arguments. Submitted by George
1987 1999 Sakkis <gsakkis-AT-eden.rutgers.edu>. See the thread at
1988 2000 http://www.scipy.net/pipermail/ipython-dev/2005-April/000436.html
1989 2001 for more details.
1990 2002
1991 2003 * IPython/Magic.py (magic_run): Added new -e flag to ignore
1992 2004 SystemExit exceptions in the script being run. Thanks to a report
1993 2005 by danny shevitz <danny_shevitz-AT-yahoo.com>, about this
1994 2006 producing very annoying behavior when running unit tests.
1995 2007
1996 2008 2005-05-12 Fernando Perez <fperez@colorado.edu>
1997 2009
1998 2010 * IPython/iplib.py (handle_auto): fixed auto-quoting and parens,
1999 2011 which I'd broken (again) due to a changed regexp. In the process,
2000 2012 added ';' as an escape to auto-quote the whole line without
2001 2013 splitting its arguments. Thanks to a report by Jerry McRae
2002 2014 <qrs0xyc02-AT-sneakemail.com>.
2003 2015
2004 2016 * IPython/ultraTB.py (VerboseTB.text): protect against rare but
2005 2017 possible crashes caused by a TokenError. Reported by Ed Schofield
2006 2018 <schofield-AT-ftw.at>.
2007 2019
2008 2020 2005-05-06 Fernando Perez <fperez@colorado.edu>
2009 2021
2010 2022 * IPython/Shell.py (hijack_wx): Fix to work with WX v.2.6.
2011 2023
2012 2024 2005-04-29 Fernando Perez <fperez@colorado.edu>
2013 2025
2014 2026 * IPython/Shell.py (IPShellQt): Thanks to Denis Rivière
2015 2027 <nudz-AT-free.fr>, Yann Cointepas <yann-AT-sapetnioc.org> and Benjamin
2016 2028 Thyreau <Benji2-AT-decideur.info>, we now have a -qthread option
2017 2029 which provides support for Qt interactive usage (similar to the
2018 2030 existing one for WX and GTK). This had been often requested.
2019 2031
2020 2032 2005-04-14 *** Released version 0.6.13
2021 2033
2022 2034 2005-04-08 Fernando Perez <fperez@colorado.edu>
2023 2035
2024 2036 * IPython/Magic.py (Magic._ofind): remove docstring evaluation
2025 2037 from _ofind, which gets called on almost every input line. Now,
2026 2038 we only try to get docstrings if they are actually going to be
2027 2039 used (the overhead of fetching unnecessary docstrings can be
2028 2040 noticeable for certain objects, such as Pyro proxies).
2029 2041
2030 2042 * IPython/iplib.py (MagicCompleter.python_matches): Change the API
2031 2043 for completers. For some reason I had been passing them the state
2032 2044 variable, which completers never actually need, and was in
2033 2045 conflict with the rlcompleter API. Custom completers ONLY need to
2034 2046 take the text parameter.
2035 2047
2036 2048 * IPython/Extensions/InterpreterExec.py: Fix regexp so that magics
2037 2049 work correctly in pysh. I've also moved all the logic which used
2038 2050 to be in pysh.py here, which will prevent problems with future
2039 2051 upgrades. However, this time I must warn users to update their
2040 2052 pysh profile to include the line
2041 2053
2042 2054 import_all IPython.Extensions.InterpreterExec
2043 2055
2044 2056 because otherwise things won't work for them. They MUST also
2045 2057 delete pysh.py and the line
2046 2058
2047 2059 execfile pysh.py
2048 2060
2049 2061 from their ipythonrc-pysh.
2050 2062
2051 2063 * IPython/FlexCompleter.py (Completer.attr_matches): Make more
2052 2064 robust in the face of objects whose dir() returns non-strings
2053 2065 (which it shouldn't, but some broken libs like ITK do). Thanks to
2054 2066 a patch by John Hunter (implemented differently, though). Also
2055 2067 minor improvements by using .extend instead of + on lists.
2056 2068
2057 2069 * pysh.py:
2058 2070
2059 2071 2005-04-06 Fernando Perez <fperez@colorado.edu>
2060 2072
2061 2073 * IPython/ipmaker.py (make_IPython): Make multi_line_specials on
2062 2074 by default, so that all users benefit from it. Those who don't
2063 2075 want it can still turn it off.
2064 2076
2065 2077 * IPython/UserConfig/ipythonrc: Add multi_line_specials to the
2066 2078 config file, I'd forgotten about this, so users were getting it
2067 2079 off by default.
2068 2080
2069 2081 * IPython/iplib.py (ipmagic): big overhaul of the magic system for
2070 2082 consistency. Now magics can be called in multiline statements,
2071 2083 and python variables can be expanded in magic calls via $var.
2072 2084 This makes the magic system behave just like aliases or !system
2073 2085 calls.
2074 2086
2075 2087 2005-03-28 Fernando Perez <fperez@colorado.edu>
2076 2088
2077 2089 * IPython/iplib.py (handle_auto): cleanup to use %s instead of
2078 2090 expensive string additions for building command. Add support for
2079 2091 trailing ';' when autocall is used.
2080 2092
2081 2093 2005-03-26 Fernando Perez <fperez@colorado.edu>
2082 2094
2083 2095 * ipython.el: Fix http://www.scipy.net/roundup/ipython/issue31.
2084 2096 Bugfix by A. Schmolck, the ipython.el maintainer. Also make
2085 2097 ipython.el robust against prompts with any number of spaces
2086 2098 (including 0) after the ':' character.
2087 2099
2088 2100 * IPython/Prompts.py (Prompt2.set_p_str): Fix spurious space in
2089 2101 continuation prompt, which misled users to think the line was
2090 2102 already indented. Closes debian Bug#300847, reported to me by
2091 2103 Norbert Tretkowski <tretkowski-AT-inittab.de>.
2092 2104
2093 2105 2005-03-23 Fernando Perez <fperez@colorado.edu>
2094 2106
2095 2107 * IPython/Prompts.py (Prompt1.__str__): Make sure that prompts are
2096 2108 properly aligned if they have embedded newlines.
2097 2109
2098 2110 * IPython/iplib.py (runlines): Add a public method to expose
2099 2111 IPython's code execution machinery, so that users can run strings
2100 2112 as if they had been typed at the prompt interactively.
2101 2113 (InteractiveShell.__init__): Added getoutput() to the __IPYTHON__
2102 2114 methods which can call the system shell, but with python variable
2103 2115 expansion. The three such methods are: __IPYTHON__.system,
2104 2116 .getoutput and .getoutputerror. These need to be documented in a
2105 2117 'public API' section (to be written) of the manual.
2106 2118
2107 2119 2005-03-20 Fernando Perez <fperez@colorado.edu>
2108 2120
2109 2121 * IPython/iplib.py (InteractiveShell.set_custom_exc): new system
2110 2122 for custom exception handling. This is quite powerful, and it
2111 2123 allows for user-installable exception handlers which can trap
2112 2124 custom exceptions at runtime and treat them separately from
2113 2125 IPython's default mechanisms. At the request of FrΓ©dΓ©ric
2114 2126 Mantegazza <mantegazza-AT-ill.fr>.
2115 2127 (InteractiveShell.set_custom_completer): public API function to
2116 2128 add new completers at runtime.
2117 2129
2118 2130 2005-03-19 Fernando Perez <fperez@colorado.edu>
2119 2131
2120 2132 * IPython/OInspect.py (getdoc): Add a call to obj.getdoc(), to
2121 2133 allow objects which provide their docstrings via non-standard
2122 2134 mechanisms (like Pyro proxies) to still be inspected by ipython's
2123 2135 ? system.
2124 2136
2125 2137 * IPython/iplib.py (InteractiveShell.__init__): back off the _o/_e
2126 2138 automatic capture system. I tried quite hard to make it work
2127 2139 reliably, and simply failed. I tried many combinations with the
2128 2140 subprocess module, but eventually nothing worked in all needed
2129 2141 cases (not blocking stdin for the child, duplicating stdout
2130 2142 without blocking, etc). The new %sc/%sx still do capture to these
2131 2143 magical list/string objects which make shell use much more
2132 2144 conveninent, so not all is lost.
2133 2145
2134 2146 XXX - FIX MANUAL for the change above!
2135 2147
2136 2148 (runsource): I copied code.py's runsource() into ipython to modify
2137 2149 it a bit. Now the code object and source to be executed are
2138 2150 stored in ipython. This makes this info accessible to third-party
2139 2151 tools, like custom exception handlers. After a request by FrΓ©dΓ©ric
2140 2152 Mantegazza <mantegazza-AT-ill.fr>.
2141 2153
2142 2154 * IPython/UserConfig/ipythonrc: Add up/down arrow keys to
2143 2155 history-search via readline (like C-p/C-n). I'd wanted this for a
2144 2156 long time, but only recently found out how to do it. For users
2145 2157 who already have their ipythonrc files made and want this, just
2146 2158 add:
2147 2159
2148 2160 readline_parse_and_bind "\e[A": history-search-backward
2149 2161 readline_parse_and_bind "\e[B": history-search-forward
2150 2162
2151 2163 2005-03-18 Fernando Perez <fperez@colorado.edu>
2152 2164
2153 2165 * IPython/Magic.py (magic_sc): %sc and %sx now use the fancy
2154 2166 LSString and SList classes which allow transparent conversions
2155 2167 between list mode and whitespace-separated string.
2156 2168 (magic_r): Fix recursion problem in %r.
2157 2169
2158 2170 * IPython/genutils.py (LSString): New class to be used for
2159 2171 automatic storage of the results of all alias/system calls in _o
2160 2172 and _e (stdout/err). These provide a .l/.list attribute which
2161 2173 does automatic splitting on newlines. This means that for most
2162 2174 uses, you'll never need to do capturing of output with %sc/%sx
2163 2175 anymore, since ipython keeps this always done for you. Note that
2164 2176 only the LAST results are stored, the _o/e variables are
2165 2177 overwritten on each call. If you need to save their contents
2166 2178 further, simply bind them to any other name.
2167 2179
2168 2180 2005-03-17 Fernando Perez <fperez@colorado.edu>
2169 2181
2170 2182 * IPython/Prompts.py (BasePrompt.cwd_filt): a few more fixes for
2171 2183 prompt namespace handling.
2172 2184
2173 2185 2005-03-16 Fernando Perez <fperez@colorado.edu>
2174 2186
2175 2187 * IPython/Prompts.py (CachedOutput.__init__): Fix default and
2176 2188 classic prompts to be '>>> ' (final space was missing, and it
2177 2189 trips the emacs python mode).
2178 2190 (BasePrompt.__str__): Added safe support for dynamic prompt
2179 2191 strings. Now you can set your prompt string to be '$x', and the
2180 2192 value of x will be printed from your interactive namespace. The
2181 2193 interpolation syntax includes the full Itpl support, so
2182 2194 ${foo()+x+bar()} is a valid prompt string now, and the function
2183 2195 calls will be made at runtime.
2184 2196
2185 2197 2005-03-15 Fernando Perez <fperez@colorado.edu>
2186 2198
2187 2199 * IPython/Magic.py (magic_history): renamed %hist to %history, to
2188 2200 avoid name clashes in pylab. %hist still works, it just forwards
2189 2201 the call to %history.
2190 2202
2191 2203 2005-03-02 *** Released version 0.6.12
2192 2204
2193 2205 2005-03-02 Fernando Perez <fperez@colorado.edu>
2194 2206
2195 2207 * IPython/iplib.py (handle_magic): log magic calls properly as
2196 2208 ipmagic() function calls.
2197 2209
2198 2210 * IPython/Magic.py (magic_time): Improved %time to support
2199 2211 statements and provide wall-clock as well as CPU time.
2200 2212
2201 2213 2005-02-27 Fernando Perez <fperez@colorado.edu>
2202 2214
2203 2215 * IPython/hooks.py: New hooks module, to expose user-modifiable
2204 2216 IPython functionality in a clean manner. For now only the editor
2205 2217 hook is actually written, and other thigns which I intend to turn
2206 2218 into proper hooks aren't yet there. The display and prefilter
2207 2219 stuff, for example, should be hooks. But at least now the
2208 2220 framework is in place, and the rest can be moved here with more
2209 2221 time later. IPython had had a .hooks variable for a long time for
2210 2222 this purpose, but I'd never actually used it for anything.
2211 2223
2212 2224 2005-02-26 Fernando Perez <fperez@colorado.edu>
2213 2225
2214 2226 * IPython/ipmaker.py (make_IPython): make the default ipython
2215 2227 directory be called _ipython under win32, to follow more the
2216 2228 naming peculiarities of that platform (where buggy software like
2217 2229 Visual Sourcesafe breaks with .named directories). Reported by
2218 2230 Ville Vainio.
2219 2231
2220 2232 2005-02-23 Fernando Perez <fperez@colorado.edu>
2221 2233
2222 2234 * IPython/iplib.py (InteractiveShell.__init__): removed a few
2223 2235 auto_aliases for win32 which were causing problems. Users can
2224 2236 define the ones they personally like.
2225 2237
2226 2238 2005-02-21 Fernando Perez <fperez@colorado.edu>
2227 2239
2228 2240 * IPython/Magic.py (magic_time): new magic to time execution of
2229 2241 expressions. After a request by Charles Moad <cmoad-AT-indiana.edu>.
2230 2242
2231 2243 2005-02-19 Fernando Perez <fperez@colorado.edu>
2232 2244
2233 2245 * IPython/ConfigLoader.py (ConfigLoader.load): Allow empty strings
2234 2246 into keys (for prompts, for example).
2235 2247
2236 2248 * IPython/Prompts.py (BasePrompt.set_p_str): Fix to allow empty
2237 2249 prompts in case users want them. This introduces a small behavior
2238 2250 change: ipython does not automatically add a space to all prompts
2239 2251 anymore. To get the old prompts with a space, users should add it
2240 2252 manually to their ipythonrc file, so for example prompt_in1 should
2241 2253 now read 'In [\#]: ' instead of 'In [\#]:'.
2242 2254 (BasePrompt.__init__): New option prompts_pad_left (only in rc
2243 2255 file) to control left-padding of secondary prompts.
2244 2256
2245 2257 * IPython/Magic.py (Magic.profile_missing_notice): Don't crash if
2246 2258 the profiler can't be imported. Fix for Debian, which removed
2247 2259 profile.py because of License issues. I applied a slightly
2248 2260 modified version of the original Debian patch at
2249 2261 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294500.
2250 2262
2251 2263 2005-02-17 Fernando Perez <fperez@colorado.edu>
2252 2264
2253 2265 * IPython/genutils.py (native_line_ends): Fix bug which would
2254 2266 cause improper line-ends under win32 b/c I was not opening files
2255 2267 in binary mode. Bug report and fix thanks to Ville.
2256 2268
2257 2269 * IPython/iplib.py (handle_auto): Fix bug which I introduced when
2258 2270 trying to catch spurious foo[1] autocalls. My fix actually broke
2259 2271 ',/' autoquote/call with explicit escape (bad regexp).
2260 2272
2261 2273 2005-02-15 *** Released version 0.6.11
2262 2274
2263 2275 2005-02-14 Fernando Perez <fperez@colorado.edu>
2264 2276
2265 2277 * IPython/background_jobs.py: New background job management
2266 2278 subsystem. This is implemented via a new set of classes, and
2267 2279 IPython now provides a builtin 'jobs' object for background job
2268 2280 execution. A convenience %bg magic serves as a lightweight
2269 2281 frontend for starting the more common type of calls. This was
2270 2282 inspired by discussions with B. Granger and the BackgroundCommand
2271 2283 class described in the book Python Scripting for Computational
2272 2284 Science, by H. P. Langtangen: http://folk.uio.no/hpl/scripting
2273 2285 (although ultimately no code from this text was used, as IPython's
2274 2286 system is a separate implementation).
2275 2287
2276 2288 * IPython/iplib.py (MagicCompleter.python_matches): add new option
2277 2289 to control the completion of single/double underscore names
2278 2290 separately. As documented in the example ipytonrc file, the
2279 2291 readline_omit__names variable can now be set to 2, to omit even
2280 2292 single underscore names. Thanks to a patch by Brian Wong
2281 2293 <BrianWong-AT-AirgoNetworks.Com>.
2282 2294 (InteractiveShell.__init__): Fix bug which would cause foo[1] to
2283 2295 be autocalled as foo([1]) if foo were callable. A problem for
2284 2296 things which are both callable and implement __getitem__.
2285 2297 (init_readline): Fix autoindentation for win32. Thanks to a patch
2286 2298 by Vivian De Smedt <vivian-AT-vdesmedt.com>.
2287 2299
2288 2300 2005-02-12 Fernando Perez <fperez@colorado.edu>
2289 2301
2290 2302 * IPython/ipmaker.py (make_IPython): Disabled the stout traps
2291 2303 which I had written long ago to sort out user error messages which
2292 2304 may occur during startup. This seemed like a good idea initially,
2293 2305 but it has proven a disaster in retrospect. I don't want to
2294 2306 change much code for now, so my fix is to set the internal 'debug'
2295 2307 flag to true everywhere, whose only job was precisely to control
2296 2308 this subsystem. This closes issue 28 (as well as avoiding all
2297 2309 sorts of strange hangups which occur from time to time).
2298 2310
2299 2311 2005-02-07 Fernando Perez <fperez@colorado.edu>
2300 2312
2301 2313 * IPython/Magic.py (magic_edit): Fix 'ed -p' not working when the
2302 2314 previous call produced a syntax error.
2303 2315
2304 2316 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2305 2317 classes without constructor.
2306 2318
2307 2319 2005-02-06 Fernando Perez <fperez@colorado.edu>
2308 2320
2309 2321 * IPython/iplib.py (MagicCompleter.complete): Extend the list of
2310 2322 completions with the results of each matcher, so we return results
2311 2323 to the user from all namespaces. This breaks with ipython
2312 2324 tradition, but I think it's a nicer behavior. Now you get all
2313 2325 possible completions listed, from all possible namespaces (python,
2314 2326 filesystem, magics...) After a request by John Hunter
2315 2327 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2316 2328
2317 2329 2005-02-05 Fernando Perez <fperez@colorado.edu>
2318 2330
2319 2331 * IPython/Magic.py (magic_prun): Fix bug where prun would fail if
2320 2332 the call had quote characters in it (the quotes were stripped).
2321 2333
2322 2334 2005-01-31 Fernando Perez <fperez@colorado.edu>
2323 2335
2324 2336 * IPython/iplib.py (InteractiveShell.__init__): reduce reliance on
2325 2337 Itpl.itpl() to make the code more robust against psyco
2326 2338 optimizations.
2327 2339
2328 2340 * IPython/Itpl.py (Itpl.__str__): Use a _getframe() call instead
2329 2341 of causing an exception. Quicker, cleaner.
2330 2342
2331 2343 2005-01-28 Fernando Perez <fperez@colorado.edu>
2332 2344
2333 2345 * scripts/ipython_win_post_install.py (install): hardcode
2334 2346 sys.prefix+'python.exe' as the executable path. It turns out that
2335 2347 during the post-installation run, sys.executable resolves to the
2336 2348 name of the binary installer! I should report this as a distutils
2337 2349 bug, I think. I updated the .10 release with this tiny fix, to
2338 2350 avoid annoying the lists further.
2339 2351
2340 2352 2005-01-27 *** Released version 0.6.10
2341 2353
2342 2354 2005-01-27 Fernando Perez <fperez@colorado.edu>
2343 2355
2344 2356 * IPython/numutils.py (norm): Added 'inf' as optional name for
2345 2357 L-infinity norm, included references to mathworld.com for vector
2346 2358 norm definitions.
2347 2359 (amin/amax): added amin/amax for array min/max. Similar to what
2348 2360 pylab ships with after the recent reorganization of names.
2349 2361 (spike/spike_odd): removed deprecated spike/spike_odd functions.
2350 2362
2351 2363 * ipython.el: committed Alex's recent fixes and improvements.
2352 2364 Tested with python-mode from CVS, and it looks excellent. Since
2353 2365 python-mode hasn't released anything in a while, I'm temporarily
2354 2366 putting a copy of today's CVS (v 4.70) of python-mode in:
2355 2367 http://ipython.scipy.org/tmp/python-mode.el
2356 2368
2357 2369 * scripts/ipython_win_post_install.py (install): Win32 fix to use
2358 2370 sys.executable for the executable name, instead of assuming it's
2359 2371 called 'python.exe' (the post-installer would have produced broken
2360 2372 setups on systems with a differently named python binary).
2361 2373
2362 2374 * IPython/PyColorize.py (Parser.__call__): change explicit '\n'
2363 2375 references to os.linesep, to make the code more
2364 2376 platform-independent. This is also part of the win32 coloring
2365 2377 fixes.
2366 2378
2367 2379 * IPython/genutils.py (page_dumb): Remove attempts to chop long
2368 2380 lines, which actually cause coloring bugs because the length of
2369 2381 the line is very difficult to correctly compute with embedded
2370 2382 escapes. This was the source of all the coloring problems under
2371 2383 Win32. I think that _finally_, Win32 users have a properly
2372 2384 working ipython in all respects. This would never have happened
2373 2385 if not for Gary Bishop and Viktor Ransmayr's great help and work.
2374 2386
2375 2387 2005-01-26 *** Released version 0.6.9
2376 2388
2377 2389 2005-01-25 Fernando Perez <fperez@colorado.edu>
2378 2390
2379 2391 * setup.py: finally, we have a true Windows installer, thanks to
2380 2392 the excellent work of Viktor Ransmayr
2381 2393 <viktor.ransmayr-AT-t-online.de>. The docs have been updated for
2382 2394 Windows users. The setup routine is quite a bit cleaner thanks to
2383 2395 this, and the post-install script uses the proper functions to
2384 2396 allow a clean de-installation using the standard Windows Control
2385 2397 Panel.
2386 2398
2387 2399 * IPython/genutils.py (get_home_dir): changed to use the $HOME
2388 2400 environment variable under all OSes (including win32) if
2389 2401 available. This will give consistency to win32 users who have set
2390 2402 this variable for any reason. If os.environ['HOME'] fails, the
2391 2403 previous policy of using HOMEDRIVE\HOMEPATH kicks in.
2392 2404
2393 2405 2005-01-24 Fernando Perez <fperez@colorado.edu>
2394 2406
2395 2407 * IPython/numutils.py (empty_like): add empty_like(), similar to
2396 2408 zeros_like() but taking advantage of the new empty() Numeric routine.
2397 2409
2398 2410 2005-01-23 *** Released version 0.6.8
2399 2411
2400 2412 2005-01-22 Fernando Perez <fperez@colorado.edu>
2401 2413
2402 2414 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): I removed the
2403 2415 automatic show() calls. After discussing things with JDH, it
2404 2416 turns out there are too many corner cases where this can go wrong.
2405 2417 It's best not to try to be 'too smart', and simply have ipython
2406 2418 reproduce as much as possible the default behavior of a normal
2407 2419 python shell.
2408 2420
2409 2421 * IPython/iplib.py (InteractiveShell.__init__): Modified the
2410 2422 line-splitting regexp and _prefilter() to avoid calling getattr()
2411 2423 on assignments. This closes
2412 2424 http://www.scipy.net/roundup/ipython/issue24. Note that Python's
2413 2425 readline uses getattr(), so a simple <TAB> keypress is still
2414 2426 enough to trigger getattr() calls on an object.
2415 2427
2416 2428 2005-01-21 Fernando Perez <fperez@colorado.edu>
2417 2429
2418 2430 * IPython/Shell.py (MatplotlibShellBase.magic_run): Fix the %run
2419 2431 docstring under pylab so it doesn't mask the original.
2420 2432
2421 2433 2005-01-21 *** Released version 0.6.7
2422 2434
2423 2435 2005-01-21 Fernando Perez <fperez@colorado.edu>
2424 2436
2425 2437 * IPython/Shell.py (MTInteractiveShell.runcode): Trap a crash with
2426 2438 signal handling for win32 users in multithreaded mode.
2427 2439
2428 2440 2005-01-17 Fernando Perez <fperez@colorado.edu>
2429 2441
2430 2442 * IPython/OInspect.py (Inspector.pinfo): Fix crash when inspecting
2431 2443 instances with no __init__. After a crash report by Norbert Nemec
2432 2444 <Norbert-AT-nemec-online.de>.
2433 2445
2434 2446 2005-01-14 Fernando Perez <fperez@colorado.edu>
2435 2447
2436 2448 * IPython/ultraTB.py (VerboseTB.text): Fix bug in reporting of
2437 2449 names for verbose exceptions, when multiple dotted names and the
2438 2450 'parent' object were present on the same line.
2439 2451
2440 2452 2005-01-11 Fernando Perez <fperez@colorado.edu>
2441 2453
2442 2454 * IPython/genutils.py (flag_calls): new utility to trap and flag
2443 2455 calls in functions. I need it to clean up matplotlib support.
2444 2456 Also removed some deprecated code in genutils.
2445 2457
2446 2458 * IPython/Shell.py (MatplotlibShellBase.mplot_exec): small fix so
2447 2459 that matplotlib scripts called with %run, which don't call show()
2448 2460 themselves, still have their plotting windows open.
2449 2461
2450 2462 2005-01-05 Fernando Perez <fperez@colorado.edu>
2451 2463
2452 2464 * IPython/Shell.py (IPShellGTK.__init__): Patch by Andrew Straw
2453 2465 <astraw-AT-caltech.edu>, to fix gtk deprecation warnings.
2454 2466
2455 2467 2004-12-19 Fernando Perez <fperez@colorado.edu>
2456 2468
2457 2469 * IPython/Shell.py (MTInteractiveShell.runcode): Get rid of
2458 2470 parent_runcode, which was an eyesore. The same result can be
2459 2471 obtained with Python's regular superclass mechanisms.
2460 2472
2461 2473 2004-12-17 Fernando Perez <fperez@colorado.edu>
2462 2474
2463 2475 * IPython/Magic.py (Magic.magic_sc): Fix quote stripping problem
2464 2476 reported by Prabhu.
2465 2477 (Magic.magic_sx): direct all errors to Term.cerr (defaults to
2466 2478 sys.stderr) instead of explicitly calling sys.stderr. This helps
2467 2479 maintain our I/O abstractions clean, for future GUI embeddings.
2468 2480
2469 2481 * IPython/genutils.py (info): added new utility for sys.stderr
2470 2482 unified info message handling (thin wrapper around warn()).
2471 2483
2472 2484 * IPython/ultraTB.py (VerboseTB.text): Fix misreported global
2473 2485 composite (dotted) names on verbose exceptions.
2474 2486 (VerboseTB.nullrepr): harden against another kind of errors which
2475 2487 Python's inspect module can trigger, and which were crashing
2476 2488 IPython. Thanks to a report by Marco Lombardi
2477 2489 <mlombard-AT-ma010192.hq.eso.org>.
2478 2490
2479 2491 2004-12-13 *** Released version 0.6.6
2480 2492
2481 2493 2004-12-12 Fernando Perez <fperez@colorado.edu>
2482 2494
2483 2495 * IPython/Shell.py (IPShellGTK.mainloop): catch RuntimeErrors
2484 2496 generated by pygtk upon initialization if it was built without
2485 2497 threads (for matplotlib users). After a crash reported by
2486 2498 Leguijt, Jaap J SIEP-EPT-RES <Jaap.Leguijt-AT-shell.com>.
2487 2499
2488 2500 * IPython/ipmaker.py (make_IPython): fix small bug in the
2489 2501 import_some parameter for multiple imports.
2490 2502
2491 2503 * IPython/iplib.py (ipmagic): simplified the interface of
2492 2504 ipmagic() to take a single string argument, just as it would be
2493 2505 typed at the IPython cmd line.
2494 2506 (ipalias): Added new ipalias() with an interface identical to
2495 2507 ipmagic(). This completes exposing a pure python interface to the
2496 2508 alias and magic system, which can be used in loops or more complex
2497 2509 code where IPython's automatic line mangling is not active.
2498 2510
2499 2511 * IPython/genutils.py (timing): changed interface of timing to
2500 2512 simply run code once, which is the most common case. timings()
2501 2513 remains unchanged, for the cases where you want multiple runs.
2502 2514
2503 2515 * IPython/Shell.py (MatplotlibShellBase._matplotlib_config): Fix a
2504 2516 bug where Python2.2 crashes with exec'ing code which does not end
2505 2517 in a single newline. Python 2.3 is OK, so I hadn't noticed this
2506 2518 before.
2507 2519
2508 2520 2004-12-10 Fernando Perez <fperez@colorado.edu>
2509 2521
2510 2522 * IPython/Magic.py (Magic.magic_prun): changed name of option from
2511 2523 -t to -T, to accomodate the new -t flag in %run (the %run and
2512 2524 %prun options are kind of intermixed, and it's not easy to change
2513 2525 this with the limitations of python's getopt).
2514 2526
2515 2527 * IPython/Magic.py (Magic.magic_run): Added new -t option to time
2516 2528 the execution of scripts. It's not as fine-tuned as timeit.py,
2517 2529 but it works from inside ipython (and under 2.2, which lacks
2518 2530 timeit.py). Optionally a number of runs > 1 can be given for
2519 2531 timing very short-running code.
2520 2532
2521 2533 * IPython/genutils.py (uniq_stable): new routine which returns a
2522 2534 list of unique elements in any iterable, but in stable order of
2523 2535 appearance. I needed this for the ultraTB fixes, and it's a handy
2524 2536 utility.
2525 2537
2526 2538 * IPython/ultraTB.py (VerboseTB.text): Fix proper reporting of
2527 2539 dotted names in Verbose exceptions. This had been broken since
2528 2540 the very start, now x.y will properly be printed in a Verbose
2529 2541 traceback, instead of x being shown and y appearing always as an
2530 2542 'undefined global'. Getting this to work was a bit tricky,
2531 2543 because by default python tokenizers are stateless. Saved by
2532 2544 python's ability to easily add a bit of state to an arbitrary
2533 2545 function (without needing to build a full-blown callable object).
2534 2546
2535 2547 Also big cleanup of this code, which had horrendous runtime
2536 2548 lookups of zillions of attributes for colorization. Moved all
2537 2549 this code into a few templates, which make it cleaner and quicker.
2538 2550
2539 2551 Printout quality was also improved for Verbose exceptions: one
2540 2552 variable per line, and memory addresses are printed (this can be
2541 2553 quite handy in nasty debugging situations, which is what Verbose
2542 2554 is for).
2543 2555
2544 2556 * IPython/ipmaker.py (make_IPython): Do NOT execute files named in
2545 2557 the command line as scripts to be loaded by embedded instances.
2546 2558 Doing so has the potential for an infinite recursion if there are
2547 2559 exceptions thrown in the process. This fixes a strange crash
2548 2560 reported by Philippe MULLER <muller-AT-irit.fr>.
2549 2561
2550 2562 2004-12-09 Fernando Perez <fperez@colorado.edu>
2551 2563
2552 2564 * IPython/Shell.py (MatplotlibShellBase.use): Change pylab support
2553 2565 to reflect new names in matplotlib, which now expose the
2554 2566 matlab-compatible interface via a pylab module instead of the
2555 2567 'matlab' name. The new code is backwards compatible, so users of
2556 2568 all matplotlib versions are OK. Patch by J. Hunter.
2557 2569
2558 2570 * IPython/OInspect.py (Inspector.pinfo): Add to object? printing
2559 2571 of __init__ docstrings for instances (class docstrings are already
2560 2572 automatically printed). Instances with customized docstrings
2561 2573 (indep. of the class) are also recognized and all 3 separate
2562 2574 docstrings are printed (instance, class, constructor). After some
2563 2575 comments/suggestions by J. Hunter.
2564 2576
2565 2577 2004-12-05 Fernando Perez <fperez@colorado.edu>
2566 2578
2567 2579 * IPython/iplib.py (MagicCompleter.complete): Remove annoying
2568 2580 warnings when tab-completion fails and triggers an exception.
2569 2581
2570 2582 2004-12-03 Fernando Perez <fperez@colorado.edu>
2571 2583
2572 2584 * IPython/Magic.py (magic_prun): Fix bug where an exception would
2573 2585 be triggered when using 'run -p'. An incorrect option flag was
2574 2586 being set ('d' instead of 'D').
2575 2587 (manpage): fix missing escaped \- sign.
2576 2588
2577 2589 2004-11-30 *** Released version 0.6.5
2578 2590
2579 2591 2004-11-30 Fernando Perez <fperez@colorado.edu>
2580 2592
2581 2593 * IPython/Magic.py (Magic.magic_run): Fix bug in breakpoint
2582 2594 setting with -d option.
2583 2595
2584 2596 * setup.py (docfiles): Fix problem where the doc glob I was using
2585 2597 was COMPLETELY BROKEN. It was giving the right files by pure
2586 2598 accident, but failed once I tried to include ipython.el. Note:
2587 2599 glob() does NOT allow you to do exclusion on multiple endings!
2588 2600
2589 2601 2004-11-29 Fernando Perez <fperez@colorado.edu>
2590 2602
2591 2603 * IPython/usage.py (__doc__): cleaned up usage docstring, by using
2592 2604 the manpage as the source. Better formatting & consistency.
2593 2605
2594 2606 * IPython/Magic.py (magic_run): Added new -d option, to run
2595 2607 scripts under the control of the python pdb debugger. Note that
2596 2608 this required changing the %prun option -d to -D, to avoid a clash
2597 2609 (since %run must pass options to %prun, and getopt is too dumb to
2598 2610 handle options with string values with embedded spaces). Thanks
2599 2611 to a suggestion by Matthew Arnison <maffew-AT-cat.org.au>.
2600 2612 (magic_who_ls): added type matching to %who and %whos, so that one
2601 2613 can filter their output to only include variables of certain
2602 2614 types. Another suggestion by Matthew.
2603 2615 (magic_whos): Added memory summaries in kb and Mb for arrays.
2604 2616 (magic_who): Improve formatting (break lines every 9 vars).
2605 2617
2606 2618 2004-11-28 Fernando Perez <fperez@colorado.edu>
2607 2619
2608 2620 * IPython/Logger.py (Logger.log): Fix bug in syncing the input
2609 2621 cache when empty lines were present.
2610 2622
2611 2623 2004-11-24 Fernando Perez <fperez@colorado.edu>
2612 2624
2613 2625 * IPython/usage.py (__doc__): document the re-activated threading
2614 2626 options for WX and GTK.
2615 2627
2616 2628 2004-11-23 Fernando Perez <fperez@colorado.edu>
2617 2629
2618 2630 * IPython/Shell.py (start): Added Prabhu's big patch to reactivate
2619 2631 the -wthread and -gthread options, along with a new -tk one to try
2620 2632 and coordinate Tk threading with wx/gtk. The tk support is very
2621 2633 platform dependent, since it seems to require Tcl and Tk to be
2622 2634 built with threads (Fedora1/2 appears NOT to have it, but in
2623 2635 Prabhu's Debian boxes it works OK). But even with some Tk
2624 2636 limitations, this is a great improvement.
2625 2637
2626 2638 * IPython/Prompts.py (prompt_specials_color): Added \t for time
2627 2639 info in user prompts. Patch by Prabhu.
2628 2640
2629 2641 2004-11-18 Fernando Perez <fperez@colorado.edu>
2630 2642
2631 2643 * IPython/genutils.py (ask_yes_no): Add check for a max of 20
2632 2644 EOFErrors and bail, to avoid infinite loops if a non-terminating
2633 2645 file is fed into ipython. Patch submitted in issue 19 by user,
2634 2646 many thanks.
2635 2647
2636 2648 * IPython/iplib.py (InteractiveShell.handle_auto): do NOT trigger
2637 2649 autoquote/parens in continuation prompts, which can cause lots of
2638 2650 problems. Closes roundup issue 20.
2639 2651
2640 2652 2004-11-17 Fernando Perez <fperez@colorado.edu>
2641 2653
2642 2654 * debian/control (Build-Depends-Indep): Fix dpatch dependency,
2643 2655 reported as debian bug #280505. I'm not sure my local changelog
2644 2656 entry has the proper debian format (Jack?).
2645 2657
2646 2658 2004-11-08 *** Released version 0.6.4
2647 2659
2648 2660 2004-11-08 Fernando Perez <fperez@colorado.edu>
2649 2661
2650 2662 * IPython/iplib.py (init_readline): Fix exit message for Windows
2651 2663 when readline is active. Thanks to a report by Eric Jones
2652 2664 <eric-AT-enthought.com>.
2653 2665
2654 2666 2004-11-07 Fernando Perez <fperez@colorado.edu>
2655 2667
2656 2668 * IPython/genutils.py (page): Add a trap for OSError exceptions,
2657 2669 sometimes seen by win2k/cygwin users.
2658 2670
2659 2671 2004-11-06 Fernando Perez <fperez@colorado.edu>
2660 2672
2661 2673 * IPython/iplib.py (interact): Change the handling of %Exit from
2662 2674 trying to propagate a SystemExit to an internal ipython flag.
2663 2675 This is less elegant than using Python's exception mechanism, but
2664 2676 I can't get that to work reliably with threads, so under -pylab
2665 2677 %Exit was hanging IPython. Cross-thread exception handling is
2666 2678 really a bitch. Thaks to a bug report by Stephen Walton
2667 2679 <stephen.walton-AT-csun.edu>.
2668 2680
2669 2681 2004-11-04 Fernando Perez <fperez@colorado.edu>
2670 2682
2671 2683 * IPython/iplib.py (raw_input_original): store a pointer to the
2672 2684 true raw_input to harden against code which can modify it
2673 2685 (wx.py.PyShell does this and would otherwise crash ipython).
2674 2686 Thanks to a bug report by Jim Flowers <james.flowers-AT-lgx.com>.
2675 2687
2676 2688 * IPython/Shell.py (MTInteractiveShell.runsource): Cleaner fix for
2677 2689 Ctrl-C problem, which does not mess up the input line.
2678 2690
2679 2691 2004-11-03 Fernando Perez <fperez@colorado.edu>
2680 2692
2681 2693 * IPython/Release.py: Changed licensing to BSD, in all files.
2682 2694 (name): lowercase name for tarball/RPM release.
2683 2695
2684 2696 * IPython/OInspect.py (getdoc): wrap inspect.getdoc() safely for
2685 2697 use throughout ipython.
2686 2698
2687 2699 * IPython/Magic.py (Magic._ofind): Switch to using the new
2688 2700 OInspect.getdoc() function.
2689 2701
2690 2702 * IPython/Shell.py (sigint_handler): Hack to ignore the execution
2691 2703 of the line currently being canceled via Ctrl-C. It's extremely
2692 2704 ugly, but I don't know how to do it better (the problem is one of
2693 2705 handling cross-thread exceptions).
2694 2706
2695 2707 2004-10-28 Fernando Perez <fperez@colorado.edu>
2696 2708
2697 2709 * IPython/Shell.py (signal_handler): add signal handlers to trap
2698 2710 SIGINT and SIGSEGV in threaded code properly. Thanks to a bug
2699 2711 report by Francesc Alted.
2700 2712
2701 2713 2004-10-21 Fernando Perez <fperez@colorado.edu>
2702 2714
2703 2715 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Fix @
2704 2716 to % for pysh syntax extensions.
2705 2717
2706 2718 2004-10-09 Fernando Perez <fperez@colorado.edu>
2707 2719
2708 2720 * IPython/Magic.py (Magic.magic_whos): modify output of Numeric
2709 2721 arrays to print a more useful summary, without calling str(arr).
2710 2722 This avoids the problem of extremely lengthy computations which
2711 2723 occur if arr is large, and appear to the user as a system lockup
2712 2724 with 100% cpu activity. After a suggestion by Kristian Sandberg
2713 2725 <Kristian.Sandberg@colorado.edu>.
2714 2726 (Magic.__init__): fix bug in global magic escapes not being
2715 2727 correctly set.
2716 2728
2717 2729 2004-10-08 Fernando Perez <fperez@colorado.edu>
2718 2730
2719 2731 * IPython/Magic.py (__license__): change to absolute imports of
2720 2732 ipython's own internal packages, to start adapting to the absolute
2721 2733 import requirement of PEP-328.
2722 2734
2723 2735 * IPython/genutils.py (__author__): Fix coding to utf-8 on all
2724 2736 files, and standardize author/license marks through the Release
2725 2737 module instead of having per/file stuff (except for files with
2726 2738 particular licenses, like the MIT/PSF-licensed codes).
2727 2739
2728 2740 * IPython/Debugger.py: remove dead code for python 2.1
2729 2741
2730 2742 2004-10-04 Fernando Perez <fperez@colorado.edu>
2731 2743
2732 2744 * IPython/iplib.py (ipmagic): New function for accessing magics
2733 2745 via a normal python function call.
2734 2746
2735 2747 * IPython/Magic.py (Magic.magic_magic): Change the magic escape
2736 2748 from '@' to '%', to accomodate the new @decorator syntax of python
2737 2749 2.4.
2738 2750
2739 2751 2004-09-29 Fernando Perez <fperez@colorado.edu>
2740 2752
2741 2753 * IPython/Shell.py (MatplotlibShellBase.use): Added a wrapper to
2742 2754 matplotlib.use to prevent running scripts which try to switch
2743 2755 interactive backends from within ipython. This will just crash
2744 2756 the python interpreter, so we can't allow it (but a detailed error
2745 2757 is given to the user).
2746 2758
2747 2759 2004-09-28 Fernando Perez <fperez@colorado.edu>
2748 2760
2749 2761 * IPython/Shell.py (MatplotlibShellBase.mplot_exec):
2750 2762 matplotlib-related fixes so that using @run with non-matplotlib
2751 2763 scripts doesn't pop up spurious plot windows. This requires
2752 2764 matplotlib >= 0.63, where I had to make some changes as well.
2753 2765
2754 2766 * IPython/ipmaker.py (make_IPython): update version requirement to
2755 2767 python 2.2.
2756 2768
2757 2769 * IPython/iplib.py (InteractiveShell.mainloop): Add an optional
2758 2770 banner arg for embedded customization.
2759 2771
2760 2772 * IPython/Magic.py (Magic.__init__): big cleanup to remove all
2761 2773 explicit uses of __IP as the IPython's instance name. Now things
2762 2774 are properly handled via the shell.name value. The actual code
2763 2775 is a bit ugly b/c I'm doing it via a global in Magic.py, but this
2764 2776 is much better than before. I'll clean things completely when the
2765 2777 magic stuff gets a real overhaul.
2766 2778
2767 2779 * ipython.1: small fixes, sent in by Jack Moffit. He also sent in
2768 2780 minor changes to debian dir.
2769 2781
2770 2782 * IPython/iplib.py (InteractiveShell.__init__): Fix adding a
2771 2783 pointer to the shell itself in the interactive namespace even when
2772 2784 a user-supplied dict is provided. This is needed for embedding
2773 2785 purposes (found by tests with Michel Sanner).
2774 2786
2775 2787 2004-09-27 Fernando Perez <fperez@colorado.edu>
2776 2788
2777 2789 * IPython/UserConfig/ipythonrc: remove []{} from
2778 2790 readline_remove_delims, so that things like [modname.<TAB> do
2779 2791 proper completion. This disables [].TAB, but that's a less common
2780 2792 case than module names in list comprehensions, for example.
2781 2793 Thanks to a report by Andrea Riciputi.
2782 2794
2783 2795 2004-09-09 Fernando Perez <fperez@colorado.edu>
2784 2796
2785 2797 * IPython/Shell.py (IPShellGTK.mainloop): reorder to avoid
2786 2798 blocking problems in win32 and osx. Fix by John.
2787 2799
2788 2800 2004-09-08 Fernando Perez <fperez@colorado.edu>
2789 2801
2790 2802 * IPython/Shell.py (IPShellWX.OnInit): Fix output redirection bug
2791 2803 for Win32 and OSX. Fix by John Hunter.
2792 2804
2793 2805 2004-08-30 *** Released version 0.6.3
2794 2806
2795 2807 2004-08-30 Fernando Perez <fperez@colorado.edu>
2796 2808
2797 2809 * setup.py (isfile): Add manpages to list of dependent files to be
2798 2810 updated.
2799 2811
2800 2812 2004-08-27 Fernando Perez <fperez@colorado.edu>
2801 2813
2802 2814 * IPython/Shell.py (start): I've disabled -wthread and -gthread
2803 2815 for now. They don't really work with standalone WX/GTK code
2804 2816 (though matplotlib IS working fine with both of those backends).
2805 2817 This will neeed much more testing. I disabled most things with
2806 2818 comments, so turning it back on later should be pretty easy.
2807 2819
2808 2820 * IPython/iplib.py (InteractiveShell.__init__): Fix accidental
2809 2821 autocalling of expressions like r'foo', by modifying the line
2810 2822 split regexp. Closes
2811 2823 http://www.scipy.net/roundup/ipython/issue18, reported by Nicholas
2812 2824 Riley <ipythonbugs-AT-sabi.net>.
2813 2825 (InteractiveShell.mainloop): honor --nobanner with banner
2814 2826 extensions.
2815 2827
2816 2828 * IPython/Shell.py: Significant refactoring of all classes, so
2817 2829 that we can really support ALL matplotlib backends and threading
2818 2830 models (John spotted a bug with Tk which required this). Now we
2819 2831 should support single-threaded, WX-threads and GTK-threads, both
2820 2832 for generic code and for matplotlib.
2821 2833
2822 2834 * IPython/ipmaker.py (__call__): Changed -mpthread option to
2823 2835 -pylab, to simplify things for users. Will also remove the pylab
2824 2836 profile, since now all of matplotlib configuration is directly
2825 2837 handled here. This also reduces startup time.
2826 2838
2827 2839 * IPython/Shell.py (IPShellGTK.run): Fixed bug where mainloop() of
2828 2840 shell wasn't being correctly called. Also in IPShellWX.
2829 2841
2830 2842 * IPython/iplib.py (InteractiveShell.__init__): Added option to
2831 2843 fine-tune banner.
2832 2844
2833 2845 * IPython/numutils.py (spike): Deprecate these spike functions,
2834 2846 delete (long deprecated) gnuplot_exec handler.
2835 2847
2836 2848 2004-08-26 Fernando Perez <fperez@colorado.edu>
2837 2849
2838 2850 * ipython.1: Update for threading options, plus some others which
2839 2851 were missing.
2840 2852
2841 2853 * IPython/ipmaker.py (__call__): Added -wthread option for
2842 2854 wxpython thread handling. Make sure threading options are only
2843 2855 valid at the command line.
2844 2856
2845 2857 * scripts/ipython: moved shell selection into a factory function
2846 2858 in Shell.py, to keep the starter script to a minimum.
2847 2859
2848 2860 2004-08-25 Fernando Perez <fperez@colorado.edu>
2849 2861
2850 2862 * IPython/Shell.py (IPShellWX.wxexit): fixes to WX threading, by
2851 2863 John. Along with some recent changes he made to matplotlib, the
2852 2864 next versions of both systems should work very well together.
2853 2865
2854 2866 2004-08-24 Fernando Perez <fperez@colorado.edu>
2855 2867
2856 2868 * IPython/Magic.py (Magic.magic_prun): cleanup some dead code. I
2857 2869 tried to switch the profiling to using hotshot, but I'm getting
2858 2870 strange errors from prof.runctx() there. I may be misreading the
2859 2871 docs, but it looks weird. For now the profiling code will
2860 2872 continue to use the standard profiler.
2861 2873
2862 2874 2004-08-23 Fernando Perez <fperez@colorado.edu>
2863 2875
2864 2876 * IPython/Shell.py (IPShellWX.__init__): Improvements to the WX
2865 2877 threaded shell, by John Hunter. It's not quite ready yet, but
2866 2878 close.
2867 2879
2868 2880 2004-08-22 Fernando Perez <fperez@colorado.edu>
2869 2881
2870 2882 * IPython/iplib.py (InteractiveShell.interact): tab cleanups, also
2871 2883 in Magic and ultraTB.
2872 2884
2873 2885 * ipython.1: document threading options in manpage.
2874 2886
2875 2887 * scripts/ipython: Changed name of -thread option to -gthread,
2876 2888 since this is GTK specific. I want to leave the door open for a
2877 2889 -wthread option for WX, which will most likely be necessary. This
2878 2890 change affects usage and ipmaker as well.
2879 2891
2880 2892 * IPython/Shell.py (matplotlib_shell): Add a factory function to
2881 2893 handle the matplotlib shell issues. Code by John Hunter
2882 2894 <jdhunter-AT-nitace.bsd.uchicago.edu>.
2883 2895 (IPShellMatplotlibWX.__init__): Rudimentary WX support. It's
2884 2896 broken (and disabled for end users) for now, but it puts the
2885 2897 infrastructure in place.
2886 2898
2887 2899 2004-08-21 Fernando Perez <fperez@colorado.edu>
2888 2900
2889 2901 * ipythonrc-pylab: Add matplotlib support.
2890 2902
2891 2903 * matplotlib_config.py: new files for matplotlib support, part of
2892 2904 the pylab profile.
2893 2905
2894 2906 * IPython/usage.py (__doc__): documented the threading options.
2895 2907
2896 2908 2004-08-20 Fernando Perez <fperez@colorado.edu>
2897 2909
2898 2910 * ipython: Modified the main calling routine to handle the -thread
2899 2911 and -mpthread options. This needs to be done as a top-level hack,
2900 2912 because it determines which class to instantiate for IPython
2901 2913 itself.
2902 2914
2903 2915 * IPython/Shell.py (MTInteractiveShell.__init__): New set of
2904 2916 classes to support multithreaded GTK operation without blocking,
2905 2917 and matplotlib with all backends. This is a lot of still very
2906 2918 experimental code, and threads are tricky. So it may still have a
2907 2919 few rough edges... This code owes a lot to
2908 2920 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by
2909 2921 Brian # McErlean and John Finlay, to Antoon Pardon for fixes, and
2910 2922 to John Hunter for all the matplotlib work.
2911 2923
2912 2924 * IPython/ipmaker.py (__call__): Added -thread and -mpthread
2913 2925 options for gtk thread and matplotlib support.
2914 2926
2915 2927 2004-08-16 Fernando Perez <fperez@colorado.edu>
2916 2928
2917 2929 * IPython/iplib.py (InteractiveShell.__init__): don't trigger
2918 2930 autocall for things like p*q,p/q,p+q,p-q, when p is callable. Bug
2919 2931 reported by Stephen Walton <stephen.walton-AT-csun.edu>.
2920 2932
2921 2933 2004-08-11 Fernando Perez <fperez@colorado.edu>
2922 2934
2923 2935 * setup.py (isfile): Fix build so documentation gets updated for
2924 2936 rpms (it was only done for .tgz builds).
2925 2937
2926 2938 2004-08-10 Fernando Perez <fperez@colorado.edu>
2927 2939
2928 2940 * genutils.py (Term): Fix misspell of stdin stream (sin->cin).
2929 2941
2930 2942 * iplib.py : Silence syntax error exceptions in tab-completion.
2931 2943
2932 2944 2004-08-05 Fernando Perez <fperez@colorado.edu>
2933 2945
2934 2946 * IPython/Prompts.py (Prompt2.set_colors): Fix incorrectly set
2935 2947 'color off' mark for continuation prompts. This was causing long
2936 2948 continuation lines to mis-wrap.
2937 2949
2938 2950 2004-08-01 Fernando Perez <fperez@colorado.edu>
2939 2951
2940 2952 * IPython/ipmaker.py (make_IPython): Allow the shell class used
2941 2953 for building ipython to be a parameter. All this is necessary
2942 2954 right now to have a multithreaded version, but this insane
2943 2955 non-design will be cleaned up soon. For now, it's a hack that
2944 2956 works.
2945 2957
2946 2958 * IPython/Shell.py (IPShell.__init__): Stop using mutable default
2947 2959 args in various places. No bugs so far, but it's a dangerous
2948 2960 practice.
2949 2961
2950 2962 2004-07-31 Fernando Perez <fperez@colorado.edu>
2951 2963
2952 2964 * IPython/iplib.py (complete): ignore SyntaxError exceptions to
2953 2965 fix completion of files with dots in their names under most
2954 2966 profiles (pysh was OK because the completion order is different).
2955 2967
2956 2968 2004-07-27 Fernando Perez <fperez@colorado.edu>
2957 2969
2958 2970 * IPython/iplib.py (InteractiveShell.__init__): build dict of
2959 2971 keywords manually, b/c the one in keyword.py was removed in python
2960 2972 2.4. Patch by Anakim Border <aborder-AT-users.sourceforge.net>.
2961 2973 This is NOT a bug under python 2.3 and earlier.
2962 2974
2963 2975 2004-07-26 Fernando Perez <fperez@colorado.edu>
2964 2976
2965 2977 * IPython/ultraTB.py (VerboseTB.text): Add another
2966 2978 linecache.checkcache() call to try to prevent inspect.py from
2967 2979 crashing under python 2.3. I think this fixes
2968 2980 http://www.scipy.net/roundup/ipython/issue17.
2969 2981
2970 2982 2004-07-26 *** Released version 0.6.2
2971 2983
2972 2984 2004-07-26 Fernando Perez <fperez@colorado.edu>
2973 2985
2974 2986 * IPython/Magic.py (Magic.magic_cd): Fix bug where 'cd -N' would
2975 2987 fail for any number.
2976 2988 (Magic.magic_bookmark): Fix bug where 'bookmark -l' would fail for
2977 2989 empty bookmarks.
2978 2990
2979 2991 2004-07-26 *** Released version 0.6.1
2980 2992
2981 2993 2004-07-26 Fernando Perez <fperez@colorado.edu>
2982 2994
2983 2995 * ipython_win_post_install.py (run): Added pysh shortcut for Windows.
2984 2996
2985 2997 * IPython/iplib.py (protect_filename): Applied Ville's patch for
2986 2998 escaping '()[]{}' in filenames.
2987 2999
2988 3000 * IPython/Magic.py (shlex_split): Fix handling of '*' and '?' for
2989 3001 Python 2.2 users who lack a proper shlex.split.
2990 3002
2991 3003 2004-07-19 Fernando Perez <fperez@colorado.edu>
2992 3004
2993 3005 * IPython/iplib.py (InteractiveShell.init_readline): Add support
2994 3006 for reading readline's init file. I follow the normal chain:
2995 3007 $INPUTRC is honored, otherwise ~/.inputrc is used. Thanks to a
2996 3008 report by Mike Heeter. This closes
2997 3009 http://www.scipy.net/roundup/ipython/issue16.
2998 3010
2999 3011 2004-07-18 Fernando Perez <fperez@colorado.edu>
3000 3012
3001 3013 * IPython/iplib.py (__init__): Add better handling of '\' under
3002 3014 Win32 for filenames. After a patch by Ville.
3003 3015
3004 3016 2004-07-17 Fernando Perez <fperez@colorado.edu>
3005 3017
3006 3018 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3007 3019 autocalling would be triggered for 'foo is bar' if foo is
3008 3020 callable. I also cleaned up the autocall detection code to use a
3009 3021 regexp, which is faster. Bug reported by Alexander Schmolck.
3010 3022
3011 3023 * IPython/Magic.py (Magic.magic_pinfo): Fix bug where strings with
3012 3024 '?' in them would confuse the help system. Reported by Alex
3013 3025 Schmolck.
3014 3026
3015 3027 2004-07-16 Fernando Perez <fperez@colorado.edu>
3016 3028
3017 3029 * IPython/GnuplotInteractive.py (__all__): added plot2.
3018 3030
3019 3031 * IPython/Gnuplot2.py (Gnuplot.plot2): added new function for
3020 3032 plotting dictionaries, lists or tuples of 1d arrays.
3021 3033
3022 3034 * IPython/Magic.py (Magic.magic_hist): small clenaups and
3023 3035 optimizations.
3024 3036
3025 3037 * IPython/iplib.py:Remove old Changelog info for cleanup. This is
3026 3038 the information which was there from Janko's original IPP code:
3027 3039
3028 3040 03.05.99 20:53 porto.ifm.uni-kiel.de
3029 3041 --Started changelog.
3030 3042 --make clear do what it say it does
3031 3043 --added pretty output of lines from inputcache
3032 3044 --Made Logger a mixin class, simplifies handling of switches
3033 3045 --Added own completer class. .string<TAB> expands to last history
3034 3046 line which starts with string. The new expansion is also present
3035 3047 with Ctrl-r from the readline library. But this shows, who this
3036 3048 can be done for other cases.
3037 3049 --Added convention that all shell functions should accept a
3038 3050 parameter_string This opens the door for different behaviour for
3039 3051 each function. @cd is a good example of this.
3040 3052
3041 3053 04.05.99 12:12 porto.ifm.uni-kiel.de
3042 3054 --added logfile rotation
3043 3055 --added new mainloop method which freezes first the namespace
3044 3056
3045 3057 07.05.99 21:24 porto.ifm.uni-kiel.de
3046 3058 --added the docreader classes. Now there is a help system.
3047 3059 -This is only a first try. Currently it's not easy to put new
3048 3060 stuff in the indices. But this is the way to go. Info would be
3049 3061 better, but HTML is every where and not everybody has an info
3050 3062 system installed and it's not so easy to change html-docs to info.
3051 3063 --added global logfile option
3052 3064 --there is now a hook for object inspection method pinfo needs to
3053 3065 be provided for this. Can be reached by two '??'.
3054 3066
3055 3067 08.05.99 20:51 porto.ifm.uni-kiel.de
3056 3068 --added a README
3057 3069 --bug in rc file. Something has changed so functions in the rc
3058 3070 file need to reference the shell and not self. Not clear if it's a
3059 3071 bug or feature.
3060 3072 --changed rc file for new behavior
3061 3073
3062 3074 2004-07-15 Fernando Perez <fperez@colorado.edu>
3063 3075
3064 3076 * IPython/Logger.py (Logger.log): fixed recent bug where the input
3065 3077 cache was falling out of sync in bizarre manners when multi-line
3066 3078 input was present. Minor optimizations and cleanup.
3067 3079
3068 3080 (Logger): Remove old Changelog info for cleanup. This is the
3069 3081 information which was there from Janko's original code:
3070 3082
3071 3083 Changes to Logger: - made the default log filename a parameter
3072 3084
3073 3085 - put a check for lines beginning with !@? in log(). Needed
3074 3086 (even if the handlers properly log their lines) for mid-session
3075 3087 logging activation to work properly. Without this, lines logged
3076 3088 in mid session, which get read from the cache, would end up
3077 3089 'bare' (with !@? in the open) in the log. Now they are caught
3078 3090 and prepended with a #.
3079 3091
3080 3092 * IPython/iplib.py (InteractiveShell.init_readline): added check
3081 3093 in case MagicCompleter fails to be defined, so we don't crash.
3082 3094
3083 3095 2004-07-13 Fernando Perez <fperez@colorado.edu>
3084 3096
3085 3097 * IPython/Gnuplot2.py (Gnuplot.hardcopy): add automatic generation
3086 3098 of EPS if the requested filename ends in '.eps'.
3087 3099
3088 3100 2004-07-04 Fernando Perez <fperez@colorado.edu>
3089 3101
3090 3102 * IPython/iplib.py (InteractiveShell.handle_shell_escape): Fix
3091 3103 escaping of quotes when calling the shell.
3092 3104
3093 3105 2004-07-02 Fernando Perez <fperez@colorado.edu>
3094 3106
3095 3107 * IPython/Prompts.py (CachedOutput.update): Fix problem with
3096 3108 gettext not working because we were clobbering '_'. Fixes
3097 3109 http://www.scipy.net/roundup/ipython/issue6.
3098 3110
3099 3111 2004-07-01 Fernando Perez <fperez@colorado.edu>
3100 3112
3101 3113 * IPython/Magic.py (Magic.magic_cd): integrated bookmark handling
3102 3114 into @cd. Patch by Ville.
3103 3115
3104 3116 * IPython/iplib.py (InteractiveShell.post_config_initialization):
3105 3117 new function to store things after ipmaker runs. Patch by Ville.
3106 3118 Eventually this will go away once ipmaker is removed and the class
3107 3119 gets cleaned up, but for now it's ok. Key functionality here is
3108 3120 the addition of the persistent storage mechanism, a dict for
3109 3121 keeping data across sessions (for now just bookmarks, but more can
3110 3122 be implemented later).
3111 3123
3112 3124 * IPython/Magic.py (Magic.magic_bookmark): New bookmark system,
3113 3125 persistent across sections. Patch by Ville, I modified it
3114 3126 soemwhat to allow bookmarking arbitrary dirs other than CWD. Also
3115 3127 added a '-l' option to list all bookmarks.
3116 3128
3117 3129 * IPython/iplib.py (InteractiveShell.atexit_operations): new
3118 3130 center for cleanup. Registered with atexit.register(). I moved
3119 3131 here the old exit_cleanup(). After a patch by Ville.
3120 3132
3121 3133 * IPython/Magic.py (get_py_filename): added '~' to the accepted
3122 3134 characters in the hacked shlex_split for python 2.2.
3123 3135
3124 3136 * IPython/iplib.py (file_matches): more fixes to filenames with
3125 3137 whitespace in them. It's not perfect, but limitations in python's
3126 3138 readline make it impossible to go further.
3127 3139
3128 3140 2004-06-29 Fernando Perez <fperez@colorado.edu>
3129 3141
3130 3142 * IPython/iplib.py (file_matches): escape whitespace correctly in
3131 3143 filename completions. Bug reported by Ville.
3132 3144
3133 3145 2004-06-28 Fernando Perez <fperez@colorado.edu>
3134 3146
3135 3147 * IPython/ipmaker.py (__call__): Added per-profile histories. Now
3136 3148 the history file will be called 'history-PROFNAME' (or just
3137 3149 'history' if no profile is loaded). I was getting annoyed at
3138 3150 getting my Numerical work history clobbered by pysh sessions.
3139 3151
3140 3152 * IPython/iplib.py (InteractiveShell.__init__): Internal
3141 3153 getoutputerror() function so that we can honor the system_verbose
3142 3154 flag for _all_ system calls. I also added escaping of #
3143 3155 characters here to avoid confusing Itpl.
3144 3156
3145 3157 * IPython/Magic.py (shlex_split): removed call to shell in
3146 3158 parse_options and replaced it with shlex.split(). The annoying
3147 3159 part was that in Python 2.2, shlex.split() doesn't exist, so I had
3148 3160 to backport it from 2.3, with several frail hacks (the shlex
3149 3161 module is rather limited in 2.2). Thanks to a suggestion by Ville
3150 3162 Vainio <vivainio@kolumbus.fi>. For Python 2.3 there should be no
3151 3163 problem.
3152 3164
3153 3165 (Magic.magic_system_verbose): new toggle to print the actual
3154 3166 system calls made by ipython. Mainly for debugging purposes.
3155 3167
3156 3168 * IPython/GnuplotRuntime.py (gnu_out): fix bug for cygwin, which
3157 3169 doesn't support persistence. Reported (and fix suggested) by
3158 3170 Travis Caldwell <travis_caldwell2000@yahoo.com>.
3159 3171
3160 3172 2004-06-26 Fernando Perez <fperez@colorado.edu>
3161 3173
3162 3174 * IPython/Logger.py (Logger.log): fix to handle correctly empty
3163 3175 continue prompts.
3164 3176
3165 3177 * IPython/Extensions/InterpreterExec.py (pysh): moved the pysh()
3166 3178 function (basically a big docstring) and a few more things here to
3167 3179 speedup startup. pysh.py is now very lightweight. We want because
3168 3180 it gets execfile'd, while InterpreterExec gets imported, so
3169 3181 byte-compilation saves time.
3170 3182
3171 3183 2004-06-25 Fernando Perez <fperez@colorado.edu>
3172 3184
3173 3185 * IPython/Magic.py (Magic.magic_cd): Fixed to restore usage of 'cd
3174 3186 -NUM', which was recently broken.
3175 3187
3176 3188 * IPython/iplib.py (InteractiveShell.handle_shell_escape): allow !
3177 3189 in multi-line input (but not !!, which doesn't make sense there).
3178 3190
3179 3191 * IPython/UserConfig/ipythonrc: made autoindent on by default.
3180 3192 It's just too useful, and people can turn it off in the less
3181 3193 common cases where it's a problem.
3182 3194
3183 3195 2004-06-24 Fernando Perez <fperez@colorado.edu>
3184 3196
3185 3197 * IPython/iplib.py (InteractiveShell._prefilter): big change -
3186 3198 special syntaxes (like alias calling) is now allied in multi-line
3187 3199 input. This is still _very_ experimental, but it's necessary for
3188 3200 efficient shell usage combining python looping syntax with system
3189 3201 calls. For now it's restricted to aliases, I don't think it
3190 3202 really even makes sense to have this for magics.
3191 3203
3192 3204 2004-06-23 Fernando Perez <fperez@colorado.edu>
3193 3205
3194 3206 * IPython/Extensions/InterpreterExec.py (prefilter_shell): Added
3195 3207 $var=cmd <=> @sc var=cmd and $$var=cmd <=> @sc -l var=cmd.
3196 3208
3197 3209 * IPython/Magic.py (Magic.magic_rehashx): modified to handle
3198 3210 extensions under Windows (after code sent by Gary Bishop). The
3199 3211 extensions considered 'executable' are stored in IPython's rc
3200 3212 structure as win_exec_ext.
3201 3213
3202 3214 * IPython/genutils.py (shell): new function, like system() but
3203 3215 without return value. Very useful for interactive shell work.
3204 3216
3205 3217 * IPython/Magic.py (Magic.magic_unalias): New @unalias function to
3206 3218 delete aliases.
3207 3219
3208 3220 * IPython/iplib.py (InteractiveShell.alias_table_update): make
3209 3221 sure that the alias table doesn't contain python keywords.
3210 3222
3211 3223 2004-06-21 Fernando Perez <fperez@colorado.edu>
3212 3224
3213 3225 * IPython/Magic.py (Magic.magic_rehash): Fix crash when
3214 3226 non-existent items are found in $PATH. Reported by Thorsten.
3215 3227
3216 3228 2004-06-20 Fernando Perez <fperez@colorado.edu>
3217 3229
3218 3230 * IPython/iplib.py (complete): modified the completer so that the
3219 3231 order of priorities can be easily changed at runtime.
3220 3232
3221 3233 * IPython/Extensions/InterpreterExec.py (prefilter_shell):
3222 3234 Modified to auto-execute all lines beginning with '~', '/' or '.'.
3223 3235
3224 3236 * IPython/Magic.py (Magic.magic_sx): modified @sc and @sx to
3225 3237 expand Python variables prepended with $ in all system calls. The
3226 3238 same was done to InteractiveShell.handle_shell_escape. Now all
3227 3239 system access mechanisms (!, !!, @sc, @sx and aliases) allow the
3228 3240 expansion of python variables and expressions according to the
3229 3241 syntax of PEP-215 - http://www.python.org/peps/pep-0215.html.
3230 3242
3231 3243 Though PEP-215 has been rejected, a similar (but simpler) one
3232 3244 seems like it will go into Python 2.4, PEP-292 -
3233 3245 http://www.python.org/peps/pep-0292.html.
3234 3246
3235 3247 I'll keep the full syntax of PEP-215, since IPython has since the
3236 3248 start used Ka-Ping Yee's reference implementation discussed there
3237 3249 (Itpl), and I actually like the powerful semantics it offers.
3238 3250
3239 3251 In order to access normal shell variables, the $ has to be escaped
3240 3252 via an extra $. For example:
3241 3253
3242 3254 In [7]: PATH='a python variable'
3243 3255
3244 3256 In [8]: !echo $PATH
3245 3257 a python variable
3246 3258
3247 3259 In [9]: !echo $$PATH
3248 3260 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
3249 3261
3250 3262 (Magic.parse_options): escape $ so the shell doesn't evaluate
3251 3263 things prematurely.
3252 3264
3253 3265 * IPython/iplib.py (InteractiveShell.call_alias): added the
3254 3266 ability for aliases to expand python variables via $.
3255 3267
3256 3268 * IPython/Magic.py (Magic.magic_rehash): based on the new alias
3257 3269 system, now there's a @rehash/@rehashx pair of magics. These work
3258 3270 like the csh rehash command, and can be invoked at any time. They
3259 3271 build a table of aliases to everything in the user's $PATH
3260 3272 (@rehash uses everything, @rehashx is slower but only adds
3261 3273 executable files). With this, the pysh.py-based shell profile can
3262 3274 now simply call rehash upon startup, and full access to all
3263 3275 programs in the user's path is obtained.
3264 3276
3265 3277 * IPython/iplib.py (InteractiveShell.call_alias): The new alias
3266 3278 functionality is now fully in place. I removed the old dynamic
3267 3279 code generation based approach, in favor of a much lighter one
3268 3280 based on a simple dict. The advantage is that this allows me to
3269 3281 now have thousands of aliases with negligible cost (unthinkable
3270 3282 with the old system).
3271 3283
3272 3284 2004-06-19 Fernando Perez <fperez@colorado.edu>
3273 3285
3274 3286 * IPython/iplib.py (__init__): extended MagicCompleter class to
3275 3287 also complete (last in priority) on user aliases.
3276 3288
3277 3289 * IPython/Itpl.py (Itpl.__str__): fixed order of globals/locals in
3278 3290 call to eval.
3279 3291 (ItplNS.__init__): Added a new class which functions like Itpl,
3280 3292 but allows configuring the namespace for the evaluation to occur
3281 3293 in.
3282 3294
3283 3295 2004-06-18 Fernando Perez <fperez@colorado.edu>
3284 3296
3285 3297 * IPython/iplib.py (InteractiveShell.runcode): modify to print a
3286 3298 better message when 'exit' or 'quit' are typed (a common newbie
3287 3299 confusion).
3288 3300
3289 3301 * IPython/Magic.py (Magic.magic_colors): Added the runtime color
3290 3302 check for Windows users.
3291 3303
3292 3304 * IPython/iplib.py (InteractiveShell.user_setup): removed
3293 3305 disabling of colors for Windows. I'll test at runtime and issue a
3294 3306 warning if Gary's readline isn't found, as to nudge users to
3295 3307 download it.
3296 3308
3297 3309 2004-06-16 Fernando Perez <fperez@colorado.edu>
3298 3310
3299 3311 * IPython/genutils.py (Stream.__init__): changed to print errors
3300 3312 to sys.stderr. I had a circular dependency here. Now it's
3301 3313 possible to run ipython as IDLE's shell (consider this pre-alpha,
3302 3314 since true stdout things end up in the starting terminal instead
3303 3315 of IDLE's out).
3304 3316
3305 3317 * IPython/Prompts.py (Prompt2.set_colors): prevent crashes for
3306 3318 users who haven't # updated their prompt_in2 definitions. Remove
3307 3319 eventually.
3308 3320 (multiple_replace): added credit to original ASPN recipe.
3309 3321
3310 3322 2004-06-15 Fernando Perez <fperez@colorado.edu>
3311 3323
3312 3324 * IPython/iplib.py (InteractiveShell.__init__): add 'cp' to the
3313 3325 list of auto-defined aliases.
3314 3326
3315 3327 2004-06-13 Fernando Perez <fperez@colorado.edu>
3316 3328
3317 3329 * setup.py (scriptfiles): Don't trigger win_post_install unless an
3318 3330 install was really requested (so setup.py can be used for other
3319 3331 things under Windows).
3320 3332
3321 3333 2004-06-10 Fernando Perez <fperez@colorado.edu>
3322 3334
3323 3335 * IPython/Logger.py (Logger.create_log): Manually remove any old
3324 3336 backup, since os.remove may fail under Windows. Fixes bug
3325 3337 reported by Thorsten.
3326 3338
3327 3339 2004-06-09 Fernando Perez <fperez@colorado.edu>
3328 3340
3329 3341 * examples/example-embed.py: fixed all references to %n (replaced
3330 3342 with \\# for ps1/out prompts and with \\D for ps2 prompts). Done
3331 3343 for all examples and the manual as well.
3332 3344
3333 3345 2004-06-08 Fernando Perez <fperez@colorado.edu>
3334 3346
3335 3347 * IPython/Prompts.py (Prompt2.set_p_str): fixed all prompt
3336 3348 alignment and color management. All 3 prompt subsystems now
3337 3349 inherit from BasePrompt.
3338 3350
3339 3351 * tools/release: updates for windows installer build and tag rpms
3340 3352 with python version (since paths are fixed).
3341 3353
3342 3354 * IPython/UserConfig/ipythonrc: modified to use \# instead of %n,
3343 3355 which will become eventually obsolete. Also fixed the default
3344 3356 prompt_in2 to use \D, so at least new users start with the correct
3345 3357 defaults.
3346 3358 WARNING: Users with existing ipythonrc files will need to apply
3347 3359 this fix manually!
3348 3360
3349 3361 * setup.py: make windows installer (.exe). This is finally the
3350 3362 integration of an old patch by Cory Dodt <dodt-AT-fcoe.k12.ca.us>,
3351 3363 which I hadn't included because it required Python 2.3 (or recent
3352 3364 distutils).
3353 3365
3354 3366 * IPython/usage.py (__doc__): update docs (and manpage) to reflect
3355 3367 usage of new '\D' escape.
3356 3368
3357 3369 * IPython/Prompts.py (ROOT_SYMBOL): Small fix for Windows (which
3358 3370 lacks os.getuid())
3359 3371 (CachedOutput.set_colors): Added the ability to turn coloring
3360 3372 on/off with @colors even for manually defined prompt colors. It
3361 3373 uses a nasty global, but it works safely and via the generic color
3362 3374 handling mechanism.
3363 3375 (Prompt2.__init__): Introduced new escape '\D' for continuation
3364 3376 prompts. It represents the counter ('\#') as dots.
3365 3377 *** NOTE *** THIS IS A BACKWARDS-INCOMPATIBLE CHANGE. Users will
3366 3378 need to update their ipythonrc files and replace '%n' with '\D' in
3367 3379 their prompt_in2 settings everywhere. Sorry, but there's
3368 3380 otherwise no clean way to get all prompts to properly align. The
3369 3381 ipythonrc shipped with IPython has been updated.
3370 3382
3371 3383 2004-06-07 Fernando Perez <fperez@colorado.edu>
3372 3384
3373 3385 * setup.py (isfile): Pass local_icons option to latex2html, so the
3374 3386 resulting HTML file is self-contained. Thanks to
3375 3387 dryice-AT-liu.com.cn for the tip.
3376 3388
3377 3389 * pysh.py: I created a new profile 'shell', which implements a
3378 3390 _rudimentary_ IPython-based shell. This is in NO WAY a realy
3379 3391 system shell, nor will it become one anytime soon. It's mainly
3380 3392 meant to illustrate the use of the new flexible bash-like prompts.
3381 3393 I guess it could be used by hardy souls for true shell management,
3382 3394 but it's no tcsh/bash... pysh.py is loaded by the 'shell'
3383 3395 profile. This uses the InterpreterExec extension provided by
3384 3396 W.J. van der Laan <gnufnork-AT-hetdigitalegat.nl>
3385 3397
3386 3398 * IPython/Prompts.py (PromptOut.__str__): now it will correctly
3387 3399 auto-align itself with the length of the previous input prompt
3388 3400 (taking into account the invisible color escapes).
3389 3401 (CachedOutput.__init__): Large restructuring of this class. Now
3390 3402 all three prompts (primary1, primary2, output) are proper objects,
3391 3403 managed by the 'parent' CachedOutput class. The code is still a
3392 3404 bit hackish (all prompts share state via a pointer to the cache),
3393 3405 but it's overall far cleaner than before.
3394 3406
3395 3407 * IPython/genutils.py (getoutputerror): modified to add verbose,
3396 3408 debug and header options. This makes the interface of all getout*
3397 3409 functions uniform.
3398 3410 (SystemExec.getoutputerror): added getoutputerror to SystemExec.
3399 3411
3400 3412 * IPython/Magic.py (Magic.default_option): added a function to
3401 3413 allow registering default options for any magic command. This
3402 3414 makes it easy to have profiles which customize the magics globally
3403 3415 for a certain use. The values set through this function are
3404 3416 picked up by the parse_options() method, which all magics should
3405 3417 use to parse their options.
3406 3418
3407 3419 * IPython/genutils.py (warn): modified the warnings framework to
3408 3420 use the Term I/O class. I'm trying to slowly unify all of
3409 3421 IPython's I/O operations to pass through Term.
3410 3422
3411 3423 * IPython/Prompts.py (Prompt2._str_other): Added functionality in
3412 3424 the secondary prompt to correctly match the length of the primary
3413 3425 one for any prompt. Now multi-line code will properly line up
3414 3426 even for path dependent prompts, such as the new ones available
3415 3427 via the prompt_specials.
3416 3428
3417 3429 2004-06-06 Fernando Perez <fperez@colorado.edu>
3418 3430
3419 3431 * IPython/Prompts.py (prompt_specials): Added the ability to have
3420 3432 bash-like special sequences in the prompts, which get
3421 3433 automatically expanded. Things like hostname, current working
3422 3434 directory and username are implemented already, but it's easy to
3423 3435 add more in the future. Thanks to a patch by W.J. van der Laan
3424 3436 <gnufnork-AT-hetdigitalegat.nl>
3425 3437 (prompt_specials): Added color support for prompt strings, so
3426 3438 users can define arbitrary color setups for their prompts.
3427 3439
3428 3440 2004-06-05 Fernando Perez <fperez@colorado.edu>
3429 3441
3430 3442 * IPython/genutils.py (Term.reopen_all): Added Windows-specific
3431 3443 code to load Gary Bishop's readline and configure it
3432 3444 automatically. Thanks to Gary for help on this.
3433 3445
3434 3446 2004-06-01 Fernando Perez <fperez@colorado.edu>
3435 3447
3436 3448 * IPython/Logger.py (Logger.create_log): fix bug for logging
3437 3449 with no filename (previous fix was incomplete).
3438 3450
3439 3451 2004-05-25 Fernando Perez <fperez@colorado.edu>
3440 3452
3441 3453 * IPython/Magic.py (Magic.parse_options): fix bug where naked
3442 3454 parens would get passed to the shell.
3443 3455
3444 3456 2004-05-20 Fernando Perez <fperez@colorado.edu>
3445 3457
3446 3458 * IPython/Magic.py (Magic.magic_prun): changed default profile
3447 3459 sort order to 'time' (the more common profiling need).
3448 3460
3449 3461 * IPython/OInspect.py (Inspector.pinfo): flush the inspect cache
3450 3462 so that source code shown is guaranteed in sync with the file on
3451 3463 disk (also changed in psource). Similar fix to the one for
3452 3464 ultraTB on 2004-05-06. Thanks to a bug report by Yann Le Du
3453 3465 <yann.ledu-AT-noos.fr>.
3454 3466
3455 3467 * IPython/Magic.py (Magic.parse_options): Fixed bug where commands
3456 3468 with a single option would not be correctly parsed. Closes
3457 3469 http://www.scipy.net/roundup/ipython/issue14. This bug had been
3458 3470 introduced in 0.6.0 (on 2004-05-06).
3459 3471
3460 3472 2004-05-13 *** Released version 0.6.0
3461 3473
3462 3474 2004-05-13 Fernando Perez <fperez@colorado.edu>
3463 3475
3464 3476 * debian/: Added debian/ directory to CVS, so that debian support
3465 3477 is publicly accessible. The debian package is maintained by Jack
3466 3478 Moffit <jack-AT-xiph.org>.
3467 3479
3468 3480 * Documentation: included the notes about an ipython-based system
3469 3481 shell (the hypothetical 'pysh') into the new_design.pdf document,
3470 3482 so that these ideas get distributed to users along with the
3471 3483 official documentation.
3472 3484
3473 3485 2004-05-10 Fernando Perez <fperez@colorado.edu>
3474 3486
3475 3487 * IPython/Logger.py (Logger.create_log): fix recently introduced
3476 3488 bug (misindented line) where logstart would fail when not given an
3477 3489 explicit filename.
3478 3490
3479 3491 2004-05-09 Fernando Perez <fperez@colorado.edu>
3480 3492
3481 3493 * IPython/Magic.py (Magic.parse_options): skip system call when
3482 3494 there are no options to look for. Faster, cleaner for the common
3483 3495 case.
3484 3496
3485 3497 * Documentation: many updates to the manual: describing Windows
3486 3498 support better, Gnuplot updates, credits, misc small stuff. Also
3487 3499 updated the new_design doc a bit.
3488 3500
3489 3501 2004-05-06 *** Released version 0.6.0.rc1
3490 3502
3491 3503 2004-05-06 Fernando Perez <fperez@colorado.edu>
3492 3504
3493 3505 * IPython/ultraTB.py (ListTB.text): modified a ton of string +=
3494 3506 operations to use the vastly more efficient list/''.join() method.
3495 3507 (FormattedTB.text): Fix
3496 3508 http://www.scipy.net/roundup/ipython/issue12 - exception source
3497 3509 extract not updated after reload. Thanks to Mike Salib
3498 3510 <msalib-AT-mit.edu> for pinning the source of the problem.
3499 3511 Fortunately, the solution works inside ipython and doesn't require
3500 3512 any changes to python proper.
3501 3513
3502 3514 * IPython/Magic.py (Magic.parse_options): Improved to process the
3503 3515 argument list as a true shell would (by actually using the
3504 3516 underlying system shell). This way, all @magics automatically get
3505 3517 shell expansion for variables. Thanks to a comment by Alex
3506 3518 Schmolck.
3507 3519
3508 3520 2004-04-04 Fernando Perez <fperez@colorado.edu>
3509 3521
3510 3522 * IPython/iplib.py (InteractiveShell.interact): Added a special
3511 3523 trap for a debugger quit exception, which is basically impossible
3512 3524 to handle by normal mechanisms, given what pdb does to the stack.
3513 3525 This fixes a crash reported by <fgibbons-AT-llama.med.harvard.edu>.
3514 3526
3515 3527 2004-04-03 Fernando Perez <fperez@colorado.edu>
3516 3528
3517 3529 * IPython/genutils.py (Term): Standardized the names of the Term
3518 3530 class streams to cin/cout/cerr, following C++ naming conventions
3519 3531 (I can't use in/out/err because 'in' is not a valid attribute
3520 3532 name).
3521 3533
3522 3534 * IPython/iplib.py (InteractiveShell.interact): don't increment
3523 3535 the prompt if there's no user input. By Daniel 'Dang' Griffith
3524 3536 <pythondev-dang-AT-lazytwinacres.net>, after a suggestion from
3525 3537 Francois Pinard.
3526 3538
3527 3539 2004-04-02 Fernando Perez <fperez@colorado.edu>
3528 3540
3529 3541 * IPython/genutils.py (Stream.__init__): Modified to survive at
3530 3542 least importing in contexts where stdin/out/err aren't true file
3531 3543 objects, such as PyCrust (they lack fileno() and mode). However,
3532 3544 the recovery facilities which rely on these things existing will
3533 3545 not work.
3534 3546
3535 3547 2004-04-01 Fernando Perez <fperez@colorado.edu>
3536 3548
3537 3549 * IPython/Magic.py (Magic.magic_sx): modified (as well as @sc) to
3538 3550 use the new getoutputerror() function, so it properly
3539 3551 distinguishes stdout/err.
3540 3552
3541 3553 * IPython/genutils.py (getoutputerror): added a function to
3542 3554 capture separately the standard output and error of a command.
3543 3555 After a comment from dang on the mailing lists. This code is
3544 3556 basically a modified version of commands.getstatusoutput(), from
3545 3557 the standard library.
3546 3558
3547 3559 * IPython/iplib.py (InteractiveShell.handle_shell_escape): added
3548 3560 '!!' as a special syntax (shorthand) to access @sx.
3549 3561
3550 3562 * IPython/Magic.py (Magic.magic_sx): new magic, to execute a shell
3551 3563 command and return its output as a list split on '\n'.
3552 3564
3553 3565 2004-03-31 Fernando Perez <fperez@colorado.edu>
3554 3566
3555 3567 * IPython/FakeModule.py (FakeModule.__init__): added __nonzero__
3556 3568 method to dictionaries used as FakeModule instances if they lack
3557 3569 it. At least pydoc in python2.3 breaks for runtime-defined
3558 3570 functions without this hack. At some point I need to _really_
3559 3571 understand what FakeModule is doing, because it's a gross hack.
3560 3572 But it solves Arnd's problem for now...
3561 3573
3562 3574 2004-02-27 Fernando Perez <fperez@colorado.edu>
3563 3575
3564 3576 * IPython/Logger.py (Logger.create_log): Fix bug where 'rotate'
3565 3577 mode would behave erratically. Also increased the number of
3566 3578 possible logs in rotate mod to 999. Thanks to Rod Holland
3567 3579 <rhh@StructureLABS.com> for the report and fixes.
3568 3580
3569 3581 2004-02-26 Fernando Perez <fperez@colorado.edu>
3570 3582
3571 3583 * IPython/genutils.py (page): Check that the curses module really
3572 3584 has the initscr attribute before trying to use it. For some
3573 3585 reason, the Solaris curses module is missing this. I think this
3574 3586 should be considered a Solaris python bug, but I'm not sure.
3575 3587
3576 3588 2004-01-17 Fernando Perez <fperez@colorado.edu>
3577 3589
3578 3590 * IPython/genutils.py (Stream.__init__): Changes to try to make
3579 3591 ipython robust against stdin/out/err being closed by the user.
3580 3592 This is 'user error' (and blocks a normal python session, at least
3581 3593 the stdout case). However, Ipython should be able to survive such
3582 3594 instances of abuse as gracefully as possible. To simplify the
3583 3595 coding and maintain compatibility with Gary Bishop's Term
3584 3596 contributions, I've made use of classmethods for this. I think
3585 3597 this introduces a dependency on python 2.2.
3586 3598
3587 3599 2004-01-13 Fernando Perez <fperez@colorado.edu>
3588 3600
3589 3601 * IPython/numutils.py (exp_safe): simplified the code a bit and
3590 3602 removed the need for importing the kinds module altogether.
3591 3603
3592 3604 2004-01-06 Fernando Perez <fperez@colorado.edu>
3593 3605
3594 3606 * IPython/Magic.py (Magic.magic_sc): Made the shell capture system
3595 3607 a magic function instead, after some community feedback. No
3596 3608 special syntax will exist for it, but its name is deliberately
3597 3609 very short.
3598 3610
3599 3611 2003-12-20 Fernando Perez <fperez@colorado.edu>
3600 3612
3601 3613 * IPython/iplib.py (InteractiveShell.handle_shell_assign): Added
3602 3614 new functionality, to automagically assign the result of a shell
3603 3615 command to a variable. I'll solicit some community feedback on
3604 3616 this before making it permanent.
3605 3617
3606 3618 * IPython/OInspect.py (Inspector.pinfo): Fix crash when info was
3607 3619 requested about callables for which inspect couldn't obtain a
3608 3620 proper argspec. Thanks to a crash report sent by Etienne
3609 3621 Posthumus <etienne-AT-apple01.cs.vu.nl>.
3610 3622
3611 3623 2003-12-09 Fernando Perez <fperez@colorado.edu>
3612 3624
3613 3625 * IPython/genutils.py (page): patch for the pager to work across
3614 3626 various versions of Windows. By Gary Bishop.
3615 3627
3616 3628 2003-12-04 Fernando Perez <fperez@colorado.edu>
3617 3629
3618 3630 * IPython/Gnuplot2.py (PlotItems): Fixes for working with
3619 3631 Gnuplot.py version 1.7, whose internal names changed quite a bit.
3620 3632 While I tested this and it looks ok, there may still be corner
3621 3633 cases I've missed.
3622 3634
3623 3635 2003-12-01 Fernando Perez <fperez@colorado.edu>
3624 3636
3625 3637 * IPython/iplib.py (InteractiveShell._prefilter): Fixed a bug
3626 3638 where a line like 'p,q=1,2' would fail because the automagic
3627 3639 system would be triggered for @p.
3628 3640
3629 3641 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): Tab-related
3630 3642 cleanups, code unmodified.
3631 3643
3632 3644 * IPython/genutils.py (Term): added a class for IPython to handle
3633 3645 output. In most cases it will just be a proxy for stdout/err, but
3634 3646 having this allows modifications to be made for some platforms,
3635 3647 such as handling color escapes under Windows. All of this code
3636 3648 was contributed by Gary Bishop, with minor modifications by me.
3637 3649 The actual changes affect many files.
3638 3650
3639 3651 2003-11-30 Fernando Perez <fperez@colorado.edu>
3640 3652
3641 3653 * IPython/iplib.py (file_matches): new completion code, courtesy
3642 3654 of Jeff Collins. This enables filename completion again under
3643 3655 python 2.3, which disabled it at the C level.
3644 3656
3645 3657 2003-11-11 Fernando Perez <fperez@colorado.edu>
3646 3658
3647 3659 * IPython/numutils.py (amap): Added amap() fn. Simple shorthand
3648 3660 for Numeric.array(map(...)), but often convenient.
3649 3661
3650 3662 2003-11-05 Fernando Perez <fperez@colorado.edu>
3651 3663
3652 3664 * IPython/numutils.py (frange): Changed a call from int() to
3653 3665 int(round()) to prevent a problem reported with arange() in the
3654 3666 numpy list.
3655 3667
3656 3668 2003-10-06 Fernando Perez <fperez@colorado.edu>
3657 3669
3658 3670 * IPython/DPyGetOpt.py (DPyGetOpt.processArguments): changed to
3659 3671 prevent crashes if sys lacks an argv attribute (it happens with
3660 3672 embedded interpreters which build a bare-bones sys module).
3661 3673 Thanks to a report/bugfix by Adam Hupp <hupp-AT-cs.wisc.edu>.
3662 3674
3663 3675 2003-09-24 Fernando Perez <fperez@colorado.edu>
3664 3676
3665 3677 * IPython/Magic.py (Magic._ofind): blanket except around getattr()
3666 3678 to protect against poorly written user objects where __getattr__
3667 3679 raises exceptions other than AttributeError. Thanks to a bug
3668 3680 report by Oliver Sander <osander-AT-gmx.de>.
3669 3681
3670 3682 * IPython/FakeModule.py (FakeModule.__repr__): this method was
3671 3683 missing. Thanks to bug report by Ralf Schmitt <ralf-AT-brainbot.com>.
3672 3684
3673 3685 2003-09-09 Fernando Perez <fperez@colorado.edu>
3674 3686
3675 3687 * IPython/iplib.py (InteractiveShell._prefilter): fix bug where
3676 3688 unpacking a list whith a callable as first element would
3677 3689 mistakenly trigger autocalling. Thanks to a bug report by Jeffery
3678 3690 Collins.
3679 3691
3680 3692 2003-08-25 *** Released version 0.5.0
3681 3693
3682 3694 2003-08-22 Fernando Perez <fperez@colorado.edu>
3683 3695
3684 3696 * IPython/ultraTB.py (VerboseTB.linereader): Improved handling of
3685 3697 improperly defined user exceptions. Thanks to feedback from Mark
3686 3698 Russell <mrussell-AT-verio.net>.
3687 3699
3688 3700 2003-08-20 Fernando Perez <fperez@colorado.edu>
3689 3701
3690 3702 * IPython/OInspect.py (Inspector.pinfo): changed String Form
3691 3703 printing so that it would print multi-line string forms starting
3692 3704 with a new line. This way the formatting is better respected for
3693 3705 objects which work hard to make nice string forms.
3694 3706
3695 3707 * IPython/iplib.py (InteractiveShell.handle_auto): Fix bug where
3696 3708 autocall would overtake data access for objects with both
3697 3709 __getitem__ and __call__.
3698 3710
3699 3711 2003-08-19 *** Released version 0.5.0-rc1
3700 3712
3701 3713 2003-08-19 Fernando Perez <fperez@colorado.edu>
3702 3714
3703 3715 * IPython/deep_reload.py (load_tail): single tiny change here
3704 3716 seems to fix the long-standing bug of dreload() failing to work
3705 3717 for dotted names. But this module is pretty tricky, so I may have
3706 3718 missed some subtlety. Needs more testing!.
3707 3719
3708 3720 * IPython/ultraTB.py (VerboseTB.linereader): harden against user
3709 3721 exceptions which have badly implemented __str__ methods.
3710 3722 (VerboseTB.text): harden against inspect.getinnerframes crashing,
3711 3723 which I've been getting reports about from Python 2.3 users. I
3712 3724 wish I had a simple test case to reproduce the problem, so I could
3713 3725 either write a cleaner workaround or file a bug report if
3714 3726 necessary.
3715 3727
3716 3728 * IPython/Magic.py (Magic.magic_edit): fixed bug where after
3717 3729 making a class 'foo', file 'foo.py' couldn't be edited. Thanks to
3718 3730 a bug report by Tjabo Kloppenburg.
3719 3731
3720 3732 * IPython/ultraTB.py (VerboseTB.debugger): hardened against pdb
3721 3733 crashes. Wrapped the pdb call in a blanket try/except, since pdb
3722 3734 seems rather unstable. Thanks to a bug report by Tjabo
3723 3735 Kloppenburg <tjabo.kloppenburg-AT-unix-ag.uni-siegen.de>.
3724 3736
3725 3737 * IPython/Release.py (version): release 0.5.0-rc1. I want to put
3726 3738 this out soon because of the critical fixes in the inner loop for
3727 3739 generators.
3728 3740
3729 3741 * IPython/Magic.py (Magic.getargspec): removed. This (and
3730 3742 _get_def) have been obsoleted by OInspect for a long time, I
3731 3743 hadn't noticed that they were dead code.
3732 3744 (Magic._ofind): restored _ofind functionality for a few literals
3733 3745 (those in ["''",'""','[]','{}','()']). But it won't work anymore
3734 3746 for things like "hello".capitalize?, since that would require a
3735 3747 potentially dangerous eval() again.
3736 3748
3737 3749 * IPython/iplib.py (InteractiveShell._prefilter): reorganized the
3738 3750 logic a bit more to clean up the escapes handling and minimize the
3739 3751 use of _ofind to only necessary cases. The interactive 'feel' of
3740 3752 IPython should have improved quite a bit with the changes in
3741 3753 _prefilter and _ofind (besides being far safer than before).
3742 3754
3743 3755 * IPython/Magic.py (Magic.magic_edit): Fixed old bug (but rather
3744 3756 obscure, never reported). Edit would fail to find the object to
3745 3757 edit under some circumstances.
3746 3758 (Magic._ofind): CRITICAL FIX. Finally removed the eval() calls
3747 3759 which were causing double-calling of generators. Those eval calls
3748 3760 were _very_ dangerous, since code with side effects could be
3749 3761 triggered. As they say, 'eval is evil'... These were the
3750 3762 nastiest evals in IPython. Besides, _ofind is now far simpler,
3751 3763 and it should also be quite a bit faster. Its use of inspect is
3752 3764 also safer, so perhaps some of the inspect-related crashes I've
3753 3765 seen lately with Python 2.3 might be taken care of. That will
3754 3766 need more testing.
3755 3767
3756 3768 2003-08-17 Fernando Perez <fperez@colorado.edu>
3757 3769
3758 3770 * IPython/iplib.py (InteractiveShell._prefilter): significant
3759 3771 simplifications to the logic for handling user escapes. Faster
3760 3772 and simpler code.
3761 3773
3762 3774 2003-08-14 Fernando Perez <fperez@colorado.edu>
3763 3775
3764 3776 * IPython/numutils.py (sum_flat): rewrote to be non-recursive.
3765 3777 Now it requires O(N) storage (N=size(a)) for non-contiguous input,
3766 3778 but it should be quite a bit faster. And the recursive version
3767 3779 generated O(log N) intermediate storage for all rank>1 arrays,
3768 3780 even if they were contiguous.
3769 3781 (l1norm): Added this function.
3770 3782 (norm): Added this function for arbitrary norms (including
3771 3783 l-infinity). l1 and l2 are still special cases for convenience
3772 3784 and speed.
3773 3785
3774 3786 2003-08-03 Fernando Perez <fperez@colorado.edu>
3775 3787
3776 3788 * IPython/Magic.py (Magic.magic_edit): Removed all remaining string
3777 3789 exceptions, which now raise PendingDeprecationWarnings in Python
3778 3790 2.3. There were some in Magic and some in Gnuplot2.
3779 3791
3780 3792 2003-06-30 Fernando Perez <fperez@colorado.edu>
3781 3793
3782 3794 * IPython/genutils.py (page): modified to call curses only for
3783 3795 terminals where TERM=='xterm'. After problems under many other
3784 3796 terminals were reported by Keith Beattie <KSBeattie-AT-lbl.gov>.
3785 3797
3786 3798 * IPython/iplib.py (complete): removed spurious 'print "IE"' which
3787 3799 would be triggered when readline was absent. This was just an old
3788 3800 debugging statement I'd forgotten to take out.
3789 3801
3790 3802 2003-06-20 Fernando Perez <fperez@colorado.edu>
3791 3803
3792 3804 * IPython/genutils.py (clock): modified to return only user time
3793 3805 (not counting system time), after a discussion on scipy. While
3794 3806 system time may be a useful quantity occasionally, it may much
3795 3807 more easily be skewed by occasional swapping or other similar
3796 3808 activity.
3797 3809
3798 3810 2003-06-05 Fernando Perez <fperez@colorado.edu>
3799 3811
3800 3812 * IPython/numutils.py (identity): new function, for building
3801 3813 arbitrary rank Kronecker deltas (mostly backwards compatible with
3802 3814 Numeric.identity)
3803 3815
3804 3816 2003-06-03 Fernando Perez <fperez@colorado.edu>
3805 3817
3806 3818 * IPython/iplib.py (InteractiveShell.handle_magic): protect
3807 3819 arguments passed to magics with spaces, to allow trailing '\' to
3808 3820 work normally (mainly for Windows users).
3809 3821
3810 3822 2003-05-29 Fernando Perez <fperez@colorado.edu>
3811 3823
3812 3824 * IPython/ipmaker.py (make_IPython): Load site._Helper() as help
3813 3825 instead of pydoc.help. This fixes a bizarre behavior where
3814 3826 printing '%s' % locals() would trigger the help system. Now
3815 3827 ipython behaves like normal python does.
3816 3828
3817 3829 Note that if one does 'from pydoc import help', the bizarre
3818 3830 behavior returns, but this will also happen in normal python, so
3819 3831 it's not an ipython bug anymore (it has to do with how pydoc.help
3820 3832 is implemented).
3821 3833
3822 3834 2003-05-22 Fernando Perez <fperez@colorado.edu>
3823 3835
3824 3836 * IPython/FlexCompleter.py (Completer.attr_matches): fixed to
3825 3837 return [] instead of None when nothing matches, also match to end
3826 3838 of line. Patch by Gary Bishop.
3827 3839
3828 3840 * IPython/ipmaker.py (make_IPython): Added same sys.excepthook
3829 3841 protection as before, for files passed on the command line. This
3830 3842 prevents the CrashHandler from kicking in if user files call into
3831 3843 sys.excepthook (such as PyQt and WxWindows have a nasty habit of
3832 3844 doing). After a report by Kasper Souren <Kasper.Souren-AT-ircam.fr>
3833 3845
3834 3846 2003-05-20 *** Released version 0.4.0
3835 3847
3836 3848 2003-05-20 Fernando Perez <fperez@colorado.edu>
3837 3849
3838 3850 * setup.py: added support for manpages. It's a bit hackish b/c of
3839 3851 a bug in the way the bdist_rpm distutils target handles gzipped
3840 3852 manpages, but it works. After a patch by Jack.
3841 3853
3842 3854 2003-05-19 Fernando Perez <fperez@colorado.edu>
3843 3855
3844 3856 * IPython/numutils.py: added a mockup of the kinds module, since
3845 3857 it was recently removed from Numeric. This way, numutils will
3846 3858 work for all users even if they are missing kinds.
3847 3859
3848 3860 * IPython/Magic.py (Magic._ofind): Harden against an inspect
3849 3861 failure, which can occur with SWIG-wrapped extensions. After a
3850 3862 crash report from Prabhu.
3851 3863
3852 3864 2003-05-16 Fernando Perez <fperez@colorado.edu>
3853 3865
3854 3866 * IPython/iplib.py (InteractiveShell.excepthook): New method to
3855 3867 protect ipython from user code which may call directly
3856 3868 sys.excepthook (this looks like an ipython crash to the user, even
3857 3869 when it isn't). After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3858 3870 This is especially important to help users of WxWindows, but may
3859 3871 also be useful in other cases.
3860 3872
3861 3873 * IPython/ultraTB.py (AutoFormattedTB.__call__): Changed to allow
3862 3874 an optional tb_offset to be specified, and to preserve exception
3863 3875 info if given. After a patch by Gary Bishop <gb-AT-cs.unc.edu>.
3864 3876
3865 3877 * ipython.1 (Default): Thanks to Jack's work, we now have manpages!
3866 3878
3867 3879 2003-05-15 Fernando Perez <fperez@colorado.edu>
3868 3880
3869 3881 * IPython/iplib.py (InteractiveShell.user_setup): Fix crash when
3870 3882 installing for a new user under Windows.
3871 3883
3872 3884 2003-05-12 Fernando Perez <fperez@colorado.edu>
3873 3885
3874 3886 * IPython/iplib.py (InteractiveShell.handle_emacs): New line
3875 3887 handler for Emacs comint-based lines. Currently it doesn't do
3876 3888 much (but importantly, it doesn't update the history cache). In
3877 3889 the future it may be expanded if Alex needs more functionality
3878 3890 there.
3879 3891
3880 3892 * IPython/CrashHandler.py (CrashHandler.__call__): Added platform
3881 3893 info to crash reports.
3882 3894
3883 3895 * IPython/iplib.py (InteractiveShell.mainloop): Added -c option,
3884 3896 just like Python's -c. Also fixed crash with invalid -color
3885 3897 option value at startup. Thanks to Will French
3886 3898 <wfrench-AT-bestweb.net> for the bug report.
3887 3899
3888 3900 2003-05-09 Fernando Perez <fperez@colorado.edu>
3889 3901
3890 3902 * IPython/genutils.py (EvalDict.__getitem__): Renamed EvalString
3891 3903 to EvalDict (it's a mapping, after all) and simplified its code
3892 3904 quite a bit, after a nice discussion on c.l.py where Gustavo
3893 3905 CΓ³rdova <gcordova-AT-sismex.com> suggested the new version.
3894 3906
3895 3907 2003-04-30 Fernando Perez <fperez@colorado.edu>
3896 3908
3897 3909 * IPython/genutils.py (timings_out): modified it to reduce its
3898 3910 overhead in the common reps==1 case.
3899 3911
3900 3912 2003-04-29 Fernando Perez <fperez@colorado.edu>
3901 3913
3902 3914 * IPython/genutils.py (timings_out): Modified to use the resource
3903 3915 module, which avoids the wraparound problems of time.clock().
3904 3916
3905 3917 2003-04-17 *** Released version 0.2.15pre4
3906 3918
3907 3919 2003-04-17 Fernando Perez <fperez@colorado.edu>
3908 3920
3909 3921 * setup.py (scriptfiles): Split windows-specific stuff over to a
3910 3922 separate file, in an attempt to have a Windows GUI installer.
3911 3923 That didn't work, but part of the groundwork is done.
3912 3924
3913 3925 * IPython/UserConfig/ipythonrc: Added M-i, M-o and M-I for
3914 3926 indent/unindent with 4 spaces. Particularly useful in combination
3915 3927 with the new auto-indent option.
3916 3928
3917 3929 2003-04-16 Fernando Perez <fperez@colorado.edu>
3918 3930
3919 3931 * IPython/Magic.py: various replacements of self.rc for
3920 3932 self.shell.rc. A lot more remains to be done to fully disentangle
3921 3933 this class from the main Shell class.
3922 3934
3923 3935 * IPython/GnuplotRuntime.py: added checks for mouse support so
3924 3936 that we don't try to enable it if the current gnuplot doesn't
3925 3937 really support it. Also added checks so that we don't try to
3926 3938 enable persist under Windows (where Gnuplot doesn't recognize the
3927 3939 option).
3928 3940
3929 3941 * IPython/iplib.py (InteractiveShell.interact): Added optional
3930 3942 auto-indenting code, after a patch by King C. Shu
3931 3943 <kingshu-AT-myrealbox.com>. It's off by default because it doesn't
3932 3944 get along well with pasting indented code. If I ever figure out
3933 3945 how to make that part go well, it will become on by default.
3934 3946
3935 3947 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixed bug which would
3936 3948 crash ipython if there was an unmatched '%' in the user's prompt
3937 3949 string. Reported by Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
3938 3950
3939 3951 * IPython/iplib.py (InteractiveShell.interact): removed the
3940 3952 ability to ask the user whether he wants to crash or not at the
3941 3953 'last line' exception handler. Calling functions at that point
3942 3954 changes the stack, and the error reports would have incorrect
3943 3955 tracebacks.
3944 3956
3945 3957 * IPython/Magic.py (Magic.magic_page): Added new @page magic, to
3946 3958 pass through a peger a pretty-printed form of any object. After a
3947 3959 contribution by Olivier Aubert <oaubert-AT-bat710.univ-lyon1.fr>
3948 3960
3949 3961 2003-04-14 Fernando Perez <fperez@colorado.edu>
3950 3962
3951 3963 * IPython/iplib.py (InteractiveShell.user_setup): Fixed bug where
3952 3964 all files in ~ would be modified at first install (instead of
3953 3965 ~/.ipython). This could be potentially disastrous, as the
3954 3966 modification (make line-endings native) could damage binary files.
3955 3967
3956 3968 2003-04-10 Fernando Perez <fperez@colorado.edu>
3957 3969
3958 3970 * IPython/iplib.py (InteractiveShell.handle_help): Modified to
3959 3971 handle only lines which are invalid python. This now means that
3960 3972 lines like 'x=1 #?' execute properly. Thanks to Jeffery Collins
3961 3973 for the bug report.
3962 3974
3963 3975 2003-04-01 Fernando Perez <fperez@colorado.edu>
3964 3976
3965 3977 * IPython/iplib.py (InteractiveShell.showtraceback): Fixed bug
3966 3978 where failing to set sys.last_traceback would crash pdb.pm().
3967 3979 Thanks to Jeffery D. Collins <Jeff.Collins-AT-vexcel.com> for the bug
3968 3980 report.
3969 3981
3970 3982 2003-03-25 Fernando Perez <fperez@colorado.edu>
3971 3983
3972 3984 * IPython/Magic.py (Magic.magic_prun): rstrip() output of profiler
3973 3985 before printing it (it had a lot of spurious blank lines at the
3974 3986 end).
3975 3987
3976 3988 * IPython/Gnuplot2.py (Gnuplot.hardcopy): fixed bug where lpr
3977 3989 output would be sent 21 times! Obviously people don't use this
3978 3990 too often, or I would have heard about it.
3979 3991
3980 3992 2003-03-24 Fernando Perez <fperez@colorado.edu>
3981 3993
3982 3994 * setup.py (scriptfiles): renamed the data_files parameter from
3983 3995 'base' to 'data' to fix rpm build issues. Thanks to Ralf Ahlbrink
3984 3996 for the patch.
3985 3997
3986 3998 2003-03-20 Fernando Perez <fperez@colorado.edu>
3987 3999
3988 4000 * IPython/genutils.py (error): added error() and fatal()
3989 4001 functions.
3990 4002
3991 4003 2003-03-18 *** Released version 0.2.15pre3
3992 4004
3993 4005 2003-03-18 Fernando Perez <fperez@colorado.edu>
3994 4006
3995 4007 * setupext/install_data_ext.py
3996 4008 (install_data_ext.initialize_options): Class contributed by Jack
3997 4009 Moffit for fixing the old distutils hack. He is sending this to
3998 4010 the distutils folks so in the future we may not need it as a
3999 4011 private fix.
4000 4012
4001 4013 * MANIFEST.in: Extensive reorganization, based on Jack Moffit's
4002 4014 changes for Debian packaging. See his patch for full details.
4003 4015 The old distutils hack of making the ipythonrc* files carry a
4004 4016 bogus .py extension is gone, at last. Examples were moved to a
4005 4017 separate subdir under doc/, and the separate executable scripts
4006 4018 now live in their own directory. Overall a great cleanup. The
4007 4019 manual was updated to use the new files, and setup.py has been
4008 4020 fixed for this setup.
4009 4021
4010 4022 * IPython/PyColorize.py (Parser.usage): made non-executable and
4011 4023 created a pycolor wrapper around it to be included as a script.
4012 4024
4013 4025 2003-03-12 *** Released version 0.2.15pre2
4014 4026
4015 4027 2003-03-12 Fernando Perez <fperez@colorado.edu>
4016 4028
4017 4029 * IPython/ColorANSI.py (make_color_table): Finally fixed the
4018 4030 long-standing problem with garbage characters in some terminals.
4019 4031 The issue was really that the \001 and \002 escapes must _only_ be
4020 4032 passed to input prompts (which call readline), but _never_ to
4021 4033 normal text to be printed on screen. I changed ColorANSI to have
4022 4034 two classes: TermColors and InputTermColors, each with the
4023 4035 appropriate escapes for input prompts or normal text. The code in
4024 4036 Prompts.py got slightly more complicated, but this very old and
4025 4037 annoying bug is finally fixed.
4026 4038
4027 4039 All the credit for nailing down the real origin of this problem
4028 4040 and the correct solution goes to Jack Moffit <jack-AT-xiph.org>.
4029 4041 *Many* thanks to him for spending quite a bit of effort on this.
4030 4042
4031 4043 2003-03-05 *** Released version 0.2.15pre1
4032 4044
4033 4045 2003-03-03 Fernando Perez <fperez@colorado.edu>
4034 4046
4035 4047 * IPython/FakeModule.py: Moved the former _FakeModule to a
4036 4048 separate file, because it's also needed by Magic (to fix a similar
4037 4049 pickle-related issue in @run).
4038 4050
4039 4051 2003-03-02 Fernando Perez <fperez@colorado.edu>
4040 4052
4041 4053 * IPython/Magic.py (Magic.magic_autocall): new magic to control
4042 4054 the autocall option at runtime.
4043 4055 (Magic.magic_dhist): changed self.user_ns to self.shell.user_ns
4044 4056 across Magic.py to start separating Magic from InteractiveShell.
4045 4057 (Magic._ofind): Fixed to return proper namespace for dotted
4046 4058 names. Before, a dotted name would always return 'not currently
4047 4059 defined', because it would find the 'parent'. s.x would be found,
4048 4060 but since 'x' isn't defined by itself, it would get confused.
4049 4061 (Magic.magic_run): Fixed pickling problems reported by Ralf
4050 4062 Ahlbrink <RAhlbrink-AT-RosenInspection.net>. The fix was similar to
4051 4063 that I'd used when Mike Heeter reported similar issues at the
4052 4064 top-level, but now for @run. It boils down to injecting the
4053 4065 namespace where code is being executed with something that looks
4054 4066 enough like a module to fool pickle.dump(). Since a pickle stores
4055 4067 a named reference to the importing module, we need this for
4056 4068 pickles to save something sensible.
4057 4069
4058 4070 * IPython/ipmaker.py (make_IPython): added an autocall option.
4059 4071
4060 4072 * IPython/iplib.py (InteractiveShell._prefilter): reordered all of
4061 4073 the auto-eval code. Now autocalling is an option, and the code is
4062 4074 also vastly safer. There is no more eval() involved at all.
4063 4075
4064 4076 2003-03-01 Fernando Perez <fperez@colorado.edu>
4065 4077
4066 4078 * IPython/Magic.py (Magic._ofind): Changed interface to return a
4067 4079 dict with named keys instead of a tuple.
4068 4080
4069 4081 * IPython: Started using CVS for IPython as of 0.2.15pre1.
4070 4082
4071 4083 * setup.py (make_shortcut): Fixed message about directories
4072 4084 created during Windows installation (the directories were ok, just
4073 4085 the printed message was misleading). Thanks to Chris Liechti
4074 4086 <cliechti-AT-gmx.net> for the heads up.
4075 4087
4076 4088 2003-02-21 Fernando Perez <fperez@colorado.edu>
4077 4089
4078 4090 * IPython/iplib.py (InteractiveShell._prefilter): Fixed catching
4079 4091 of ValueError exception when checking for auto-execution. This
4080 4092 one is raised by things like Numeric arrays arr.flat when the
4081 4093 array is non-contiguous.
4082 4094
4083 4095 2003-01-31 Fernando Perez <fperez@colorado.edu>
4084 4096
4085 4097 * IPython/genutils.py (SystemExec.bq): Fixed bug where bq would
4086 4098 not return any value at all (even though the command would get
4087 4099 executed).
4088 4100 (xsys): Flush stdout right after printing the command to ensure
4089 4101 proper ordering of commands and command output in the total
4090 4102 output.
4091 4103 (SystemExec/xsys/bq): Switched the names of xsys/bq and
4092 4104 system/getoutput as defaults. The old ones are kept for
4093 4105 compatibility reasons, so no code which uses this library needs
4094 4106 changing.
4095 4107
4096 4108 2003-01-27 *** Released version 0.2.14
4097 4109
4098 4110 2003-01-25 Fernando Perez <fperez@colorado.edu>
4099 4111
4100 4112 * IPython/Magic.py (Magic.magic_edit): Fixed problem where
4101 4113 functions defined in previous edit sessions could not be re-edited
4102 4114 (because the temp files were immediately removed). Now temp files
4103 4115 are removed only at IPython's exit.
4104 4116 (Magic.magic_run): Improved @run to perform shell-like expansions
4105 4117 on its arguments (~users and $VARS). With this, @run becomes more
4106 4118 like a normal command-line.
4107 4119
4108 4120 * IPython/Shell.py (IPShellEmbed.__call__): Fixed a bunch of small
4109 4121 bugs related to embedding and cleaned up that code. A fairly
4110 4122 important one was the impossibility to access the global namespace
4111 4123 through the embedded IPython (only local variables were visible).
4112 4124
4113 4125 2003-01-14 Fernando Perez <fperez@colorado.edu>
4114 4126
4115 4127 * IPython/iplib.py (InteractiveShell._prefilter): Fixed
4116 4128 auto-calling to be a bit more conservative. Now it doesn't get
4117 4129 triggered if any of '!=()<>' are in the rest of the input line, to
4118 4130 allow comparing callables. Thanks to Alex for the heads up.
4119 4131
4120 4132 2003-01-07 Fernando Perez <fperez@colorado.edu>
4121 4133
4122 4134 * IPython/genutils.py (page): fixed estimation of the number of
4123 4135 lines in a string to be paged to simply count newlines. This
4124 4136 prevents over-guessing due to embedded escape sequences. A better
4125 4137 long-term solution would involve stripping out the control chars
4126 4138 for the count, but it's potentially so expensive I just don't
4127 4139 think it's worth doing.
4128 4140
4129 4141 2002-12-19 *** Released version 0.2.14pre50
4130 4142
4131 4143 2002-12-19 Fernando Perez <fperez@colorado.edu>
4132 4144
4133 4145 * tools/release (version): Changed release scripts to inform
4134 4146 Andrea and build a NEWS file with a list of recent changes.
4135 4147
4136 4148 * IPython/ColorANSI.py (__all__): changed terminal detection
4137 4149 code. Seems to work better for xterms without breaking
4138 4150 konsole. Will need more testing to determine if WinXP and Mac OSX
4139 4151 also work ok.
4140 4152
4141 4153 2002-12-18 *** Released version 0.2.14pre49
4142 4154
4143 4155 2002-12-18 Fernando Perez <fperez@colorado.edu>
4144 4156
4145 4157 * Docs: added new info about Mac OSX, from Andrea.
4146 4158
4147 4159 * IPython/Gnuplot2.py (String): Added a String PlotItem class to
4148 4160 allow direct plotting of python strings whose format is the same
4149 4161 of gnuplot data files.
4150 4162
4151 4163 2002-12-16 Fernando Perez <fperez@colorado.edu>
4152 4164
4153 4165 * IPython/iplib.py (InteractiveShell.interact): fixed default (y)
4154 4166 value of exit question to be acknowledged.
4155 4167
4156 4168 2002-12-03 Fernando Perez <fperez@colorado.edu>
4157 4169
4158 4170 * IPython/ipmaker.py: removed generators, which had been added
4159 4171 by mistake in an earlier debugging run. This was causing trouble
4160 4172 to users of python 2.1.x. Thanks to Abel Daniel <abli-AT-freemail.hu>
4161 4173 for pointing this out.
4162 4174
4163 4175 2002-11-17 Fernando Perez <fperez@colorado.edu>
4164 4176
4165 4177 * Manual: updated the Gnuplot section.
4166 4178
4167 4179 * IPython/GnuplotRuntime.py: refactored a lot all this code, with
4168 4180 a much better split of what goes in Runtime and what goes in
4169 4181 Interactive.
4170 4182
4171 4183 * IPython/ipmaker.py: fixed bug where import_fail_info wasn't
4172 4184 being imported from iplib.
4173 4185
4174 4186 * IPython/GnuplotInteractive.py (magic_gpc): renamed @gp to @gpc
4175 4187 for command-passing. Now the global Gnuplot instance is called
4176 4188 'gp' instead of 'g', which was really a far too fragile and
4177 4189 common name.
4178 4190
4179 4191 * IPython/Gnuplot2.py (eps_fix_bbox): added this to fix broken
4180 4192 bounding boxes generated by Gnuplot for square plots.
4181 4193
4182 4194 * IPython/genutils.py (popkey): new function added. I should
4183 4195 suggest this on c.l.py as a dict method, it seems useful.
4184 4196
4185 4197 * IPython/Gnuplot2.py (Gnuplot.plot): Overhauled plot and replot
4186 4198 to transparently handle PostScript generation. MUCH better than
4187 4199 the previous plot_eps/replot_eps (which I removed now). The code
4188 4200 is also fairly clean and well documented now (including
4189 4201 docstrings).
4190 4202
4191 4203 2002-11-13 Fernando Perez <fperez@colorado.edu>
4192 4204
4193 4205 * IPython/Magic.py (Magic.magic_edit): fixed docstring
4194 4206 (inconsistent with options).
4195 4207
4196 4208 * IPython/Gnuplot2.py (Gnuplot.hardcopy): hardcopy had been
4197 4209 manually disabled, I don't know why. Fixed it.
4198 4210 (Gnuplot._plot_eps): added new plot_eps/replot_eps to get directly
4199 4211 eps output.
4200 4212
4201 4213 2002-11-12 Fernando Perez <fperez@colorado.edu>
4202 4214
4203 4215 * IPython/genutils.py (ask_yes_no): trap EOF and ^C so that they
4204 4216 don't propagate up to caller. Fixes crash reported by François
4205 4217 Pinard.
4206 4218
4207 4219 2002-11-09 Fernando Perez <fperez@colorado.edu>
4208 4220
4209 4221 * IPython/ipmaker.py (make_IPython): fixed problem with writing
4210 4222 history file for new users.
4211 4223 (make_IPython): fixed bug where initial install would leave the
4212 4224 user running in the .ipython dir.
4213 4225 (make_IPython): fixed bug where config dir .ipython would be
4214 4226 created regardless of the given -ipythondir option. Thanks to Cory
4215 4227 Dodt <cdodt-AT-fcoe.k12.ca.us> for the bug report.
4216 4228
4217 4229 * IPython/genutils.py (ask_yes_no): new function for asking yes/no
4218 4230 type confirmations. Will need to use it in all of IPython's code
4219 4231 consistently.
4220 4232
4221 4233 * IPython/CrashHandler.py (CrashHandler.__call__): changed the
4222 4234 context to print 31 lines instead of the default 5. This will make
4223 4235 the crash reports extremely detailed in case the problem is in
4224 4236 libraries I don't have access to.
4225 4237
4226 4238 * IPython/iplib.py (InteractiveShell.interact): changed the 'last
4227 4239 line of defense' code to still crash, but giving users fair
4228 4240 warning. I don't want internal errors to go unreported: if there's
4229 4241 an internal problem, IPython should crash and generate a full
4230 4242 report.
4231 4243
4232 4244 2002-11-08 Fernando Perez <fperez@colorado.edu>
4233 4245
4234 4246 * IPython/iplib.py (InteractiveShell.interact): added code to trap
4235 4247 otherwise uncaught exceptions which can appear if people set
4236 4248 sys.stdout to something badly broken. Thanks to a crash report
4237 4249 from henni-AT-mail.brainbot.com.
4238 4250
4239 4251 2002-11-04 Fernando Perez <fperez@colorado.edu>
4240 4252
4241 4253 * IPython/iplib.py (InteractiveShell.interact): added
4242 4254 __IPYTHON__active to the builtins. It's a flag which goes on when
4243 4255 the interaction starts and goes off again when it stops. This
4244 4256 allows embedding code to detect being inside IPython. Before this
4245 4257 was done via __IPYTHON__, but that only shows that an IPython
4246 4258 instance has been created.
4247 4259
4248 4260 * IPython/Magic.py (Magic.magic_env): I realized that in a
4249 4261 UserDict, instance.data holds the data as a normal dict. So I
4250 4262 modified @env to return os.environ.data instead of rebuilding a
4251 4263 dict by hand.
4252 4264
4253 4265 2002-11-02 Fernando Perez <fperez@colorado.edu>
4254 4266
4255 4267 * IPython/genutils.py (warn): changed so that level 1 prints no
4256 4268 header. Level 2 is now the default (with 'WARNING' header, as
4257 4269 before). I think I tracked all places where changes were needed in
4258 4270 IPython, but outside code using the old level numbering may have
4259 4271 broken.
4260 4272
4261 4273 * IPython/iplib.py (InteractiveShell.runcode): added this to
4262 4274 handle the tracebacks in SystemExit traps correctly. The previous
4263 4275 code (through interact) was printing more of the stack than
4264 4276 necessary, showing IPython internal code to the user.
4265 4277
4266 4278 * IPython/UserConfig/ipythonrc.py: Made confirm_exit 1 by
4267 4279 default. Now that the default at the confirmation prompt is yes,
4268 4280 it's not so intrusive. François' argument that ipython sessions
4269 4281 tend to be complex enough not to lose them from an accidental C-d,
4270 4282 is a valid one.
4271 4283
4272 4284 * IPython/iplib.py (InteractiveShell.interact): added a
4273 4285 showtraceback() call to the SystemExit trap, and modified the exit
4274 4286 confirmation to have yes as the default.
4275 4287
4276 4288 * IPython/UserConfig/ipythonrc.py: removed 'session' option from
4277 4289 this file. It's been gone from the code for a long time, this was
4278 4290 simply leftover junk.
4279 4291
4280 4292 2002-11-01 Fernando Perez <fperez@colorado.edu>
4281 4293
4282 4294 * IPython/UserConfig/ipythonrc.py: new confirm_exit option
4283 4295 added. If set, IPython now traps EOF and asks for
4284 4296 confirmation. After a request by François Pinard.
4285 4297
4286 4298 * IPython/Magic.py (Magic.magic_Exit): New @Exit and @Quit instead
4287 4299 of @abort, and with a new (better) mechanism for handling the
4288 4300 exceptions.
4289 4301
4290 4302 2002-10-27 Fernando Perez <fperez@colorado.edu>
4291 4303
4292 4304 * IPython/usage.py (__doc__): updated the --help information and
4293 4305 the ipythonrc file to indicate that -log generates
4294 4306 ./ipython.log. Also fixed the corresponding info in @logstart.
4295 4307 This and several other fixes in the manuals thanks to reports by
4296 4308 François Pinard <pinard-AT-iro.umontreal.ca>.
4297 4309
4298 4310 * IPython/Logger.py (Logger.switch_log): Fixed error message to
4299 4311 refer to @logstart (instead of @log, which doesn't exist).
4300 4312
4301 4313 * IPython/iplib.py (InteractiveShell._prefilter): fixed
4302 4314 AttributeError crash. Thanks to Christopher Armstrong
4303 4315 <radix-AT-twistedmatrix.com> for the report/fix. This bug had been
4304 4316 introduced recently (in 0.2.14pre37) with the fix to the eval
4305 4317 problem mentioned below.
4306 4318
4307 4319 2002-10-17 Fernando Perez <fperez@colorado.edu>
4308 4320
4309 4321 * IPython/ConfigLoader.py (ConfigLoader.load): Fixes for Windows
4310 4322 installation. Thanks to Leonardo Santagada <retype-AT-terra.com.br>.
4311 4323
4312 4324 * IPython/iplib.py (InteractiveShell._prefilter): Many changes to
4313 4325 this function to fix a problem reported by Alex Schmolck. He saw
4314 4326 it with list comprehensions and generators, which were getting
4315 4327 called twice. The real problem was an 'eval' call in testing for
4316 4328 automagic which was evaluating the input line silently.
4317 4329
4318 4330 This is a potentially very nasty bug, if the input has side
4319 4331 effects which must not be repeated. The code is much cleaner now,
4320 4332 without any blanket 'except' left and with a regexp test for
4321 4333 actual function names.
4322 4334
4323 4335 But an eval remains, which I'm not fully comfortable with. I just
4324 4336 don't know how to find out if an expression could be a callable in
4325 4337 the user's namespace without doing an eval on the string. However
4326 4338 that string is now much more strictly checked so that no code
4327 4339 slips by, so the eval should only happen for things that can
4328 4340 really be only function/method names.
4329 4341
4330 4342 2002-10-15 Fernando Perez <fperez@colorado.edu>
4331 4343
4332 4344 * Updated LyX to 1.2.1 so I can work on the docs again. Added Mac
4333 4345 OSX information to main manual, removed README_Mac_OSX file from
4334 4346 distribution. Also updated credits for recent additions.
4335 4347
4336 4348 2002-10-10 Fernando Perez <fperez@colorado.edu>
4337 4349
4338 4350 * README_Mac_OSX: Added a README for Mac OSX users for fixing
4339 4351 terminal-related issues. Many thanks to Andrea Riciputi
4340 4352 <andrea.riciputi-AT-libero.it> for writing it.
4341 4353
4342 4354 * IPython/UserConfig/ipythonrc.py: Fixes to various small issues,
4343 4355 thanks to Thorsten Kampe <thorsten-AT-thorstenkampe.de>.
4344 4356
4345 4357 * setup.py (make_shortcut): Fixes for Windows installation. Thanks
4346 4358 to Fredrik Kant <fredrik.kant-AT-front.com> and Syver Enstad
4347 4359 <syver-en-AT-online.no> who both submitted patches for this problem.
4348 4360
4349 4361 * IPython/iplib.py (InteractiveShell.embed_mainloop): Patch for
4350 4362 global embedding to make sure that things don't overwrite user
4351 4363 globals accidentally. Thanks to Richard <rxe-AT-renre-europe.com>
4352 4364
4353 4365 * IPython/Gnuplot2.py (gp): Patch for Gnuplot.py 1.6
4354 4366 compatibility. Thanks to Hayden Callow
4355 4367 <h.callow-AT-elec.canterbury.ac.nz>
4356 4368
4357 4369 2002-10-04 Fernando Perez <fperez@colorado.edu>
4358 4370
4359 4371 * IPython/Gnuplot2.py (PlotItem): Added 'index' option for
4360 4372 Gnuplot.File objects.
4361 4373
4362 4374 2002-07-23 Fernando Perez <fperez@colorado.edu>
4363 4375
4364 4376 * IPython/genutils.py (timing): Added timings() and timing() for
4365 4377 quick access to the most commonly needed data, the execution
4366 4378 times. Old timing() renamed to timings_out().
4367 4379
4368 4380 2002-07-18 Fernando Perez <fperez@colorado.edu>
4369 4381
4370 4382 * IPython/Shell.py (IPShellEmbed.restore_system_completer): fixed
4371 4383 bug with nested instances disrupting the parent's tab completion.
4372 4384
4373 4385 * IPython/iplib.py (all_completions): Added Alex Schmolck's
4374 4386 all_completions code to begin the emacs integration.
4375 4387
4376 4388 * IPython/Gnuplot2.py (zip_items): Added optional 'titles'
4377 4389 argument to allow titling individual arrays when plotting.
4378 4390
4379 4391 2002-07-15 Fernando Perez <fperez@colorado.edu>
4380 4392
4381 4393 * setup.py (make_shortcut): changed to retrieve the value of
4382 4394 'Program Files' directory from the registry (this value changes in
4383 4395 non-english versions of Windows). Thanks to Thomas Fanslau
4384 4396 <tfanslau-AT-gmx.de> for the report.
4385 4397
4386 4398 2002-07-10 Fernando Perez <fperez@colorado.edu>
4387 4399
4388 4400 * IPython/ultraTB.py (VerboseTB.debugger): enabled workaround for
4389 4401 a bug in pdb, which crashes if a line with only whitespace is
4390 4402 entered. Bug report submitted to sourceforge.
4391 4403
4392 4404 2002-07-09 Fernando Perez <fperez@colorado.edu>
4393 4405
4394 4406 * IPython/ultraTB.py (VerboseTB.nullrepr): fixed rare crash when
4395 4407 reporting exceptions (it's a bug in inspect.py, I just set a
4396 4408 workaround).
4397 4409
4398 4410 2002-07-08 Fernando Perez <fperez@colorado.edu>
4399 4411
4400 4412 * IPython/iplib.py (InteractiveShell.__init__): fixed reference to
4401 4413 __IPYTHON__ in __builtins__ to show up in user_ns.
4402 4414
4403 4415 2002-07-03 Fernando Perez <fperez@colorado.edu>
4404 4416
4405 4417 * IPython/GnuplotInteractive.py (magic_gp_set_default): changed
4406 4418 name from @gp_set_instance to @gp_set_default.
4407 4419
4408 4420 * IPython/ipmaker.py (make_IPython): default editor value set to
4409 4421 '0' (a string), to match the rc file. Otherwise will crash when
4410 4422 .strip() is called on it.
4411 4423
4412 4424
4413 4425 2002-06-28 Fernando Perez <fperez@colorado.edu>
4414 4426
4415 4427 * IPython/iplib.py (InteractiveShell.safe_execfile): fix importing
4416 4428 of files in current directory when a file is executed via
4417 4429 @run. Patch also by RA <ralf_ahlbrink-AT-web.de>.
4418 4430
4419 4431 * setup.py (manfiles): fix for rpm builds, submitted by RA
4420 4432 <ralf_ahlbrink-AT-web.de>. Now we have RPMs!
4421 4433
4422 4434 * IPython/ipmaker.py (make_IPython): fixed lookup of default
4423 4435 editor when set to '0'. Problem was, '0' evaluates to True (it's a
4424 4436 string!). A. Schmolck caught this one.
4425 4437
4426 4438 2002-06-27 Fernando Perez <fperez@colorado.edu>
4427 4439
4428 4440 * IPython/ipmaker.py (make_IPython): fixed bug when running user
4429 4441 defined files at the cmd line. __name__ wasn't being set to
4430 4442 __main__.
4431 4443
4432 4444 * IPython/Gnuplot2.py (zip_items): improved it so it can plot also
4433 4445 regular lists and tuples besides Numeric arrays.
4434 4446
4435 4447 * IPython/Prompts.py (CachedOutput.__call__): Added output
4436 4448 supression for input ending with ';'. Similar to Mathematica and
4437 4449 Matlab. The _* vars and Out[] list are still updated, just like
4438 4450 Mathematica behaves.
4439 4451
4440 4452 2002-06-25 Fernando Perez <fperez@colorado.edu>
4441 4453
4442 4454 * IPython/ConfigLoader.py (ConfigLoader.load): fixed checking of
4443 4455 .ini extensions for profiels under Windows.
4444 4456
4445 4457 * IPython/OInspect.py (Inspector.pinfo): improved alignment of
4446 4458 string form. Fix contributed by Alexander Schmolck
4447 4459 <a.schmolck-AT-gmx.net>
4448 4460
4449 4461 * IPython/GnuplotRuntime.py (gp_new): new function. Returns a
4450 4462 pre-configured Gnuplot instance.
4451 4463
4452 4464 2002-06-21 Fernando Perez <fperez@colorado.edu>
4453 4465
4454 4466 * IPython/numutils.py (exp_safe): new function, works around the
4455 4467 underflow problems in Numeric.
4456 4468 (log2): New fn. Safe log in base 2: returns exact integer answer
4457 4469 for exact integer powers of 2.
4458 4470
4459 4471 * IPython/Magic.py (get_py_filename): fixed it not expanding '~'
4460 4472 properly.
4461 4473
4462 4474 2002-06-20 Fernando Perez <fperez@colorado.edu>
4463 4475
4464 4476 * IPython/genutils.py (timing): new function like
4465 4477 Mathematica's. Similar to time_test, but returns more info.
4466 4478
4467 4479 2002-06-18 Fernando Perez <fperez@colorado.edu>
4468 4480
4469 4481 * IPython/Magic.py (Magic.magic_save): modified @save and @r
4470 4482 according to Mike Heeter's suggestions.
4471 4483
4472 4484 2002-06-16 Fernando Perez <fperez@colorado.edu>
4473 4485
4474 4486 * IPython/GnuplotRuntime.py: Massive overhaul to the Gnuplot
4475 4487 system. GnuplotMagic is gone as a user-directory option. New files
4476 4488 make it easier to use all the gnuplot stuff both from external
4477 4489 programs as well as from IPython. Had to rewrite part of
4478 4490 hardcopy() b/c of a strange bug: often the ps files simply don't
4479 4491 get created, and require a repeat of the command (often several
4480 4492 times).
4481 4493
4482 4494 * IPython/ultraTB.py (AutoFormattedTB.__call__): changed to
4483 4495 resolve output channel at call time, so that if sys.stderr has
4484 4496 been redirected by user this gets honored.
4485 4497
4486 4498 2002-06-13 Fernando Perez <fperez@colorado.edu>
4487 4499
4488 4500 * IPython/Shell.py (IPShell.__init__): Changed IPythonShell to
4489 4501 IPShell. Kept a copy with the old names to avoid breaking people's
4490 4502 embedded code.
4491 4503
4492 4504 * IPython/ipython: simplified it to the bare minimum after
4493 4505 Holger's suggestions. Added info about how to use it in
4494 4506 PYTHONSTARTUP.
4495 4507
4496 4508 * IPython/Shell.py (IPythonShell): changed the options passing
4497 4509 from a string with funky %s replacements to a straight list. Maybe
4498 4510 a bit more typing, but it follows sys.argv conventions, so there's
4499 4511 less special-casing to remember.
4500 4512
4501 4513 2002-06-12 Fernando Perez <fperez@colorado.edu>
4502 4514
4503 4515 * IPython/Magic.py (Magic.magic_r): new magic auto-repeat
4504 4516 command. Thanks to a suggestion by Mike Heeter.
4505 4517 (Magic.magic_pfile): added behavior to look at filenames if given
4506 4518 arg is not a defined object.
4507 4519 (Magic.magic_save): New @save function to save code snippets. Also
4508 4520 a Mike Heeter idea.
4509 4521
4510 4522 * IPython/UserConfig/GnuplotMagic.py (plot): Improvements to
4511 4523 plot() and replot(). Much more convenient now, especially for
4512 4524 interactive use.
4513 4525
4514 4526 * IPython/Magic.py (Magic.magic_run): Added .py automatically to
4515 4527 filenames.
4516 4528
4517 4529 2002-06-02 Fernando Perez <fperez@colorado.edu>
4518 4530
4519 4531 * IPython/Struct.py (Struct.__init__): modified to admit
4520 4532 initialization via another struct.
4521 4533
4522 4534 * IPython/genutils.py (SystemExec.__init__): New stateful
4523 4535 interface to xsys and bq. Useful for writing system scripts.
4524 4536
4525 4537 2002-05-30 Fernando Perez <fperez@colorado.edu>
4526 4538
4527 4539 * MANIFEST.in: Changed docfile selection to exclude all the lyx
4528 4540 documents. This will make the user download smaller (it's getting
4529 4541 too big).
4530 4542
4531 4543 2002-05-29 Fernando Perez <fperez@colorado.edu>
4532 4544
4533 4545 * IPython/iplib.py (_FakeModule.__init__): New class introduced to
4534 4546 fix problems with shelve and pickle. Seems to work, but I don't
4535 4547 know if corner cases break it. Thanks to Mike Heeter
4536 4548 <korora-AT-SDF.LONESTAR.ORG> for the bug reports and test cases.
4537 4549
4538 4550 2002-05-24 Fernando Perez <fperez@colorado.edu>
4539 4551
4540 4552 * IPython/Magic.py (Macro.__init__): fixed magics embedded in
4541 4553 macros having broken.
4542 4554
4543 4555 2002-05-21 Fernando Perez <fperez@colorado.edu>
4544 4556
4545 4557 * IPython/Magic.py (Magic.magic_logstart): fixed recently
4546 4558 introduced logging bug: all history before logging started was
4547 4559 being written one character per line! This came from the redesign
4548 4560 of the input history as a special list which slices to strings,
4549 4561 not to lists.
4550 4562
4551 4563 2002-05-20 Fernando Perez <fperez@colorado.edu>
4552 4564
4553 4565 * IPython/Prompts.py (CachedOutput.__init__): made the color table
4554 4566 be an attribute of all classes in this module. The design of these
4555 4567 classes needs some serious overhauling.
4556 4568
4557 4569 * IPython/DPyGetOpt.py (DPyGetOpt.setPosixCompliance): fixed bug
4558 4570 which was ignoring '_' in option names.
4559 4571
4560 4572 * IPython/ultraTB.py (FormattedTB.__init__): Changed
4561 4573 'Verbose_novars' to 'Context' and made it the new default. It's a
4562 4574 bit more readable and also safer than verbose.
4563 4575
4564 4576 * IPython/PyColorize.py (Parser.__call__): Fixed coloring of
4565 4577 triple-quoted strings.
4566 4578
4567 4579 * IPython/OInspect.py (__all__): new module exposing the object
4568 4580 introspection facilities. Now the corresponding magics are dummy
4569 4581 wrappers around this. Having this module will make it much easier
4570 4582 to put these functions into our modified pdb.
4571 4583 This new object inspector system uses the new colorizing module,
4572 4584 so source code and other things are nicely syntax highlighted.
4573 4585
4574 4586 2002-05-18 Fernando Perez <fperez@colorado.edu>
4575 4587
4576 4588 * IPython/ColorANSI.py: Split the coloring tools into a separate
4577 4589 module so I can use them in other code easier (they were part of
4578 4590 ultraTB).
4579 4591
4580 4592 2002-05-17 Fernando Perez <fperez@colorado.edu>
4581 4593
4582 4594 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4583 4595 fixed it to set the global 'g' also to the called instance, as
4584 4596 long as 'g' was still a gnuplot instance (so it doesn't overwrite
4585 4597 user's 'g' variables).
4586 4598
4587 4599 * IPython/iplib.py (InteractiveShell.__init__): Added In/Out
4588 4600 global variables (aliases to _ih,_oh) so that users which expect
4589 4601 In[5] or Out[7] to work aren't unpleasantly surprised.
4590 4602 (InputList.__getslice__): new class to allow executing slices of
4591 4603 input history directly. Very simple class, complements the use of
4592 4604 macros.
4593 4605
4594 4606 2002-05-16 Fernando Perez <fperez@colorado.edu>
4595 4607
4596 4608 * setup.py (docdirbase): make doc directory be just doc/IPython
4597 4609 without version numbers, it will reduce clutter for users.
4598 4610
4599 4611 * IPython/Magic.py (Magic.magic_run): Add explicit local dict to
4600 4612 execfile call to prevent possible memory leak. See for details:
4601 4613 http://mail.python.org/pipermail/python-list/2002-February/088476.html
4602 4614
4603 4615 2002-05-15 Fernando Perez <fperez@colorado.edu>
4604 4616
4605 4617 * IPython/Magic.py (Magic.magic_psource): made the object
4606 4618 introspection names be more standard: pdoc, pdef, pfile and
4607 4619 psource. They all print/page their output, and it makes
4608 4620 remembering them easier. Kept old names for compatibility as
4609 4621 aliases.
4610 4622
4611 4623 2002-05-14 Fernando Perez <fperez@colorado.edu>
4612 4624
4613 4625 * IPython/UserConfig/GnuplotMagic.py: I think I finally understood
4614 4626 what the mouse problem was. The trick is to use gnuplot with temp
4615 4627 files and NOT with pipes (for data communication), because having
4616 4628 both pipes and the mouse on is bad news.
4617 4629
4618 4630 2002-05-13 Fernando Perez <fperez@colorado.edu>
4619 4631
4620 4632 * IPython/Magic.py (Magic._ofind): fixed namespace order search
4621 4633 bug. Information would be reported about builtins even when
4622 4634 user-defined functions overrode them.
4623 4635
4624 4636 2002-05-11 Fernando Perez <fperez@colorado.edu>
4625 4637
4626 4638 * IPython/__init__.py (__all__): removed FlexCompleter from
4627 4639 __all__ so that things don't fail in platforms without readline.
4628 4640
4629 4641 2002-05-10 Fernando Perez <fperez@colorado.edu>
4630 4642
4631 4643 * IPython/__init__.py (__all__): removed numutils from __all__ b/c
4632 4644 it requires Numeric, effectively making Numeric a dependency for
4633 4645 IPython.
4634 4646
4635 4647 * Released 0.2.13
4636 4648
4637 4649 * IPython/Magic.py (Magic.magic_prun): big overhaul to the
4638 4650 profiler interface. Now all the major options from the profiler
4639 4651 module are directly supported in IPython, both for single
4640 4652 expressions (@prun) and for full programs (@run -p).
4641 4653
4642 4654 2002-05-09 Fernando Perez <fperez@colorado.edu>
4643 4655
4644 4656 * IPython/Magic.py (Magic.magic_doc): fixed to show docstrings of
4645 4657 magic properly formatted for screen.
4646 4658
4647 4659 * setup.py (make_shortcut): Changed things to put pdf version in
4648 4660 doc/ instead of doc/manual (had to change lyxport a bit).
4649 4661
4650 4662 * IPython/Magic.py (Profile.string_stats): made profile runs go
4651 4663 through pager (they are long and a pager allows searching, saving,
4652 4664 etc.)
4653 4665
4654 4666 2002-05-08 Fernando Perez <fperez@colorado.edu>
4655 4667
4656 4668 * Released 0.2.12
4657 4669
4658 4670 2002-05-06 Fernando Perez <fperez@colorado.edu>
4659 4671
4660 4672 * IPython/Magic.py (Magic.magic_hist): small bug fixed (recently
4661 4673 introduced); 'hist n1 n2' was broken.
4662 4674 (Magic.magic_pdb): added optional on/off arguments to @pdb
4663 4675 (Magic.magic_run): added option -i to @run, which executes code in
4664 4676 the IPython namespace instead of a clean one. Also added @irun as
4665 4677 an alias to @run -i.
4666 4678
4667 4679 * IPython/UserConfig/GnuplotMagic.py (magic_gp_set_instance):
4668 4680 fixed (it didn't really do anything, the namespaces were wrong).
4669 4681
4670 4682 * IPython/Debugger.py (__init__): Added workaround for python 2.1
4671 4683
4672 4684 * IPython/__init__.py (__all__): Fixed package namespace, now
4673 4685 'import IPython' does give access to IPython.<all> as
4674 4686 expected. Also renamed __release__ to Release.
4675 4687
4676 4688 * IPython/Debugger.py (__license__): created new Pdb class which
4677 4689 functions like a drop-in for the normal pdb.Pdb but does NOT
4678 4690 import readline by default. This way it doesn't muck up IPython's
4679 4691 readline handling, and now tab-completion finally works in the
4680 4692 debugger -- sort of. It completes things globally visible, but the
4681 4693 completer doesn't track the stack as pdb walks it. That's a bit
4682 4694 tricky, and I'll have to implement it later.
4683 4695
4684 4696 2002-05-05 Fernando Perez <fperez@colorado.edu>
4685 4697
4686 4698 * IPython/Magic.py (Magic.magic_oinfo): fixed formatting bug for
4687 4699 magic docstrings when printed via ? (explicit \'s were being
4688 4700 printed).
4689 4701
4690 4702 * IPython/ipmaker.py (make_IPython): fixed namespace
4691 4703 identification bug. Now variables loaded via logs or command-line
4692 4704 files are recognized in the interactive namespace by @who.
4693 4705
4694 4706 * IPython/iplib.py (InteractiveShell.safe_execfile): Fixed bug in
4695 4707 log replay system stemming from the string form of Structs.
4696 4708
4697 4709 * IPython/Magic.py (Macro.__init__): improved macros to properly
4698 4710 handle magic commands in them.
4699 4711 (Magic.magic_logstart): usernames are now expanded so 'logstart
4700 4712 ~/mylog' now works.
4701 4713
4702 4714 * IPython/iplib.py (complete): fixed bug where paths starting with
4703 4715 '/' would be completed as magic names.
4704 4716
4705 4717 2002-05-04 Fernando Perez <fperez@colorado.edu>
4706 4718
4707 4719 * IPython/Magic.py (Magic.magic_run): added options -p and -f to
4708 4720 allow running full programs under the profiler's control.
4709 4721
4710 4722 * IPython/ultraTB.py (FormattedTB.__init__): Added Verbose_novars
4711 4723 mode to report exceptions verbosely but without formatting
4712 4724 variables. This addresses the issue of ipython 'freezing' (it's
4713 4725 not frozen, but caught in an expensive formatting loop) when huge
4714 4726 variables are in the context of an exception.
4715 4727 (VerboseTB.text): Added '--->' markers at line where exception was
4716 4728 triggered. Much clearer to read, especially in NoColor modes.
4717 4729
4718 4730 * IPython/Magic.py (Magic.magic_run): bugfix: -n option had been
4719 4731 implemented in reverse when changing to the new parse_options().
4720 4732
4721 4733 2002-05-03 Fernando Perez <fperez@colorado.edu>
4722 4734
4723 4735 * IPython/Magic.py (Magic.parse_options): new function so that
4724 4736 magics can parse options easier.
4725 4737 (Magic.magic_prun): new function similar to profile.run(),
4726 4738 suggested by Chris Hart.
4727 4739 (Magic.magic_cd): fixed behavior so that it only changes if
4728 4740 directory actually is in history.
4729 4741
4730 4742 * IPython/usage.py (__doc__): added information about potential
4731 4743 slowness of Verbose exception mode when there are huge data
4732 4744 structures to be formatted (thanks to Archie Paulson).
4733 4745
4734 4746 * IPython/ipmaker.py (make_IPython): Changed default logging
4735 4747 (when simply called with -log) to use curr_dir/ipython.log in
4736 4748 rotate mode. Fixed crash which was occuring with -log before
4737 4749 (thanks to Jim Boyle).
4738 4750
4739 4751 2002-05-01 Fernando Perez <fperez@colorado.edu>
4740 4752
4741 4753 * Released 0.2.11 for these fixes (mainly the ultraTB one which
4742 4754 was nasty -- though somewhat of a corner case).
4743 4755
4744 4756 * IPython/ultraTB.py (AutoFormattedTB.text): renamed __text to
4745 4757 text (was a bug).
4746 4758
4747 4759 2002-04-30 Fernando Perez <fperez@colorado.edu>
4748 4760
4749 4761 * IPython/UserConfig/GnuplotMagic.py (magic_gp): Minor fix to add
4750 4762 a print after ^D or ^C from the user so that the In[] prompt
4751 4763 doesn't over-run the gnuplot one.
4752 4764
4753 4765 2002-04-29 Fernando Perez <fperez@colorado.edu>
4754 4766
4755 4767 * Released 0.2.10
4756 4768
4757 4769 * IPython/__release__.py (version): get date dynamically.
4758 4770
4759 4771 * Misc. documentation updates thanks to Arnd's comments. Also ran
4760 4772 a full spellcheck on the manual (hadn't been done in a while).
4761 4773
4762 4774 2002-04-27 Fernando Perez <fperez@colorado.edu>
4763 4775
4764 4776 * IPython/Magic.py (Magic.magic_logstart): Fixed bug where
4765 4777 starting a log in mid-session would reset the input history list.
4766 4778
4767 4779 2002-04-26 Fernando Perez <fperez@colorado.edu>
4768 4780
4769 4781 * IPython/iplib.py (InteractiveShell.wait): Fixed bug where not
4770 4782 all files were being included in an update. Now anything in
4771 4783 UserConfig that matches [A-Za-z]*.py will go (this excludes
4772 4784 __init__.py)
4773 4785
4774 4786 2002-04-25 Fernando Perez <fperez@colorado.edu>
4775 4787
4776 4788 * IPython/iplib.py (InteractiveShell.__init__): Added __IPYTHON__
4777 4789 to __builtins__ so that any form of embedded or imported code can
4778 4790 test for being inside IPython.
4779 4791
4780 4792 * IPython/UserConfig/GnuplotMagic.py: (magic_gp_set_instance):
4781 4793 changed to GnuplotMagic because it's now an importable module,
4782 4794 this makes the name follow that of the standard Gnuplot module.
4783 4795 GnuplotMagic can now be loaded at any time in mid-session.
4784 4796
4785 4797 2002-04-24 Fernando Perez <fperez@colorado.edu>
4786 4798
4787 4799 * IPython/numutils.py: removed SIUnits. It doesn't properly set
4788 4800 the globals (IPython has its own namespace) and the
4789 4801 PhysicalQuantity stuff is much better anyway.
4790 4802
4791 4803 * IPython/UserConfig/example-gnuplot.py (g2): Added gnuplot
4792 4804 embedding example to standard user directory for
4793 4805 distribution. Also put it in the manual.
4794 4806
4795 4807 * IPython/numutils.py (gnuplot_exec): Changed to take a gnuplot
4796 4808 instance as first argument (so it doesn't rely on some obscure
4797 4809 hidden global).
4798 4810
4799 4811 * IPython/UserConfig/ipythonrc.py: put () back in accepted
4800 4812 delimiters. While it prevents ().TAB from working, it allows
4801 4813 completions in open (... expressions. This is by far a more common
4802 4814 case.
4803 4815
4804 4816 2002-04-23 Fernando Perez <fperez@colorado.edu>
4805 4817
4806 4818 * IPython/Extensions/InterpreterPasteInput.py: new
4807 4819 syntax-processing module for pasting lines with >>> or ... at the
4808 4820 start.
4809 4821
4810 4822 * IPython/Extensions/PhysicalQ_Interactive.py
4811 4823 (PhysicalQuantityInteractive.__int__): fixed to work with either
4812 4824 Numeric or math.
4813 4825
4814 4826 * IPython/UserConfig/ipythonrc-numeric.py: reorganized the
4815 4827 provided profiles. Now we have:
4816 4828 -math -> math module as * and cmath with its own namespace.
4817 4829 -numeric -> Numeric as *, plus gnuplot & grace
4818 4830 -physics -> same as before
4819 4831
4820 4832 * IPython/Magic.py (Magic.magic_magic): Fixed bug where
4821 4833 user-defined magics wouldn't be found by @magic if they were
4822 4834 defined as class methods. Also cleaned up the namespace search
4823 4835 logic and the string building (to use %s instead of many repeated
4824 4836 string adds).
4825 4837
4826 4838 * IPython/UserConfig/example-magic.py (magic_foo): updated example
4827 4839 of user-defined magics to operate with class methods (cleaner, in
4828 4840 line with the gnuplot code).
4829 4841
4830 4842 2002-04-22 Fernando Perez <fperez@colorado.edu>
4831 4843
4832 4844 * setup.py: updated dependency list so that manual is updated when
4833 4845 all included files change.
4834 4846
4835 4847 * IPython/ipmaker.py (make_IPython): Fixed bug which was ignoring
4836 4848 the delimiter removal option (the fix is ugly right now).
4837 4849
4838 4850 * IPython/UserConfig/ipythonrc-physics.py: simplified not to load
4839 4851 all of the math profile (quicker loading, no conflict between
4840 4852 g-9.8 and g-gnuplot).
4841 4853
4842 4854 * IPython/CrashHandler.py (CrashHandler.__call__): changed default
4843 4855 name of post-mortem files to IPython_crash_report.txt.
4844 4856
4845 4857 * Cleanup/update of the docs. Added all the new readline info and
4846 4858 formatted all lists as 'real lists'.
4847 4859
4848 4860 * IPython/ipmaker.py (make_IPython): removed now-obsolete
4849 4861 tab-completion options, since the full readline parse_and_bind is
4850 4862 now accessible.
4851 4863
4852 4864 * IPython/iplib.py (InteractiveShell.init_readline): Changed
4853 4865 handling of readline options. Now users can specify any string to
4854 4866 be passed to parse_and_bind(), as well as the delimiters to be
4855 4867 removed.
4856 4868 (InteractiveShell.__init__): Added __name__ to the global
4857 4869 namespace so that things like Itpl which rely on its existence
4858 4870 don't crash.
4859 4871 (InteractiveShell._prefilter): Defined the default with a _ so
4860 4872 that prefilter() is easier to override, while the default one
4861 4873 remains available.
4862 4874
4863 4875 2002-04-18 Fernando Perez <fperez@colorado.edu>
4864 4876
4865 4877 * Added information about pdb in the docs.
4866 4878
4867 4879 2002-04-17 Fernando Perez <fperez@colorado.edu>
4868 4880
4869 4881 * IPython/ipmaker.py (make_IPython): added rc_override option to
4870 4882 allow passing config options at creation time which may override
4871 4883 anything set in the config files or command line. This is
4872 4884 particularly useful for configuring embedded instances.
4873 4885
4874 4886 2002-04-15 Fernando Perez <fperez@colorado.edu>
4875 4887
4876 4888 * IPython/Logger.py (Logger.log): Fixed a nasty bug which could
4877 4889 crash embedded instances because of the input cache falling out of
4878 4890 sync with the output counter.
4879 4891
4880 4892 * IPython/Shell.py (IPythonShellEmbed.__init__): added a debug
4881 4893 mode which calls pdb after an uncaught exception in IPython itself.
4882 4894
4883 4895 2002-04-14 Fernando Perez <fperez@colorado.edu>
4884 4896
4885 4897 * IPython/iplib.py (InteractiveShell.showtraceback): pdb mucks up
4886 4898 readline, fix it back after each call.
4887 4899
4888 4900 * IPython/ultraTB.py (AutoFormattedTB.__text): made text a private
4889 4901 method to force all access via __call__(), which guarantees that
4890 4902 traceback references are properly deleted.
4891 4903
4892 4904 * IPython/Prompts.py (CachedOutput._display): minor fixes to
4893 4905 improve printing when pprint is in use.
4894 4906
4895 4907 2002-04-13 Fernando Perez <fperez@colorado.edu>
4896 4908
4897 4909 * IPython/Shell.py (IPythonShellEmbed.__call__): SystemExit
4898 4910 exceptions aren't caught anymore. If the user triggers one, he
4899 4911 should know why he's doing it and it should go all the way up,
4900 4912 just like any other exception. So now @abort will fully kill the
4901 4913 embedded interpreter and the embedding code (unless that happens
4902 4914 to catch SystemExit).
4903 4915
4904 4916 * IPython/ultraTB.py (VerboseTB.__init__): added a call_pdb flag
4905 4917 and a debugger() method to invoke the interactive pdb debugger
4906 4918 after printing exception information. Also added the corresponding
4907 4919 -pdb option and @pdb magic to control this feature, and updated
4908 4920 the docs. After a suggestion from Christopher Hart
4909 4921 (hart-AT-caltech.edu).
4910 4922
4911 4923 2002-04-12 Fernando Perez <fperez@colorado.edu>
4912 4924
4913 4925 * IPython/Shell.py (IPythonShellEmbed.__init__): modified to use
4914 4926 the exception handlers defined by the user (not the CrashHandler)
4915 4927 so that user exceptions don't trigger an ipython bug report.
4916 4928
4917 4929 * IPython/ultraTB.py (ColorTB.__init__): made the color scheme
4918 4930 configurable (it should have always been so).
4919 4931
4920 4932 2002-03-26 Fernando Perez <fperez@colorado.edu>
4921 4933
4922 4934 * IPython/Shell.py (IPythonShellEmbed.__call__): many changes here
4923 4935 and there to fix embedding namespace issues. This should all be
4924 4936 done in a more elegant way.
4925 4937
4926 4938 2002-03-25 Fernando Perez <fperez@colorado.edu>
4927 4939
4928 4940 * IPython/genutils.py (get_home_dir): Try to make it work under
4929 4941 win9x also.
4930 4942
4931 4943 2002-03-20 Fernando Perez <fperez@colorado.edu>
4932 4944
4933 4945 * IPython/Shell.py (IPythonShellEmbed.__init__): leave
4934 4946 sys.displayhook untouched upon __init__.
4935 4947
4936 4948 2002-03-19 Fernando Perez <fperez@colorado.edu>
4937 4949
4938 4950 * Released 0.2.9 (for embedding bug, basically).
4939 4951
4940 4952 * IPython/Shell.py (IPythonShellEmbed.__call__): Trap SystemExit
4941 4953 exceptions so that enclosing shell's state can be restored.
4942 4954
4943 4955 * Changed magic_gnuplot.py to magic-gnuplot.py to standardize
4944 4956 naming conventions in the .ipython/ dir.
4945 4957
4946 4958 * IPython/iplib.py (InteractiveShell.init_readline): removed '-'
4947 4959 from delimiters list so filenames with - in them get expanded.
4948 4960
4949 4961 * IPython/Shell.py (IPythonShellEmbed.__call__): fixed bug with
4950 4962 sys.displayhook not being properly restored after an embedded call.
4951 4963
4952 4964 2002-03-18 Fernando Perez <fperez@colorado.edu>
4953 4965
4954 4966 * Released 0.2.8
4955 4967
4956 4968 * IPython/iplib.py (InteractiveShell.user_setup): fixed bug where
4957 4969 some files weren't being included in a -upgrade.
4958 4970 (InteractiveShell.init_readline): Added 'set show-all-if-ambiguous
4959 4971 on' so that the first tab completes.
4960 4972 (InteractiveShell.handle_magic): fixed bug with spaces around
4961 4973 quotes breaking many magic commands.
4962 4974
4963 4975 * setup.py: added note about ignoring the syntax error messages at
4964 4976 installation.
4965 4977
4966 4978 * IPython/UserConfig/magic_gnuplot.py (magic_gp): finished
4967 4979 streamlining the gnuplot interface, now there's only one magic @gp.
4968 4980
4969 4981 2002-03-17 Fernando Perez <fperez@colorado.edu>
4970 4982
4971 4983 * IPython/UserConfig/magic_gnuplot.py: new name for the
4972 4984 example-magic_pm.py file. Much enhanced system, now with a shell
4973 4985 for communicating directly with gnuplot, one command at a time.
4974 4986
4975 4987 * IPython/Magic.py (Magic.magic_run): added option -n to prevent
4976 4988 setting __name__=='__main__'.
4977 4989
4978 4990 * IPython/UserConfig/example-magic_pm.py (magic_pm): Added
4979 4991 mini-shell for accessing gnuplot from inside ipython. Should
4980 4992 extend it later for grace access too. Inspired by Arnd's
4981 4993 suggestion.
4982 4994
4983 4995 * IPython/iplib.py (InteractiveShell.handle_magic): fixed bug when
4984 4996 calling magic functions with () in their arguments. Thanks to Arnd
4985 4997 Baecker for pointing this to me.
4986 4998
4987 4999 * IPython/numutils.py (sum_flat): fixed bug. Would recurse
4988 5000 infinitely for integer or complex arrays (only worked with floats).
4989 5001
4990 5002 2002-03-16 Fernando Perez <fperez@colorado.edu>
4991 5003
4992 5004 * setup.py: Merged setup and setup_windows into a single script
4993 5005 which properly handles things for windows users.
4994 5006
4995 5007 2002-03-15 Fernando Perez <fperez@colorado.edu>
4996 5008
4997 5009 * Big change to the manual: now the magics are all automatically
4998 5010 documented. This information is generated from their docstrings
4999 5011 and put in a latex file included by the manual lyx file. This way
5000 5012 we get always up to date information for the magics. The manual
5001 5013 now also has proper version information, also auto-synced.
5002 5014
5003 5015 For this to work, an undocumented --magic_docstrings option was added.
5004 5016
5005 5017 2002-03-13 Fernando Perez <fperez@colorado.edu>
5006 5018
5007 5019 * IPython/ultraTB.py (TermColors): fixed problem with dark colors
5008 5020 under CDE terminals. An explicit ;2 color reset is needed in the escapes.
5009 5021
5010 5022 2002-03-12 Fernando Perez <fperez@colorado.edu>
5011 5023
5012 5024 * IPython/ultraTB.py (TermColors): changed color escapes again to
5013 5025 fix the (old, reintroduced) line-wrapping bug. Basically, if
5014 5026 \001..\002 aren't given in the color escapes, lines get wrapped
5015 5027 weirdly. But giving those screws up old xterms and emacs terms. So
5016 5028 I added some logic for emacs terms to be ok, but I can't identify old
5017 5029 xterms separately ($TERM=='xterm' for many terminals, like konsole).
5018 5030
5019 5031 2002-03-10 Fernando Perez <fperez@colorado.edu>
5020 5032
5021 5033 * IPython/usage.py (__doc__): Various documentation cleanups and
5022 5034 updates, both in usage docstrings and in the manual.
5023 5035
5024 5036 * IPython/Prompts.py (CachedOutput.set_colors): cleanups for
5025 5037 handling of caching. Set minimum acceptabe value for having a
5026 5038 cache at 20 values.
5027 5039
5028 5040 * IPython/iplib.py (InteractiveShell.user_setup): moved the
5029 5041 install_first_time function to a method, renamed it and added an
5030 5042 'upgrade' mode. Now people can update their config directory with
5031 5043 a simple command line switch (-upgrade, also new).
5032 5044
5033 5045 * IPython/Magic.py (Magic.magic_pfile): Made @pfile an alias to
5034 5046 @file (convenient for automagic users under Python >= 2.2).
5035 5047 Removed @files (it seemed more like a plural than an abbrev. of
5036 5048 'file show').
5037 5049
5038 5050 * IPython/iplib.py (install_first_time): Fixed crash if there were
5039 5051 backup files ('~') in .ipython/ install directory.
5040 5052
5041 5053 * IPython/ipmaker.py (make_IPython): fixes for new prompt
5042 5054 system. Things look fine, but these changes are fairly
5043 5055 intrusive. Test them for a few days.
5044 5056
5045 5057 * IPython/Prompts.py (CachedOutput.__init__): Massive rewrite of
5046 5058 the prompts system. Now all in/out prompt strings are user
5047 5059 controllable. This is particularly useful for embedding, as one
5048 5060 can tag embedded instances with particular prompts.
5049 5061
5050 5062 Also removed global use of sys.ps1/2, which now allows nested
5051 5063 embeddings without any problems. Added command-line options for
5052 5064 the prompt strings.
5053 5065
5054 5066 2002-03-08 Fernando Perez <fperez@colorado.edu>
5055 5067
5056 5068 * IPython/UserConfig/example-embed-short.py (ipshell): added
5057 5069 example file with the bare minimum code for embedding.
5058 5070
5059 5071 * IPython/Shell.py (IPythonShellEmbed.set_dummy_mode): added
5060 5072 functionality for the embeddable shell to be activated/deactivated
5061 5073 either globally or at each call.
5062 5074
5063 5075 * IPython/Prompts.py (Prompt1.auto_rewrite): Fixes the problem of
5064 5076 rewriting the prompt with '--->' for auto-inputs with proper
5065 5077 coloring. Now the previous UGLY hack in handle_auto() is gone, and
5066 5078 this is handled by the prompts class itself, as it should.
5067 5079
5068 5080 2002-03-05 Fernando Perez <fperez@colorado.edu>
5069 5081
5070 5082 * IPython/Magic.py (Magic.magic_logstart): Changed @log to
5071 5083 @logstart to avoid name clashes with the math log function.
5072 5084
5073 5085 * Big updates to X/Emacs section of the manual.
5074 5086
5075 5087 * Removed ipython_emacs. Milan explained to me how to pass
5076 5088 arguments to ipython through Emacs. Some day I'm going to end up
5077 5089 learning some lisp...
5078 5090
5079 5091 2002-03-04 Fernando Perez <fperez@colorado.edu>
5080 5092
5081 5093 * IPython/ipython_emacs: Created script to be used as the
5082 5094 py-python-command Emacs variable so we can pass IPython
5083 5095 parameters. I can't figure out how to tell Emacs directly to pass
5084 5096 parameters to IPython, so a dummy shell script will do it.
5085 5097
5086 5098 Other enhancements made for things to work better under Emacs'
5087 5099 various types of terminals. Many thanks to Milan Zamazal
5088 5100 <pdm-AT-zamazal.org> for all the suggestions and pointers.
5089 5101
5090 5102 2002-03-01 Fernando Perez <fperez@colorado.edu>
5091 5103
5092 5104 * IPython/ipmaker.py (make_IPython): added a --readline! option so
5093 5105 that loading of readline is now optional. This gives better
5094 5106 control to emacs users.
5095 5107
5096 5108 * IPython/ultraTB.py (__date__): Modified color escape sequences
5097 5109 and now things work fine under xterm and in Emacs' term buffers
5098 5110 (though not shell ones). Well, in emacs you get colors, but all
5099 5111 seem to be 'light' colors (no difference between dark and light
5100 5112 ones). But the garbage chars are gone, and also in xterms. It
5101 5113 seems that now I'm using 'cleaner' ansi sequences.
5102 5114
5103 5115 2002-02-21 Fernando Perez <fperez@colorado.edu>
5104 5116
5105 5117 * Released 0.2.7 (mainly to publish the scoping fix).
5106 5118
5107 5119 * IPython/Logger.py (Logger.logstate): added. A corresponding
5108 5120 @logstate magic was created.
5109 5121
5110 5122 * IPython/Magic.py: fixed nested scoping problem under Python
5111 5123 2.1.x (automagic wasn't working).
5112 5124
5113 5125 2002-02-20 Fernando Perez <fperez@colorado.edu>
5114 5126
5115 5127 * Released 0.2.6.
5116 5128
5117 5129 * IPython/OutputTrap.py (OutputTrap.__init__): added a 'quiet'
5118 5130 option so that logs can come out without any headers at all.
5119 5131
5120 5132 * IPython/UserConfig/ipythonrc-scipy.py: created a profile for
5121 5133 SciPy.
5122 5134
5123 5135 * IPython/iplib.py (InteractiveShell.embed_mainloop): Changed so
5124 5136 that embedded IPython calls don't require vars() to be explicitly
5125 5137 passed. Now they are extracted from the caller's frame (code
5126 5138 snatched from Eric Jones' weave). Added better documentation to
5127 5139 the section on embedding and the example file.
5128 5140
5129 5141 * IPython/genutils.py (page): Changed so that under emacs, it just
5130 5142 prints the string. You can then page up and down in the emacs
5131 5143 buffer itself. This is how the builtin help() works.
5132 5144
5133 5145 * IPython/Prompts.py (CachedOutput.__call__): Fixed issue with
5134 5146 macro scoping: macros need to be executed in the user's namespace
5135 5147 to work as if they had been typed by the user.
5136 5148
5137 5149 * IPython/Magic.py (Magic.magic_macro): Changed macros so they
5138 5150 execute automatically (no need to type 'exec...'). They then
5139 5151 behave like 'true macros'. The printing system was also modified
5140 5152 for this to work.
5141 5153
5142 5154 2002-02-19 Fernando Perez <fperez@colorado.edu>
5143 5155
5144 5156 * IPython/genutils.py (page_file): new function for paging files
5145 5157 in an OS-independent way. Also necessary for file viewing to work
5146 5158 well inside Emacs buffers.
5147 5159 (page): Added checks for being in an emacs buffer.
5148 5160 (page): fixed bug for Windows ($TERM isn't set in Windows). Fixed
5149 5161 same bug in iplib.
5150 5162
5151 5163 2002-02-18 Fernando Perez <fperez@colorado.edu>
5152 5164
5153 5165 * IPython/iplib.py (InteractiveShell.init_readline): modified use
5154 5166 of readline so that IPython can work inside an Emacs buffer.
5155 5167
5156 5168 * IPython/ultraTB.py (AutoFormattedTB.__call__): some fixes to
5157 5169 method signatures (they weren't really bugs, but it looks cleaner
5158 5170 and keeps PyChecker happy).
5159 5171
5160 5172 * IPython/ipmaker.py (make_IPython): added hooks Struct to __IP
5161 5173 for implementing various user-defined hooks. Currently only
5162 5174 display is done.
5163 5175
5164 5176 * IPython/Prompts.py (CachedOutput._display): changed display
5165 5177 functions so that they can be dynamically changed by users easily.
5166 5178
5167 5179 * IPython/Extensions/numeric_formats.py (num_display): added an
5168 5180 extension for printing NumPy arrays in flexible manners. It
5169 5181 doesn't do anything yet, but all the structure is in
5170 5182 place. Ultimately the plan is to implement output format control
5171 5183 like in Octave.
5172 5184
5173 5185 * IPython/Magic.py (Magic.lsmagic): changed so that bound magic
5174 5186 methods are found at run-time by all the automatic machinery.
5175 5187
5176 5188 2002-02-17 Fernando Perez <fperez@colorado.edu>
5177 5189
5178 5190 * setup_Windows.py (make_shortcut): documented. Cleaned up the
5179 5191 whole file a little.
5180 5192
5181 5193 * ToDo: closed this document. Now there's a new_design.lyx
5182 5194 document for all new ideas. Added making a pdf of it for the
5183 5195 end-user distro.
5184 5196
5185 5197 * IPython/Logger.py (Logger.switch_log): Created this to replace
5186 5198 logon() and logoff(). It also fixes a nasty crash reported by
5187 5199 Philip Hisley <compsys-AT-starpower.net>. Many thanks to him.
5188 5200
5189 5201 * IPython/iplib.py (complete): got auto-completion to work with
5190 5202 automagic (I had wanted this for a long time).
5191 5203
5192 5204 * IPython/Magic.py (Magic.magic_files): Added @files as an alias
5193 5205 to @file, since file() is now a builtin and clashes with automagic
5194 5206 for @file.
5195 5207
5196 5208 * Made some new files: Prompts, CrashHandler, Magic, Logger. All
5197 5209 of this was previously in iplib, which had grown to more than 2000
5198 5210 lines, way too long. No new functionality, but it makes managing
5199 5211 the code a bit easier.
5200 5212
5201 5213 * IPython/iplib.py (IPythonCrashHandler.__call__): Added version
5202 5214 information to crash reports.
5203 5215
5204 5216 2002-02-12 Fernando Perez <fperez@colorado.edu>
5205 5217
5206 5218 * Released 0.2.5.
5207 5219
5208 5220 2002-02-11 Fernando Perez <fperez@colorado.edu>
5209 5221
5210 5222 * Wrote a relatively complete Windows installer. It puts
5211 5223 everything in place, creates Start Menu entries and fixes the
5212 5224 color issues. Nothing fancy, but it works.
5213 5225
5214 5226 2002-02-10 Fernando Perez <fperez@colorado.edu>
5215 5227
5216 5228 * IPython/iplib.py (InteractiveShell.safe_execfile): added an
5217 5229 os.path.expanduser() call so that we can type @run ~/myfile.py and
5218 5230 have thigs work as expected.
5219 5231
5220 5232 * IPython/genutils.py (page): fixed exception handling so things
5221 5233 work both in Unix and Windows correctly. Quitting a pager triggers
5222 5234 an IOError/broken pipe in Unix, and in windows not finding a pager
5223 5235 is also an IOError, so I had to actually look at the return value
5224 5236 of the exception, not just the exception itself. Should be ok now.
5225 5237
5226 5238 * IPython/ultraTB.py (ColorSchemeTable.set_active_scheme):
5227 5239 modified to allow case-insensitive color scheme changes.
5228 5240
5229 5241 2002-02-09 Fernando Perez <fperez@colorado.edu>
5230 5242
5231 5243 * IPython/genutils.py (native_line_ends): new function to leave
5232 5244 user config files with os-native line-endings.
5233 5245
5234 5246 * README and manual updates.
5235 5247
5236 5248 * IPython/genutils.py: fixed unicode bug: use types.StringTypes
5237 5249 instead of StringType to catch Unicode strings.
5238 5250
5239 5251 * IPython/genutils.py (filefind): fixed bug for paths with
5240 5252 embedded spaces (very common in Windows).
5241 5253
5242 5254 * IPython/ipmaker.py (make_IPython): added a '.ini' to the rc
5243 5255 files under Windows, so that they get automatically associated
5244 5256 with a text editor. Windows makes it a pain to handle
5245 5257 extension-less files.
5246 5258
5247 5259 * IPython/iplib.py (InteractiveShell.init_readline): Made the
5248 5260 warning about readline only occur for Posix. In Windows there's no
5249 5261 way to get readline, so why bother with the warning.
5250 5262
5251 5263 * IPython/Struct.py (Struct.__str__): fixed to use self.__dict__
5252 5264 for __str__ instead of dir(self), since dir() changed in 2.2.
5253 5265
5254 5266 * Ported to Windows! Tested on XP, I suspect it should work fine
5255 5267 on NT/2000, but I don't think it will work on 98 et al. That
5256 5268 series of Windows is such a piece of junk anyway that I won't try
5257 5269 porting it there. The XP port was straightforward, showed a few
5258 5270 bugs here and there (fixed all), in particular some string
5259 5271 handling stuff which required considering Unicode strings (which
5260 5272 Windows uses). This is good, but hasn't been too tested :) No
5261 5273 fancy installer yet, I'll put a note in the manual so people at
5262 5274 least make manually a shortcut.
5263 5275
5264 5276 * IPython/iplib.py (Magic.magic_colors): Unified the color options
5265 5277 into a single one, "colors". This now controls both prompt and
5266 5278 exception color schemes, and can be changed both at startup
5267 5279 (either via command-line switches or via ipythonrc files) and at
5268 5280 runtime, with @colors.
5269 5281 (Magic.magic_run): renamed @prun to @run and removed the old
5270 5282 @run. The two were too similar to warrant keeping both.
5271 5283
5272 5284 2002-02-03 Fernando Perez <fperez@colorado.edu>
5273 5285
5274 5286 * IPython/iplib.py (install_first_time): Added comment on how to
5275 5287 configure the color options for first-time users. Put a <return>
5276 5288 request at the end so that small-terminal users get a chance to
5277 5289 read the startup info.
5278 5290
5279 5291 2002-01-23 Fernando Perez <fperez@colorado.edu>
5280 5292
5281 5293 * IPython/iplib.py (CachedOutput.update): Changed output memory
5282 5294 variable names from _o,_oo,_ooo,_o<n> to simply _,__,___,_<n>. For
5283 5295 input history we still use _i. Did this b/c these variable are
5284 5296 very commonly used in interactive work, so the less we need to
5285 5297 type the better off we are.
5286 5298 (Magic.magic_prun): updated @prun to better handle the namespaces
5287 5299 the file will run in, including a fix for __name__ not being set
5288 5300 before.
5289 5301
5290 5302 2002-01-20 Fernando Perez <fperez@colorado.edu>
5291 5303
5292 5304 * IPython/ultraTB.py (VerboseTB.linereader): Fixed printing of
5293 5305 extra garbage for Python 2.2. Need to look more carefully into
5294 5306 this later.
5295 5307
5296 5308 2002-01-19 Fernando Perez <fperez@colorado.edu>
5297 5309
5298 5310 * IPython/iplib.py (InteractiveShell.showtraceback): fixed to
5299 5311 display SyntaxError exceptions properly formatted when they occur
5300 5312 (they can be triggered by imported code).
5301 5313
5302 5314 2002-01-18 Fernando Perez <fperez@colorado.edu>
5303 5315
5304 5316 * IPython/iplib.py (InteractiveShell.safe_execfile): now
5305 5317 SyntaxError exceptions are reported nicely formatted, instead of
5306 5318 spitting out only offset information as before.
5307 5319 (Magic.magic_prun): Added the @prun function for executing
5308 5320 programs with command line args inside IPython.
5309 5321
5310 5322 2002-01-16 Fernando Perez <fperez@colorado.edu>
5311 5323
5312 5324 * IPython/iplib.py (Magic.magic_hist): Changed @hist and @dhist
5313 5325 to *not* include the last item given in a range. This brings their
5314 5326 behavior in line with Python's slicing:
5315 5327 a[n1:n2] -> a[n1]...a[n2-1]
5316 5328 It may be a bit less convenient, but I prefer to stick to Python's
5317 5329 conventions *everywhere*, so users never have to wonder.
5318 5330 (Magic.magic_macro): Added @macro function to ease the creation of
5319 5331 macros.
5320 5332
5321 5333 2002-01-05 Fernando Perez <fperez@colorado.edu>
5322 5334
5323 5335 * Released 0.2.4.
5324 5336
5325 5337 * IPython/iplib.py (Magic.magic_pdef):
5326 5338 (InteractiveShell.safe_execfile): report magic lines and error
5327 5339 lines without line numbers so one can easily copy/paste them for
5328 5340 re-execution.
5329 5341
5330 5342 * Updated manual with recent changes.
5331 5343
5332 5344 * IPython/iplib.py (Magic.magic_oinfo): added constructor
5333 5345 docstring printing when class? is called. Very handy for knowing
5334 5346 how to create class instances (as long as __init__ is well
5335 5347 documented, of course :)
5336 5348 (Magic.magic_doc): print both class and constructor docstrings.
5337 5349 (Magic.magic_pdef): give constructor info if passed a class and
5338 5350 __call__ info for callable object instances.
5339 5351
5340 5352 2002-01-04 Fernando Perez <fperez@colorado.edu>
5341 5353
5342 5354 * Made deep_reload() off by default. It doesn't always work
5343 5355 exactly as intended, so it's probably safer to have it off. It's
5344 5356 still available as dreload() anyway, so nothing is lost.
5345 5357
5346 5358 2002-01-02 Fernando Perez <fperez@colorado.edu>
5347 5359
5348 5360 * Released 0.2.3 (contacted R.Singh at CU about biopython course,
5349 5361 so I wanted an updated release).
5350 5362
5351 5363 2001-12-27 Fernando Perez <fperez@colorado.edu>
5352 5364
5353 5365 * IPython/iplib.py (InteractiveShell.interact): Added the original
5354 5366 code from 'code.py' for this module in order to change the
5355 5367 handling of a KeyboardInterrupt. This was necessary b/c otherwise
5356 5368 the history cache would break when the user hit Ctrl-C, and
5357 5369 interact() offers no way to add any hooks to it.
5358 5370
5359 5371 2001-12-23 Fernando Perez <fperez@colorado.edu>
5360 5372
5361 5373 * setup.py: added check for 'MANIFEST' before trying to remove
5362 5374 it. Thanks to Sean Reifschneider.
5363 5375
5364 5376 2001-12-22 Fernando Perez <fperez@colorado.edu>
5365 5377
5366 5378 * Released 0.2.2.
5367 5379
5368 5380 * Finished (reasonably) writing the manual. Later will add the
5369 5381 python-standard navigation stylesheets, but for the time being
5370 5382 it's fairly complete. Distribution will include html and pdf
5371 5383 versions.
5372 5384
5373 5385 * Bugfix: '.' wasn't being added to sys.path. Thanks to Prabhu
5374 5386 (MayaVi author).
5375 5387
5376 5388 2001-12-21 Fernando Perez <fperez@colorado.edu>
5377 5389
5378 5390 * Released 0.2.1. Barring any nasty bugs, this is it as far as a
5379 5391 good public release, I think (with the manual and the distutils
5380 5392 installer). The manual can use some work, but that can go
5381 5393 slowly. Otherwise I think it's quite nice for end users. Next
5382 5394 summer, rewrite the guts of it...
5383 5395
5384 5396 * Changed format of ipythonrc files to use whitespace as the
5385 5397 separator instead of an explicit '='. Cleaner.
5386 5398
5387 5399 2001-12-20 Fernando Perez <fperez@colorado.edu>
5388 5400
5389 5401 * Started a manual in LyX. For now it's just a quick merge of the
5390 5402 various internal docstrings and READMEs. Later it may grow into a
5391 5403 nice, full-blown manual.
5392 5404
5393 5405 * Set up a distutils based installer. Installation should now be
5394 5406 trivially simple for end-users.
5395 5407
5396 5408 2001-12-11 Fernando Perez <fperez@colorado.edu>
5397 5409
5398 5410 * Released 0.2.0. First public release, announced it at
5399 5411 comp.lang.python. From now on, just bugfixes...
5400 5412
5401 5413 * Went through all the files, set copyright/license notices and
5402 5414 cleaned up things. Ready for release.
5403 5415
5404 5416 2001-12-10 Fernando Perez <fperez@colorado.edu>
5405 5417
5406 5418 * Changed the first-time installer not to use tarfiles. It's more
5407 5419 robust now and less unix-dependent. Also makes it easier for
5408 5420 people to later upgrade versions.
5409 5421
5410 5422 * Changed @exit to @abort to reflect the fact that it's pretty
5411 5423 brutal (a sys.exit()). The difference between @abort and Ctrl-D
5412 5424 becomes significant only when IPyhton is embedded: in that case,
5413 5425 C-D closes IPython only, but @abort kills the enclosing program
5414 5426 too (unless it had called IPython inside a try catching
5415 5427 SystemExit).
5416 5428
5417 5429 * Created Shell module which exposes the actuall IPython Shell
5418 5430 classes, currently the normal and the embeddable one. This at
5419 5431 least offers a stable interface we won't need to change when
5420 5432 (later) the internals are rewritten. That rewrite will be confined
5421 5433 to iplib and ipmaker, but the Shell interface should remain as is.
5422 5434
5423 5435 * Added embed module which offers an embeddable IPShell object,
5424 5436 useful to fire up IPython *inside* a running program. Great for
5425 5437 debugging or dynamical data analysis.
5426 5438
5427 5439 2001-12-08 Fernando Perez <fperez@colorado.edu>
5428 5440
5429 5441 * Fixed small bug preventing seeing info from methods of defined
5430 5442 objects (incorrect namespace in _ofind()).
5431 5443
5432 5444 * Documentation cleanup. Moved the main usage docstrings to a
5433 5445 separate file, usage.py (cleaner to maintain, and hopefully in the
5434 5446 future some perlpod-like way of producing interactive, man and
5435 5447 html docs out of it will be found).
5436 5448
5437 5449 * Added @profile to see your profile at any time.
5438 5450
5439 5451 * Added @p as an alias for 'print'. It's especially convenient if
5440 5452 using automagic ('p x' prints x).
5441 5453
5442 5454 * Small cleanups and fixes after a pychecker run.
5443 5455
5444 5456 * Changed the @cd command to handle @cd - and @cd -<n> for
5445 5457 visiting any directory in _dh.
5446 5458
5447 5459 * Introduced _dh, a history of visited directories. @dhist prints
5448 5460 it out with numbers.
5449 5461
5450 5462 2001-12-07 Fernando Perez <fperez@colorado.edu>
5451 5463
5452 5464 * Released 0.1.22
5453 5465
5454 5466 * Made initialization a bit more robust against invalid color
5455 5467 options in user input (exit, not traceback-crash).
5456 5468
5457 5469 * Changed the bug crash reporter to write the report only in the
5458 5470 user's .ipython directory. That way IPython won't litter people's
5459 5471 hard disks with crash files all over the place. Also print on
5460 5472 screen the necessary mail command.
5461 5473
5462 5474 * With the new ultraTB, implemented LightBG color scheme for light
5463 5475 background terminals. A lot of people like white backgrounds, so I
5464 5476 guess we should at least give them something readable.
5465 5477
5466 5478 2001-12-06 Fernando Perez <fperez@colorado.edu>
5467 5479
5468 5480 * Modified the structure of ultraTB. Now there's a proper class
5469 5481 for tables of color schemes which allow adding schemes easily and
5470 5482 switching the active scheme without creating a new instance every
5471 5483 time (which was ridiculous). The syntax for creating new schemes
5472 5484 is also cleaner. I think ultraTB is finally done, with a clean
5473 5485 class structure. Names are also much cleaner (now there's proper
5474 5486 color tables, no need for every variable to also have 'color' in
5475 5487 its name).
5476 5488
5477 5489 * Broke down genutils into separate files. Now genutils only
5478 5490 contains utility functions, and classes have been moved to their
5479 5491 own files (they had enough independent functionality to warrant
5480 5492 it): ConfigLoader, OutputTrap, Struct.
5481 5493
5482 5494 2001-12-05 Fernando Perez <fperez@colorado.edu>
5483 5495
5484 5496 * IPython turns 21! Released version 0.1.21, as a candidate for
5485 5497 public consumption. If all goes well, release in a few days.
5486 5498
5487 5499 * Fixed path bug (files in Extensions/ directory wouldn't be found
5488 5500 unless IPython/ was explicitly in sys.path).
5489 5501
5490 5502 * Extended the FlexCompleter class as MagicCompleter to allow
5491 5503 completion of @-starting lines.
5492 5504
5493 5505 * Created __release__.py file as a central repository for release
5494 5506 info that other files can read from.
5495 5507
5496 5508 * Fixed small bug in logging: when logging was turned on in
5497 5509 mid-session, old lines with special meanings (!@?) were being
5498 5510 logged without the prepended comment, which is necessary since
5499 5511 they are not truly valid python syntax. This should make session
5500 5512 restores produce less errors.
5501 5513
5502 5514 * The namespace cleanup forced me to make a FlexCompleter class
5503 5515 which is nothing but a ripoff of rlcompleter, but with selectable
5504 5516 namespace (rlcompleter only works in __main__.__dict__). I'll try
5505 5517 to submit a note to the authors to see if this change can be
5506 5518 incorporated in future rlcompleter releases (Dec.6: done)
5507 5519
5508 5520 * More fixes to namespace handling. It was a mess! Now all
5509 5521 explicit references to __main__.__dict__ are gone (except when
5510 5522 really needed) and everything is handled through the namespace
5511 5523 dicts in the IPython instance. We seem to be getting somewhere
5512 5524 with this, finally...
5513 5525
5514 5526 * Small documentation updates.
5515 5527
5516 5528 * Created the Extensions directory under IPython (with an
5517 5529 __init__.py). Put the PhysicalQ stuff there. This directory should
5518 5530 be used for all special-purpose extensions.
5519 5531
5520 5532 * File renaming:
5521 5533 ipythonlib --> ipmaker
5522 5534 ipplib --> iplib
5523 5535 This makes a bit more sense in terms of what these files actually do.
5524 5536
5525 5537 * Moved all the classes and functions in ipythonlib to ipplib, so
5526 5538 now ipythonlib only has make_IPython(). This will ease up its
5527 5539 splitting in smaller functional chunks later.
5528 5540
5529 5541 * Cleaned up (done, I think) output of @whos. Better column
5530 5542 formatting, and now shows str(var) for as much as it can, which is
5531 5543 typically what one gets with a 'print var'.
5532 5544
5533 5545 2001-12-04 Fernando Perez <fperez@colorado.edu>
5534 5546
5535 5547 * Fixed namespace problems. Now builtin/IPyhton/user names get
5536 5548 properly reported in their namespace. Internal namespace handling
5537 5549 is finally getting decent (not perfect yet, but much better than
5538 5550 the ad-hoc mess we had).
5539 5551
5540 5552 * Removed -exit option. If people just want to run a python
5541 5553 script, that's what the normal interpreter is for. Less
5542 5554 unnecessary options, less chances for bugs.
5543 5555
5544 5556 * Added a crash handler which generates a complete post-mortem if
5545 5557 IPython crashes. This will help a lot in tracking bugs down the
5546 5558 road.
5547 5559
5548 5560 * Fixed nasty bug in auto-evaluation part of prefilter(). Names
5549 5561 which were boud to functions being reassigned would bypass the
5550 5562 logger, breaking the sync of _il with the prompt counter. This
5551 5563 would then crash IPython later when a new line was logged.
5552 5564
5553 5565 2001-12-02 Fernando Perez <fperez@colorado.edu>
5554 5566
5555 5567 * Made IPython a package. This means people don't have to clutter
5556 5568 their sys.path with yet another directory. Changed the INSTALL
5557 5569 file accordingly.
5558 5570
5559 5571 * Cleaned up the output of @who_ls, @who and @whos. @who_ls now
5560 5572 sorts its output (so @who shows it sorted) and @whos formats the
5561 5573 table according to the width of the first column. Nicer, easier to
5562 5574 read. Todo: write a generic table_format() which takes a list of
5563 5575 lists and prints it nicely formatted, with optional row/column
5564 5576 separators and proper padding and justification.
5565 5577
5566 5578 * Released 0.1.20
5567 5579
5568 5580 * Fixed bug in @log which would reverse the inputcache list (a
5569 5581 copy operation was missing).
5570 5582
5571 5583 * Code cleanup. @config was changed to use page(). Better, since
5572 5584 its output is always quite long.
5573 5585
5574 5586 * Itpl is back as a dependency. I was having too many problems
5575 5587 getting the parametric aliases to work reliably, and it's just
5576 5588 easier to code weird string operations with it than playing %()s
5577 5589 games. It's only ~6k, so I don't think it's too big a deal.
5578 5590
5579 5591 * Found (and fixed) a very nasty bug with history. !lines weren't
5580 5592 getting cached, and the out of sync caches would crash
5581 5593 IPython. Fixed it by reorganizing the prefilter/handlers/logger
5582 5594 division of labor a bit better. Bug fixed, cleaner structure.
5583 5595
5584 5596 2001-12-01 Fernando Perez <fperez@colorado.edu>
5585 5597
5586 5598 * Released 0.1.19
5587 5599
5588 5600 * Added option -n to @hist to prevent line number printing. Much
5589 5601 easier to copy/paste code this way.
5590 5602
5591 5603 * Created global _il to hold the input list. Allows easy
5592 5604 re-execution of blocks of code by slicing it (inspired by Janko's
5593 5605 comment on 'macros').
5594 5606
5595 5607 * Small fixes and doc updates.
5596 5608
5597 5609 * Rewrote @history function (was @h). Renamed it to @hist, @h is
5598 5610 much too fragile with automagic. Handles properly multi-line
5599 5611 statements and takes parameters.
5600 5612
5601 5613 2001-11-30 Fernando Perez <fperez@colorado.edu>
5602 5614
5603 5615 * Version 0.1.18 released.
5604 5616
5605 5617 * Fixed nasty namespace bug in initial module imports.
5606 5618
5607 5619 * Added copyright/license notes to all code files (except
5608 5620 DPyGetOpt). For the time being, LGPL. That could change.
5609 5621
5610 5622 * Rewrote a much nicer README, updated INSTALL, cleaned up
5611 5623 ipythonrc-* samples.
5612 5624
5613 5625 * Overall code/documentation cleanup. Basically ready for
5614 5626 release. Only remaining thing: licence decision (LGPL?).
5615 5627
5616 5628 * Converted load_config to a class, ConfigLoader. Now recursion
5617 5629 control is better organized. Doesn't include the same file twice.
5618 5630
5619 5631 2001-11-29 Fernando Perez <fperez@colorado.edu>
5620 5632
5621 5633 * Got input history working. Changed output history variables from
5622 5634 _p to _o so that _i is for input and _o for output. Just cleaner
5623 5635 convention.
5624 5636
5625 5637 * Implemented parametric aliases. This pretty much allows the
5626 5638 alias system to offer full-blown shell convenience, I think.
5627 5639
5628 5640 * Version 0.1.17 released, 0.1.18 opened.
5629 5641
5630 5642 * dot_ipython/ipythonrc (alias): added documentation.
5631 5643 (xcolor): Fixed small bug (xcolors -> xcolor)
5632 5644
5633 5645 * Changed the alias system. Now alias is a magic command to define
5634 5646 aliases just like the shell. Rationale: the builtin magics should
5635 5647 be there for things deeply connected to IPython's
5636 5648 architecture. And this is a much lighter system for what I think
5637 5649 is the really important feature: allowing users to define quickly
5638 5650 magics that will do shell things for them, so they can customize
5639 5651 IPython easily to match their work habits. If someone is really
5640 5652 desperate to have another name for a builtin alias, they can
5641 5653 always use __IP.magic_newname = __IP.magic_oldname. Hackish but
5642 5654 works.
5643 5655
5644 5656 2001-11-28 Fernando Perez <fperez@colorado.edu>
5645 5657
5646 5658 * Changed @file so that it opens the source file at the proper
5647 5659 line. Since it uses less, if your EDITOR environment is
5648 5660 configured, typing v will immediately open your editor of choice
5649 5661 right at the line where the object is defined. Not as quick as
5650 5662 having a direct @edit command, but for all intents and purposes it
5651 5663 works. And I don't have to worry about writing @edit to deal with
5652 5664 all the editors, less does that.
5653 5665
5654 5666 * Version 0.1.16 released, 0.1.17 opened.
5655 5667
5656 5668 * Fixed some nasty bugs in the page/page_dumb combo that could
5657 5669 crash IPython.
5658 5670
5659 5671 2001-11-27 Fernando Perez <fperez@colorado.edu>
5660 5672
5661 5673 * Version 0.1.15 released, 0.1.16 opened.
5662 5674
5663 5675 * Finally got ? and ?? to work for undefined things: now it's
5664 5676 possible to type {}.get? and get information about the get method
5665 5677 of dicts, or os.path? even if only os is defined (so technically
5666 5678 os.path isn't). Works at any level. For example, after import os,
5667 5679 os?, os.path?, os.path.abspath? all work. This is great, took some
5668 5680 work in _ofind.
5669 5681
5670 5682 * Fixed more bugs with logging. The sanest way to do it was to add
5671 5683 to @log a 'mode' parameter. Killed two in one shot (this mode
5672 5684 option was a request of Janko's). I think it's finally clean
5673 5685 (famous last words).
5674 5686
5675 5687 * Added a page_dumb() pager which does a decent job of paging on
5676 5688 screen, if better things (like less) aren't available. One less
5677 5689 unix dependency (someday maybe somebody will port this to
5678 5690 windows).
5679 5691
5680 5692 * Fixed problem in magic_log: would lock of logging out if log
5681 5693 creation failed (because it would still think it had succeeded).
5682 5694
5683 5695 * Improved the page() function using curses to auto-detect screen
5684 5696 size. Now it can make a much better decision on whether to print
5685 5697 or page a string. Option screen_length was modified: a value 0
5686 5698 means auto-detect, and that's the default now.
5687 5699
5688 5700 * Version 0.1.14 released, 0.1.15 opened. I think this is ready to
5689 5701 go out. I'll test it for a few days, then talk to Janko about
5690 5702 licences and announce it.
5691 5703
5692 5704 * Fixed the length of the auto-generated ---> prompt which appears
5693 5705 for auto-parens and auto-quotes. Getting this right isn't trivial,
5694 5706 with all the color escapes, different prompt types and optional
5695 5707 separators. But it seems to be working in all the combinations.
5696 5708
5697 5709 2001-11-26 Fernando Perez <fperez@colorado.edu>
5698 5710
5699 5711 * Wrote a regexp filter to get option types from the option names
5700 5712 string. This eliminates the need to manually keep two duplicate
5701 5713 lists.
5702 5714
5703 5715 * Removed the unneeded check_option_names. Now options are handled
5704 5716 in a much saner manner and it's easy to visually check that things
5705 5717 are ok.
5706 5718
5707 5719 * Updated version numbers on all files I modified to carry a
5708 5720 notice so Janko and Nathan have clear version markers.
5709 5721
5710 5722 * Updated docstring for ultraTB with my changes. I should send
5711 5723 this to Nathan.
5712 5724
5713 5725 * Lots of small fixes. Ran everything through pychecker again.
5714 5726
5715 5727 * Made loading of deep_reload an cmd line option. If it's not too
5716 5728 kosher, now people can just disable it. With -nodeep_reload it's
5717 5729 still available as dreload(), it just won't overwrite reload().
5718 5730
5719 5731 * Moved many options to the no| form (-opt and -noopt
5720 5732 accepted). Cleaner.
5721 5733
5722 5734 * Changed magic_log so that if called with no parameters, it uses
5723 5735 'rotate' mode. That way auto-generated logs aren't automatically
5724 5736 over-written. For normal logs, now a backup is made if it exists
5725 5737 (only 1 level of backups). A new 'backup' mode was added to the
5726 5738 Logger class to support this. This was a request by Janko.
5727 5739
5728 5740 * Added @logoff/@logon to stop/restart an active log.
5729 5741
5730 5742 * Fixed a lot of bugs in log saving/replay. It was pretty
5731 5743 broken. Now special lines (!@,/) appear properly in the command
5732 5744 history after a log replay.
5733 5745
5734 5746 * Tried and failed to implement full session saving via pickle. My
5735 5747 idea was to pickle __main__.__dict__, but modules can't be
5736 5748 pickled. This would be a better alternative to replaying logs, but
5737 5749 seems quite tricky to get to work. Changed -session to be called
5738 5750 -logplay, which more accurately reflects what it does. And if we
5739 5751 ever get real session saving working, -session is now available.
5740 5752
5741 5753 * Implemented color schemes for prompts also. As for tracebacks,
5742 5754 currently only NoColor and Linux are supported. But now the
5743 5755 infrastructure is in place, based on a generic ColorScheme
5744 5756 class. So writing and activating new schemes both for the prompts
5745 5757 and the tracebacks should be straightforward.
5746 5758
5747 5759 * Version 0.1.13 released, 0.1.14 opened.
5748 5760
5749 5761 * Changed handling of options for output cache. Now counter is
5750 5762 hardwired starting at 1 and one specifies the maximum number of
5751 5763 entries *in the outcache* (not the max prompt counter). This is
5752 5764 much better, since many statements won't increase the cache
5753 5765 count. It also eliminated some confusing options, now there's only
5754 5766 one: cache_size.
5755 5767
5756 5768 * Added 'alias' magic function and magic_alias option in the
5757 5769 ipythonrc file. Now the user can easily define whatever names he
5758 5770 wants for the magic functions without having to play weird
5759 5771 namespace games. This gives IPython a real shell-like feel.
5760 5772
5761 5773 * Fixed doc/?/?? for magics. Now all work, in all forms (explicit
5762 5774 @ or not).
5763 5775
5764 5776 This was one of the last remaining 'visible' bugs (that I know
5765 5777 of). I think if I can clean up the session loading so it works
5766 5778 100% I'll release a 0.2.0 version on c.p.l (talk to Janko first
5767 5779 about licensing).
5768 5780
5769 5781 2001-11-25 Fernando Perez <fperez@colorado.edu>
5770 5782
5771 5783 * Rewrote somewhat oinfo (?/??). Nicer, now uses page() and
5772 5784 there's a cleaner distinction between what ? and ?? show.
5773 5785
5774 5786 * Added screen_length option. Now the user can define his own
5775 5787 screen size for page() operations.
5776 5788
5777 5789 * Implemented magic shell-like functions with automatic code
5778 5790 generation. Now adding another function is just a matter of adding
5779 5791 an entry to a dict, and the function is dynamically generated at
5780 5792 run-time. Python has some really cool features!
5781 5793
5782 5794 * Renamed many options to cleanup conventions a little. Now all
5783 5795 are lowercase, and only underscores where needed. Also in the code
5784 5796 option name tables are clearer.
5785 5797
5786 5798 * Changed prompts a little. Now input is 'In [n]:' instead of
5787 5799 'In[n]:='. This allows it the numbers to be aligned with the
5788 5800 Out[n] numbers, and removes usage of ':=' which doesn't exist in
5789 5801 Python (it was a Mathematica thing). The '...' continuation prompt
5790 5802 was also changed a little to align better.
5791 5803
5792 5804 * Fixed bug when flushing output cache. Not all _p<n> variables
5793 5805 exist, so their deletion needs to be wrapped in a try:
5794 5806
5795 5807 * Figured out how to properly use inspect.formatargspec() (it
5796 5808 requires the args preceded by *). So I removed all the code from
5797 5809 _get_pdef in Magic, which was just replicating that.
5798 5810
5799 5811 * Added test to prefilter to allow redefining magic function names
5800 5812 as variables. This is ok, since the @ form is always available,
5801 5813 but whe should allow the user to define a variable called 'ls' if
5802 5814 he needs it.
5803 5815
5804 5816 * Moved the ToDo information from README into a separate ToDo.
5805 5817
5806 5818 * General code cleanup and small bugfixes. I think it's close to a
5807 5819 state where it can be released, obviously with a big 'beta'
5808 5820 warning on it.
5809 5821
5810 5822 * Got the magic function split to work. Now all magics are defined
5811 5823 in a separate class. It just organizes things a bit, and now
5812 5824 Xemacs behaves nicer (it was choking on InteractiveShell b/c it
5813 5825 was too long).
5814 5826
5815 5827 * Changed @clear to @reset to avoid potential confusions with
5816 5828 the shell command clear. Also renamed @cl to @clear, which does
5817 5829 exactly what people expect it to from their shell experience.
5818 5830
5819 5831 Added a check to the @reset command (since it's so
5820 5832 destructive, it's probably a good idea to ask for confirmation).
5821 5833 But now reset only works for full namespace resetting. Since the
5822 5834 del keyword is already there for deleting a few specific
5823 5835 variables, I don't see the point of having a redundant magic
5824 5836 function for the same task.
5825 5837
5826 5838 2001-11-24 Fernando Perez <fperez@colorado.edu>
5827 5839
5828 5840 * Updated the builtin docs (esp. the ? ones).
5829 5841
5830 5842 * Ran all the code through pychecker. Not terribly impressed with
5831 5843 it: lots of spurious warnings and didn't really find anything of
5832 5844 substance (just a few modules being imported and not used).
5833 5845
5834 5846 * Implemented the new ultraTB functionality into IPython. New
5835 5847 option: xcolors. This chooses color scheme. xmode now only selects
5836 5848 between Plain and Verbose. Better orthogonality.
5837 5849
5838 5850 * Large rewrite of ultraTB. Much cleaner now, with a separation of
5839 5851 mode and color scheme for the exception handlers. Now it's
5840 5852 possible to have the verbose traceback with no coloring.
5841 5853
5842 5854 2001-11-23 Fernando Perez <fperez@colorado.edu>
5843 5855
5844 5856 * Version 0.1.12 released, 0.1.13 opened.
5845 5857
5846 5858 * Removed option to set auto-quote and auto-paren escapes by
5847 5859 user. The chances of breaking valid syntax are just too high. If
5848 5860 someone *really* wants, they can always dig into the code.
5849 5861
5850 5862 * Made prompt separators configurable.
5851 5863
5852 5864 2001-11-22 Fernando Perez <fperez@colorado.edu>
5853 5865
5854 5866 * Small bugfixes in many places.
5855 5867
5856 5868 * Removed the MyCompleter class from ipplib. It seemed redundant
5857 5869 with the C-p,C-n history search functionality. Less code to
5858 5870 maintain.
5859 5871
5860 5872 * Moved all the original ipython.py code into ipythonlib.py. Right
5861 5873 now it's just one big dump into a function called make_IPython, so
5862 5874 no real modularity has been gained. But at least it makes the
5863 5875 wrapper script tiny, and since ipythonlib is a module, it gets
5864 5876 compiled and startup is much faster.
5865 5877
5866 5878 This is a reasobably 'deep' change, so we should test it for a
5867 5879 while without messing too much more with the code.
5868 5880
5869 5881 2001-11-21 Fernando Perez <fperez@colorado.edu>
5870 5882
5871 5883 * Version 0.1.11 released, 0.1.12 opened for further work.
5872 5884
5873 5885 * Removed dependency on Itpl. It was only needed in one place. It
5874 5886 would be nice if this became part of python, though. It makes life
5875 5887 *a lot* easier in some cases.
5876 5888
5877 5889 * Simplified the prefilter code a bit. Now all handlers are
5878 5890 expected to explicitly return a value (at least a blank string).
5879 5891
5880 5892 * Heavy edits in ipplib. Removed the help system altogether. Now
5881 5893 obj?/?? is used for inspecting objects, a magic @doc prints
5882 5894 docstrings, and full-blown Python help is accessed via the 'help'
5883 5895 keyword. This cleans up a lot of code (less to maintain) and does
5884 5896 the job. Since 'help' is now a standard Python component, might as
5885 5897 well use it and remove duplicate functionality.
5886 5898
5887 5899 Also removed the option to use ipplib as a standalone program. By
5888 5900 now it's too dependent on other parts of IPython to function alone.
5889 5901
5890 5902 * Fixed bug in genutils.pager. It would crash if the pager was
5891 5903 exited immediately after opening (broken pipe).
5892 5904
5893 5905 * Trimmed down the VerboseTB reporting a little. The header is
5894 5906 much shorter now and the repeated exception arguments at the end
5895 5907 have been removed. For interactive use the old header seemed a bit
5896 5908 excessive.
5897 5909
5898 5910 * Fixed small bug in output of @whos for variables with multi-word
5899 5911 types (only first word was displayed).
5900 5912
5901 5913 2001-11-17 Fernando Perez <fperez@colorado.edu>
5902 5914
5903 5915 * Version 0.1.10 released, 0.1.11 opened for further work.
5904 5916
5905 5917 * Modified dirs and friends. dirs now *returns* the stack (not
5906 5918 prints), so one can manipulate it as a variable. Convenient to
5907 5919 travel along many directories.
5908 5920
5909 5921 * Fixed bug in magic_pdef: would only work with functions with
5910 5922 arguments with default values.
5911 5923
5912 5924 2001-11-14 Fernando Perez <fperez@colorado.edu>
5913 5925
5914 5926 * Added the PhysicsInput stuff to dot_ipython so it ships as an
5915 5927 example with IPython. Various other minor fixes and cleanups.
5916 5928
5917 5929 * Version 0.1.9 released, 0.1.10 opened for further work.
5918 5930
5919 5931 * Added sys.path to the list of directories searched in the
5920 5932 execfile= option. It used to be the current directory and the
5921 5933 user's IPYTHONDIR only.
5922 5934
5923 5935 2001-11-13 Fernando Perez <fperez@colorado.edu>
5924 5936
5925 5937 * Reinstated the raw_input/prefilter separation that Janko had
5926 5938 initially. This gives a more convenient setup for extending the
5927 5939 pre-processor from the outside: raw_input always gets a string,
5928 5940 and prefilter has to process it. We can then redefine prefilter
5929 5941 from the outside and implement extensions for special
5930 5942 purposes.
5931 5943
5932 5944 Today I got one for inputting PhysicalQuantity objects
5933 5945 (from Scientific) without needing any function calls at
5934 5946 all. Extremely convenient, and it's all done as a user-level
5935 5947 extension (no IPython code was touched). Now instead of:
5936 5948 a = PhysicalQuantity(4.2,'m/s**2')
5937 5949 one can simply say
5938 5950 a = 4.2 m/s**2
5939 5951 or even
5940 5952 a = 4.2 m/s^2
5941 5953
5942 5954 I use this, but it's also a proof of concept: IPython really is
5943 5955 fully user-extensible, even at the level of the parsing of the
5944 5956 command line. It's not trivial, but it's perfectly doable.
5945 5957
5946 5958 * Added 'add_flip' method to inclusion conflict resolver. Fixes
5947 5959 the problem of modules being loaded in the inverse order in which
5948 5960 they were defined in
5949 5961
5950 5962 * Version 0.1.8 released, 0.1.9 opened for further work.
5951 5963
5952 5964 * Added magics pdef, source and file. They respectively show the
5953 5965 definition line ('prototype' in C), source code and full python
5954 5966 file for any callable object. The object inspector oinfo uses
5955 5967 these to show the same information.
5956 5968
5957 5969 * Version 0.1.7 released, 0.1.8 opened for further work.
5958 5970
5959 5971 * Separated all the magic functions into a class called Magic. The
5960 5972 InteractiveShell class was becoming too big for Xemacs to handle
5961 5973 (de-indenting a line would lock it up for 10 seconds while it
5962 5974 backtracked on the whole class!)
5963 5975
5964 5976 FIXME: didn't work. It can be done, but right now namespaces are
5965 5977 all messed up. Do it later (reverted it for now, so at least
5966 5978 everything works as before).
5967 5979
5968 5980 * Got the object introspection system (magic_oinfo) working! I
5969 5981 think this is pretty much ready for release to Janko, so he can
5970 5982 test it for a while and then announce it. Pretty much 100% of what
5971 5983 I wanted for the 'phase 1' release is ready. Happy, tired.
5972 5984
5973 5985 2001-11-12 Fernando Perez <fperez@colorado.edu>
5974 5986
5975 5987 * Version 0.1.6 released, 0.1.7 opened for further work.
5976 5988
5977 5989 * Fixed bug in printing: it used to test for truth before
5978 5990 printing, so 0 wouldn't print. Now checks for None.
5979 5991
5980 5992 * Fixed bug where auto-execs increase the prompt counter by 2 (b/c
5981 5993 they have to call len(str(sys.ps1)) ). But the fix is ugly, it
5982 5994 reaches by hand into the outputcache. Think of a better way to do
5983 5995 this later.
5984 5996
5985 5997 * Various small fixes thanks to Nathan's comments.
5986 5998
5987 5999 * Changed magic_pprint to magic_Pprint. This way it doesn't
5988 6000 collide with pprint() and the name is consistent with the command
5989 6001 line option.
5990 6002
5991 6003 * Changed prompt counter behavior to be fully like
5992 6004 Mathematica's. That is, even input that doesn't return a result
5993 6005 raises the prompt counter. The old behavior was kind of confusing
5994 6006 (getting the same prompt number several times if the operation
5995 6007 didn't return a result).
5996 6008
5997 6009 * Fixed Nathan's last name in a couple of places (Gray, not Graham).
5998 6010
5999 6011 * Fixed -Classic mode (wasn't working anymore).
6000 6012
6001 6013 * Added colored prompts using Nathan's new code. Colors are
6002 6014 currently hardwired, they can be user-configurable. For
6003 6015 developers, they can be chosen in file ipythonlib.py, at the
6004 6016 beginning of the CachedOutput class def.
6005 6017
6006 6018 2001-11-11 Fernando Perez <fperez@colorado.edu>
6007 6019
6008 6020 * Version 0.1.5 released, 0.1.6 opened for further work.
6009 6021
6010 6022 * Changed magic_env to *return* the environment as a dict (not to
6011 6023 print it). This way it prints, but it can also be processed.
6012 6024
6013 6025 * Added Verbose exception reporting to interactive
6014 6026 exceptions. Very nice, now even 1/0 at the prompt gives a verbose
6015 6027 traceback. Had to make some changes to the ultraTB file. This is
6016 6028 probably the last 'big' thing in my mental todo list. This ties
6017 6029 in with the next entry:
6018 6030
6019 6031 * Changed -Xi and -Xf to a single -xmode option. Now all the user
6020 6032 has to specify is Plain, Color or Verbose for all exception
6021 6033 handling.
6022 6034
6023 6035 * Removed ShellServices option. All this can really be done via
6024 6036 the magic system. It's easier to extend, cleaner and has automatic
6025 6037 namespace protection and documentation.
6026 6038
6027 6039 2001-11-09 Fernando Perez <fperez@colorado.edu>
6028 6040
6029 6041 * Fixed bug in output cache flushing (missing parameter to
6030 6042 __init__). Other small bugs fixed (found using pychecker).
6031 6043
6032 6044 * Version 0.1.4 opened for bugfixing.
6033 6045
6034 6046 2001-11-07 Fernando Perez <fperez@colorado.edu>
6035 6047
6036 6048 * Version 0.1.3 released, mainly because of the raw_input bug.
6037 6049
6038 6050 * Fixed NASTY bug in raw_input: input line wasn't properly parsed
6039 6051 and when testing for whether things were callable, a call could
6040 6052 actually be made to certain functions. They would get called again
6041 6053 once 'really' executed, with a resulting double call. A disaster
6042 6054 in many cases (list.reverse() would never work!).
6043 6055
6044 6056 * Removed prefilter() function, moved its code to raw_input (which
6045 6057 after all was just a near-empty caller for prefilter). This saves
6046 6058 a function call on every prompt, and simplifies the class a tiny bit.
6047 6059
6048 6060 * Fix _ip to __ip name in magic example file.
6049 6061
6050 6062 * Changed 'tar -x -f' to 'tar xvf' in auto-installer. This should
6051 6063 work with non-gnu versions of tar.
6052 6064
6053 6065 2001-11-06 Fernando Perez <fperez@colorado.edu>
6054 6066
6055 6067 * Version 0.1.2. Just to keep track of the recent changes.
6056 6068
6057 6069 * Fixed nasty bug in output prompt routine. It used to check 'if
6058 6070 arg != None...'. Problem is, this fails if arg implements a
6059 6071 special comparison (__cmp__) which disallows comparing to
6060 6072 None. Found it when trying to use the PhysicalQuantity module from
6061 6073 ScientificPython.
6062 6074
6063 6075 2001-11-05 Fernando Perez <fperez@colorado.edu>
6064 6076
6065 6077 * Also added dirs. Now the pushd/popd/dirs family functions
6066 6078 basically like the shell, with the added convenience of going home
6067 6079 when called with no args.
6068 6080
6069 6081 * pushd/popd slightly modified to mimic shell behavior more
6070 6082 closely.
6071 6083
6072 6084 * Added env,pushd,popd from ShellServices as magic functions. I
6073 6085 think the cleanest will be to port all desired functions from
6074 6086 ShellServices as magics and remove ShellServices altogether. This
6075 6087 will provide a single, clean way of adding functionality
6076 6088 (shell-type or otherwise) to IP.
6077 6089
6078 6090 2001-11-04 Fernando Perez <fperez@colorado.edu>
6079 6091
6080 6092 * Added .ipython/ directory to sys.path. This way users can keep
6081 6093 customizations there and access them via import.
6082 6094
6083 6095 2001-11-03 Fernando Perez <fperez@colorado.edu>
6084 6096
6085 6097 * Opened version 0.1.1 for new changes.
6086 6098
6087 6099 * Changed version number to 0.1.0: first 'public' release, sent to
6088 6100 Nathan and Janko.
6089 6101
6090 6102 * Lots of small fixes and tweaks.
6091 6103
6092 6104 * Minor changes to whos format. Now strings are shown, snipped if
6093 6105 too long.
6094 6106
6095 6107 * Changed ShellServices to work on __main__ so they show up in @who
6096 6108
6097 6109 * Help also works with ? at the end of a line:
6098 6110 ?sin and sin?
6099 6111 both produce the same effect. This is nice, as often I use the
6100 6112 tab-complete to find the name of a method, but I used to then have
6101 6113 to go to the beginning of the line to put a ? if I wanted more
6102 6114 info. Now I can just add the ? and hit return. Convenient.
6103 6115
6104 6116 2001-11-02 Fernando Perez <fperez@colorado.edu>
6105 6117
6106 6118 * Python version check (>=2.1) added.
6107 6119
6108 6120 * Added LazyPython documentation. At this point the docs are quite
6109 6121 a mess. A cleanup is in order.
6110 6122
6111 6123 * Auto-installer created. For some bizarre reason, the zipfiles
6112 6124 module isn't working on my system. So I made a tar version
6113 6125 (hopefully the command line options in various systems won't kill
6114 6126 me).
6115 6127
6116 6128 * Fixes to Struct in genutils. Now all dictionary-like methods are
6117 6129 protected (reasonably).
6118 6130
6119 6131 * Added pager function to genutils and changed ? to print usage
6120 6132 note through it (it was too long).
6121 6133
6122 6134 * Added the LazyPython functionality. Works great! I changed the
6123 6135 auto-quote escape to ';', it's on home row and next to '. But
6124 6136 both auto-quote and auto-paren (still /) escapes are command-line
6125 6137 parameters.
6126 6138
6127 6139
6128 6140 2001-11-01 Fernando Perez <fperez@colorado.edu>
6129 6141
6130 6142 * Version changed to 0.0.7. Fairly large change: configuration now
6131 6143 is all stored in a directory, by default .ipython. There, all
6132 6144 config files have normal looking names (not .names)
6133 6145
6134 6146 * Version 0.0.6 Released first to Lucas and Archie as a test
6135 6147 run. Since it's the first 'semi-public' release, change version to
6136 6148 > 0.0.6 for any changes now.
6137 6149
6138 6150 * Stuff I had put in the ipplib.py changelog:
6139 6151
6140 6152 Changes to InteractiveShell:
6141 6153
6142 6154 - Made the usage message a parameter.
6143 6155
6144 6156 - Require the name of the shell variable to be given. It's a bit
6145 6157 of a hack, but allows the name 'shell' not to be hardwired in the
6146 6158 magic (@) handler, which is problematic b/c it requires
6147 6159 polluting the global namespace with 'shell'. This in turn is
6148 6160 fragile: if a user redefines a variable called shell, things
6149 6161 break.
6150 6162
6151 6163 - magic @: all functions available through @ need to be defined
6152 6164 as magic_<name>, even though they can be called simply as
6153 6165 @<name>. This allows the special command @magic to gather
6154 6166 information automatically about all existing magic functions,
6155 6167 even if they are run-time user extensions, by parsing the shell
6156 6168 instance __dict__ looking for special magic_ names.
6157 6169
6158 6170 - mainloop: added *two* local namespace parameters. This allows
6159 6171 the class to differentiate between parameters which were there
6160 6172 before and after command line initialization was processed. This
6161 6173 way, later @who can show things loaded at startup by the
6162 6174 user. This trick was necessary to make session saving/reloading
6163 6175 really work: ideally after saving/exiting/reloading a session,
6164 6176 *everything* should look the same, including the output of @who. I
6165 6177 was only able to make this work with this double namespace
6166 6178 trick.
6167 6179
6168 6180 - added a header to the logfile which allows (almost) full
6169 6181 session restoring.
6170 6182
6171 6183 - prepend lines beginning with @ or !, with a and log
6172 6184 them. Why? !lines: may be useful to know what you did @lines:
6173 6185 they may affect session state. So when restoring a session, at
6174 6186 least inform the user of their presence. I couldn't quite get
6175 6187 them to properly re-execute, but at least the user is warned.
6176 6188
6177 6189 * Started ChangeLog.
General Comments 0
You need to be logged in to leave comments. Login now