##// END OF EJS Templates
Prompts.py => core/prompts.py and imports updated.
Brian Granger -
Show More
@@ -52,14 +52,14 b' from IPython.core.fakemodule import FakeModule, init_fakemod_dict'
52 from IPython.external.Itpl import ItplNS
52 from IPython.external.Itpl import ItplNS
53 from IPython.core.logger import Logger
53 from IPython.core.logger import Logger
54 from IPython.core.magic import Magic
54 from IPython.core.magic import Magic
55 from IPython.Prompts import CachedOutput
55 from IPython.core.prompts import CachedOutput
56 from IPython.utils.ipstruct import Struct
56 from IPython.utils.ipstruct import Struct
57 from IPython.lib.backgroundjobs import BackgroundJobManager
57 from IPython.lib.backgroundjobs import BackgroundJobManager
58 from IPython.utils.genutils import *
58 from IPython.utils.genutils import *
59 from IPython.strdispatch import StrDispatch
59 from IPython.strdispatch import StrDispatch
60 from IPython.core import ipapi
60 from IPython.core import ipapi
61 import IPython.core.history
61 import IPython.core.history
62 import IPython.prefilter as prefilter
62 import IPython.core.prefilter as prefilter
63 import IPython.shadowns
63 import IPython.shadowns
64 # Globals
64 # Globals
65
65
1 NO CONTENT: file renamed from IPython/Prompts.py to IPython/core/prompts.py
NO CONTENT: file renamed from IPython/Prompts.py to IPython/core/prompts.py
@@ -46,3 +46,8 b' def test_import_oinspect():'
46 def test_import_outputtrap():
46 def test_import_outputtrap():
47 from IPython.core import outputtrap
47 from IPython.core import outputtrap
48
48
49 def test_import_prefilter():
50 from IPython.core import prefilter
51
52 def test_import_prompts():
53 from IPython.core import prompts
@@ -204,7 +204,7 b' def make_runners():'
204 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py',
204 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py',
205 'iplib.py', 'ipmaker.py', 'ipstruct.py', 'Itpl.py',
205 'iplib.py', 'ipmaker.py', 'ipstruct.py', 'Itpl.py',
206 'logger.py', 'macro.py', 'magic.py', 'oinspect.py',
206 'logger.py', 'macro.py', 'magic.py', 'oinspect.py',
207 'outputtrap.py', 'platutils.py', 'prefilter.py', 'Prompts.py',
207 'outputtrap.py', 'platutils.py', 'prefilter.py', 'prompts.py',
208 'PyColorize.py', 'Release.py', 'rlineimpl.py', 'shadowns.py',
208 'PyColorize.py', 'Release.py', 'rlineimpl.py', 'shadowns.py',
209 'shellglobals.py', 'strdispatch.py', 'twshell.py',
209 'shellglobals.py', 'strdispatch.py', 'twshell.py',
210 'ultraTB.py', 'upgrade_dir.py', 'usage.py', 'wildcard.py',
210 'ultraTB.py', 'upgrade_dir.py', 'usage.py', 'wildcard.py',
General Comments 0
You need to be logged in to leave comments. Login now