Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7789:37a98ec62e2e
chore: remove extra whitespace
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 06 Mar 2024 13:13:31 -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
