Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7321:e21c7fe0b57a
Move text into notes; add references to historic upgrade directions
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 11 May 2023 13:38:13 -0400 |
| parents | 07ce4e4110f5 |
| children | d5d7ecd31864 |
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
