diff --git a/ChangeLog b/ChangeLog index c1db38b..0545819 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1 +1,3 @@ -link doc/ChangeLog \ No newline at end of file +This file used to be symlink in SVN, but now it serves as a *warning* so that +nobody creates symlinks to the bzr repository + diff --git a/IPython/completer.py b/IPython/completer.py index 8d8ec63..0962604 100644 --- a/IPython/completer.py +++ b/IPython/completer.py @@ -321,7 +321,7 @@ class IPCompleter(Completer): # don't want to treat as delimiters in filename matching # when escaped with backslash - protectables = ' ()[]{}' + protectables = ' ' if text.startswith('!'): text = text[1:] diff --git a/doc/ChangeLog b/doc/ChangeLog index e8ebaf3..73286b7 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,11 +1,30 @@ +2008-02-20 Ville Vainio + + * completer.py: do not treat [](){} as protectable chars anymore + +2008-02-17 Ville Vainio + + * Switched over to Launchpad/bzr as primary VCS. + +2008-02-14 Ville Vainio + + * ipapi.py: _ip.runlines() is now much more liberal about + indentation - it cleans up the scripts it gets + +2008-02-14 Ville Vainio + + * Extensions/ipy_leo.py: created 'ILeo' IPython-Leo bridge. + Changes to it (later on) are too numerous to list in ChangeLog + until it stabilizes + 2008-02-07 Darren Dale - * IPython/Shell.py: Call QtCore.pyqtRemoveInputHook() when creating - an IPShellQt4. PyQt4-4.2.1 and later uses PyOS_InputHook to improve - interaction in the interpreter (like Tkinter does), but it seems to - partially interfere with the IPython implementation and exec_() - still seems to block. So we disable the PyQt implementation and - stick with the IPython one for now. + * IPython/Shell.py: Call QtCore.pyqtRemoveInputHook() when creating + an IPShellQt4. PyQt4-4.2.1 and later uses PyOS_InputHook to improve + interaction in the interpreter (like Tkinter does), but it seems to + partially interfere with the IPython implementation and exec_() + still seems to block. So we disable the PyQt implementation and + stick with the IPython one for now. 2008-02-02 Walter Doerwald