thread.py 97 B

123456
  1. import threading
  2. _thread_local = threading.local()
  3. def local():
  4. return _thread_local