]> granicus.if.org Git - python/commitdiff
News entry for Issue12529 and Issue12604
authorSenthil Kumaran <senthil@uthcode.com>
Thu, 20 Oct 2011 16:29:47 +0000 (00:29 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Thu, 20 Oct 2011 16:29:47 +0000 (00:29 +0800)
Misc/NEWS

index 9b4d833fbd517e2c0753561f673f83c8eeb80725..6e49b43ac18f0318abcbcf5acdfaf43218197763 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
 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 #13188: When called without an explicit traceback argument,
   generator.throw() now gets the traceback from the passed exception's
   ``__traceback__`` attribute.  Patch by Petri Lehtinen.
@@ -51,6 +54,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 #12448: smtplib now flushes stdout while running ``python -m smtplib``
   in order to display the prompt correctly.