##// END OF EJS Templates
usage.py => core/usage.py and imports updated.
Brian Granger -
Show More
@@ -50,7 +50,7 b' from IPython.utils.ipstruct import Struct'
50 50 from IPython.core.outputtrap import OutputTrap
51 51 from IPython.config.configloader import ConfigLoader
52 52 from IPython.core.iplib import InteractiveShell
53 from IPython.usage import cmd_line_usage,interactive_usage
53 from IPython.core.usage import cmd_line_usage, interactive_usage
54 54 from IPython.utils.genutils import *
55 55
56 56 def force_import(modname,force_reload=False):
@@ -3333,8 +3333,8 b' Defaulting color scheme to \'NoColor\'"""'
3333 3333
3334 3334 def magic_quickref(self,arg):
3335 3335 """ Show a quick reference sheet """
3336 import IPython.usage
3337 qr = IPython.usage.quick_reference + self.magic_magic('-brief')
3336 import IPython.core.usage
3337 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3338 3338
3339 3339 page(qr)
3340 3340
@@ -66,3 +66,6 b' def test_import_shellglobals():'
66 66
67 67 def test_import_ultratb():
68 68 from IPython.core import ultratb
69
70 def test_import_usage():
71 from IPython.core import usage
1 NO CONTENT: file renamed from IPython/usage.py to IPython/core/usage.py
General Comments 0
You need to be logged in to leave comments. Login now