diff options
author | Ammar Askar <ammar_askar@hotmail.com> | 2019-05-31 19:44:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-05-31 19:44:00 (GMT) |
commit | a6ec1ce1ac05b1258931422e96eac215b6a05459 (patch) | |
tree | 55a15df467b1e34a37f408524035495e4572c502 /Misc/NEWS.d | |
parent | aac4d0342c3e692731c189d003dbd73a8c681a34 (diff) | |
download | cpython-a6ec1ce1ac05b1258931422e96eac215b6a05459.zip cpython-a6ec1ce1ac05b1258931422e96eac215b6a05459.tar.gz cpython-a6ec1ce1ac05b1258931422e96eac215b6a05459.tar.bz2 |
bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-07-13-20-17-17.bpo-33361.dx2NVn.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-13-20-17-17.bpo-33361.dx2NVn.rst b/Misc/NEWS.d/next/Library/2018-07-13-20-17-17.bpo-33361.dx2NVn.rst new file mode 100644 index 0000000..2b71095 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-07-13-20-17-17.bpo-33361.dx2NVn.rst @@ -0,0 +1,2 @@ +Fix a bug in :class:`codecs.StreamRecoder` where seeking might leave old data in a +buffer and break subsequent read calls. Patch by Ammar Askar. |