summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2014-04-26 15:02:38 (GMT)
committerTim Golden <mail@timgolden.me.uk>2014-04-26 15:02:38 (GMT)
commitd6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f (patch)
treeaa39e23adfd04949e70978f00f1fe4061d1a9434
parent3c603f3618fcf7c519e96b9a0d11e2670a47cbb4 (diff)
downloadcpython-d6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f.zip
cpython-d6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f.tar.gz
cpython-d6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f.tar.bz2
Add NEWS entry for issue21349
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 643e2cd..65d9765 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #21349: Passing a memoryview to _winreg.SetValueEx now correctly raises
+ a TypeError where it previously crashed the interpreter. Patch by Brian Kearns
+
- Fix arbitrary memory access in JSONDecoder.raw_decode with a negative second
parameter. Bug reported by Guido Vranken.