Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7702:70a6ee453ddc
fix: fix failing test when crypt is missing.
In 3.13 crypt is gone and there is no replacement as it's supplied by
a .so as _crypt.
Don't hardcode the crypt method in the array, add it (next to last)
only if crypt was detected.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 20 Nov 2023 17:12:46 -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
