diff options
| author | Yuval Adam <_@yuv.al> | 2019-10-09 17:34:14 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2019-10-09 18:02:35 +0300 |
| commit | a4c49f349536943517e200485cf968398e26276b (patch) | |
| tree | 9a7b565f736ccabde00a8cb8309cc6af6b90558c /cron/urllib3/util/__init__.py | |
| parent | d762328ea6f75f50b6edae6e5c141977d22c39ee (diff) | |
Initial FTP implementation
Diffstat (limited to 'cron/urllib3/util/__init__.py')
| -rw-r--r-- | cron/urllib3/util/__init__.py | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/cron/urllib3/util/__init__.py b/cron/urllib3/util/__init__.py deleted file mode 100644 index 2f2770b..0000000 --- a/cron/urllib3/util/__init__.py +++ /dev/null @@ -1,54 +0,0 @@ -from __future__ import absolute_import -# For backwards compatibility, provide imports that used to be here. -from .connection import is_connection_dropped -from .request import make_headers -from .response import is_fp_closed -from .ssl_ import ( - SSLContext, - HAS_SNI, - IS_PYOPENSSL, - IS_SECURETRANSPORT, - assert_fingerprint, - resolve_cert_reqs, - resolve_ssl_version, - ssl_wrap_socket, -) -from .timeout import ( - current_time, - Timeout, -) - -from .retry import Retry -from .url import ( - get_host, - parse_url, - split_first, - Url, -) -from .wait import ( - wait_for_read, - wait_for_write -) - -__all__ = ( - 'HAS_SNI', - 'IS_PYOPENSSL', - 'IS_SECURETRANSPORT', - 'SSLContext', - 'Retry', - 'Timeout', - 'Url', - 'assert_fingerprint', - 'current_time', - 'is_connection_dropped', - 'is_fp_closed', - 'get_host', - 'parse_url', - 'make_headers', - 'resolve_cert_reqs', - 'resolve_ssl_version', - 'split_first', - 'ssl_wrap_socket', - 'wait_for_read', - 'wait_for_write' -) |
