diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-07-11 19:28:18 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-07-11 19:28:18 (GMT) |
commit | f9e6672ae8044f9dbcbafe98a6b63ab30189770e (patch) | |
tree | 6242914317002844fbb1b7645fa5f458d67e33ad /Misc | |
parent | 4fcf1b2bb74b1e1ea736951b710a6a69cbcd2963 (diff) | |
parent | 3641a74e1c03ce153042d2c21639e5b6b9604f3b (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |