##// END OF EJS Templates
Moved Itpl.py to deathrow as we already have a copy in external.
Moved Itpl.py to deathrow as we already have a copy in external.

File last commit:

r2029:bce94297
r2031:01bb834d
Show More
test_imports.py
35 lines | 703 B | text/x-python | PythonLexer
Brian Granger
completer.py => core/completer.py and imports updated.
r2012 #!/usr/bin/env python
# encoding: utf-8
def test_import_completer():
from IPython.core import completer
Brian Granger
CrashHandler.py => core/crashhandler.py and updated all imports.
r2014 def test_import_crashhandler():
from IPython.core import crashhandler
Brian Granger
Debugger.py => core/debugger.py and updated all imports.
r2015
def test_import_debugger():
Brian Granger
FakeModule.py => core/fakemodule.py and updated tests and imports.
r2020 from IPython.core import debugger
def test_import_fakemodule():
from IPython.core import fakemodule
Brian Granger
excolors.py => core/excolors.py and updated import statements.
r2021 def test_import_excolors():
from IPython.core import excolors
Brian Granger
hooks.py => core/hooks.py and updated imports.
r2026 def test_import_history():
from IPython.core import history
def test_import_hooks():
from IPython.core import hooks
Brian Granger
ipapi.py => core/ipapi.py and imports updated.
r2027 def test_import_ipapi():
from IPython.core import ipapi
Brian Granger
iplib.py => core/iplib.py and updated tests and imports.
r2028 def test_imort_iplib():
from IPython.core import iplib
Brian Granger
ipmaker.py => coore/ipmaker.py and imports updated.
r2029 def test_imort_ipmaker():
from IPython.core import ipmaker
Brian Granger
iplib.py => core/iplib.py and updated tests and imports.
r2028
Brian Granger
hooks.py => core/hooks.py and updated imports.
r2026