Skip to content

Commit

Permalink
Make line_input_checker=True the default for InputSplitter.
Browse files Browse the repository at this point in the history
The Qt console needs to use it in line_input_checker mode, but can't specify
arguments in case it's using the InputSplitter base class.

Closes ipythongh-3248
  • Loading branch information
takluyver committed May 1, 2013
1 parent 2b00f64 commit 94f1c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/core/inputsplitter.py
Expand Up @@ -477,7 +477,7 @@ class IPythonInputSplitter(InputSplitter):
# List with lines of raw input accumulated so far.
_buffer_raw = None

def __init__(self, line_input_checker=False, physical_line_transforms=None,
def __init__(self, line_input_checker=True, physical_line_transforms=None,
logical_line_transforms=None, python_line_transforms=None):
super(IPythonInputSplitter, self).__init__()
self._buffer_raw = []
Expand Down

0 comments on commit 94f1c9c

Please sign in to comment.