mirror of
https://github.com/djohnlewis/stackdump
synced 2025-01-22 22:51:36 +00:00
7 lines
152 B
Python
7 lines
152 B
Python
try:
|
|
from threading import local
|
|
except ImportError:
|
|
# No threads, so "thread local" means process-global
|
|
class local(object):
|
|
pass
|