KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /usr/lib64/python2.4/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/lib64/python2.4/_threading_local.pyc
m๒
‚=5Dc@sXdZdefd„ƒYZd„Zdefd„ƒYZdklZlZlZdS(s๖Thread-local objects

(Note that this module provides a Python version of thread
 threading.local class.  Depending on the version of Python you're
 using, there may be a faster one available.  You should always import
 the local class from threading.)

Thread-local objects support the management of thread-local data.
If you have data that you want to be local to a thread, simply create
a thread-local object and use its attributes:

  >>> mydata = local()
  >>> mydata.number = 42
  >>> mydata.number
  42

You can also access the local-object's dictionary:

  >>> mydata.__dict__
  {'number': 42}
  >>> mydata.__dict__.setdefault('widgets', [])
  []
  >>> mydata.widgets
  []

What's important about thread-local objects is that their data are
local to a thread. If we access the data in a different thread:

  >>> log = []
  >>> def f():
  ...     items = mydata.__dict__.items()
  ...     items.sort()
  ...     log.append(items)
  ...     mydata.number = 11
  ...     log.append(mydata.number)

  >>> import threading
  >>> thread = threading.Thread(target=f)
  >>> thread.start()
  >>> thread.join()
  >>> log
  [[], 11]

we get different data.  Furthermore, changes made in the other thread
don't affect data seen in this thread:

  >>> mydata.number
  42

Of course, values you get from a local object, including a __dict__
attribute, are for whatever thread was current at the time the
attribute was read.  For that reason, you generally don't want to save
these values across threads, as they apply only to the thread they
came from.

You can create custom local objects by subclassing the local class:

  >>> class MyLocal(local):
  ...     number = 2
  ...     initialized = False
  ...     def __init__(self, **kw):
  ...         if self.initialized:
  ...             raise SystemError('__init__ called too many times')
  ...         self.initialized = True
  ...         self.__dict__.update(kw)
  ...     def squared(self):
  ...         return self.number ** 2

This can be useful to support default values, methods and
initialization.  Note that if you define an __init__ method, it will be
called each time the local object is used in a separate thread.  This
is necessary to initialize each thread's dictionary.

Now if we create a local object:

  >>> mydata = MyLocal(color='red')

Now we have a default number:

  >>> mydata.number
  2

an initial color:

  >>> mydata.color
  'red'
  >>> del mydata.color

And a method that operates on the data:

  >>> mydata.squared()
  4

As before, we can access the data in a separate thread:

  >>> log = []
  >>> thread = threading.Thread(target=f)
  >>> thread.start()
  >>> thread.join()
  >>> log
  [[('color', 'red'), ('initialized', True)], 11]

without affecting this thread's data:

  >>> mydata.number
  2
  >>> mydata.color
  Traceback (most recent call last):
  ...
  AttributeError: 'MyLocal' object has no attribute 'color'

Note that subclasses can define slots, but they are not thread
local. They are shared across threads:

  >>> class MyLocal(local):
  ...     __slots__ = 'number'

  >>> mydata = MyLocal()
  >>> mydata.number = 42
  >>> mydata.color = 'red'

So, the separate thread:

  >>> thread = threading.Thread(target=f)
  >>> thread.start()
  >>> thread.join()

affects what we see:

  >>> mydata.number
  11

>>> del mydata
t
_localbasecBstZdZd„ZRS(Nt_local__keyt_local__argst_local__lockcOsฤti|ƒ}ddtt|ƒƒf}ti|d|ƒti|d||fƒti|dt
ƒƒ|p|o#|itijotdƒ‚nti
|dƒ}|tƒi|<|S(NRs
thread.local.RRs*Initialization arguments are not supportedt__dict__(tobjectt__new__tclstselftstrtidtkeyt__setattr__targstkwtRLockt__init__t	TypeErrort__getattribute__tdictt
currentThreadR(RR
RRRR((t(/usr/lib64/python2.4/_threading_local.pyRs!(s_local__keys_local__argss_local__lock(t__name__t
__module__t	__slots__R(((RRŠscCsฦti|dƒ}tƒii|ƒ}|djo{h}|tƒi|<ti	|d|ƒt
|ƒ}|itij	o/ti|dƒ\}}|i|||Žqยnti	|d|ƒdS(NRRR(RRRRRRtgettdtNoneRttypeRRR
R(RR
RRRR((Rt_patchŸs
tlocalcBs5tZd„Zd„Zd„Zd„ZeƒZRS(NcCsLti|dƒ}|iƒzt|ƒti||ƒSWd|iƒXdS(NR(RRRtlocktacquireRtnametrelease(RR!R((RRฒs

cCsOti|dƒ}|iƒz!t|ƒti|||ƒSWd|i	ƒXdS(NR(
RRRRR RRR!tvalueR"(RR!R#R((RRปs

cCsLti|dƒ}|iƒzt|ƒti||ƒSWd|iƒXdS(NR(	RRRRR Rt__delattr__R!R"(RR!R((RR$ฤs

cs"t‰ti‰‡‡d†}|S(Ncsˆ|dƒ}ytˆƒƒ}WndSnXxf|D]^}y
|i}Wntj
o
q7nX||jo%y||=Wq•t	j
oq•Xq7q7WdS(NR(
RRRtlisttthreading_enumeratetthreadstthreadRtAttributeErrortKeyError(RR(R'RR(R&R(Rt__del__าs 

(t	enumerateR&RRR+(R+RR&((RR&RR+ฮs	(RRRRR$R+(((RRฐs
					
	(s
currentThreads	enumeratesRLockN(	t__doc__RRRRt	threadingRR,R(RRRR,RR((Rt?†s	=

Anon7 - 2021