(self)
| 3472 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3473 | @requires_os_func('spawnvpe') |
| 3474 | def test_spawnvpe_invalid_env(self): |
| 3475 | self._test_invalid_env(os.spawnvpe) |
| 3476 | |
| 3477 | |
| 3478 | @unittest.skipUnless(hasattr(os, 'getlogin'), "test needs os.getlogin") |
nothing calls this directly
no test coverage detected