##// END OF EJS Templates
oops, invalid syntax committed...
fperez -
Show More
@@ -6,7 +6,7 b' Requires Python 2.3 or newer.'
6 6
7 7 This file contains all the classes and helper functions specific to IPython.
8 8
9 $Id: iplib.py 1347 2006-06-04 00:42:44Z fperez $
9 $Id: iplib.py 1348 2006-06-04 00:45:07Z fperez $
10 10 """
11 11
12 12 #*****************************************************************************
@@ -450,9 +450,9 b' class InteractiveShell(object,Magic):'
450 450 header='IPython system call: ',
451 451 verbose=self.rc.system_verbose)
452 452 self.getoutputerror = lambda cmd: \
453 getoutputerror((self.var_expand(cmd),
454 header='IPython system call: ',
455 verbose=self.rc.system_verbose)
453 getoutputerror(self.var_expand(cmd),
454 header='IPython system call: ',
455 verbose=self.rc.system_verbose)
456 456
457 457 # RegExp for splitting line contents into pre-char//first
458 458 # word-method//rest. For clarity, each group in on one line.
General Comments 0
You need to be logged in to leave comments. Login now