[Python-checkins] r69933 - python/branches/release30-maint/Misc/NEWS

matthias.klose python-checkins at python.org
Tue Feb 24 12:18:40 CET 2009


Author: matthias.klose
Date: Tue Feb 24 12:18:39 2009
New Revision: 69933

Log:
Move issues in Misc/NEWS fixed in 3.0.2 from the 3.0.1 to the 3.0.2 section.


Modified:
   python/branches/release30-maint/Misc/NEWS

Modified: python/branches/release30-maint/Misc/NEWS
==============================================================================
--- python/branches/release30-maint/Misc/NEWS	(original)
+++ python/branches/release30-maint/Misc/NEWS	Tue Feb 24 12:18:39 2009
@@ -12,7 +12,6 @@
 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 @@
 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 @@
 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.


More information about the Python-checkins mailing list