Create a new InputSplitter instance.
(self)
| 328 | _is_invalid = False |
| 329 | |
| 330 | def __init__(self): |
| 331 | """Create a new InputSplitter instance. |
| 332 | """ |
| 333 | self._buffer = [] |
| 334 | self._compile = codeop.CommandCompiler() |
| 335 | self.encoding = get_input_encoding() |
| 336 | |
| 337 | def reset(self): |
| 338 | """Reset the input buffer and associated state.""" |
no test coverage detected