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

Method daemon

Lib/multiprocessing/process.py:206–210  ·  view source on GitHub ↗

Return whether process is a daemon

(self)

Source from the content-addressed store, hash-verified

204
205 @property
206 def daemon(self):
207 '''
208 Return whether process is a daemon
209 '''
210 return self._config.get('daemon', False)
211
212 @daemon.setter
213 def daemon(self, daemonic):

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected