]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move issues in Misc/NEWS fixed in 3.0.2 from the 3.0.1 to the 3.0.2 section.
authorMatthias Klose <doko@ubuntu.com>
Tue, 24 Feb 2009 11:18:39 +0000 (11:18 +0000)
committerMatthias Klose <doko@ubuntu.com>
Tue, 24 Feb 2009 11:18:39 +0000 (11:18 +0000)
Misc/NEWS

index 08334ef2bed5eed166a5b12ccc626ee2dc6d42ec..718570c476ee7ac980ddadecbee19990070c697c 100644 (file)
--- 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.