##// END OF EJS Templates
IPython/Extensions/astyle.py: Do a relative import of ipipe, so that...
walter.doerwald -
Show More
@@ -258,7 +258,7 b' class Text(list):'
258 258
259 259
260 260 try:
261 from IPython.Extensions import ipipe
261 import ipipe
262 262 except ImportError:
263 263 pass
264 264 else:
@@ -742,7 +742,7 b' class ibrowse(ipipe.Display):'
742 742 keymap.register("hideattr", "h")
743 743 keymap.register("unhideattrs", "H")
744 744 keymap.register("help", "?")
745 keymap.register("enter", "eenterdefault", "\r\n")
745 keymap.register("enter", "\r\n")
746 746 keymap.register("enterattr", "E")
747 747 # FIXME: What's happening here?
748 748 keymap.register("leave", curses.KEY_BACKSPACE, "x\x08\x7f")
@@ -1212,7 +1212,7 b' class ils(Table):'
1212 1212 yield child
1213 1213
1214 1214 def __xrepr__(self, mode="default"):
1215 return ifile(self.base).__xrepr__(mode)
1215 return xrepr(ifile(self.base), mode)
1216 1216
1217 1217 def __repr__(self):
1218 1218 return "%s.%s(%r)" % \
@@ -1,3 +1,12 b''
1 2006-11-24 Walter Doerwald <walter@livinglogic.de>
2 * IPython/Extensions/astyle.py: Do a relative import of ipipe, so that
3 we don't get a duplicate ipipe module, where registration of the xrepr
4 implementation for Text is useless.
5
6 * IPython/Extensions/ipipe.py: Fix __xrepr__() implementation for ils.
7
8 * IPython/Extensions/ibrowse.py: Fix keymapping for the enter command.
9
1 10 2006-11-24 Ville Vainio <vivainio@gmail.com>
2 11
3 12 * Magic.py, manual_base.lyx: Kirill Smelkov patch:
General Comments 0
You need to be logged in to leave comments. Login now