Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7846:8ef97f7cfb6d
test: add tests for support.py: PrioList, Progress, TruthDict
Also removed an obsolete comment for Progress.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 30 Mar 2024 23:25:43 -0400 |
| 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
