(self)
| 3372 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3373 | @requires_os_func('spawnv') |
| 3374 | def test_nowait(self): |
| 3375 | program, args = self.create_args() |
| 3376 | pid = os.spawnv(os.P_NOWAIT, program, args) |
| 3377 | support.wait_process(pid, exitcode=self.exitcode) |
| 3378 | |
| 3379 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3380 | @requires_os_func('spawnve') |
nothing calls this directly
no test coverage detected