diff options
author | Raymond Hettinger <python@rcn.com> | 2011-10-20 16:43:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-10-20 16:43:12 (GMT) |
commit | d11a64d54cdf51537a2c8936b6585f65b3007792 (patch) | |
tree | a01e3785390d46ac992f2991e22e1e29a217e874 | |
parent | ded203f7c9d3882c9055a25b4baa2908ac764fe6 (diff) | |
parent | 6e7c1554895f032841313725d91fa27a1f2b206b (diff) | |
download | cpython-d11a64d54cdf51537a2c8936b6585f65b3007792.zip cpython-d11a64d54cdf51537a2c8936b6585f65b3007792.tar.gz cpython-d11a64d54cdf51537a2c8936b6585f65b3007792.tar.bz2 |
merge
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |