£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
a
    Re                     @   s  d Z ddlmZ G dd deZG dd deZG dd deZG d	d
 d
eZG dd deZG dd deZ	G dd deZ
G dd dee
ZG dd de
ZG dd deZG dd deZG dd deeZG dd deeZG dd deeZG dd  d eeZG d!d" d"eZG d#d$ d$eZG d%d& d&eeZG d'd( d(eeZG d)d* d*eZG d+d, d,eZG d-d. d.eZG d/d0 d0eeZG d1d2 d2eZd3S )4z`
requests.exceptions
~~~~~~~~~~~~~~~~~~~

This module contains the set of Requests' exceptions.
    )	HTTPErrorc                       s    e Zd ZdZ fddZ  ZS )RequestExceptionzTThere was an ambiguous exception that occurred while handling your
    request.
    c                    s\   | dd}|| _| dd| _|durB| jsBt|drB| jj| _tt| j|i | dS )zBInitialize RequestException with `request` and `response` objects.responseNrequest)popr   r   hasattrsuperr   __init__)selfargskwargsr   	__class__ /builddir/build/BUILDROOT/alt-python39-pip-21.3.1-2.el8.x86_64/opt/alt/python39/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.pyr	      s    
zRequestException.__init__)__name__
__module____qualname____doc__r	   __classcell__r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdS )InvalidJSONErrorzA JSON error occurred.Nr   r   r   r   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdS )r   zAn HTTP error occurred.Nr   r   r   r   r   r       s   r   c                   @   s   e Zd ZdZdS )ConnectionErrorzA Connection error occurred.Nr   r   r   r   r   r   $   s   r   c                   @   s   e Zd ZdZdS )
ProxyErrorzA proxy error occurred.Nr   r   r   r   r   r   (   s   r   c                   @   s   e Zd ZdZdS )SSLErrorzAn SSL error occurred.Nr   r   r   r   r   r   ,   s   r   c                   @   s   e Zd ZdZdS )TimeoutzThe request timed out.

    Catching this error will catch both
    :exc:`~requests.exceptions.ConnectTimeout` and
    :exc:`~requests.exceptions.ReadTimeout` errors.
    Nr   r   r   r   r   r   0   s   r   c                   @   s   e Zd ZdZdS )ConnectTimeoutzThe request timed out while trying to connect to the remote server.

    Requests that produced this error are safe to retry.
    Nr   r   r   r   r   r   9   s   r   c                   @   s   e Zd ZdZdS )ReadTimeoutz@The server did not send any data in the allotted amount of time.Nr   r   r   r   r   r   @   s   r   c                   @   s   e Zd ZdZdS )URLRequiredz*A valid URL is required to make a request.Nr   r   r   r   r   r   D   s   r   c                   @   s   e Zd ZdZdS )TooManyRedirectszToo many redirects.Nr   r   r   r   r   r   H   s   r   c                   @   s   e Zd ZdZdS )MissingSchemaz/The URL schema (e.g. http or https) is missing.Nr   r   r   r   r   r    L   s   r    c                   @   s   e Zd ZdZdS )InvalidSchemaz"See defaults.py for valid schemas.Nr   r   r   r   r   r!   P   s   r!   c                   @   s   e Zd ZdZdS )
InvalidURLz%The URL provided was somehow invalid.Nr   r   r   r   r   r"   T   s   r"   c                   @   s   e Zd ZdZdS )InvalidHeaderz.The header value provided was somehow invalid.Nr   r   r   r   r   r#   X   s   r#   c                   @   s   e Zd ZdZdS )InvalidProxyURLz"The proxy URL provided is invalid.Nr   r   r   r   r   r$   \   s   r$   c                   @   s   e Zd ZdZdS )ChunkedEncodingErrorz?The server declared chunked encoding but sent an invalid chunk.Nr   r   r   r   r   r%   `   s   r%   c                   @   s   e Zd ZdZdS )ContentDecodingErrorz"Failed to decode response content.Nr   r   r   r   r   r&   d   s   r&   c                   @   s   e Zd ZdZdS )StreamConsumedErrorz3The content for this response was already consumed.Nr   r   r   r   r   r'   h   s   r'   c                   @   s   e Zd ZdZdS )
RetryErrorzCustom retries logic failedNr   r   r   r   r   r(   l   s   r(   c                   @   s   e Zd ZdZdS )UnrewindableBodyErrorz;Requests encountered an error when trying to rewind a body.Nr   r   r   r   r   r)   p   s   r)   c                   @   s   e Zd ZdZdS )RequestsWarningzBase warning for Requests.Nr   r   r   r   r   r*   v   s   r*   c                   @   s   e Zd ZdZdS )FileModeWarningzJA file was opened in text mode, but Requests determined its binary length.Nr   r   r   r   r   r+   z   s   r+   c                   @   s   e Zd ZdZdS )RequestsDependencyWarningz@An imported dependency doesn't match the expected version range.Nr   r   r   r   r   r,   ~   s   r,   N) r   Zpip._vendor.urllib3.exceptionsr   BaseHTTPErrorIOErrorr   r   r   r   r   r   r   r   r   r   
ValueErrorr    r!   r"   r#   r$   r%   r&   	TypeErrorr'   r(   r)   Warningr*   DeprecationWarningr+   r,   r   r   r   r   <module>   s2   	