1
0
mirror of https://github.com/djohnlewis/stackdump synced 2025-03-11 13:16:30 +00:00

7 lines
152 B
Python
Raw Normal View History

try:
from threading import local
except ImportError:
# No threads, so "thread local" means process-global
class local(object):
pass