summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-26 02:48:27 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-26 02:48:27 (GMT)
commitb5267631cb2a62088ef12b36abd0317957244c6c (patch)
treee3c9036009a40a9b94601dc443217c50759cd987 /Misc/NEWS
parent7ded1f0f694f0f99252ea19eca18b74ea5e36cb0 (diff)
parent94a64260937a59c53b2a5668b09f9f2d2b5261c6 (diff)
downloadcpython-b5267631cb2a62088ef12b36abd0317957244c6c.zip
cpython-b5267631cb2a62088ef12b36abd0317957244c6c.tar.gz
cpython-b5267631cb2a62088ef12b36abd0317957244c6c.tar.bz2
Merged upstream changes.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS13
1 files changed, 13 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 23ad604..369b1a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Alpha 4?
Core and Builtins
-----------------
+- Issue #14712 (PEP 405): Virtual environments. Implemented by Vinay Sajip.
+
- Issue #14660 (PEP 420): Namespace packages. Implemented by Eric Smith.
- Issue #14494: Fix __future__.py and its documentation to note that
@@ -44,6 +46,17 @@ Core and Builtins
Library
-------
+- Issue #12586: Added new provisional policies that implement convenient
+ unicode support for email headers. See What's New for details.
+
+- Issue #14731: Refactored email Policy framework to support full backward
+ compatibility with Python 3.2 by default yet allow for the introduction of
+ new features through new policies. Note that Policy.must_be_7bit is renamed
+ to cte_type.
+
+- Issue #14920: Fix the help(urllib.parse) failure on locale C on terminals.
+ Have ascii characters in help.
+
- Issue #14548: Make multiprocessing finalizers check pid before
running to cope with possibility of gc running just after fork.