AlkantarClanX12

Your IP : 18.221.192.248


Current Path : /opt/alt/python33/lib64/python3.3/__pycache__/
Upload File :
Current File : //opt/alt/python33/lib64/python3.3/__pycache__/_threading_local.cpython-33.pyo

�
��f�c@s�dZddlmZddlmZdgZGdd�d�Zedd��ZGd	d�d�Zdd
l	m
Z
mZdS(u�Thread-local objects.

(Note that this module provides a Python version of the 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 = sorted(mydata.__dict__.items())
  ...     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
i(uref(ucontextmanagerulocalcBsD|EeZdZdZdZdd�Zd	d
�Zdd�Zd
S(u
_localimplu#A class managing thread-local dictsukeyudictsu	localargsu	locallocku__weakref__cCs&dtt|��|_i|_dS(Nu_threading_local._localimpl.(ustruidukeyudicts(uself((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__init__�su_localimpl.__init__cCst�}|jt|�dS(uPReturn the dict for the current thread. Raises KeyError if none
        defined.i(ucurrent_threadudictsuid(uselfuthread((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyuget_dict�s	u_localimpl.get_dictcs�i}|j}t�}t|�}|�fdd�}|�fdd�}t||��t||���|j|<�|f|j|<|S(u8Create a new dict for the current thread, and return it.cs&��}|dk	r"|j|=ndS(N(uNoneu__dict__(u_ukeyuthread(uwrthread(u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu
local_deleted�s	u-_localimpl.create_dict.<locals>.local_deletedcs.��}|dk	r*|jj|�}ndS(N(uNoneudictsupop(u_uidtulocaludct(uwrlocal(u5/opt/alt/python33/lib64/python3.3/_threading_local.pyuthread_deleted�s	u._localimpl.create_dict.<locals>.thread_deleted(ukeyucurrent_threaduidurefu__dict__udicts(uselfu	localdictukeyuthreaduidtu
local_deleteduthread_deleted((uwrlocaluwrthreadu5/opt/alt/python33/lib64/python3.3/_threading_local.pyucreate_dict�s		
u_localimpl.create_dictN(ukeyudictsu	localargsu	locallocku__weakref__(u__name__u
__module__u__qualname__u__doc__u	__slots__u__init__uget_dictucreate_dict(u
__locals__((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu
_localimpl�s
u
_localimplccs�tj|d�}y|j�}Wn=tk
ra|j�}|j\}}|j||�YnX|j�tj|d|�dVWdQXdS(Nu_local__implu__dict__(	uobjectu__getattribute__uget_dictuKeyErrorucreate_dictu	localargsu__init__u	locallocku__setattr__(uselfuimpludctuargsukw((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu_patch�s

u_patchcBsJ|EeZdZdZdd�Zdd�Zdd�Zd	d
�ZdS(
ulocalu_local__implu__dict__cOs�|s|r-|jtjkr-td��ntj|�}t�}||f|_t�|_tj|d|�|j	�|S(Nu*Initialization arguments are not supportedu_local__impl(
u__init__uobjectu	TypeErroru__new__u
_localimplu	localargsuRLocku	locallocku__setattr__ucreate_dict(uclsuargsukwuselfuimpl((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__new__�s	
u
local.__new__c
Cs't|��tj||�SWdQXdS(N(u_patchuobjectu__getattribute__(uselfuname((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__getattribute__�s
ulocal.__getattribute__cCsO|dkr%td|jj��nt|��tj|||�SWdQXdS(Nu__dict__u+%r object attribute '__dict__' is read-only(uAttributeErroru	__class__u__name__u_patchuobjectu__setattr__(uselfunameuvalue((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__setattr__�s
ulocal.__setattr__c
CsL|dkr%td|jj��nt|��tj||�SWdQXdS(Nu__dict__u+%r object attribute '__dict__' is read-only(uAttributeErroru	__class__u__name__u_patchuobjectu__delattr__(uselfuname((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__delattr__�s
ulocal.__delattr__N(u_local__implu__dict__(u__name__u
__module__u__qualname__u	__slots__u__new__u__getattribute__u__setattr__u__delattr__(u
__locals__((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyulocal�s
(ucurrent_threaduRLockN(u__doc__uweakrefurefu
contextlibucontextmanageru__all__u
_localimplu_patchulocalu	threadingucurrent_threaduRLock(((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu<module>�s	,&