summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-02-12 07:35:29 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-02-12 07:35:29 (GMT)
commit365a1864fd285fc6ee9d9fa1f8770b39d4dab830 (patch)
tree0fb2cf9664348d80caa3e3ace86b84aa2a3f9080 /Misc
parent3072921d0e668e890da1312e0f47f3e7e4854329 (diff)
downloadcpython-365a1864fd285fc6ee9d9fa1f8770b39d4dab830.zip
cpython-365a1864fd285fc6ee9d9fa1f8770b39d4dab830.tar.gz
cpython-365a1864fd285fc6ee9d9fa1f8770b39d4dab830.tar.bz2
Fixes Issue #3745: Fix hashlib to always reject unicode and non
buffer-api supporting objects as input no matter how it was compiled (built in implementations or external openssl library).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7f99d45..c31c1a7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -491,6 +491,10 @@ C-API
Extension Modules
-----------------
+- Issue #3745: Fix hashlib to always reject unicode and non buffer-api
+ supporting objects as input no matter how it was compiled (built in
+ implementations or external openssl library).
+
- Issue #4397: Fix occasional test_socket failure on OS X.
- Issue #4279: Fix build of parsermodule under Cygwin.