Ticket #2258: no_threading.diff
File no_threading.diff, 386 bytes (added by , 18 years ago) |
---|
-
django/utils/synch.py
6 6 (Contributed to Django by eugene@lazutkin.com) 7 7 """ 8 8 9 import threading 9 try: 10 import threading 11 except ImportError: 12 import dummy_threading as threading 10 13 11 14 class RWLock: 12 15 """