app/django/utils/thread_support.py
author James Levy <jamesalexanderlevy@gmail.com>
Sun, 28 Jun 2009 13:18:56 +0200
changeset 2430 c9a5bf5ed3c5
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added SurveyRecordGroup for the use in evaluation surveys. Patch by: James Levy, Daniel Diniz Reviewed by: Lennard de Rijk

"""
Code used in a couple of places to work with the current thread's environment.
Current users include i18n and request prefix handling.
"""

try:
    import threading
    currentThread = threading.currentThread
except ImportError:
    def currentThread():
        return "no threading"