##// END OF EJS Templates
Moved Itpl.py to deathrow as we already have a copy in external.
Brian Granger -
Show More
@@ -8,7 +8,7 b' Contributions are *very* welcome.'
8 8 from IPython.core import ipapi
9 9 ip = ipapi.get()
10 10
11 from IPython.Itpl import itplns
11 from IPython.external.Itpl import itplns
12 12 import os
13 13
14 14 def install_editor(run_template, wait = False):
@@ -173,8 +173,8 b' def extend_shell_behavior(ip):'
173 173 # mark the IPSHELL with this signature
174 174 ip.IP.user_ns['__builtins__'].__dict__['__sig__'] = ip.IP.__sig__
175 175
176 from IPython.Itpl import ItplNS
177 from IPython.genutils import shell
176 from IPython.external.Itpl import ItplNS
177 from IPython.utils.genutils import shell
178 178 # utility to expand user variables via Itpl
179 179 # xxx do something sensible with depth?
180 180 ip.IP.var_expand = lambda cmd, lvars=None, depth=2: \
@@ -9,7 +9,7 b' ip = ipapi.get()'
9 9 from string import Template
10 10 import sys,os
11 11
12 from IPython.Itpl import itplns
12 from IPython.external.Itpl import itplns
13 13
14 14 def toclip_w32(s):
15 15 """ Places contents of s to clipboard
@@ -46,7 +46,7 b' import IPython'
46 46 from IPython import OInspect, wildcard
47 47 from IPython.core import debugger
48 48 from IPython.core.fakemodule import FakeModule
49 from IPython.Itpl import Itpl, itpl, printpl,itplns
49 from IPython.external.Itpl import Itpl, itpl, printpl,itplns
50 50 from IPython.PyColorize import Parser
51 51 from IPython.utils.ipstruct import Struct
52 52 from IPython.macro import Macro
@@ -29,7 +29,7 b' import types'
29 29 # IPython's own
30 30 from IPython import PyColorize
31 31 from IPython.utils.genutils import page,indent,Term
32 from IPython.Itpl import itpl
32 from IPython.external.Itpl import itpl
33 33 from IPython.wildcard import list_namespace
34 34 from IPython.utils.coloransi import *
35 35
@@ -26,7 +26,7 b' from pprint import pformat'
26 26 # Our own
27 27 from IPython import Release
28 28 from IPython import ultraTB
29 from IPython.Itpl import itpl
29 from IPython.external.Itpl import itpl
30 30
31 31 from IPython.utils.genutils import *
32 32
@@ -49,7 +49,7 b' from IPython import OInspect,PyColorize,ultraTB'
49 49 from IPython.core import debugger
50 50 from IPython.Extensions import pickleshare
51 51 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
52 from IPython.Itpl import ItplNS
52 from IPython.external.Itpl import ItplNS
53 53 from IPython.Logger import Logger
54 54 from IPython.Magic import Magic
55 55 from IPython.Prompts import CachedOutput
1 NO CONTENT: file renamed from IPython/Itpl.py to IPython/deathrow/Itpl.py
@@ -46,7 +46,7 b' else:'
46 46
47 47 # Other IPython utilities
48 48 import IPython
49 from IPython.Itpl import Itpl,itpl,printpl
49 from IPython.external.Itpl import Itpl,itpl,printpl
50 50 from IPython import platutils
51 51 from IPython.utils import DPyGetOpt
52 52 from IPython.utils.generics import result_display
General Comments 0
You need to be logged in to leave comments. Login now