diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 13:24:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 13:24:45 (GMT) |
commit | 37a79a12d1a9c337e0a8f7a12f11600c44be824f (patch) | |
tree | 5934412b8dd1754b4f959c3011284114e1bfe686 /Misc | |
parent | 12516e2c1b6dc577ea57ba45780637092afec671 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |