##// END OF EJS Templates
Fixing #159, which was introduced by prefilter reorg -- adding back in a split_user_input method to iplib.InteractiveShell, which forwards to the new prefilter.splitUserInput.
dan.milstein -
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 2354 2007-05-16 13:06:12Z dan.milstein $
9 $Id: iplib.py 2365 2007-05-23 15:09:43Z dan.milstein $
10 """
10 """
11
11
12 #*****************************************************************************
12 #*****************************************************************************
@@ -1942,6 +1942,10 b' want to merge them back into the new files.""" % locals()'
1942 self.resetbuffer()
1942 self.resetbuffer()
1943 return more
1943 return more
1944
1944
1945 def split_user_input(self, line):
1946 # This is really a hold-over to support ipapi and some extensions
1947 return prefilter.splitUserInput(line)
1948
1945 def resetbuffer(self):
1949 def resetbuffer(self):
1946 """Reset the input buffer."""
1950 """Reset the input buffer."""
1947 self.buffer[:] = []
1951 self.buffer[:] = []
General Comments 0
You need to be logged in to leave comments. Login now