summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-28 12:28:25 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-11-28 12:28:25 (GMT)
commitbeeb512fe1d8c502d854d7e27742a7481bccd5c4 (patch)
tree8e89fe1a29f57d4ea5f0e095110f257d77680a00 /Misc/NEWS
parent07ff92a0d2c98f55bd863cdc5d6f62975f4994e5 (diff)
downloadcpython-beeb512fe1d8c502d854d7e27742a7481bccd5c4.zip
cpython-beeb512fe1d8c502d854d7e27742a7481bccd5c4.tar.gz
cpython-beeb512fe1d8c502d854d7e27742a7481bccd5c4.tar.bz2
Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
availability of the function is checked during the compilation. Patch written by Bernard Spil.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b3d92b2..1cf01c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,10 @@ Core and Builtins
Library
-------
+- Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
+ availability of the function is checked during the compilation. Patch written
+ by Bernard Spil.
+
- Issue #22915: SAX parser now supports files opened with file descriptor or
bytes path.