From: Ezio Melotti Date: Fri, 28 Oct 2011 10:23:57 +0000 (+0300) Subject: #13273: merge with 3.2. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91ec2e8a313edd08b4f10775173bbff714d8050a;p=python #13273: merge with 3.2. --- 91ec2e8a313edd08b4f10775173bbff714d8050a diff --cc Misc/NEWS index 4b6b828baa,6be52fbff9..eb9258a159 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -341,18 -61,9 +341,21 @@@ Core and Builtin Library ------- + - Issue #13273: fix a bug that prevented HTMLParser to properly detect some + tags when strict=False. + +- Issue #11183: Add finer-grained exceptions to the ssl module, so that + you don't have to inspect the exception's attributes in the common case. + +- Issue #13216: Add cp65001 codec, the Windows UTF-8 (CP_UTF8). + +- Issue #13226: Add RTLD_xxx constants to the os module. These constants can be + used with sys.setdlopenflags(). + +- Issue #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to + the time module. time.clock_gettime(time.CLOCK_MONOTONIC) provides a + monotonic clock + - Issue #10332: multiprocessing: fix a race condition when a Pool is closed before all tasks have completed.