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