()
| 1965 | return self.take_back_empty_line() |
| 1966 | |
| 1967 | def prompt_for_undo(): |
| 1968 | n = super(BaseRepl, self).prompt_undo() |
| 1969 | if n > 0: |
| 1970 | self.request_undo(n=n) |
| 1971 | |
| 1972 | greenlet.greenlet(prompt_for_undo).switch() |
| 1973 |
nothing calls this directly
no test coverage detected