(self, prompt, default)
| 3056 | |
| 3057 | @typing.override |
| 3058 | def _prompt_for_confirmation(self, prompt, default): |
| 3059 | try: |
| 3060 | return self._get_input(prompt=prompt, state="confirm") |
| 3061 | except (EOFError, KeyboardInterrupt): |
| 3062 | return default |
| 3063 | |
| 3064 | def do_run(self, arg): |
| 3065 | self.error("remote PDB cannot restart the program") |
nothing calls this directly
no test coverage detected