]> granicus.if.org Git - python/commitdiff
#13273: merge with 3.2.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 28 Oct 2011 10:23:57 +0000 (13:23 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 28 Oct 2011 10:23:57 +0000 (13:23 +0300)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 4b6b828baa96b881894f68c235048a57347b7a61,6be52fbff95263f0d7646dd951a77045cc7927dd..eb9258a159abb52f4d916c5ccbc64b21b44b9aa6
+++ 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.