summaryrefslogtreecommitdiffstats
path: root/Lib/ssl.py
diff options
context:
space:
mode:
authorRami <72725910+ramikg@users.noreply.github.com>2024-01-06 23:25:58 (GMT)
committerGitHub <noreply@github.com>2024-01-06 23:25:58 (GMT)
commit84d1f76092c24c4d6614797cc10eb8a231397646 (patch)
tree23b774a14c70c212a057da70fda89a0be5bb7831 /Lib/ssl.py
parenta15a7735e69862fdfc0ed21bc1ade3a32833a01d (diff)
downloadcpython-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ssl.py b/Lib/ssl.py
index d014849..74a9d2d 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -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