##// END OF EJS Templates
Magic.py => core/magic.py and imports updated.
Brian Granger -
Show More
@@ -36,7 +36,7 b' except ImportError:'
36 36 import IPython
37 37 from IPython import ultraTB
38 38 from IPython.core import ipapi
39 from IPython.Magic import Magic
39 from IPython.core.magic import Magic
40 40 from IPython.utils.genutils import Term,warn,error,flag_calls, ask_yes_no
41 41 from IPython.core.iplib import InteractiveShell
42 42 from IPython.core.ipmaker import make_IPython
@@ -51,7 +51,7 b' from IPython.Extensions import pickleshare'
51 51 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
52 52 from IPython.external.Itpl import ItplNS
53 53 from IPython.core.logger import Logger
54 from IPython.Magic import Magic
54 from IPython.core.magic import Magic
55 55 from IPython.Prompts import CachedOutput
56 56 from IPython.utils.ipstruct import Struct
57 57 from IPython.lib.backgroundjobs import BackgroundJobManager
1 NO CONTENT: file renamed from IPython/Magic.py to IPython/core/magic.py
@@ -37,4 +37,6 b' def test_import_logger():'
37 37 def test_import_macro():
38 38 from IPython.core import macro
39 39
40 def test_import_magic():
41 from IPython.core import magic
40 42
@@ -203,7 +203,7 b' def make_runners():'
203 203 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'fakemodule.py',
204 204 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py',
205 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 207 'OutputTrap.py', 'platutils.py', 'prefilter.py', 'Prompts.py',
208 208 'PyColorize.py', 'Release.py', 'rlineimpl.py', 'shadowns.py',
209 209 'shellglobals.py', 'strdispatch.py', 'twshell.py',
@@ -34,7 +34,7 b' deco:'
34 34 $(NOSE0) IPython.testing.decorators
35 35
36 36 magic: plugin
37 $(NOSE) IPython.Magic
37 $(NOSE) IPython.core.magic
38 38
39 39 excolors: plugin
40 40 $(NOSE) IPython.core.excolors
General Comments 0
You need to be logged in to leave comments. Login now