summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/useless-with-lock/good.py
blob: 86b104990b20fa6e21ec95d2813efab56b5cb636 (plain)
1
2
3
4
5
6
7
import threading

lock = threading.Lock()
with lock:
    print("Make your bed.")
with lock:
    print("Sleep in it.")