(self)
| 514 | print() |
| 515 | |
| 516 | def interrupt_input(self): |
| 517 | if self.prompt_session and self.prompt_session.app: |
| 518 | # Store any partial input before interrupting |
| 519 | self.placeholder = self.prompt_session.app.current_buffer.text |
| 520 | self.interrupted = True |
| 521 | self.prompt_session.app.exit() |
| 522 | |
| 523 | def get_input( |
| 524 | self, |
no outgoing calls
no test coverage detected