[Python-checkins] cpython (2.7): Moved Misc/NEWS entries to correct section and fix formatting.

serhiy.storchaka python-checkins at python.org
Tue May 26 09:28:01 CEST 2015


https://hg.python.org/cpython/rev/e7a0ad6e4054
changeset:   96295:e7a0ad6e4054
branch:      2.7
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue May 26 10:20:11 2015 +0300
summary:
  Moved Misc/NEWS entries to correct section and fix formatting.

files:
  Misc/NEWS |  38 +++++++++++++++++++-------------------
  1 files changed, 19 insertions(+), 19 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,7 +48,7 @@
 
 - Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for
   decoding unicode literals.
-  
+
 Documentation
 -------------
 
@@ -74,30 +74,30 @@
 Core and Builtins
 -----------------
 
+- Issue #23971:  Fix underestimated presizing in dict.fromkeys().
+
+- Issue #23757:  PySequence_Tuple() incorrectly called the concrete list API
+  when the data was a list subclass.
+
+- Issue #23629: Fix the default __sizeof__ implementation for variable-sized
+  objects.
+
+- Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV.  Analysis
+  and fix by Guido Vranken.
+
+- Issue #23048: Fix jumping out of an infinite while loop in the pdb.
+
+Library
+-------
+
+- The keywords attribute of functools.partial is now always a dictionary.
+
 - Issue #20274: When calling a _sqlite.Connection, it now complains if passed
   any keyword arguments.  Previously it silently ignored them.
 
-- Issue #23971:  Fix underestimated presizing in dict.fromkeys().
-
-- Issue #23757:  PySequence_Tuple() incorrectly called the concrete list API
-  when the data was a list subclass.
-
 - Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
   METH_VARARGS methods on _sqlite.Connection.
 
-- Issue #23629: Fix the default __sizeof__ implementation for variable-sized
-  objects.
-
-- Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV.  Analysis
-  and fix by Guido Vranken.
-
-- Issue #23048: Fix jumping out of an infinite while loop in the pdb.
-
-Library
--------
-
-- The keywords attribute of functools.partial is now always a dictionary.
-
 - Issue #24134: assertRaises() and assertRaisesRegexp() checks are not longer
   successful if the callable is None.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list