summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-07-11 19:28:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-07-11 19:28:18 (GMT)
commitf9e6672ae8044f9dbcbafe98a6b63ab30189770e (patch)
tree6242914317002844fbb1b7645fa5f458d67e33ad /Misc/NEWS
parent4fcf1b2bb74b1e1ea736951b710a6a69cbcd2963 (diff)
parent3641a74e1c03ce153042d2c21639e5b6b9604f3b (diff)
downloadcpython-f9e6672ae8044f9dbcbafe98a6b63ab30189770e.zip
cpython-f9e6672ae8044f9dbcbafe98a6b63ab30189770e.tar.gz
cpython-f9e6672ae8044f9dbcbafe98a6b63ab30189770e.tar.bz2
Issue #17872: Fix a segfault in marshal.load() when input stream returns
more bytes than requested.
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 ea5a287..4cfe4f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #17872: Fix a segfault in marshal.load() when input stream returns
+ more bytes than requested.
+
- Issue #18338: `python --version` now prints version string to stdout, and
not to stderr. Patch by Berker Peksag and Michael Dickens.