| Server IP : 162.19.112.25 / Your IP : 216.73.216.88 Web Server : LiteSpeed System : Linux qamar.tasjeel.ae 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : archiart ( 1428) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/alt/python34/lib64/python3.4/asyncio/__pycache__/ |
Upload File : |
�
� f9 � @ s� d Z d d d d d g Z d d l Z d d l m Z d d
l m Z d d l m Z d d l m Z Gd
d � d � Z Gd d � d � Z
Gd d � d e
� Z Gd d � d � Z Gd d � d e
� Z
Gd d � d e
� Z Gd d � d e � Z d S)zSynchronization primitives.�Lock�Event� Condition� Semaphore�BoundedSemaphore� N� )�compat)�events)�futures)� coroutinec @ s: e Z d Z d Z d d � Z d d � Z d d � Z d S) �_ContextManagera Context manager.
This enables the following idiom for acquiring and releasing a
lock around a block:
with (yield from lock):
<block>
while failing loudly when accidentally using:
with lock:
<block>
c C s
| | _ d S)N)�_lock)�self�lock� r �2/opt/alt/python34/lib64/python3.4/asyncio/locks.py�__init__ s z_ContextManager.__init__c C s d S)Nr )r r r r � __enter__ s z_ContextManager.__enter__c G s"