Files
old-saburly-wagtail-web/env/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc

207 lines
22 KiB
Plaintext
Raw Normal View History

2024-08-27 20:33:44 +02:00
o
<00><><EFBFBD><00> @s<>ddlmZddlZddlZddlZddlZddlZddlZddlZddl Z ddl
m Z ddl
m Z ddl
mZddlmZejrSddlmZdd lmZdd
lmZdd lmZdd lmZdd lmZmZmZddl m!Z!ddl"m#Z#z ddl$Z$e$j%Z&Wne'e(fy<>dZ$Gdd<11>de)<29>Z&Ynwddl*m+Z+ddl*m,Z,ddl*m-Z-ddl.m/Z/ddl0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6ddl7m8Z8m9Z9m:Z:m;Z;ddl<m=Z=ddlm>Z?ddlm@Z@mAZAmBZBmCZCmDZDddlEmFZFmGZGddlHmIZIeJZJeKZKe<03>LeM<65>ZNddd<1F>ZOe<02>Pd d!d<07>ZQe<05>Rd"<22>ZSeTed#<23>ZUGd$d%<25>d%e <0C>Z Gd&d'<27>d'e <0B>ZVGd(d)<29>d)ejW<6A>ZXd*d+<2B>d^dEdF<64>ZY *d_d`dMdN<64>ZZdadSdT<64>Z[dbdUdV<64>Z\GdWdX<64>dX<64>Z]e$<24>sMe]ZVeVZ^ dcddd\d]<5D>Z_dS)e<>)<01> annotationsN)<01>HTTPConnection)<01> HTTPException)<01>ResponseNotReady<64><01>timeout<75><00><01> HTTPResponse)<01>_TYPE_PEER_CERT_RET_DICT)<01> SSLTransport)<01>HTTPHeaderDict)<01>assert_header_parsing)<03>_DEFAULT_TIMEOUT<55> _TYPE_TIMEOUT<55>Timeout)<01>to_str)<01> wait_for_readc@s eZdZdS)<02> BaseSSLErrorN)<03>__name__<5F>
__module__<EFBFBD> __qualname__<5F>rr<00>T/home/amir/Desktop/saburlyweb/env/lib/python3.10/site-packages/urllib3/connection.pyr"sr)<01>
_TYPE_BODY)<01> ProxyConfig)<01>_ResponseOptions<6E><01> __version__)<06>ConnectTimeoutError<6F>HeaderParsingError<6F>NameResolutionError<6F>NewConnectionError<6F>
ProxyError<EFBFBD>SystemTimeWarning)<04> SKIP_HEADER<45>SKIPPABLE_HEADERS<52>
connection<EFBFBD>ssl_)<01>body_to_chunks)<01>assert_fingerprint)<05>create_urllib3_context<78> is_ipaddress<73>resolve_cert_reqs<71>resolve_ssl_version<6F>ssl_wrap_socket)<02>CertificateError<6F>match_hostname)<01>Url<72>Pi<><00><02>http<74>httpsi<73><00>z[^-!#$%&'*+.^_`|~0-9a-zA-Z]<5D>auditcs<>eZdZUdZedZded<ejej dfgZ
ded<dZ d ed
<d Z d ed <ded<ded<ded<d ed<ded<ded<ded<ded< d]e d de
d d d<1D>d^<5E>fd*d+<2B>Zed_d,d-<2D><04>Zejd`d/d-<2D><04>Zdad1d2<64>Z dbdc<64>fd6d7<64> Zddd8d9<64>Zeded:d;<3B><04>Zeded<d=<3D><04>Zeded>d?<3F><04>Zeded@dA<64><04>Zdd<64>fdBdC<64> Z  dfdg<64>fdHdI<64> Zdh<64>fdLdM<64> Z diddNdNdNdO<64>djdVdW<64>Z didkdXdY<64>Zdl<64>fd[d\<5C> Z<1E>ZS)mra<>
Based on :class:`http.client.HTTPConnection` but provides an extra constructor
backwards-compatibility layer between older and newer Pythons.
Additional keyword parameters are used to configure attributes of the connection.
Accepted parameters include:
- ``source_address``: Set the source address for the current connection.
- ``socket_options``: Set specific options on the underlying socket. If not specified, then
defaults are loaded from ``HTTPConnection.default_socket_options`` which includes disabling
Nagle's algorithm (sets TCP_NODELAY to 1) unless the connection is behind a proxy.
For example, if you wish to enable TCP Keep Alive in addition to the defaults,
you might pass:
.. code-block:: python
HTTPConnection.default_socket_options + [
(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1),
]
Or you may want to disable the defaults by passing an empty list (e.g., ``[]``).
r5ztyping.ClassVar[int]<5D> default_portrz0typing.ClassVar[connection._TYPE_SOCKET_OPTIONS]<5D>default_socket_optionsF<73>bool<6F> is_verifiedNz bool | None<6E>proxy_is_verified<65>int<6E> blocksize<7A>tuple[str, int] | None<6E>source_addressz&connection._TYPE_SOCKET_OPTIONS | None<6E>socket_options<6E>_has_connected_to_proxyz_ResponseOptions | None<6E>_response_options<6E>
str | None<6E> _tunnel_host<73>
int | None<6E> _tunnel_port<72>_tunnel_scheme<6D>@)rrAr?rB<00>proxy<78> proxy_config<69>host<73>str<74>portrr<00>&None | connection._TYPE_SOCKET_OPTIONSrK<00>
Url | NonerL<00>ProxyConfig | None<6E>return<72>Nonec sPt<00>j||t<02>|<03>||d<01>||_||_||_d|_d|_d|_ d|_
d|_ dS)N)rMrOrrAr?F) <0C>super<65>__init__r<00>resolve_default_timeoutrBrKrLrCrDrFrHrI) <09>selfrMrOrrAr?rBrKrL<00><01> __class__rrrV<00>s <06>
zHTTPConnection.__init__cCs |j<00>d<01>S)a<>
Getter method to remove any trailing dots that indicate the hostname is an FQDN.
In general, SSL certificates don't include the trailing dot indicating a
fully-qualified domain name, and thus, they don't validate properly when
checked against a domain name that includes the dot. In addition, some
servers may not expect to receive the trailing dot when provided.
However, the hostname with trailing dot is critical to DNS resolution; doing a
lookup with the trailing dot will properly only resolve the appropriate FQDN,
whereas a lookup without a trailing dot will search the system's search domain
list. Thus, it's important to keep the original host around for use only in
those cases where it's appropriate (i.e., when doing DNS lookup to establish the
actual TCP connection across which we're going to send HTTP requests).
<20>.)<02> _dns_host<73>rstrip<69>rXrrrrM<00>s zHTTPConnection.host<73>valuecCs
||_dS)z<>
Setter for the `host` property.
We assume that only urllib3 uses the _dns_host attribute; httplib itself
only uses `host`, and it seems reasonable that other libraries follow suit.
N)r\)rXr_rrrrM<00>s
<08> socket.socketc
Cs<>ztj|j|jf|j|j|jd<01>}WnCtjy'}zt |j
||<02>|<02>d}~wt yA}zt |d|j
<EFBFBD>d|j<04>d<05><05>|<02>d}~wt yU}z t|d|<02><00><02>|<02>d}~wwtrbt<10>d||j
|j<03>|S)zoEstablish a socket connection and set nodelay settings on it.
:return: New socket connection.
)rArBNzConnection to z timed out. (connect timeout=<3D>)z&Failed to establish a new connection: zhttp.client.connect)r'<00>create_connectionr\rOrrArB<00>socket<65>gaierrorr!rM<00> SocketTimeoutr<00>OSErrorr"<00>_HAS_SYS_AUDIT<49>sysr8)rX<00>sock<63>errr<00> _new_conn<6E>s:

<EFBFBD><08><02><02><08>
<02><02><08><02>zHTTPConnection._new_conn<6E>headers<72>typing.Mapping[str, str] | None<6E>schemecs4|dvr td|<04>d<03><03><01>t<01>j|||d<04>||_dS)Nr4z$Invalid proxy scheme for tunneling: z", must be either 'http' or 'https')rOrl)<04>
ValueErrorrU<00>
set_tunnelrI)rXrMrOrlrnrYrrrp<00>s 
<04>
zHTTPConnection.set_tunnelcCs>|<00><00>|_|jrd|_|<00><04>t|j<06>|_|jrd|_dSdS)NTF)rkrirFrC<00>_tunnelr;rKr=r^rrr<00>connect<63>s
 
<04>zHTTPConnection.connectcCs
|jduS<00>N)rir^rrr<00> is_closed<65>s
zHTTPConnection.is_closedcCs|jdurdSt|jdd<03> S)NFgr)rirr^rrr<00> is_connecteds
zHTTPConnection.is_connectedcCs|jSrs)rCr^rrr<00>has_connected_to_proxysz%HTTPConnection.has_connected_to_proxycCst|j<01>o |jduS)zT
Return True if a forwarding proxy is configured, else return False
N)r;rKrFr^rrr<00>proxy_is_forwarding
sz"HTTPConnection.proxy_is_forwardingcstz t<00><00><01>Wd|_d|_d|_d|_d|_d|_d|_d|_ dSd|_d|_d|_d|_d|_d|_d|_d|_ w)NF)
rU<00>closerir<r=rCrDrFrHrIr^rYrrrxs$ 
<06>zHTTPConnection.close<73>method<6F>url<72> skip_host<73>skip_accept_encodingcs<t<00>|<01>}|rtd|<01>d|<05><03><00>d<03><05><01>t<04>j||||d<04>S)<05>z+Method cannot contain non-token characters z (found at least ra)r{r|)<06>_CONTAINS_CONTROL_CHAR_RE<52>searchro<00>grouprU<00>
putrequest)rXryrzr{r|<00>matchrYrrr<> s
<04><06>zHTTPConnection.putrequest<73>header<65>valuescsftdd<02>|D<00><01>st<01>j|g|<02>R<00>dSt|<01><04><00>tvr1d<03>dd<05>tt<05>D<00><01>}td|<03>d<07><03><01>dS) r}css"<00>|] }t|t<01>o |tkVqdSrs)<03>
isinstancerNr%)<02>.0<EFBFBD>vrrr<00> <genexpr>6s<02> z+HTTPConnection.putheader.<locals>.<genexpr>z', 'cSsg|]}t<00>|<01><01>qSr)rN<00>title)r<>r<>rrr<00>
<listcomp>:sz,HTTPConnection.putheader.<locals>.<listcomp>z(urllib3.util.SKIP_HEADER only supports '<27>'N) <09>anyrU<00> putheaderr<00>lowerr&<00>join<69>sortedro)rXr<>r<><00>skippable_headersrYrrr<>4s<04>
<04><04>zHTTPConnection.putheaderT)<04>chunked<65>preload_content<6E>decode_content<6E>enforce_content_length<74>body<64>_TYPE_BODY | Noner<65>r<>r<>r<>cCs<>|jdur |j<00>|j<02>t|||||d<01>|_|duri}tdd<03>|D<00><01>} d| v}
d| v} |j|||
| d<06>t|||jd<07>} | j } | j
}|rQd| vrP|<00> d d
<EFBFBD>n)d | vrXd }n"d| vr_d }nd }|durr| durqd }|<00> d d
<EFBFBD>n|<00> dt |<0E><01>d| vr<>|<00> dt <0A><00>|<04><0E>D]
\}}|<00> ||<10>q<>|<00><0F>| dur<>| D]"}|s<>q<EFBFBD>t|t <0C>r<>|<11>d<11>}|r<>|<00>dt|<11>|f<00>q<>|<00>|<11>q<>|r<>|<00>d<13>dSdS)N)<05>request_method<6F> request_urlr<6C>r<>r<>css<00>|] }t|<01><01><00>VqdSrs)rr<>)r<><00>krrrr<>es<02>z)HTTPConnection.request.<locals>.<genexpr>zaccept-encodingrM)r|r{)ryr?ztransfer-encodingzTransfer-Encodingr<67>zcontent-lengthFTzContent-Lengthz
user-agentz
User-Agentzutf-8s%x
%b
s0
)ri<00>
settimeoutrrrD<00> frozensetr<74>r)r?<00>chunks<6B>content_lengthr<68>rN<00>_get_default_user_agent<6E>items<6D>
endheadersr<EFBFBD><00>encode<64>send<6E>len)rXryrzr<>rlr<>r<>r<>r<><00> header_keysr|r{<00> chunks_and_clr<6C>r<>r<>r_<00>chunkrrr<00>requestBsh

<08><06> <02> <02>

 <04>zHTTPConnection.requestcCs(tjdtdd<03>|j||||dd<05>dS)z<>
Alternative to the common request method, which sends the
body with chunked encoding and not as one block
z<>HTTPConnection.request_chunked() is deprecated and will be removed in urllib3 v2.1.0. Instead use HTTPConnection.request(..., chunked=True).<2E><00><02>category<72>
stacklevelT)r<>rlr<>N)<04>warnings<67>warn<72>DeprecationWarningr<67>)rXryrzr<>rlrrr<00>request_chunked<65>s  <06>zHTTPConnection.request_chunkedr
cs<>|jdurt<01><00>|j}d|_|j<02>|j<04>ddlm}t<07><00><08>}zt |j
<EFBFBD>Wn!t t fyH}zt jdt||j<10>|dd<06>WYd}~nd}~wwt|j
<EFBFBD><12><00>}||||j|jt|dd<08>|j|j|j||j|j|jd <09> }|S)
a
Get the response from the server.
If the HTTPConnection is in the correct state, returns an instance of HTTPResponse or of whatever object is returned by the response_class variable.
If a request has not been sent or if a previous response has not be handled, ResponseNotReady is raised. If the HTTP response indicates that the connection should be closed, then it will be closed before the response is returned. When the connection is closed, the underlying socket is closed.
Nrr z$Failed to parse headers (url=%s): %sT)<01>exc_info<66> _http_vsn_strzHTTP/?) r<>rl<00>status<75>version<6F>version_string<6E>reasonr<6E>r<><00>original_responser<65>r<>r<>)rDrrir<>r<00>responser
rU<00> getresponser<00>msgr <00> TypeError<6F>log<6F>warning<6E>_url_from_connectionr<6E>r r<>r<>r<><00>getattrr<72>r<>r<>r<>r<>)rX<00> resp_optionsr
<00>httplib_response<73>hperlr<>rYrrr<><00>sD
 

<12><08><02>
<06>zHTTPConnection.getresponsers)rMrNrOrGrrrAr@r?r>rBrPrKrQrLrRrSrT<00>rSrN)r_rNrSrT)rSr`)NNr5)
rMrNrOrGrlrmrnrNrSrT<00>rSrT)rSr;)FF)
ryrNrzrNr{r;r|r;rSrT)r<>rNr<>rNrSrT)NN)ryrNrzrNr<>r<>rlrmr<>r;r<>r;r<>r;r<>r;rSrT)
ryrNrzrNr<>r<>rlrmrSrT)rSr
) rrr<00>__doc__<5F>port_by_schemer9<00>__annotations__rc<00> IPPROTO_TCP<43> TCP_NODELAYr:r<r=rrV<00>propertyrM<00>setterrkrprrrtrurvrwrxr<>r<>r<>r<>r<><00> __classcell__rrrYrrQsv
  <0C>  <02><12>  
"<10>
    <10><02><0E>e <0C>rcs<>eZdZUdZedZdZded<dZded<dZ ded<dZ
d ed
<dZ ded <dZ d ed <dZ d ed<dZded< d7eddejddddddddddddddddd<11>d8<64>fd+d,<2C>Z         d9d:d-d.<2E>Zd;d/d0<64>Zd<d5d6<64>Z<15>ZS)=<3D>HTTPSConnectionz<6E>
Many of the parameters to this constructor are passed to the underlying SSL
socket by means of :py:func:`urllib3.util.ssl_wrap_socket`.
r6N<>int | str | None<6E> cert_reqsrE<00>ca_certs<74> ca_cert_dir<69>None | str | bytes<65> ca_cert_data<74> ssl_versionrG<00>ssl_minimum_version<6F>ssl_maximum_versionr*rJ)rrAr?rBrKrLr<><00>assert_hostnamer*<00>server_hostname<6D> ssl_contextr<74>r<>r<>r<>r<>r<><00> cert_file<6C>key_file<6C> key_passwordrMrNrOrrrAr@r?r>rBrPrKrQrLrRr<><00>"None | str | typing.Literal[False]r<>r<><00>ssl.SSLContext | Noner<65>r<>r<>rSrTc
s<>t<00>j||||||||d<01>||_||_||_| |_| |_|
|_| |_||_ ||_
||_ |o3t j <0A>|<0E>|_|o<t j <0A>|<0F>|_||_| durS|jdurO|jj} ntd<00>} | |_dS)N)rOrrAr?rBrKrL)rUrVr<>r<>r<>r<>r<>r<>r*r<>r<>r<><00>os<6F>path<74>
expanduserr<EFBFBD>r<>r<><00> verify_moder-r<>)rXrMrOrrAr?rBrKrLr<>r<>r*r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>rYrrrVs8<06> 


zHTTPSConnection.__init__c
Cs<>tjdtdd<03>|dur|jdur|jj}ntd<04>}||_||_||_||_ ||_
||_ |o3t j <0A>|<05>|_|o<t j <0A>|<08>|_| |_dS)zX
This method should only be called once, before the connection is used.
z<>HTTPSConnection.set_cert() is deprecated and will be removed in urllib3 v2.1.0. Instead provide the parameters to the HTTPSConnection constructor.r<>r<>N)r<>r<>r<>r<>r<>r-r<>r<>r<>r<>r<>r*r<>r<>r<>r<>r<>r<>)
rXr<>r<>r<>r<>r<>r<>r*r<>r<>rrr<00>set_cert<s$<06>


zHTTPSConnection.set_certcCs||<00><00>|_}|j}d}|jdur5|jdkr#|<00>|j|<01>|_}d}n|jdkr+d|_d|_|<00><08>|j}|j dur=|j }t
j <0B> <0C>t k}|rPt<0E>dt <0A>d<06>t<10>|<02>d<07>}tdid|<01>d |j<13>d
|j<14>d |j<15>d |j<16>d |j<17>d|j<18>d|j<19>d|j<1A>d|j<1B>d|j<1C>d|<05>d|j<1D>d|<03>d|j<1E>d|j<1F><01>}|j |_|j!r<>d|_"n|j"|_"t#|j$<24>|_|jr<>|jdur<>|j"|_dSdSdS)NFr6Tr5zSystem time is way off (before z5). This will probably lead to SSL verification errorsr[rir<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<><00>
tls_in_tlsr<EFBFBD>r*r)%rkrirMrFrI<00>_connect_tls_proxyr=rCrqr<><00>datetime<6D>date<74>today<61> RECENT_DATEr<45>r<>r$r]<00>#_ssl_wrap_socket_and_match_hostnamer<65>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r*rcrwr<r;rK)rXrir<>r<><00> is_time_off<66>server_hostname_rm_dot<6F>sock_and_verifiedrrrrres|




<04>
<02><02><02><02><02><02><02><02> <02>
<02> <02> <02> <02><02><02><04>  <08>zHTTPSConnection.connect<63>hostnamerir`<00> ssl.SSLSocketcCs`t<00>t|j<03>}|j}t|f|j|j|j|j |j
|j |j |||j |jddddd<03><0F>}|j|_|jS)zY
Establish a TLS connection to the proxy using the provided SSL context.
NF)r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r*r<>r<>r<>r<>)<12>typing<6E>castrrLr<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r*r<r=rc)rXr<>rirLr<>r<>rrrr<><00>s.<02><08>z"HTTPSConnection._connect_tls_proxyrs).rMrNrOrGrrrAr@r?r>rBrPrKrQrLrRr<>r<>r<>r<>r*rEr<>rEr<>r<>r<>rEr<>rEr<>r<>r<>rGr<>rGr<>r<>r<>rEr<>rEr<>rErSrT) NNNNNNNNN)r<>rEr<>rEr<>r<>r<>rEr<>rEr<>r<>r*rEr<>rEr<>r<>rSrTr<>)r<>rNrir`rSr<>)rrrr<>r<>r9r<>r<>r<>r<>r<>r<>r<>r<>r*rrr:rVr<>rrr<>r<>rrrYrr<><00>s\
        <02><12>> <0C>
)Nr<4E>c@s"eZdZUdZded<ded<dS)<07>_WrappedAndVerifiedSocketz[
Wrapped socket and whether the connection is
verified after the TLS handshake
zssl.SSLSocket | SSLTransportrcr;r<N)rrrr<>r<>rrrrr<><00>s
 r<>F)r<>rir`r<><00>None | str | intr<74>r<>rGr<>r<>rEr<>r<>r<>r<>r<>r<>r<>r<>r*r<>r<>r<>r<>r;rSc Csld}|durd}tt|<02>||t|<01>d<04>}n|}t|<01>|_| s*| s*| dus*tjs*tjs-d|_|s>| s>|
s>|r>t|d<05>r>|<11> <09>| durZ| <0A>
d<06>}d|vrT|d|<12> d<07><01>}t |<12>rZ|} t |||||| |
| ||d<08>
}zA| rut|jdd <09>| <0C>n&|jtjkr<>|js<>| dur<>|<13><0F>}|r<>d}nt|d
d<01>p<>d}t|| p<>| |<15>t||jtjkp<>t| <0C>d <0B>WSty<>|<13><18><00>w) a2Logic for constructing an SSLContext from all TLS parameters, passing
that down into ssl_wrap_socket, and then doing certificate verification
either via hostname or fingerprint. This function exists to guarantee
that both proxies and targets have the same behavior when connecting via TLS.
FNT)r<>r<>r<>r<><00>load_default_certs<74>[]<5D>%)
ri<00>keyfile<6C>certfiler<65>r<>r<>r<>r<>r<>r<>)<01> binary_form<72>hostname_checks_common_name)rcr<)r+r.r-r<>r(<00> IS_PYOPENSSL<53>HAS_NEVER_CHECK_COMMON_NAME<4D>check_hostname<6D>hasattrr<72><00>strip<69>rfindr,r/<00>_assert_fingerprint<6E> getpeercert<72>ssl<73> CERT_NONEr<45><00>_match_hostnamer<65><00> CERT_REQUIREDr;<00> BaseExceptionrx)rir<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r<>r*r<>r<>r<><00>default_ssl_context<78>context<78>
normalized<EFBFBD>ssl_sock<63>certr<74>rrrr<><00>s<><08>
<02><02><02><02><02><02><02><02><02>
<06>  <06> <02><02><04> <08> <02>r<EFBFBD>r <00>_TYPE_PEER_CERT_RET_DICT | None<6E>asserted_hostnamerNr<>rTc
CsX|<01>d<01>}t|<03>r |}z t|||<02>WdSty+}z t<04>d||<00>||_<06>d}~ww)Nr<4E>z@Certificate did not match expected hostname: %s. Certificate: %s)r<>r,r1r0r<>r<><00>
_peer_cert)r rr<><00>stripped_hostnamerjrrrrXs
<04><08><02>r<00>err<72> Exception<6F> proxy_schemer#cCs`d<01>t<01>dt|<00><01><04><00><02>}d|vpd|vpd|v}d}td|r%|dkr%|nd <09><00>|<00>}||_|S)
N<EFBFBD> z[^a-z]zwrong version numberzunknown protocolzrecord layer failurez<65>. Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#https-proxy-error-http-proxyzUnable to connect to proxyr6r})r<><00>re<72>splitrNr<>r#<00> __cause__)rr<00>error_normalized<65>is_likely_http_proxy<78>http_proxy_warning<6E>new_errrrr<00>_wrap_proxy_errorrs <02><02><02><04><04>rcCs
dt<00><00>S)Nzpython-urllib3/rrrrrr<><00>s
r<>c@seZdZdZdS)<03>DummyConnectionz-Used to detect a failed ConnectionCls import.N)rrrr<>rrrrr<00>sr<00>conn<6E> HTTPConnection | HTTPSConnectionr<6E>cCs(t|t<01>rdnd}t||j|j|d<03>jS)zUReturns the URL from a given connection. This is mainly used for testing and logging.r6r5)rnrMrOr<>)r<>r<>r2rMrOrz)rr<>rnrrrr<><00>sr<>)"rir`r<>r<>r<>r<>r<>rGr<>rGr<>rEr<>rEr<>rEr<>rEr<>rEr<>r<>r<>r<>r*rEr<>rEr<>r<>r<>r;rSr<>)F)r r rrNr<>r;rSrT)rrrrErSr#r<>rs)rrr<>rErSrN)`<60>
__future__rr<><00>loggingr<67>rrcrhr<>r<><00> http.clientr<00>_HTTPConnectionrrrre<00> TYPE_CHECKINGr<47>r
<00> util.ssl_r <00>util.ssltransportr <00> _collectionsr <00> util.responser<00> util.timeoutrrr<00> util.utilr<00> util.waitrr<00>SSLErrorr<00> ImportError<6F>AttributeErrorr<00>_base_connectionrrr<00>_versionr<00>
exceptionsrr r!r"r#r$<00>utilr%r&r'r(<00> util.requestr)r*rr+r,r-r.r/<00>util.ssl_match_hostnamer0r1<00>util.urlr2<00>ConnectionError<6F>BrokenPipeError<6F> getLoggerrr<>r<>r<>r<><00>compiler~r<>rgr<><00>
NamedTupler<EFBFBD>r<>rrr<>r<00>VerifiedHTTPSConnectionr<6E>rrrr<00><module>s<>            
<02>        



!c<0E> <0C>

<10>