Hacked By AnonymousFox
a
R�fM; � @ s� d Z dZddlZddlZddlmZ ddlmZ G dd� d�ZG d d
� d
e�ZG dd� d�Z G d
d� de�Z
G dd� de�ZG dd� de�ZdS )zSynchronization primitives.)�Lock�Event� Condition� Semaphore�BoundedSemaphore� N� )�events)�
exceptionsc @ s e Zd Zdd� Zdd� ZdS )�_ContextManagerMixinc � s | � � I d H d S �N)�acquire��self� r �2/opt/alt/python39/lib64/python3.9/asyncio/locks.py�
__aenter__
s z_ContextManagerMixin.__aenter__c � s | � � d S r )�release)r �exc_type�exc�tbr r r � __aexit__ s z_ContextManagerMixin.__aexit__N)�__name__�
__module__�__qualname__r r r r r r r
s r
c sN e Zd ZdZdd�dd�Z� fdd�Zdd � Zd
d� Zdd
� Zdd� Z � Z
S )r a� Primitive lock objects.
A primitive lock is a synchronization primitive that is not owned
by a particular coroutine when locked. A primitive lock is in one
of two states, 'locked' or 'unlocked'.
It is created in the unlocked state. It has two basic methods,
acquire() and release(). When the state is unlocked, acquire()
changes the state to locked and returns immediately. When the
state is locked, acquire() blocks until a call to release() in
another coroutine changes it to unlocked, then the acquire() call
resets it to locked and returns. The release() method should only
be called in the locked state; it changes the state to unlocked
and returns immediately. If an attempt is made to release an
unlocked lock, a RuntimeError will be raised.
When more than one coroutine is blocked in acquire() waiting for
the state to turn to unlocked, only one coroutine proceeds when a
release() call resets the state to unlocked; first coroutine which
is blocked in acquire() is being processed.
acquire() is a coroutine and should be called with 'await'.
Locks also support the asynchronous context management protocol.
'async with lock' statement should be used.
Usage:
lock = Lock()
...
await lock.acquire()
try:
...
finally:
lock.release()
Context manager usage:
lock = Lock()
...
async with lock:
...
Lock objects can be tested for locking state:
if not lock.locked():
await lock.acquire()
else:
# lock is acquired
...
N��loopc C s: d | _ d| _|d u r t�� | _n|| _tjdtdd� d S �NF�[The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.� ��
stacklevel)�_waiters�_lockedr �get_event_loop�_loop�warnings�warn�DeprecationWarning�r r r r r �__init__M s �z
Lock.__init__c sL t � �� }| jrdnd}| jr2|� dt| j�� �}d|dd� � d|� d�S � N�lockedZunlocked�
, waiters:�<r ���� [�]>)�super�__repr__r"