From ccd9aec976d05810ad052b63f5f2f70c237ff6c9 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Tue, 24 Feb 2009 11:18:39 +0000 Subject: [PATCH] Move issues in Misc/NEWS fixed in 3.0.2 from the 3.0.1 to the 3.0.2 section. --- Misc/NEWS | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 08334ef2bed5..718570c476ee 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,7 +12,6 @@ What's New in Python 3.0.2? Core and Builtins ----------------- -======= - Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, int, and float arguments. @@ -22,6 +21,14 @@ Core and Builtins Library ------- +- Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, + The file was resized to wrong size. + +- Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. + +- Issue #4524: distutils build_script command failed with --with-suffix=3. + Initial patch by Amaury Forgeot d'Arc. + Build ----- @@ -140,14 +147,6 @@ Core and Builtins Library ------- -- Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, - The file was resized to wrong size. - -- Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. - -- Issue #4524: distutils build_script command failed with --with-suffix=3. - Initial patch by Amaury Forgeot d'Arc. - - Issue #4998: The memory saving effect of __slots__ had been lost on Fractions which inherited from numbers.py which did not have __slots__ defined. The numbers hierarchy now has its own __slots__ declarations. -- 2.47.3