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

Method __del__

Lib/multiprocessing/resource_tracker.py:86–90  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

84 "Reentrant call into the multiprocessing resource tracker")
85
86 def __del__(self):
87 # making sure child processess are cleaned before ResourceTracker
88 # gets destructed.
89 # see https://github.com/python/cpython/issues/88887
90 self._stop(use_blocking_lock=False)
91
92 def _stop(self, use_blocking_lock=True):
93 if use_blocking_lock:

Callers

nothing calls this directly

Calls 1

_stopMethod · 0.95

Tested by

no test coverage detected