(self, block)
| 58 | self.shell.using_paste_magics = False |
| 59 | |
| 60 | def preclean_input(self, block): |
| 61 | lines = block.splitlines() |
| 62 | while lines and not lines[0].strip(): |
| 63 | lines = lines[1:] |
| 64 | return strip_email_quotes('\n'.join(lines)) |
| 65 | |
| 66 | def rerun_pasted(self, name='pasted_block'): |
| 67 | """ Rerun a previously pasted command. |
no test coverage detected