(self)
| 3943 | self._test_keyboardinterrupt_no_kill(subprocess.call, timeout=6.282) |
| 3944 | |
| 3945 | def test_run_keyboardinterrupt_no_kill(self): |
| 3946 | self._test_keyboardinterrupt_no_kill(subprocess.run, timeout=6.282) |
| 3947 | |
| 3948 | def test_context_manager_keyboardinterrupt_no_kill(self): |
| 3949 | def popen_via_context_manager(*args, **kwargs): |
nothing calls this directly
no test coverage detected