(self)
| 661 | self.reset() |
| 662 | |
| 663 | def push_accepts_more(self): |
| 664 | if self.transformer_accumulating: |
| 665 | return True |
| 666 | else: |
| 667 | return super(IPythonInputSplitter, self).push_accepts_more() |
| 668 | |
| 669 | def transform_cell(self, cell): |
| 670 | """Process and translate a cell of input. |
nothing calls this directly
no test coverage detected