summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-20 17:24:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-11-20 17:24:04 (GMT)
commitfa73555cfc414baff62ed41e0c8c2c85b167495a (patch)
treefd4efeef1167a060ecad62f74fc45260a5d19239 /Misc
parent6bcfadec07e1ac901f7ea3777db623731c4e6f58 (diff)
downloadcpython-fa73555cfc414baff62ed41e0c8c2c85b167495a.zip
cpython-fa73555cfc414baff62ed41e0c8c2c85b167495a.tar.gz
cpython-fa73555cfc414baff62ed41e0c8c2c85b167495a.tar.bz2
correct logic when pos is after the string #10467
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 76bf481..7094504 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #10467: Fix BytesIO.readinto() after seeking into a position after the
+ end of the file.
+
- Issue #1682942: configparser supports alternative option/value delimiters.
- Issue #5412: configparser supports mapping protocol access.