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

Method test_spawnlpe

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

Source from the content-addressed store, hash-verified

3333 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3334 @requires_os_func('spawnlpe')
3335 def test_spawnlpe(self):
3336 program, args = self.create_args(with_env=True)
3337 exitcode = os.spawnlpe(os.P_WAIT, program, *args, self.env)
3338 self.assertEqual(exitcode, self.exitcode)
3339
3340 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3341 @requires_os_func('spawnv')

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected