Show More
@@ -0,0 +1,6 b'' | |||||
|
1 | #!/usr/bin/env python | |||
|
2 | # encoding: utf-8 | |||
|
3 | ||||
|
4 | def test_import_configloader(): | |||
|
5 | from IPython.config import configloader | |||
|
6 |
1 | NO CONTENT: file renamed from IPython/ConfigLoader.py to IPython/config/configloader.py |
|
NO CONTENT: file renamed from IPython/ConfigLoader.py to IPython/config/configloader.py |
@@ -40,17 +40,15 b' except NameError:' | |||||
40 | import __main__ |
|
40 | import __main__ | |
41 | import __builtin__ |
|
41 | import __builtin__ | |
42 | import os |
|
42 | import os | |
43 | import re |
|
|||
44 | import sys |
|
43 | import sys | |
45 | import types |
|
44 | from pprint import pprint | |
46 | from pprint import pprint,pformat |
|
|||
47 |
|
45 | |||
48 | # Our own |
|
46 | # Our own | |
49 | from IPython import DPyGetOpt |
|
47 | from IPython import DPyGetOpt | |
50 | from IPython import Release |
|
48 | from IPython import Release | |
51 | from IPython.ipstruct import Struct |
|
49 | from IPython.ipstruct import Struct | |
52 | from IPython.OutputTrap import OutputTrap |
|
50 | from IPython.OutputTrap import OutputTrap | |
53 |
from IPython. |
|
51 | from IPython.config.configloader import ConfigLoader | |
54 | from IPython.iplib import InteractiveShell |
|
52 | from IPython.iplib import InteractiveShell | |
55 | from IPython.usage import cmd_line_usage,interactive_usage |
|
53 | from IPython.usage import cmd_line_usage,interactive_usage | |
56 | from IPython.genutils import * |
|
54 | from IPython.genutils import * |
@@ -198,7 +198,7 b' def make_runners():' | |||||
198 | # XXX: Shell.py is also ommited because of a bug in the skip_doctest |
|
198 | # XXX: Shell.py is also ommited because of a bug in the skip_doctest | |
199 | # decorator. See ticket https://bugs.launchpad.net/bugs/366209 |
|
199 | # decorator. See ticket https://bugs.launchpad.net/bugs/366209 | |
200 | top_mod = \ |
|
200 | top_mod = \ | |
201 |
['backgroundjobs.py', 'coloransi.py', 'completer.py', ' |
|
201 | ['backgroundjobs.py', 'coloransi.py', 'completer.py', 'configloader.py', | |
202 | 'CrashHandler.py', 'Debugger.py', 'deep_reload.py', 'demo.py', |
|
202 | 'CrashHandler.py', 'Debugger.py', 'deep_reload.py', 'demo.py', | |
203 | 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'FakeModule.py', |
|
203 | 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'FakeModule.py', | |
204 | 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py', |
|
204 | 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py', |
General Comments 0
You need to be logged in to leave comments.
Login now