Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7497:dcf37ca1a47d
Reduce line height for headers; change link decorations
thicken underlines and place below test so it doesn't intersect decenders.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 17 Jun 2023 22:11:19 -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
