##// END OF EJS Templates
ipsystem() -> _ip.system()
vivainio -
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 1096 2006-01-28 20:08:02Z vivainio $
9 $Id: iplib.py 1097 2006-01-28 20:22:13Z vivainio $
10 10 """
11 11
12 12 #*****************************************************************************
@@ -2007,7 +2007,7 b' want to merge them back into the new files.""" % locals()'
2007 2007 continue_prompt,pre,iFun,theRest)
2008 2008 else:
2009 2009 cmd=line.lstrip().lstrip('!')
2010 line_out = '%sipsystem(%s)' % (pre,make_quoted_expr(cmd))
2010 line_out = '%s_ip.system(%s)' % (pre,make_quoted_expr(cmd))
2011 2011 # update cache/log and return
2012 2012 self.log(line_out,continue_prompt)
2013 2013 return line_out
General Comments 0
You need to be logged in to leave comments. Login now