[Python-checkins] cpython (3.3): Update NEWS for 3.3.5rc2.

georg.brandl python-checkins at python.org
Sun Mar 2 09:22:59 CET 2014


http://hg.python.org/cpython/rev/69305c61cd5b
changeset:   89457:69305c61cd5b
branch:      3.3
user:        Georg Brandl <georg at python.org>
date:        Sun Mar 02 09:18:41 2014 +0100
summary:
  Update NEWS for 3.3.5rc2.

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


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,10 +2,10 @@
 Python News
 +++++++++++
 
-What's New in Python 3.3.5 release candidate 1?
+What's New in Python 3.3.5 release candidate 2?
 ===============================================
 
-*Release date: 23-Feb-2014*
+*Release date: 02-Mar-2014*
 
 Core and Builtins
 -----------------
@@ -19,13 +19,6 @@
   TypeError for an unexpected output type. (The latter mechanism remains
   in place for third party non-text encodings)
 
-- Issue #20588: Make Python-ast.c C89 compliant.
-
-- Issue #20437: Fixed 21 potential bugs when deleting objects references.
-
-- Issue #20538: UTF-7 incremental decoder produced inconsistant string when
-  input was truncated in BASE64 section.
-
 Library
 -------
 
@@ -38,6 +31,42 @@
   spurious crashes or SystemErrors when importing modules or packages from a
   zip file.  The change causing the problem was reverted.
 
+- Issue #20404: io.TextIOWrapper (and hence the open() builtin) now uses the
+  internal codec marking system added for issue #19619 to throw LookupError
+  for known non-text encodings at stream construction time. The existing
+  output type checks remain in place to deal with unmarked third party
+  codecs.
+
+Tests
+-----
+
+- Issue #20743: Fix a reference leak in test_tcl.
+
+Tools/Demos
+-----------
+
+- Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
+  Patch by Arfrever Frehtes Taifersar Arahesis.
+
+
+What's New in Python 3.3.5 release candidate 1?
+===============================================
+
+*Release date: 23-Feb-2014*
+
+Core and Builtins
+-----------------
+
+- Issue #20588: Make Python-ast.c C89 compliant.
+
+- Issue #20437: Fixed 21 potential bugs when deleting objects references.
+
+- Issue #20538: UTF-7 incremental decoder produced inconsistant string when
+  input was truncated in BASE64 section.
+
+Library
+-------
+
 - Issue #20635: Fixed grid_columnconfigure() and grid_rowconfigure() methods of
   Tkinter widgets to work in wantobjects=True mode.
 
@@ -135,8 +164,6 @@
 Tests
 -----
 
-- Issue #20743: Fix a reference leak in test_tcl.
-
 - Issue #20510: Rewrote test_exit in test_sys to match existing comments,
   use modern unittest features, and use helpers from test.script_helper
   instead of using subprocess directly.  Patch by Gareth Rees.
@@ -167,12 +194,6 @@
 - Issue #20609: Restored the ability to build 64-bit Windows binaries on
   32-bit Windows, which was broken by the change in issue #19788.
 
-Tools/Demos
------------
-
-- Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
-  Patch by Arfrever Frehtes Taifersar Arahesis.
-
 
 What's New in Python 3.3.4?
 ===========================

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


More information about the Python-checkins mailing list