Ticket #2258: no_threading.diff

File no_threading.diff, 386 bytes (added by scott@…, 18 years ago)

patch for utils/synch.py

  • django/utils/synch.py

     
    66(Contributed to Django by eugene@lazutkin.com)
    77"""
    88
    9 import threading
     9try:
     10    import threading
     11except ImportError:
     12    import dummy_threading as threading
    1013
    1114class RWLock:
    1215    """
Back to Top