diff options
author | Rami <72725910+ramikg@users.noreply.github.com> | 2024-01-06 23:25:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 23:25:58 (GMT) |
commit | 84d1f76092c24c4d6614797cc10eb8a231397646 (patch) | |
tree | 23b774a14c70c212a057da70fda89a0be5bb7831 /Lib/ssl.py | |
parent | a15a7735e69862fdfc0ed21bc1ade3a32833a01d (diff) | |
download | cpython-84d1f76092c24c4d6614797cc10eb8a231397646.zip cpython-84d1f76092c24c4d6614797cc10eb8a231397646.tar.gz cpython-84d1f76092c24c4d6614797cc10eb8a231397646.tar.bz2 |
gh-89532: Remove LibreSSL workarounds (#28728)
Remove LibreSSL specific workaround ifdefs from `_ssl.c` and delete the non-version-specific `_ssl_data.h` file (relevant for OpenSSL < 1.1.1, which we no longer support per PEP 644).
Co-authored-by: Christian Heimes <christian@python.org>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r-- | Lib/ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ from _ssl import RAND_status, RAND_add, RAND_bytes try: from _ssl import RAND_egd except ImportError: - # LibreSSL does not provide RAND_egd + # RAND_egd is not supported on some platforms pass |