##// END OF EJS Templates
excolors.py => core/excolors.py and updated import statements.
Brian Granger -
Show More
@@ -34,7 +34,7 b' import sys'
34 from IPython import PyColorize, ipapi
34 from IPython import PyColorize, ipapi
35 from IPython.utils import coloransi
35 from IPython.utils import coloransi
36 from IPython.genutils import Term
36 from IPython.genutils import Term
37 from IPython.excolors import exception_colors
37 from IPython.core.excolors import exception_colors
38
38
39 # See if we can use pydb.
39 # See if we can use pydb.
40 has_pydb = False
40 has_pydb = False
1 NO CONTENT: file renamed from IPython/excolors.py to IPython/core/excolors.py
NO CONTENT: file renamed from IPython/excolors.py to IPython/core/excolors.py
@@ -13,3 +13,6 b' def test_import_debugger():'
13 def test_import_fakemodule():
13 def test_import_fakemodule():
14 from IPython.core import fakemodule
14 from IPython.core import fakemodule
15
15
16 def test_import_excolors():
17 from IPython.core import excolors
18
@@ -93,7 +93,7 b' from inspect import getsourcefile, getfile, getmodule,\\'
93 from IPython import PyColorize
93 from IPython import PyColorize
94 from IPython.core import debugger
94 from IPython.core import debugger
95 from IPython.ipstruct import Struct
95 from IPython.ipstruct import Struct
96 from IPython.excolors import exception_colors
96 from IPython.core.excolors import exception_colors
97 from IPython.genutils import Term,uniq_stable,error,info
97 from IPython.genutils import Term,uniq_stable,error,info
98
98
99 # Globals
99 # Globals
@@ -37,7 +37,7 b' magic: plugin'
37 $(NOSE) IPython.Magic
37 $(NOSE) IPython.Magic
38
38
39 excolors: plugin
39 excolors: plugin
40 $(NOSE) IPython.excolors
40 $(NOSE) IPython.core.excolors
41
41
42 iplib: plugin
42 iplib: plugin
43 $(NOSE) IPython.iplib
43 $(NOSE) IPython.iplib
@@ -93,7 +93,7 b' from inspect import getsourcefile, getfile, getmodule,\\'
93 from IPython import PyColorize
93 from IPython import PyColorize
94 from IPython.core import debugger
94 from IPython.core import debugger
95 from IPython.ipstruct import Struct
95 from IPython.ipstruct import Struct
96 from IPython.excolors import exception_colors
96 from IPython.core.excolors import exception_colors
97 from IPython.genutils import Term,uniq_stable,error,info
97 from IPython.genutils import Term,uniq_stable,error,info
98
98
99 # Globals
99 # Globals
General Comments 0
You need to be logged in to leave comments. Login now