MCPcopy Create free account
hub / github.com/bloomberg/pystack / background

Function background

docs/tutorials/deadlock.py:6–11  ·  view source on GitHub ↗
(first_lock, second_lock)

Source from the content-addressed store, hash-verified

4
5
6def background(first_lock, second_lock):
7 with first_lock:
8 print(" First lock acquired")
9 time.sleep(1)
10 with second_lock:
11 print(" Second lock acquired")
12
13
14if __name__ == "__main__":

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected