python (3.11.7)
    e                         d Z dZ G d de          ZeZ G d de          Z G d de          Z G d d	e	          Z
 G d
 de          Z G d d
e          ZdS )zasyncio exceptions.)BrokenBarrierErrorCancelledErrorInvalidStateErrorTimeoutErrorIncompleteReadErrorLimitOverrunErrorSendfileNotAvailableErrorc                       e Zd ZdZdS )r   z!The Future or Task was cancelled.N__name__
__module____qualname____doc__     F/BuggyBox/python/3.11.7/bootstrap/lib/python3.11/asyncio/exceptions.pyr   r   
   s        ++++r   r   c                       e Zd ZdZdS )r   z+The operation is not allowed in this state.Nr
   r   r   r   r   r      s        5555r   r   c                       e Zd ZdZdS )r   z~Sendfile syscall is not available.
    Raised if OS does not support sendfile syscall for given socket or
    file type.
    Nr
   r   r   r   r   r      s           r   r   c                   (     e Zd ZdZ fdZd Z xZS )r   z
    Incomplete read error. Attributes:
    - partial: read bytes string before the end of stream was reached
    - expected: total number of expected bytes (or None if unknown)
    c                     |dnt          |          }t                                          t          |           d| d           || _        || _        d S )N	undefinedz bytes read on a total of z expected bytes)reprsuper__init__lenpartialexpected)selfr   r   
r_expected	__class__s       r   r   zIncompleteReadError.__init__$   si    $,$4[[$x..
CLL 8 8&8 8 8 	9 	9 	9 
r   c                 <