Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

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')