£Á°è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>

Rec           @   s  d  Z  d d l m Z d d l m Z d d l Z d d l m Z d   Z d   Z y e e j	 e j	  Wn9 e
 e f k
 r e j d	 j e j	 e j	  e  n Xy d d
 l m Z e s e d   n  y d d l Z Wn e k
 r d Z n Xe e d e  sBd d l m Z e j   d d l m	 Z e e  n  Wn e k
 rVn Xd d l m Z e j d e  d d l	 m Z m Z m Z m	 Z	 d d l	 m  Z  m! Z! m" Z" m# Z# d d l	 m$ Z$ m% Z% d d l& m' Z' d d l& m( Z( d d l) m* Z* m+ Z+ m, Z, d d l- m. Z. m/ Z/ m0 Z0 m1 Z1 m2 Z2 m3 Z3 m4 Z4 m5 Z5 d d l6 m7 Z7 m8 Z8 d d l9 m: Z: d d l m; Z; m< Z< m= Z= m> Z> m? Z? m@ Z@ mA ZA mB ZB mC ZC d d lD ZD d d lD mE ZE eD jF eG  jH eE    e j d eA d eI d S(   s  
Requests HTTP Library
~~~~~~~~~~~~~~~~~~~~~

Requests is an HTTP library, written in Python, for human beings.
Basic GET usage:

   >>> import requests
   >>> r = requests.get('https://www.python.org')
   >>> r.status_code
   200
   >>> b'Python is a programming language' in r.content
   True

... or POST:

   >>> payload = dict(key1='value1', key2='value2')
   >>> r = requests.post('https://httpbin.org/post', data=payload)
   >>> print(r.text)
   {
     ...
     "form": {
       "key1": "value1",
       "key2": "value2"
     },
     ...
   }

The other HTTP methods are supported - see `requests.api`. Full documentation
is at <https://requests.readthedocs.io>.

:copyright: (c) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
i(   t   urllib3(   t   chardetNi   (   t   RequestsDependencyWarningc         C   s-  |  j  d  }  |  d g k s$ t  t |   d k rF |  j d  n  |  \ } } } t |  t |  t |  } } } | d k s t  | d k s t  | d k s t  | j  d  d  \ } } } t |  t |  t |  } } } | d k st  | d k  st  | d k s)t  d  S(	   Nt   .t   devi   t   0i   i   i   i   (   t   splitt   AssertionErrort   lent   appendt   int(   t   urllib3_versiont   chardet_versiont   majort   minort   patch(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyt   check_compatibility1   s    &&c         C   sr   y" t  t t |  j d    }  Wn t k
 r6 d  SX|  d d d g k  rn d j |   } t j | t  n  d  S(   NR   i   i   i   s4   Old version of cryptography ({}) may cause slowdown.(	   t   listt   mapR
   R   t
   ValueErrort   formatt   warningst   warnR   (   t   cryptography_versiont   warning(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyt   _check_cryptographyJ   s    "s?   urllib3 ({}) or chardet ({}) doesn't match a supported version!(   t   WINDOWSs3   pip internals: don't import cryptography on Windowst   HAS_SNI(   t	   pyopenssl(   t   __version__(   t   DependencyWarningt   ignore(   t	   __title__t   __description__t   __url__R   (   t	   __build__t
   __author__t   __author_email__t   __license__(   t   __copyright__t   __cake__(   t   utils(   t   packages(   t   Requestt   Responset   PreparedRequest(   t   requestt   gett   headt   postR   t   putt   deletet   options(   t   sessiont   Session(   t   codes(	   t   RequestExceptiont   Timeoutt   URLRequiredt   TooManyRedirectst	   HTTPErrort   ConnectionErrort   FileModeWarningt   ConnectTimeoutt   ReadTimeout(   t   NullHandlert   defaultR	   (J   t   __doc__t   pip._vendorR    R   R   t
   exceptionsR   R   R   R   R   R   R   R   t   pip._internal.utils.compatR   t   ImportErrort   sslt   Nonet   getattrt   Falset   pip._vendor.urllib3.contribR   t   inject_into_urllib3t   cryptographyR   t   pip._vendor.urllib3.exceptionsR   t   simplefilterR    R!   R"   R#   R$   R%   R&   R'   R(   t    R)   R*   t   modelsR+   R,   R-   t   apiR.   R/   R0   R1   R   R2   R3   R4   t   sessionsR5   R6   t   status_codesR7   R8   R9   R:   R;   R<   R=   R>   R?   R@   t   loggingRA   t	   getLoggert   __name__t
   addHandlert   True(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyt   <module>)   sV   		

"":@