[Python-checkins] cpython (2.7): move notes for 2.7.4 to the right place

benjamin.peterson python-checkins at python.org
Thu Mar 8 02:18:12 CET 2012


http://hg.python.org/cpython/rev/ac776931ac81
changeset:   75488:ac776931ac81
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Mar 07 19:17:57 2012 -0600
summary:
  move notes for 2.7.4 to the right place

files:
  Misc/NEWS |  56 ++++++++++++++++++++++++++----------------
  1 files changed, 34 insertions(+), 22 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,6 +1,40 @@
 Python News
 +++++++++++
 
+What's New in Python 2.7.4
+==========================
+
+*Release date: XXXX-XX-XX*
+
+Core and Builtins
+-----------------
+
+- Issue #1469629: Allow cycles through an object's __dict__ slot to be
+  collected. (For example if ``x.__dict__ is x``).
+
+- Issue #13521: dict.setdefault() now does only one lookup for the given key,
+  making it "atomic" for many purposes.  Patch by Filip Gruszczyński.
+
+Library
+-------
+
+- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
+  return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
+  fixed.
+
+- Issue #14159: Fix the len() of weak sets to return a better approximation
+  when some objects are dead or dying.  Moreover, the implementation is now
+  O(1) rather than O(n).
+
+- Issue #2945: Make the distutils upload command aware of bdist_rpm products.
+
+- Issue #13447: Add a test file to host regression tests for bugs in the
+  scripts found in the Tools directory.
+
+- Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils
+  on Windows.
+
+
 What's New in Python 2.7.3 release candidate 1?
 ===============================================
 
@@ -9,12 +43,6 @@
 Core and Builtins
 -----------------
 
-- Issue #1469629: Allow cycles through an object's __dict__ slot to be
-  collected. (For example if ``x.__dict__ is x``).
-
-- Issue #13521: dict.setdefault() now does only one lookup for the given key,
-  making it "atomic" for many purposes.  Patch by Filip Gruszczyński.
-
 - Issue #13020: Fix a reference leak when allocating a structsequence object
   fails.  Patch by Suman Saha.
 
@@ -104,22 +132,6 @@
 Library
 -------
 
-- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
-  return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
-  fixed.
-
-- Issue #14159: Fix the len() of weak sets to return a better approximation
-  when some objects are dead or dying.  Moreover, the implementation is now
-  O(1) rather than O(n).
-
-- Issue #2945: Make the distutils upload command aware of bdist_rpm products.
-
-- Issue #13447: Add a test file to host regression tests for bugs in the
-  scripts found in the Tools directory.
-
-- Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils
-  on Windows.
-
 - Issue #8033: sqlite3: Fix 64-bit integer handling in user functions
   on 32-bit architectures. Initial patch by Philippe Devalkeneer.
 

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


More information about the Python-checkins mailing list