Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7760:481235e743bc
chore: ruff rules cleanup
replace if/else with ternary
use context for file open
use list comprehension rather than for loop w/ .append
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 02 Mar 2024 01:11:20 -0500 |
| 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
