##// END OF EJS Templates
- Close #52, patch by Stefan.
fperez -
Show More
@@ -6,7 +6,7 b' Requires Python 2.3 or newer.'
6
6
7 This file contains all the classes and helper functions specific to IPython.
7 This file contains all the classes and helper functions specific to IPython.
8
8
9 $Id: iplib.py 2197 2007-04-02 07:36:55Z fperez $
9 $Id: iplib.py 2201 2007-04-03 05:59:01Z fperez $
10 """
10 """
11
11
12 #*****************************************************************************
12 #*****************************************************************************
@@ -2142,7 +2142,7 b' want to merge them back into the new files.""" % locals()'
2142
2142
2143 # First check for explicit escapes in the last/first character
2143 # First check for explicit escapes in the last/first character
2144 handler = None
2144 handler = None
2145 if line[-1] == self.ESC_HELP:
2145 if line[-1] == self.ESC_HELP and line[0] != self.ESC_SHELL:
2146 handler = self.esc_handlers.get(line[-1]) # the ? can be at the end
2146 handler = self.esc_handlers.get(line[-1]) # the ? can be at the end
2147 if handler is None:
2147 if handler is None:
2148 # look at the first character of iFun, NOT of line, so we skip
2148 # look at the first character of iFun, NOT of line, so we skip
@@ -1,5 +1,8 b''
1 2007-04-02 Fernando Perez <Fernando.Perez@colorado.edu>
1 2007-04-02 Fernando Perez <Fernando.Perez@colorado.edu>
2
2
3 * IPython/iplib.py (_prefilter): close #52, second part of a patch
4 set by Stefan (only the first part had been applied before).
5
3 * IPython/Extensions/ipy_stock_completers.py (module_completer):
6 * IPython/Extensions/ipy_stock_completers.py (module_completer):
4 remove usage of the dangerous pkgutil.walk_packages(). See
7 remove usage of the dangerous pkgutil.walk_packages(). See
5 details in comments left in the code.
8 details in comments left in the code.
General Comments 0
You need to be logged in to leave comments. Login now