PHP 8.0.30
Preview: threadinglocal.py Size: 1.45 KB
/opt/alt/python37/lib/python3.7/site-packages/paste/util/threadinglocal.py

# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
"""
Implementation of thread-local storage, for Python versions that don't
have thread local storage natively.
"""

try:
    import threading
except ImportError:
    # No threads, so "thread local" means process-global
    class local(object):
        pass
else:
    try:
        local = threading.local
    except AttributeError:
        # Added in 2.4, but now we'll have to define it ourselves
        import thread
        class local(object):

            def __init__(self):
                self.__dict__['__objs'] = {}

            def __getattr__(self, attr, g=thread.get_ident):
                try:
                    return self.__dict__['__objs'][g()][attr]
                except KeyError:
                    raise AttributeError(
                        "No variable %s defined for the thread %s"
                        % (attr, g()))

            def __setattr__(self, attr, value, g=thread.get_ident):
                self.__dict__['__objs'].setdefault(g(), {})[attr] = value

            def __delattr__(self, attr, g=thread.get_ident):
                try:
                    del self.__dict__['__objs'][g()][attr]
                except KeyError:
                    raise AttributeError(
                        "No variable %s defined for thread %s"
                        % (attr, g()))

Directory Contents

Dirs: 3 × Files: 25

Name Size Perms Modified Actions
looper DIR
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
template DIR
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
1.81 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.34 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
863 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download
2.36 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
10.91 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
97.09 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.40 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.75 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
786 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.04 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
18.68 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
9.05 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.20 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.88 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
6.44 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
11.14 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
83.85 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
2.42 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
5.50 KB lrw-r--r-- 2019-12-10 18:23:38
Edit Download
16.35 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
23.73 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
8.02 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.45 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
5.39 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
86 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).