view roundup/anypy/ssl_.py @ 7034:036267634a89

flake8 fix E228 missing whitespace around modulo operator about 1/2 of them in this commit. Also rewraped some tuples where needed to keep line legth under 80.
author John Rouillard <rouilj@ieee.org>
date Mon, 10 Oct 2022 14:35:50 -0400
parents 3e8f2104753b
children 07ce4e4110f5
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

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