diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-10-01 01:17:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-10-01 01:17:15 (GMT) |
commit | 95bc0e4703f6997b808240b3b24635bb2bebd781 (patch) | |
tree | eaa511cccd307ef891ab31f0cc860aa10569e086 /Misc | |
parent | ece9d5a91fbc4ada2d4e17e9c52d4a1658552dca (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |