summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:00:05 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:00:05 (GMT)
commitdbbf4c813ff3f39dcc145d5263c78eaec728fb01 (patch)
tree40df88bd34db00cabfb9aa6e6a9eaf725ce143f2 /Misc
parente1b4cbc422efc2cc6c5bbbf26645dbb5c001cb49 (diff)
downloadcpython-dbbf4c813ff3f39dcc145d5263c78eaec728fb01.zip
cpython-dbbf4c813ff3f39dcc145d5263c78eaec728fb01.tar.gz
cpython-dbbf4c813ff3f39dcc145d5263c78eaec728fb01.tar.bz2
Misc/NEWS: Add 3.3.3 section and move entries made after the 3.3.2 release
to the new section.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS31
1 files changed, 23 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7e749e..e88f8c4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,29 @@
Python News
+++++++++++
+What's New in Python 3.3.3?
+===========================
+
+*Release date: TBD*
+
+Core and Builtins
+-----------------
+
+- Issue #17927: Frame objects kept arguments alive if they had been copied into
+ a cell, even if the cell was cleared.
+
+Library
+-------
+
+- Issue #17968: Fix memory leak in os.listxattr().
+
+Documentation
+-------------
+
+- Issue #17977: The documentation for the cadefault argument's default value
+ in urllib.request.urlopen() is fixed to match the code.
+
+
What's New in Python 3.3.2?
===========================
@@ -12,9 +35,6 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
-- Issue #17927: Frame objects kept arguments alive if they had been copied into
- a cell, even if the cell was cleared.
-
- Issue #17237: Fix crash in the ASCII decoder on m68k.
- Issue #17408: Avoid using an obsolete instance of the copyreg module when
@@ -52,8 +72,6 @@ Core and Builtins
Library
-------
-- Issue #17968: Fix memory leak in os.listxattr().
-
- Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
characters() and ignorableWhitespace() methods. Original patch by Sebastian
Ortiz Vasquez.
@@ -241,9 +259,6 @@ Tests
Documentation
-------------
-- Issue #17977: The documentation for the cadefault argument's default value
- in urllib.request.urlopen() is fixed to match the code.
-
- Issue #15940: Specify effect of locale on time functions.
- Issue #6696: add documentation for the Profile objects, and improve