[ANN] IPython 0.6.15 - minor bugfix
Fernando Perez
Fernando.Perez at colorado.edu
Thu Jun 2 22:33:25 CEST 2005
Hi all,
I've just put out a minor bugfix release, 0.6.15. It really only fixes
one thing, tab-completion inside strings:
In [1]: foo('/etc/hos <<<--- TAB HERE
/etc/host.conf /etc/hosts /etc/hosts.allow /etc/hosts.deny
In [1]: foo("/etc/ini <<<--- TAB HERE
/etc/init.d /etc/initlog.conf /etc/inittab
If anyone is interested in this functionality, you'll need to fix
~/.ipython/ipythonrc, so the readline delimiters configuration reads:
readline_remove_delims -/~
(or at least, make sure neither ' nor " are in there).
Where to get it?
----------------
As usual, downloads at: http://ipython.scipy.org/dist
WHAT is IPython?
----------------
1. An interactive shell superior to Python's default. IPython has many
features for object introspection, system shell access, and its own
special command system for adding functionality when working interactively.
2. An embeddable, ready to use interpreter for your own programs.
IPython can be started with a single call from inside another program,
providing access to the current namespace.
3. A flexible framework which can be used as the base environment for
other systems with Python as the underlying language.
Cheers,
f
More information about the Python-announce-list
mailing list