diff --git a/IPython/iplib.py b/IPython/iplib.py index 34fecb5..ae06399 100644 --- a/IPython/iplib.py +++ b/IPython/iplib.py @@ -6,7 +6,7 @@ Requires Python 2.3 or newer. This file contains all the classes and helper functions specific to IPython. -$Id: iplib.py 2354 2007-05-16 13:06:12Z dan.milstein $ +$Id: iplib.py 2365 2007-05-23 15:09:43Z dan.milstein $ """ #***************************************************************************** @@ -1942,6 +1942,10 @@ want to merge them back into the new files.""" % locals() self.resetbuffer() return more + def split_user_input(self, line): + # This is really a hold-over to support ipapi and some extensions + return prefilter.splitUserInput(line) + def resetbuffer(self): """Reset the input buffer.""" self.buffer[:] = []