$25 GRAYBYTE WORDPRESS FILE MANAGER $59

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python38/lib64/python3.8/asyncio/__pycache__/

HOME
Current File : /opt/alt/python38/lib64/python3.8/asyncio/__pycache__//queues.cpython-38.pyc
U

i�f �@s�dZddlZddlZddlZddlmZddlmZGdd�de�ZGdd	�d	e�Z	Gd
d�d�Z
Gdd
�d
e
�ZGdd�de
�ZdS))�Queue�
PriorityQueue�	LifoQueue�	QueueFull�
QueueEmpty�N�)�events)�locksc@seZdZdZdS)rz;Raised when Queue.get_nowait() is called on an empty Queue.N��__name__�
__module__�__qualname__�__doc__�rr�3/opt/alt/python38/lib64/python3.8/asyncio/queues.pyrsrc@seZdZdZdS)rzDRaised when the Queue.put_nowait() method is called on a full Queue.Nr
rrrrrsrc@s�eZdZdZd)dd�dd�Zdd�Zd	d
�Zdd�Zd
d�Zdd�Z	dd�Z
dd�Zdd�Ze
dd��Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�ZdS)*raA queue, useful for coordinating producer and consumer coroutines.

    If maxsize is less than or equal to zero, the queue size is infinite. If it
    is an integer greater than 0, then "await put()" will block when the
    queue reaches maxsize, until an item is removed by get().

    Unlike the standard library Queue, you can reliably know this Queue's size
    with qsize(), since your single-threaded asyncio application won't be
    interrupted between calling qsize() and doing an operation on the Queue.
    rN��loopcCsp|dkrt��|_n||_tjdtdd�||_t��|_	t��|_
d|_tj
|d�|_|j��|�|�dS)Nz[The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.�)�
stacklevelrr)rZget_event_loop�_loop�warnings�warn�DeprecationWarning�_maxsize�collections�deque�_getters�_putters�_unfinished_tasksr	ZEvent�	_finished�set�_init)�self�maxsizerrrr�__init__!s�


zQueue.__init__cCst��|_dS�N)rr�_queue�r"r#rrrr!6szQueue._initcCs
|j��Sr%)r&�popleft�r"rrr�_get9sz
Queue._getcCs|j�|�dSr%�r&�append�r"�itemrrr�_put<sz
Queue._putcCs&|r"|��}|��s|�d�q"qdSr%)r(ZdoneZ
set_result)r"�waitersZwaiterrrr�_wakeup_nextAs

zQueue._wakeup_nextcCs(dt|�j�dt|�d�d|���d�S)N�<z at z#x� �>)�typer�id�_formatr)rrr�__repr__IszQueue.__repr__cCsdt|�j�d|���d�S)Nr2r3r4)r5rr7r)rrr�__str__Lsz
Queue.__str__cCs~d|j��}t|dd�r,|dt|j���7}|jrH|dt|j��d�7}|jrd|dt|j��d�7}|jrz|d|j��7}|S)Nzmaxsize=r&z _queue=z
 _getters[�]z
 _putters[z tasks=)r�getattr�listr&r�lenrr)r"�resultrrrr7Osz
Queue._formatcCs
t|j�S)zNumber of items in the queue.)r=r&r)rrr�qsize[szQueue.qsizecCs|jS)z%Number of items allowed in the queue.)rr)rrrr#_sz
Queue.maxsizecCs|jS)z3Return True if the queue is empty, False otherwise.�r&r)rrr�emptydszQueue.emptycCs |jdkrdS|��|jkSdS)z�Return True if there are maxsize items in the queue.

        Note: if the Queue was initialized with maxsize=0 (the default),
        then full() is never True.
        rFN)rr?r)rrr�fullhs
z
Queue.fullc�s�|��r�|j��}|j�|�z|IdHWq|��z|j�|�Wntk
r`YnX|��s~|��s~|�	|j��YqXq|�
|�S)z�Put an item into the queue.

        Put an item into the queue. If the queue is full, wait until a free
        slot is available before adding item.
        N)rBr�
create_futurerr,�cancel�remove�
ValueError�	cancelledr1�
put_nowait)r"r.Zputterrrr�putss

z	Queue.putcCs>|��rt�|�|�|jd7_|j��|�|j�dS)zyPut an item into the queue without blocking.

        If no free slot is immediately available, raise QueueFull.
        rN)rBrr/rr�clearr1rr-rrrrH�s

zQueue.put_nowaitc�s�|��r�|j��}|j�|�z|IdHWq|��z|j�|�Wntk
r`YnX|��s~|��s~|�	|j��YqXq|�
�S)zoRemove and return an item from the queue.

        If queue is empty, wait until an item is available.
        N)rArrCrr,rDrErFrGr1�
get_nowait)r"�getterrrr�get�s

z	Queue.getcCs$|��rt�|��}|�|j�|S)z�Remove and return an item from the queue.

        Return an item if one is immediately available, else raise QueueEmpty.
        )rArr*r1rr-rrrrK�s
zQueue.get_nowaitcCs8|jdkrtd��|jd8_|jdkr4|j��dS)a$Indicate that a formerly enqueued task is complete.

        Used by queue consumers. 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).

        Raises ValueError if called more times than there were items placed in
        the queue.
        rz!task_done() called too many timesrN)rrFrr r)rrr�	task_done�s


zQueue.task_donec�s|jdkr|j��IdHdS)aBlock 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 calls task_done() to
        indicate that the item was retrieved and all work on it is complete.
        When the count of unfinished tasks drops to zero, join() unblocks.
        rN)rr�waitr)rrr�join�s
z
Queue.join)r)rrr
rr$r!r*r/r1r8r9r7r?�propertyr#rArBrIrHrMrKrNrPrrrrrs(
rc@s4eZdZdZdd�Zejfdd�Zejfdd�Z	dS)	rz�A subclass of Queue; retrieves entries in priority order (lowest first).

    Entries are typically tuples of the form: (priority number, data).
    cCs
g|_dSr%r@r'rrrr!�szPriorityQueue._initcCs||j|�dSr%r@)r"r.�heappushrrrr/�szPriorityQueue._putcCs
||j�Sr%r@)r"�heappoprrrr*�szPriorityQueue._getN)
rrr
rr!�heapqrRr/rSr*rrrrr�src@s(eZdZdZdd�Zdd�Zdd�ZdS)	rzEA subclass of Queue that retrieves most recently added entries first.cCs
g|_dSr%r@r'rrrr!�szLifoQueue._initcCs|j�|�dSr%r+r-rrrr/�szLifoQueue._putcCs
|j��Sr%)r&�popr)rrrr*�szLifoQueue._getN)rrr
rr!r/r*rrrrr�sr)
�__all__rrTr�rr	�	Exceptionrrrrrrrrr�<module>sK


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
26 Oct 2024 8.34 AM
root / linksafe
0755
__init__.cpython-38.opt-1.pyc
0.747 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__init__.cpython-38.opt-2.pyc
0.692 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__init__.cpython-38.pyc
0.747 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.opt-1.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.opt-2.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.opt-1.pyc
49.618 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.opt-2.pyc
40.848 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.pyc
49.839 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.opt-1.pyc
1.868 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.opt-2.pyc
1.62 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.pyc
1.868 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.opt-1.pyc
9.116 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.opt-2.pyc
9.019 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.pyc
9.21 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.opt-1.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.opt-2.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.opt-1.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.opt-2.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.opt-1.pyc
6.43 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.opt-2.pyc
6.203 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.pyc
6.513 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.opt-1.pyc
27.309 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.opt-2.pyc
18.469 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.pyc
27.414 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.opt-1.pyc
2.504 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.opt-2.pyc
1.875 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.pyc
2.504 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.opt-1.pyc
2.292 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.opt-2.pyc
2.054 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.pyc
2.292 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.opt-1.pyc
10.772 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.opt-2.pyc
7.544 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.pyc
10.945 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.opt-1.pyc
15.999 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.opt-2.pyc
9.552 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.pyc
15.999 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.opt-1.pyc
0.235 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.opt-2.pyc
0.197 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.pyc
0.235 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.opt-1.pyc
23.322 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.opt-2.pyc
22.932 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.pyc
23.594 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.opt-1.pyc
8.427 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.opt-2.pyc
3.291 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.pyc
8.427 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.opt-1.pyc
8.199 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.opt-2.pyc
5.583 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.pyc
8.199 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.opt-1.pyc
1.916 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.opt-2.pyc
1.25 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.pyc
1.916 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.opt-1.pyc
28.945 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.opt-2.pyc
27.35 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.pyc
29.004 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.opt-1.pyc
20.931 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.opt-2.pyc
14.287 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.pyc
21.126 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.opt-1.pyc
3.867 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.opt-2.pyc
1.784 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.pyc
4.036 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.opt-1.pyc
19.902 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.opt-2.pyc
14.146 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.pyc
20.171 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.opt-1.pyc
7.171 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.opt-2.pyc
7.046 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.pyc
7.2 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.opt-1.pyc
23.672 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.opt-2.pyc
16.264 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.pyc
23.727 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.opt-1.pyc
11.96 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.opt-2.pyc
6.686 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.pyc
11.989 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.opt-1.pyc
8.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.opt-2.pyc
8.049 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.pyc
8.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.opt-1.pyc
38.057 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.opt-2.pyc
33.524 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.pyc
38.429 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.opt-1.pyc
24.001 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.opt-2.pyc
22.92 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.pyc
24.032 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.opt-1.pyc
4.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.opt-2.pyc
3.875 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.pyc
4.381 KB
23 Sep 2024 11.26 AM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF