app/django/utils/thread_support.py
author Todd Larsen <tlarsen@google.com>
Thu, 16 Oct 2008 04:30:26 +0000
changeset 350 e8f14fde7f0e
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
"new" is a little bit redundant in the short_name of sidebar menu items that already begin with "Create...", since that implies the result will be something new. Patch by: Todd Larsen Review by: to-be-reviewed

"""
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"