Process and translate a cell of input.
(self, cell)
| 667 | return super(IPythonInputSplitter, self).push_accepts_more() |
| 668 | |
| 669 | def transform_cell(self, cell): |
| 670 | """Process and translate a cell of input. |
| 671 | """ |
| 672 | self.reset() |
| 673 | try: |
| 674 | self.push(cell) |
| 675 | self.flush_transformers() |
| 676 | return self.source |
| 677 | finally: |
| 678 | self.reset() |
| 679 | |
| 680 | def push(self, lines:str) -> bool: |
| 681 | """Push one or more lines of IPython input. |
nothing calls this directly
no test coverage detected