1
0
mirror of https://github.com/djohnlewis/stackdump synced 2025-01-23 07:01:41 +00:00
stackdump/python/packages/sqlobject/util/threadinglocal.py

7 lines
152 B
Python

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