shell bypass 403

UnknownSec Shell

: /proc/thread-self/root/lib64/python2.7/ [ drwxr-xr-x ]

name : _threading_local.pyo
�
zfc@s^dZdgZdefd��YZd�Zdefd��YZddlmZmZdS(	s4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 = 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
  ...     def __init__(self, **kw):
  ...         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')], 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
tlocalt
_localbasecBseZdZd�ZRS(t_local__keyt_local__argst_local__lockcOs�tj|�}ddtt|��f}tj|d|�tj|d||f�tj|dt��|sy|r�|jtjkr�td��ntj|d�}|t	�j
|<|S(NRs
thread.local.RRs*Initialization arguments are not supportedt__dict__(tobjectt__new__tstrtidt__setattr__tRLockt__init__t	TypeErrort__getattribute__tcurrent_threadR(tclstargstkwtselftkeytdict((s(/usr/lib64/python2.7/_threading_local.pyR�s(RRR(t__name__t
__module__t	__slots__R(((s(/usr/lib64/python2.7/_threading_local.pyR�scCs�tj|d�}t�jj|�}|dkr�i}|t�j|<tj|d|�t|�}|jtjk	r�tj|d�\}}|j|||�q�ntj|d|�dS(NRRR(	RRRRtgettNoneR
ttypeR(RRtdRRR((s(/usr/lib64/python2.7/_threading_local.pyt_patch�scBs,eZd�Zd�Zd�Zd�ZRS(cCsLtj|d�}|j�zt|�tj||�SWd|j�XdS(NR(RRtacquireRtrelease(Rtnametlock((s(/usr/lib64/python2.7/_threading_local.pyR�s

cCst|dkr%td|jj��ntj|d�}|j�z!t|�tj|||�SWd|j�XdS(NRs+%r object attribute '__dict__' is read-onlyR(	tAttributeErrort	__class__RRRRRR
R(RR tvalueR!((s(/usr/lib64/python2.7/_threading_local.pyR
�s

cCsq|dkr%td|jj��ntj|d�}|j�zt|�tj||�SWd|j�XdS(NRs+%r object attribute '__dict__' is read-onlyR(	R"R#RRRRRt__delattr__R(RR R!((s(/usr/lib64/python2.7/_threading_local.pyR%�s

cCs�ddl}tj|d�}y|j�}WndSXx`|D]X}y
|j}Wntk
riq@nX||kr@y||=Wq�tk
r�q�Xq@q@WdS(Ni����R(t	threadingRRt
_enumerateRR"tKeyError(RR&RtthreadstthreadR((s(/usr/lib64/python2.7/_threading_local.pyt__del__�s 



(RRRR
R%R+(((s(/usr/lib64/python2.7/_threading_local.pyR�s			
	
i����(RRN(	t__doc__t__all__RRRRR&RR(((s(/usr/lib64/python2.7/_threading_local.pyt<module>�s
		A

© 2025 UnknownSec
Web Design for Beginners | Anyleson - Learning Platform
INR (₹)
India Rupee
$
United States Dollar
Web Design for Beginners

Web Design for Beginners

in Design
Created by Linda Anderson
+2
5 Users are following this upcoming course
Course Published
This course was published already and you can check the main course
Course
Web Design for Beginners
in Design
4.25
1:45 Hours
8 Jul 2021
₹11.80

What you will learn?

Create any website layout you can imagine

Support any device size with Responsive (mobile-friendly) Design

Add tasteful animations and effects with CSS3

Course description

You can launch a new career in web development today by learning HTML & CSS. You don't need a computer science degree or expensive software. All you need is a computer, a bit of time, a lot of determination, and a teacher you trust. I've taught HTML and CSS to countless coworkers and held training sessions for fortune 100 companies. I am that teacher you can trust. 


Don't limit yourself by creating websites with some cheesy “site-builder" tool. This course teaches you how to take 100% control over your webpages by using the same concepts that every professional website is created with.


This course does not assume any prior experience. We start at square one and learn together bit by bit. By the end of the course you will have created (by hand) a website that looks great on phones, tablets, laptops, and desktops alike.


In the summer of 2020 the course has received a new section where we push our website live up onto the web using the free GitHub Pages service; this means you'll be able to share a link to what you've created with your friends, family, colleagues and the world!

Requirements

No prerequisite knowledge required

No special software required

Comments (0)

Report course

Please describe about the report short and clearly.

Share

Share course with your friends