Artifact [d0b84ed606]
Artifact d0b84ed606bcd4c5a9ee9dc4d5f56df6a282472c:
- File bundle/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py — part of check-in [9e0065d508] at 2014-04-27 21:46:47 on branch py3 — Include `requests`, which is now used in ahttp in favour of urllib2 (user: mario, size: 460) [annotate] [blame] [check-ins using] [more...]
try: # Python 3.2+ from ssl import CertificateError, match_hostname except ImportError: try: # Backport of the function from a pypi module from backports.ssl_match_hostname import CertificateError, match_hostname except ImportError: # Our vendored copy from ._implementation import CertificateError, match_hostname # Not needed, but documenting what we provide. __all__ = ('CertificateError', 'match_hostname')