File tree Expand file tree Collapse file tree 4 files changed +2
-144
lines changed
Expand file tree Collapse file tree 4 files changed +2
-144
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22
3- from __future__ import absolute_import
4- from __future__ import division
5- from __future__ import print_function
6- from __future__ import unicode_literals
7-
8- from builtins import str
9-
10- from future import standard_library
11- standard_library .install_aliases ()
12-
133import dns .exception
144import dns .resolver
155import logging
2010
2111from tld import get_fld
2212
23- # Enable verified HTTPS requests on older Pythons
24- # http://urllib3.readthedocs.org/en/latest/security.html
25- if sys .version_info [0 ] == 2 :
26- try :
27- requests .packages .urllib3 .contrib .pyopenssl .inject_into_urllib3 ()
28- except AttributeError :
29- # see https://github.com/certbot/certbot/issues/1883
30- import urllib3 .contrib .pyopenssl
31- urllib3 .contrib .pyopenssl .inject_into_urllib3 ()
32-
3313logger = logging .getLogger (__name__ )
3414logger .addHandler (logging .StreamHandler (sys .stdout ))
3515
Original file line number Diff line number Diff line change 11dnspython == 2.6.1
2- future == 1.0.0
3- requests == 2.31.0
2+ requests == 2.32.2
43six == 1.16.0
54testresources == 2.0.1
65tld == 0.13
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11flake8
22mock>=5.1.0
3- requests-mock>=1.11.0
3+ requests-mock>=1.12.1
44testtools>=2.7.1
You can’t perform that action at this time.
0 commit comments