summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-10-01 01:17:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-10-01 01:17:15 (GMT)
commit95bc0e4703f6997b808240b3b24635bb2bebd781 (patch)
treeeaa511cccd307ef891ab31f0cc860aa10569e086 /Misc
parentece9d5a91fbc4ada2d4e17e9c52d4a1658552dca (diff)
downloadcpython-95bc0e4703f6997b808240b3b24635bb2bebd781.zip
cpython-95bc0e4703f6997b808240b3b24635bb2bebd781.tar.gz
cpython-95bc0e4703f6997b808240b3b24635bb2bebd781.tar.bz2
use Py_ssize_t for file offset and length computations in iteration (closes #22526)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 888abf5..07e8855 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 2.7.9?
Core and Builtins
-----------------
+- Issue #22526: Fix iterating through files with lines longer than 2^31 bytes.
+
- Issue #22519: Fix overflow checking in PyString_Repr.
- Issue #22518: Fix integer overflow issues in latin-1 encoding.