Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7651:d3d685dab459
build: add vendored package to setup.py.
It wasn't being installed.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 06 Oct 2023 13:37:17 -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
