summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-10-20 16:31:40 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-10-20 16:31:40 (GMT)
commit00e36e59eaa088f7f4a53a2e7a1970052a880bdb (patch)
tree210910740c8b13db7e88b987a8dadcd71a677e4b
parentcd9fdfd652cdaca959b1c5d4cddf60d90a331b47 (diff)
parentfdd4575d19eb9efd490914675c31ceda36c45084 (diff)
downloadcpython-00e36e59eaa088f7f4a53a2e7a1970052a880bdb.zip
cpython-00e36e59eaa088f7f4a53a2e7a1970052a880bdb.tar.gz
cpython-00e36e59eaa088f7f4a53a2e7a1970052a880bdb.tar.bz2
News entry for Issue12529 and Issue12604
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3fe419b..71be0af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12604: VTRACE macro expanded to no-op in _sre.c to avoid compiler
+ warnings. Patch by Josh Triplett and Petri Lehtinen.
+
- Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore
error handlers on all Windows versions. The MBCS codec is now supporting all
error handlers, instead of only replace to encode and ignore to decode.
@@ -319,6 +322,9 @@ Core and Builtins
Library
-------
+- Issue #12529: fix cgi.parse_header issue on strings with double-quotes and
+ semicolons together. Patch by Ben Darnell and Petri Lehtinen.
+
- Issue #13227: functools.lru_cache() now has a option to distinguish
calls with different argument types.