(self, child, terminal_input)
| 2622 | pass |
| 2623 | |
| 2624 | def run_child(self, child, terminal_input): |
| 2625 | old_sighup = signal.signal(signal.SIGHUP, self.handle_sighup) |
| 2626 | try: |
| 2627 | return self._run_child(child, terminal_input) |
| 2628 | finally: |
| 2629 | signal.signal(signal.SIGHUP, old_sighup) |
| 2630 | |
| 2631 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 2632 | def _run_child(self, child, terminal_input): |
no test coverage detected