##// END OF EJS Templates
irunner.py => lib/irunner.py and imports updated.
Brian Granger -
Show More
1 NO CONTENT: file renamed from IPython/irunner.py to IPython/lib/irunner.py
NO CONTENT: file renamed from IPython/irunner.py to IPython/lib/irunner.py
@@ -8,4 +8,7 b' def test_import_deepreload():'
8 from IPython.lib import deepreload
8 from IPython.lib import deepreload
9
9
10 def test_import_demo():
10 def test_import_demo():
11 from IPython.lib import demo No newline at end of file
11 from IPython.lib import demo
12
13 def test_import_irunner():
14 from IPython.lib import demo
@@ -92,7 +92,7 b' __builtin__._ip = ipapi.get()'
92
92
93
93
94 # runner
94 # runner
95 from IPython.irunner import IPythonRunner
95 from IPython.lib.irunner import IPythonRunner
96 iprunner = IPythonRunner(echo=False)
96 iprunner = IPythonRunner(echo=False)
97
97
98 ###########################################################################
98 ###########################################################################
@@ -99,7 +99,7 b" if not os.name == 'posix':"
99 EXCLUDE.append(pjoin('IPython', 'platutils_posix'))
99 EXCLUDE.append(pjoin('IPython', 'platutils_posix'))
100
100
101 if not have_pexpect:
101 if not have_pexpect:
102 EXCLUDE.append(pjoin('IPython', 'irunner'))
102 EXCLUDE.append(pjoin('IPython', 'lib', 'irunner'))
103
103
104 # This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
104 # This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
105 if sys.platform == 'win32':
105 if sys.platform == 'win32':
@@ -37,7 +37,7 b' import sys'
37 import tempfile
37 import tempfile
38
38
39 # IPython-specific libraries
39 # IPython-specific libraries
40 from IPython import irunner
40 from IPython.lib import irunner
41 from IPython.utils.genutils import fatal
41 from IPython.utils.genutils import fatal
42
42
43 class IndentOut(object):
43 class IndentOut(object):
General Comments 0
You need to be logged in to leave comments. Login now