MCPcopy Index your code
hub / github.com/RustPython/RustPython / exitcode

Method exitcode

Lib/multiprocessing/process.py:225–232  ·  view source on GitHub ↗

Return exit code of process or `None` if it has yet to stop

(self)

Source from the content-addressed store, hash-verified

223
224 @property
225 def exitcode(self):
226 '''
227 Return exit code of process or `None` if it has yet to stop
228 '''
229 self._check_closed()
230 if self._popen is None:
231 return self._popen
232 return self._popen.poll()
233
234 @property
235 def ident(self):

Callers

nothing calls this directly

Calls 2

_check_closedMethod · 0.95
pollMethod · 0.45

Tested by

no test coverage detected