summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-07-03 16:03:46 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-07-03 16:03:46 (GMT)
commitd8b129f279ba3a25c633f600d457f408ab27114e (patch)
treef14cd378b117120e8edc9400de81f16a2571e597 /Misc/NEWS
parenta6237d822a977efc076399d00c6cf682d68b52e2 (diff)
parentad4690fcca5704277abece184d49b39a913029d4 (diff)
downloadcpython-d8b129f279ba3a25c633f600d457f408ab27114e.zip
cpython-d8b129f279ba3a25c633f600d457f408ab27114e.tar.gz
cpython-d8b129f279ba3a25c633f600d457f408ab27114e.tar.bz2
Closes #21151: Merge with 3.4
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7c7b9b..41cfa5f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -103,6 +103,9 @@ Core and Builtins
Library
-------
+- Issue #21151: Fixed a segfault in the winreg module when ``None`` is passed
+ as a ``REG_BINARY`` value to SetValueEx. Patch by John Ehresman.
+
- Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,
it ignored I/O errors if at least the first C call read() succeed.