view roundup/anypy/ssl_.py @ 8500:b03160d46e9d

bug: don't reference vendored outside of anypy modules client.py was referencing the vendored.cgi module. This is wrong. It should pull the vendored.cgi module only via anypy.cgi_.
author John Rouillard <rouilj@ieee.org>
date Sun, 21 Dec 2025 23:59:08 -0500
parents d5d7ecd31864
children
line wrap: on
line source

try:
    # Python 3+
    from ssl import SSLError
except (ImportError, AttributeError):
    # Python 2.5-2.7
    from socket import sslerror as SSLError  # noqa: F401

Roundup Issue Tracker: http://roundup-tracker.org/