Home
last modified time | relevance | path

Searched refs:waitstatus_to_exitcode (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Lib/
D_bootsubprocess.py31 self.returncode = os.waitstatus_to_exitcode(status)
81 exitcode = os.waitstatus_to_exitcode(status)
Dmailcap.py276 sts = os.waitstatus_to_exitcode(sts)
Dsubprocess.py1847 waitstatus_to_exitcode=os.waitstatus_to_exitcode, argument
1856 self.returncode = waitstatus_to_exitcode(sts)
Dos.py870 return waitstatus_to_exitcode(sts)
/third_party/python/Lib/asyncio/
Dunix_events.py47 def waitstatus_to_exitcode(status): function
49 return os.waitstatus_to_exitcode(status)
954 returncode = waitstatus_to_exitcode(status)
1079 returncode = waitstatus_to_exitcode(status)
1172 returncode = waitstatus_to_exitcode(status)
1299 returncode = waitstatus_to_exitcode(status)
1402 returncode = waitstatus_to_exitcode(status)
/third_party/python/Lib/test/
Dtest_wait4.py32 self.assertEqual(os.waitstatus_to_exitcode(status), exitcode)
Dtest_wait3.py33 self.assertEqual(os.waitstatus_to_exitcode(status), exitcode)
Dtest_popen.py54 self.assertEqual(os.waitstatus_to_exitcode(status), 42)
Dtest_pty.py277 res = os.waitstatus_to_exitcode(status)
Dtest_os.py2953 self.assertEqual(os.waitstatus_to_exitcode(status), exitcode)
2965 os.waitstatus_to_exitcode(0.0)
2979 self.assertEqual(os.waitstatus_to_exitcode(exitcode << 8),
2984 os.waitstatus_to_exitcode((max_exitcode + 1) << 8)
2986 os.waitstatus_to_exitcode(-1)
/third_party/python/Tools/scripts/
Dwhich.py52 sts = os.waitstatus_to_exitcode(sts)
/third_party/python/Lib/multiprocessing/
Dpopen_fork.py33 self.returncode = os.waitstatus_to_exitcode(sts)
Dforkserver.py240 returncode = os.waitstatus_to_exitcode(sts)
/third_party/python/Doc/library/
Dpty.rst74 :func:`waitstatus_to_exitcode` can be used to convert the exit status into
Dos.rst3907 On Unix, :func:`waitstatus_to_exitcode` can be used to convert the ``close``
4233 On Unix, :func:`waitstatus_to_exitcode` can be used to convert the result
4277 :func:`waitstatus_to_exitcode` can be used to convert the exit status into an
4382 :func:`waitstatus_to_exitcode` can be used to convert the exit status into an
4400 :func:`waitstatus_to_exitcode` can be used to convert the exit status into an
4414 :func:`waitstatus_to_exitcode` can be used to convert the exit status into an
4420 .. function:: waitstatus_to_exitcode(status)
/third_party/python/Misc/NEWS.d/
D3.9.0a6.rst648 Add :func:`os.waitstatus_to_exitcode` function: convert a wait status to an
1111 :func:`os.waitstatus_to_exitcode` to convert :func:`os.system` exit status
/third_party/python/Lib/http/
Dserver.py1169 exitcode = os.waitstatus_to_exitcode(sts)
/third_party/python/Lib/test/test_asyncio/
Dtest_unix_events.py1170 def waitstatus_to_exitcode(self, status): member in ChildWatcherTestsMixin
1188 with patch('asyncio.unix_events.waitstatus_to_exitcode', self.waitstatus_to_exitcode), \
/third_party/python/Lib/test/support/
D__init__.py1980 exitcode2 = os.waitstatus_to_exitcode(status)
/third_party/python/
Dsetup.py125 return os.waitstatus_to_exitcode(status)
/third_party/python/Doc/whatsnew/
D3.9.rst595 Added :func:`os.waitstatus_to_exitcode` function: