Searched refs:waitstatus_to_exitcode (Results 1 – 21 of 21) sorted by relevance
/third_party/python/Lib/ |
D | _bootsubprocess.py | 31 self.returncode = os.waitstatus_to_exitcode(status) 81 exitcode = os.waitstatus_to_exitcode(status)
|
D | mailcap.py | 276 sts = os.waitstatus_to_exitcode(sts)
|
D | subprocess.py | 1847 waitstatus_to_exitcode=os.waitstatus_to_exitcode, argument 1856 self.returncode = waitstatus_to_exitcode(sts)
|
D | os.py | 870 return waitstatus_to_exitcode(sts)
|
/third_party/python/Lib/asyncio/ |
D | unix_events.py | 47 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/ |
D | test_wait4.py | 32 self.assertEqual(os.waitstatus_to_exitcode(status), exitcode)
|
D | test_wait3.py | 33 self.assertEqual(os.waitstatus_to_exitcode(status), exitcode)
|
D | test_popen.py | 54 self.assertEqual(os.waitstatus_to_exitcode(status), 42)
|
D | test_pty.py | 277 res = os.waitstatus_to_exitcode(status)
|
D | test_os.py | 2953 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/ |
D | which.py | 52 sts = os.waitstatus_to_exitcode(sts)
|
/third_party/python/Lib/multiprocessing/ |
D | popen_fork.py | 33 self.returncode = os.waitstatus_to_exitcode(sts)
|
D | forkserver.py | 240 returncode = os.waitstatus_to_exitcode(sts)
|
/third_party/python/Doc/library/ |
D | pty.rst | 74 :func:`waitstatus_to_exitcode` can be used to convert the exit status into
|
D | os.rst | 3907 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/ |
D | 3.9.0a6.rst | 648 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/ |
D | server.py | 1169 exitcode = os.waitstatus_to_exitcode(sts)
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_unix_events.py | 1170 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__.py | 1980 exitcode2 = os.waitstatus_to_exitcode(status)
|
/third_party/python/ |
D | setup.py | 125 return os.waitstatus_to_exitcode(status)
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 595 Added :func:`os.waitstatus_to_exitcode` function:
|