From ad1955671606601f621d9732b62bc366b0e53d1e Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Wed, 24 Jun 2009 19:01:32 +0000 Subject: [PATCH] Misc/NEWS entry for r73547 --- Misc/NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 6d3686ba3a0..0f6f9018d32 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ What's New in Python 3.1? Core and Builtins ----------------- +- Issue #6334: Fix bug in range length calculation for ranges with + large arguments. + - Issue #6329: Fixed iteration for memoryview objects (it was being blocked because it wasn't recognized as a sequence).