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

Method test_spawnve

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

Source from the content-addressed store, hash-verified

3351 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3352 @requires_os_func('spawnve')
3353 def test_spawnve(self):
3354 program, args = self.create_args(with_env=True)
3355 exitcode = os.spawnve(os.P_WAIT, program, args, self.env)
3356 self.assertEqual(exitcode, self.exitcode)
3357
3358 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3359 @requires_os_func('spawnvp')

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected