|
Server : LiteSpeed System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : elvh3918 ( 1528) PHP Version : 8.2.31 Disable Function : mail Directory : /opt/alt/python35/lib64/python3.5/asyncio/__pycache__/ |
��qc�: � @ 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/python35/lib64/python3.5/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"