##// END OF EJS Templates
background_jobs.py => lib/backgroundjob.py and imports updated.
Brian Granger -
Show More
@@ -0,0 +1,6 b''
1 #!/usr/bin/env python
2 # encoding: utf-8
3
4 def test_import_backgroundjobs():
5 from IPython.lib import backgroundjobs
6
@@ -0,0 +1,6 b''
1 #!/usr/bin/env python
2 # encoding: utf-8
3
4 def test_import_coloransi():
5 from IPython.utils import coloransi
6
@@ -53,7 +53,7 b' from IPython.Logger import Logger'
53 53 from IPython.Magic import Magic
54 54 from IPython.Prompts import CachedOutput
55 55 from IPython.ipstruct import Struct
56 from IPython.background_jobs import BackgroundJobManager
56 from IPython.lib.backgroundjobs import BackgroundJobManager
57 57 from IPython.genutils import *
58 58 from IPython.strdispatch import StrDispatch
59 59 import IPython.ipapi
1 NO CONTENT: file renamed from IPython/background_jobs.py to IPython/lib/backgroundjobs.py
@@ -198,7 +198,7 b' def make_runners():'
198 198 # XXX: Shell.py is also ommited because of a bug in the skip_doctest
199 199 # decorator. See ticket https://bugs.launchpad.net/bugs/366209
200 200 top_mod = \
201 ['background_jobs.py', 'coloransi.py', 'completer.py', 'ConfigLoader.py',
201 ['backgroundjobs.py', 'coloransi.py', 'completer.py', 'ConfigLoader.py',
202 202 'CrashHandler.py', 'Debugger.py', 'deep_reload.py', 'demo.py',
203 203 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'FakeModule.py',
204 204 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py',
@@ -85,8 +85,7 b' level modules.'
85 85 Where things will be moved
86 86 ==========================
87 87
88 * :file:`ColorANSI.py`. Move to :file:`IPython/core/coloransi.py`. Maybe move to
89 :mod:`IPython.lib` or :mod:`IPython.python`?
88 * :file:`ColorANSI.py`. Move to :file:`IPython/utils/coloransi.py`.
90 89
91 90 * :file:`ConfigLoader.py`. Move to :file:`IPython/config/configloader.py`.
92 91
General Comments 0
You need to be logged in to leave comments. Login now