##// END OF EJS Templates
Make line_input_checker=True the default for InputSplitter....
Thomas Kluyver -
Show More
@@ -477,7 +477,7 b' class IPythonInputSplitter(InputSplitter):'
477 # List with lines of raw input accumulated so far.
477 # List with lines of raw input accumulated so far.
478 _buffer_raw = None
478 _buffer_raw = None
479
479
480 def __init__(self, line_input_checker=False, physical_line_transforms=None,
480 def __init__(self, line_input_checker=True, physical_line_transforms=None,
481 logical_line_transforms=None, python_line_transforms=None):
481 logical_line_transforms=None, python_line_transforms=None):
482 super(IPythonInputSplitter, self).__init__()
482 super(IPythonInputSplitter, self).__init__()
483 self._buffer_raw = []
483 self._buffer_raw = []
General Comments 0
You need to be logged in to leave comments. Login now