Changeset 3045
- Timestamp:
- 05/31/06 23:57:10 (2 years ago)
- Files:
-
- django/trunk/django/db/transaction.py (modified) (1 diff)
- django/trunk/django/utils/_threading_local.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/transaction.py
r2809 r3045 13 13 """ 14 14 15 import thread 15 try: 16 import thread 17 except ImportError: 18 import dummy_thread as thread 16 19 from django.db import connection 17 20 from django.conf import settings django/trunk/django/utils/_threading_local.py
r2687 r3045 235 235 __del__ = __del__() 236 236 237 from threading import currentThread, enumerate, RLock 237 try: 238 from threading import currentThread, enumerate, RLock 239 except ImportError: 240 from dummy_threading import currentThread, enumerate, RLock
