(self, child, terminal_input)
| 2573 | pass |
| 2574 | |
| 2575 | def run_child(self, child, terminal_input): |
| 2576 | old_sighup = signal.signal(signal.SIGHUP, self.handle_sighup) |
| 2577 | try: |
| 2578 | return self._run_child(child, terminal_input) |
| 2579 | finally: |
| 2580 | signal.signal(signal.SIGHUP, old_sighup) |
| 2581 | |
| 2582 | def _run_child(self, child, terminal_input): |
| 2583 | r, w = os.pipe() # Pipe test results from child back to parent |
no test coverage detected