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

Method test_spawnl

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

Source from the content-addressed store, hash-verified

3312 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3313 @requires_os_func('spawnl')
3314 def test_spawnl(self):
3315 program, args = self.create_args()
3316 exitcode = os.spawnl(os.P_WAIT, program, *args)
3317 self.assertEqual(exitcode, self.exitcode)
3318
3319 @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
3320 @requires_os_func('spawnle')

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected