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 |
@@ -40,17 +40,15 b' except NameError:' | |||
|
40 | 40 | import __main__ |
|
41 | 41 | import __builtin__ |
|
42 | 42 | import os |
|
43 | import re | |
|
44 | 43 | import sys |
|
45 | import types | |
|
46 | from pprint import pprint,pformat | |
|
44 | from pprint import pprint | |
|
47 | 45 | |
|
48 | 46 | # Our own |
|
49 | 47 | from IPython import DPyGetOpt |
|
50 | 48 | from IPython import Release |
|
51 | 49 | from IPython.ipstruct import Struct |
|
52 | 50 | from IPython.OutputTrap import OutputTrap |
|
53 |
from IPython. |
|
|
51 | from IPython.config.configloader import ConfigLoader | |
|
54 | 52 | from IPython.iplib import InteractiveShell |
|
55 | 53 | from IPython.usage import cmd_line_usage,interactive_usage |
|
56 | 54 | from IPython.genutils import * |
@@ -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 |
['backgroundjobs.py', 'coloransi.py', 'completer.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', |
General Comments 0
You need to be logged in to leave comments.
Login now