MCPcopy Index your code
hub / github.com/python/cpython / test_spawnvpe

Method test_spawnvpe

Lib/test/test_os/test_os.py:3367–3370  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3365 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3366 @requires_os_func('spawnvpe')
3367 def test_spawnvpe(self):
3368 program, args = self.create_args(with_env=True)
3369 exitcode = os.spawnvpe(os.P_WAIT, program, args, self.env)
3370 self.assertEqual(exitcode, self.exitcode)
3371
3372 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3373 @requires_os_func('spawnv')

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected