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

Method set

Lib/multiprocessing/synchronize.py:341–345  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

339 return False
340
341 def set(self):
342 with self._cond:
343 self._flag.acquire(False)
344 self._flag.release()
345 self._cond.notify_all()
346
347 def clear(self):
348 with self._cond:

Callers

nothing calls this directly

Calls 3

acquireMethod · 0.45
releaseMethod · 0.45
notify_allMethod · 0.45

Tested by

no test coverage detected