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