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

Method __del__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_stopMethod · 0.95

Tested by

no test coverage detected