shell bypass 403

GrazzMean-Shell Shell

Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.128.203.158
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : queue.cpython-313.pyc
�

1}g�4��:�SrSSKrSSKrSSKJr SSKJrJr SSKJ	r SSK
Jr /SQr
SSK
Jr "SS\5r"S
S\5r"SS5r"SS\5r"SS\5r"SS5r\c\rgg!\a SrN\f=f!\a "S	S
\5rNhf=f)z'A multi-producer, multi-consumer queue.�N)�deque)�heappush�heappop)�	monotonic)�SimpleQueue)�Empty�Full�ShutDown�Queue�
PriorityQueue�	LifoQueuer)rc��\rSrSrSrSrg)r�z4Exception raised by Queue.get(block=0)/get_nowait().�N��__name__�
__module__�__qualname__�__firstlineno__�__doc__�__static_attributes__r��,/opt/alt/python313/lib64/python3.13/queue.pyrrs��>�rrc��\rSrSrSrSrg)r	�z4Exception raised by Queue.put(block=0)/put_nowait().rNrrrrr	r	s��:�rr	c��\rSrSrSrSrg)r
�$z)Raised when put/get with shut-down queue.rNrrrrr
r
$s��3rr
c��\rSrSrSrSSjrSrSrSrSr	Sr
SS
jrSSjrSr
S
rSSjrSrSrSrSr\"\R,5rSrg	)r�(zbCreate a queue object with a given maximum size.

If maxsize is <= 0, the queue size is infinite.
c�`�XlURU5 [R"5Ul[R
"UR5Ul[R
"UR5Ul[R
"UR5UlSUl	SUl
g)NrF)�maxsize�_init�	threading�Lock�mutex�	Condition�	not_empty�not_full�all_tasks_done�unfinished_tasks�is_shutdown��selfr!s  r�__init__�Queue.__init__.s~�����
�
�7���^�^�%��
�#�,�,�T�Z�Z�8���"�+�+�D�J�J�7��
�(�1�1�$�*�*�=��� !���!��rc���UR URS-
nUS::a+US:a[S5eURR5 XlSSS5 g!,(df   g=f)a8Indicate that a formerly enqueued task is complete.

Used by Queue consumer threads.  For each get() used to fetch a task,
a subsequent call to task_done() tells the queue that the processing
on the task is complete.

If a join() is currently blocking, it will resume when all items
have been processed (meaning that a task_done() call was received
for every item that had been put() into the queue).

shutdown(immediate=True) calls task_done() for each remaining item in
the queue.

Raises a ValueError if called more times than there were items
placed in the queue.
�rz!task_done() called too many timesN)r)r*�
ValueError�
notify_all)r-�
unfinisheds  r�	task_done�Queue.task_doneHs[��"�
 �
 ��.�.��2�J��Q����>�$�%H�I�I��#�#�.�.�0�$.�!�
!�
 �
 �s�AA�
A+c���UR UR(a-URR5 UR(aM-SSS5 g!,(df   g=f)a[Blocks until all items in the Queue have been gotten and processed.

The count of unfinished tasks goes up whenever an item is added to the
queue. The count goes down whenever a consumer thread calls task_done()
to indicate the item was retrieved and all work on it is complete.

When the count of unfinished tasks drops to zero, join() unblocks.
N)r)r*�wait�r-s r�join�
Queue.joinasB���
 �
 ��'�'��#�#�(�(�*��'�'�'�!�
 �
 �s�=A�
A#c�p�UR UR5sSSS5 $!,(df   g=f)�9Return the approximate size of the queue (not reliable!).N�r%�_qsizer9s r�qsize�Queue.qsizens��
�Z�Z��;�;�=��Z�Z�s�'�
5c�z�UR UR5(+sSSS5 $!,(df   g=f)a�Return True if the queue is empty, False otherwise (not reliable!).

This method is likely to be removed at some point.  Use qsize() == 0
as a direct substitute, but be aware that either approach risks a race
condition where a queue can grow before the result of empty() or
qsize() can be used.

To create code that needs to wait for all queued tasks to be
completed, the preferred technique is to use the join() method.
Nr>r9s r�empty�Queue.emptyss!���Z�Z��{�{�}�$��Z�Z�s�,�
:c��UR SURs=:=(a UR5:*Os sSSS5 $!,(df   g=f)a'Return True if the queue is full, False otherwise (not reliable!).

This method is likely to be removed at some point.  Use qsize() >= n
as a direct substitute, but be aware that either approach risks a race
condition where a queue can shrink before the result of full() or
qsize() can be used.
rN)r%r!r?r9s r�full�
Queue.full�s/���Z�Z��t�|�|�4�4�t�{�{�}�4��Z�Z�s�-A�
ANc��UR UR(a[eURS:�GaGU(d&UR	5UR:�a[
eGOUcpUR	5UR:�aQURR
5 UR(a[eUR	5UR:�aMQO�US:a[S5e[5U-nUR	5UR:�akU[5-
nUS::a[
eURR
U5 UR(a[eUR	5UR:�aMkURU5 U=RS-
sl
URR5 SSS5 g!,(df   g=f)aPut an item into the queue.

If optional args 'block' is true and 'timeout' is None (the default),
block if necessary until a free slot is available. If 'timeout' is
a non-negative number, it blocks at most 'timeout' seconds and raises
the Full exception if no free slot was available within that time.
Otherwise ('block' is false), put an item on the queue if a free slot
is immediately available, else raise the Full exception ('timeout'
is ignored in that case).

Raises ShutDown if the queue has been shut down.
rN�''timeout' must be a non-negative number�r1)
r(r+r
r!r?r	r8r2�time�_putr*r'�notify)r-�item�block�timeout�endtime�	remainings      r�put�	Queue.put�sF���]�]�������|�|�a����{�{�}����4�"�
�5��_��+�+�-�4�<�<�7��
�
�*�*�,��+�+�"*�N��+�+�-�4�<�<�7���q�[�$�%N�O�O�"�f�w�.�G��+�+�-�4�<�<�7�$+�d�f�$4�	�$��+�"&�J��
�
�*�*�9�5��+�+�"*�N�
�+�+�-�4�<�<�7�
�I�I�d�O��!�!�Q�&�!��N�N�!�!�#�3�]�]�s�CG�B&G�=AG�
Gc��UR UR(aUR5(d[eU(dUR5(d[eGO UcsUR5(d]URR5 UR(aUR5(d[eUR5(dM]O�US:a[
S5e[5U-nUR5(dwU[5-
nUS::a[eURRU5 UR(aUR5(d[eUR5(dMwUR5nURR5 UsSSS5 $!,(df   g=f)a6Remove and return an item from the queue.

If optional args 'block' is true and 'timeout' is None (the default),
block if necessary until an item is available. If 'timeout' is
a non-negative number, it blocks at most 'timeout' seconds and raises
the Empty exception if no item was available within that time.
Otherwise ('block' is false), return an item if one is immediately
available, else raise the Empty exception ('timeout' is ignored
in that case).

Raises ShutDown if the queue has been shut down and is empty,
or if the queue has been shut down immediately.
NrrIrJ)r'r+r?r
rr8r2rK�_getr(rM)r-rOrPrQrRrNs      r�get�	Queue.get�s'���^�^�������
�
�����{�{�}�}��K�%����+�+�-�-��N�N�'�'�)��'�'����
�
�&���+�+�-�-���1�� �!J�K�K��&�7�*���+�+�-�-� '�$�&� 0�I� �C�'�#���N�N�'�'�	�2��'�'����
�
�&��
�+�+�-�-��9�9�;�D��M�M� � �"��1�^�^�s�CF3�B)F3�>+F3�3
Gc�"�URUSS9$)z�Put an item into the queue without blocking.

Only enqueue the item if a free slot is immediately available.
Otherwise raise the Full exception.
F�rO�rS�r-rNs  r�
put_nowait�Queue.put_nowait�����x�x��E�x�*�*rc� �URSS9$�z�Remove and return an item from the queue without blocking.

Only get an item if one is immediately available. Otherwise
raise the Empty exception.
FrZ�rWr9s r�
get_nowait�Queue.get_nowait�����x�x�e�x�$�$rc���UR SUlU(a{UR5(aLUR5 URS:�aU=RS-slUR5(aMLUR
R
5 URR
5 URR
5 SSS5 g!,(df   g=f)ajShut-down the queue, making queue gets and puts raise ShutDown.

By default, gets will only raise once the queue is empty. Set
'immediate' to True to make gets raise immediately instead.

All blocked callers of put() and get() will be unblocked. If
'immediate', a task is marked as done for each item remaining in
the queue, which may unblock callers of join().
Trr1N)	r%r+r?rVr*r)r3r'r()r-�	immediates  r�shutdown�Queue.shutdown�s����Z�Z�#�D����k�k�m�m��I�I�K��,�,�q�0��-�-��2�-��k�k�m�m�
�#�#�.�.�0��N�N�%�%�'��M�M�$�$�&��Z�Z�s�A.C�=AC�
C"c�"�[5Ulg�N)r�queuer,s  rr"�Queue._inits���W��
rc�,�[UR5$rk��lenrlr9s rr?�Queue._qsize����4�:�:��rc�:�URRU5 grk�rl�appendr\s  rrL�
Queue._put����
�
���$�rc�6�URR5$rk)rl�popleftr9s rrV�
Queue._gets���z�z�!�!�#�#r)r)r+r!r%r'r(rlr*)r�TN)F)rrrrrr.r5r:r@rCrFrSrWr]rcrhr"r?rLrV�classmethod�types�GenericAlias�__class_getitem__rrrrrr(sg���
!�4/�2+�!�
%�	5�&$�P&�P+�%�'�8�� �$�$�E�$6�$6�7�rrc�0�\rSrSrSrSrSrSrSrSr	g)	riz�Variant of Queue that retrieves open entries in priority order (lowest first).

Entries are typically tuples of the form:  (priority number, data).
c��/Ulgrk�rlr,s  rr"�PriorityQueue._init�	����
rc�,�[UR5$rkror9s rr?�PriorityQueue._qsize"rrrc�0�[URU5 grk)rrlr\s  rrL�PriorityQueue._put%s������T�"rc�,�[UR5$rk)rrlr9s rrV�PriorityQueue._get(s���t�z�z�"�"rr�N�
rrrrrr"r?rLrVrrrrrrs���
��#�#rrc�0�\rSrSrSrSrSrSrSrSr	g)	r
i,zBVariant of Queue that retrieves most recently added entries first.c��/Ulgrkr�r,s  rr"�LifoQueue._init/r�rc�,�[UR5$rkror9s rr?�LifoQueue._qsize2rrrc�:�URRU5 grkrtr\s  rrL�LifoQueue._put5rwrc�6�URR5$rk)rl�popr9s rrV�LifoQueue._get8s���z�z�~�~��rr�Nr�rrrr
r
,s��L��� � rr
c�n�\rSrSrSrSrSSjrSSjrSrSr	S	r
S
r\"\
R5rSrg)
�_PySimpleQueuei<zQSimple, unbounded FIFO queue.

This pure Python implementation is not reentrant.
c�X�[5Ul[R"S5Ulg)Nr)r�_queuer#�	Semaphore�_countr9s rr.�_PySimpleQueue.__init__Fs���g����)�)�!�,��rNc�n�URRU5 URR5 g)z�Put the item on the queue.

The optional 'block' and 'timeout' arguments are ignored, as this method
never blocks.  They are provided for compatibility with the Queue class.
N)r�rur��release)r-rNrOrPs    rrS�_PySimpleQueue.putJs&��	
�����4� ������rc��UbUS:a[S5eURRX5(d[eURR5$)a�Remove and return an item from the queue.

If optional args 'block' is true and 'timeout' is None (the default),
block if necessary until an item is available. If 'timeout' is
a non-negative number, it blocks at most 'timeout' seconds and raises
the Empty exception if no item was available within that time.
Otherwise ('block' is false), return an item if one is immediately
available, else raise the Empty exception ('timeout' is ignored
in that case).
rrI)r2r��acquirerr�ry)r-rOrPs   rrW�_PySimpleQueue.getSsI����7�Q�;��F�G�G��{�{�"�"�5�2�2��K��{�{�"�"�$�$rc�"�URUSS9$)z�Put an item into the queue without blocking.

This is exactly equivalent to `put(item, block=False)` and is only provided
for compatibility with the Queue class.
FrZr[r\s  rr]�_PySimpleQueue.put_nowaitdr_rc� �URSS9$rarbr9s rrc�_PySimpleQueue.get_nowaitlrerc�2�[UR5S:H$)zCReturn True if the queue is empty, False otherwise (not reliable!).r�rpr�r9s rrC�_PySimpleQueue.emptyts���4�;�;��1�$�$rc�,�[UR5$)r=r�r9s rr@�_PySimpleQueue.qsizexs���4�;�;��r)r�r�r{)rrrrrr.rSrWr]rcrCr@r|r}r~rrrrrr�r�<s=���-��%�"+�%�%� �$�E�$6�$6�7�rr�)rr#r}�collectionsr�heapqrrrKrr�r�ImportError�__all__r�	Exceptionr	r
rrr
r�rrr�<module>r�s���-����#�"��"���
��	�9�	�
4�y�4�n8�n8�b#�E�#�&
 ��
 � @8�@8�F�� �K���k���K��� �
�
�	�
�
�s"�A8�B�8B�B�B�B
© 2025 GrazzMean-Shell