summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-05-28 13:24:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-05-28 13:24:45 (GMT)
commit37a79a12d1a9c337e0a8f7a12f11600c44be824f (patch)
tree5934412b8dd1754b4f959c3011284114e1bfe686 /Misc
parent12516e2c1b6dc577ea57ba45780637092afec671 (diff)
downloadcpython-37a79a12d1a9c337e0a8f7a12f11600c44be824f.zip
cpython-37a79a12d1a9c337e0a8f7a12f11600c44be824f.tar.gz
cpython-37a79a12d1a9c337e0a8f7a12f11600c44be824f.tar.bz2
Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
stream's read() returns more bytes than requested.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 41bc856..cb1a33a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
+ stream's read() returns more bytes than requested.
+
- Issue #18011: base64.b32decode() now raises a binascii.Error if there are
non-alphabet characters present in the input string to conform a docstring.
Updated the module documentation.