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

Method set

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

Source from the content-addressed store, hash-verified

346 return False
347
348 def set(self):
349 with self._cond:
350 self._flag.acquire(False)
351 self._flag.release()
352 self._cond.notify_all()
353
354 def clear(self):
355 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