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

Method exitcode

Lib/multiprocessing/process.py:232–239  ·  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

230
231 @property
232 def exitcode(self):
233 '''
234 Return exit code of process or `None` if it has yet to stop
235 '''
236 self._check_closed()
237 if self._popen is None:
238 return self._popen
239 return self._popen.poll()
240
241 @property
242 def ident(self):

Callers

nothing calls this directly

Calls 2

_check_closedMethod · 0.95
pollMethod · 0.45

Tested by

no test coverage detected