# HG changeset patch
# User Kwankyu Lee <ekwankyu@gmail.com>
# Date 1370397632 -32400
# Node ID 8739dffa76da1f236f39339184af1e3502b518c4
# Parent cedbcdf62c28110ce6d6890f88b862dcdbfecfc7
Trac #14687: fixes broken readline extra commands
diff --git a/sage-ipython b/sage-ipython
a
|
b
|
|
3 | 3 | """ |
4 | 4 | Sage IPython startup script. |
5 | 5 | """ |
6 | | from sage.misc.interpreter import SageTerminalApp |
| 6 | from sage.misc.interpreter import SageTerminalApp |
| 7 | |
| 8 | # installs the extra readline commands before the IPython initialization begins. |
| 9 | from sage.misc.readline_extra_commands import * |
7 | 10 | |
8 | 11 | # Make sure we're using the Sage profile if one isn't specified. |
9 | 12 | import sys |