Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/urllib3/util/__init__.py @ 1:56ad4e20f292 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:32:28 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:d30785e31577 | 1:56ad4e20f292 |
---|---|
1 from __future__ import absolute_import | |
2 | |
3 # For backwards compatibility, provide imports that used to be here. | |
4 from .connection import is_connection_dropped | |
5 from .request import make_headers | |
6 from .response import is_fp_closed | |
7 from .ssl_ import ( | |
8 SSLContext, | |
9 HAS_SNI, | |
10 IS_PYOPENSSL, | |
11 IS_SECURETRANSPORT, | |
12 assert_fingerprint, | |
13 resolve_cert_reqs, | |
14 resolve_ssl_version, | |
15 ssl_wrap_socket, | |
16 PROTOCOL_TLS, | |
17 ) | |
18 from .timeout import current_time, Timeout | |
19 | |
20 from .retry import Retry | |
21 from .url import get_host, parse_url, split_first, Url | |
22 from .wait import wait_for_read, wait_for_write | |
23 | |
24 __all__ = ( | |
25 "HAS_SNI", | |
26 "IS_PYOPENSSL", | |
27 "IS_SECURETRANSPORT", | |
28 "SSLContext", | |
29 "PROTOCOL_TLS", | |
30 "Retry", | |
31 "Timeout", | |
32 "Url", | |
33 "assert_fingerprint", | |
34 "current_time", | |
35 "is_connection_dropped", | |
36 "is_fp_closed", | |
37 "get_host", | |
38 "parse_url", | |
39 "make_headers", | |
40 "resolve_cert_reqs", | |
41 "resolve_ssl_version", | |
42 "split_first", | |
43 "ssl_wrap_socket", | |
44 "wait_for_read", | |
45 "wait_for_write", | |
46 ) |