]> granicus.if.org Git - python/commitdiff
Moved Misc/NEWS entries not included in 3.5.0 alpha 3 to correct section.
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Apr 2015 06:38:17 +0000 (09:38 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Apr 2015 06:38:17 +0000 (09:38 +0300)
Misc/NEWS

index 98d0d01224387f81b9f91bbed1c9ec81274c6635..8e6ad311323fbe76bac6e0f1304f17d8701f3fdc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
 - Issue #22977: Fixed formatting Windows error messages on Wine.
   Patch by Martin Panter.
 
+- Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on
+  non-integer input.
+
 Library
 -------
 
@@ -60,6 +63,17 @@ Library
   only calls fstat() once. Before fstat() was called twice, which was not
   necessary.
 
+- Issue #23704: collections.deque() objects now support __add__, __mul__, and
+  __imul__().
+
+- Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
+
+- Issue #23745: The new email header parser now handles duplicate MIME
+  parameter names without error, similar to how get_param behaves.
+
+- Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus
+  infinity (-inf) instead of rounding towards zero.
+
 Build
 -----
 
@@ -68,6 +82,12 @@ Build
 Tests
 -----
 
+- Issue #23799: Added test.support.start_threads() for running and
+  cleaning up multiple threads.
+
+- Issue #22390: test.regrtest now emits a warning if temporary files or
+  directories are left after running a test.
+
 Tools/Demos
 -----------
 
@@ -88,9 +108,6 @@ Release date: 2015-03-28
 Core and Builtins
 -----------------
 
-- Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on
-  non-integer input.
-
 - Issue #23573: Increased performance of string search operations (str.find,
   str.index, str.count, the in operator, str.split, str.partition) with
   arguments of different kinds (UCS1, UCS2, UCS4).
@@ -111,14 +128,6 @@ Core and Builtins
 Library
 -------
 
-- Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
-
-- Issue #23745: The new email header parser now handles duplicate MIME
-  parameter names without error, similar to how get_param behaves.
-
-- Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus
-  infinity (-inf) instead of rounding towards zero.
-
 - Issue #14260: The groupindex attribute of regular expression pattern object
   now is non-modifiable mapping.
 
@@ -186,7 +195,6 @@ Library
 - Issue #23704: collections.deque() objects now support methods for index(),
   insert(), and copy().  This allows deques to be registered as a
   MutableSequence and it improves their substitutablity for lists.
-  Deques now also support __add__, __mul__, and __imul__().
 
 - Issue #23715: :func:`signal.sigwaitinfo` and :func:`signal.sigtimedwait` are
   now retried when interrupted by a signal not in the *sigset* parameter, if
@@ -264,12 +272,6 @@ Build
 Tests
 -----
 
-- Issue #23799: Added test.support.start_threads() for running and
-  cleaning up multiple threads.
-
-- Issue #22390: test.regrtest now emits a warning if temporary files or
-  directories are left after running a test.
-
 - Issue #23583: Added tests for standard IO streams in IDLE.
 
 - Issue #22289: Prevent test_urllib2net failures due to ftp connection timeout.