[Python-checkins] cpython: Move NEWS items from 3.3.0 to that section, to ease merging from the release

georg.brandl python-checkins at python.org
Fri Sep 28 17:10:18 CEST 2012


http://hg.python.org/cpython/rev/a2499d50da12
changeset:   79218:a2499d50da12
user:        Georg Brandl <georg at python.org>
date:        Fri Sep 28 17:10:11 2012 +0200
summary:
  Move NEWS items from 3.3.0 to that section, to ease merging from the release clone later.

files:
  Misc/NEWS |  105 +++++++++++++++++++++--------------------
  1 files changed, 54 insertions(+), 51 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,11 +10,6 @@
 Core and Builtins
 -----------------
 
-- Issue #16060: Fix refcounting bug when __trunc__ returns an object
-  whose __int__ gives a non-integer.  Patch by Serhiy Storchaka.
-
-- Issue #16046: Fix loading sourceless legacy pyos.
-
 - Issue #15379: Fix passing of non-BMP characters as integers for the charmap
   decoder (already working as unicode strings).  Patch by Serhiy Storchaka.
 
@@ -85,55 +80,63 @@
 Extension Modules
 -----------------
 
+Tests
+-----
+
+- Issue #15304: Fix warning message when os.chdir() fails inside
+  test.support.temp_cwd().  Patch by Chris Jerdonek.
+
+
+- Issue #15802: Fix test logic in TestMaildir.test_create_tmp. Patch
+  by Serhiy Storchaka.
+
+- Issue #15557: Added a test suite for the webbrowser module, thanks
+  to Anton Barkovsky.
+
+Build
+-----
+
+- Issue #15819: Make sure we can build Python out-of-tree from a readonly
+  source directory.  (Somewhat related to Issue #9860.)
+
+Documentation
+-------------
+
+- Issue #16036: Improve documentation of built-in int()'s signature and
+  arguments.
+
+- Issue #15935: Clarification of argparse docs, re: add_argument() type and
+  default arguments.  Patch contributed by Chris Jerdonek.
+
+- Issue #11964: Document a change in v3.2 to the behavior of the indent
+  parameter of json encoding operations.
+
+Tools/Demos
+-----------
+
+
+What's New in Python 3.3.0?
+===========================
+
+*Release date: XX-Sep-2012*
+
+Core and Builtins
+-----------------
+
+- Issue #16046: Fix loading sourceless legacy pyos.
+
+- Issue #16060: Fix refcounting bug when __trunc__ returns an object
+  whose __int__ gives a non-integer.  Patch by Serhiy Storchaka.
+
+Library
+-------
+
+Extension Modules
+-----------------
+
 - Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()
   method doesn't require an argument again.
 
-Tests
------
-
-- Issue #15304: Fix warning message when os.chdir() fails inside
-  test.support.temp_cwd().  Patch by Chris Jerdonek.
-
-
-- Issue #15802: Fix test logic in TestMaildir.test_create_tmp. Patch
-  by Serhiy Storchaka.
-
-- Issue #15557: Added a test suite for the webbrowser module, thanks
-  to Anton Barkovsky.
-
-Build
------
-
-- Issue #15819: Make sure we can build Python out-of-tree from a readonly
-  source directory.  (Somewhat related to Issue #9860.)
-
-Documentation
--------------
-
-- Issue #16036: Improve documentation of built-in int()'s signature and
-  arguments.
-
-- Issue #15935: Clarification of argparse docs, re: add_argument() type and
-  default arguments.  Patch contributed by Chris Jerdonek.
-
-- Issue #11964: Document a change in v3.2 to the behavior of the indent
-  parameter of json encoding operations.
-
-Tools/Demos
------------
-
-
-What's New in Python 3.3.0?
-===========================
-
-*Release date: XX-Sep-2012*
-
-Core and Builtins
------------------
-
-Library
--------
-
 
 What's New in Python 3.3.0 Release Candidate 3?
 ===============================================

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


More information about the Python-checkins mailing list