summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-16 21:36:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-16 21:36:37 (GMT)
commitf9faaad80107338b2248b0486bc7069b06f19677 (patch)
tree6f2b5793e9310bcd6efd6166083b12cb2e22f0a7 /Misc
parent3800e1e961aec798d4d057e82c79740dcea5d2ef (diff)
downloadcpython-f9faaad80107338b2248b0486bc7069b06f19677.zip
cpython-f9faaad80107338b2248b0486bc7069b06f19677.tar.gz
cpython-f9faaad80107338b2248b0486bc7069b06f19677.tar.bz2
Issue #8477: ssl.RAND_egd() supports str with surrogates and bytes for the path
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c26de61..f801e3e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -363,8 +363,8 @@ C-API
Library
-------
-- Issue #8477: _ssl._test_decode_cert() supports str with surrogates and bytes
- for the filename
+- Issue #8477: ssl.RAND_egd() and ssl._test_decode_cert() support str with
+ surrogates and bytes for the filename
- Issue #8550: Add first class ``SSLContext`` objects to the ssl module.