From: Nick Coghlan Date: Sun, 16 Jan 2011 13:08:48 +0000 (+0000) Subject: Add missing NEWS entry for r87948 X-Git-Tag: v3.2rc2~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eea594b446af0019ebb680503d0e4a327e682955;p=thirdparty%2FPython%2Fcpython.git Add missing NEWS entry for r87948 --- diff --git a/Misc/NEWS b/Misc/NEWS index 3a3c34b1b9b4..aa361ee25f72 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -22,6 +22,9 @@ What's New in Python 3.2 Release Candidate 1 Core and Builtins ----------------- +- Issue #10889: range indexing and slicing now works correctly on ranges with + a length that exceeds sys.maxsize + - Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a class.