summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-06-23 13:27:51 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-06-23 13:27:51 (GMT)
commit3861d8b27127a261391ee49ff8634a4ef3ba1dd3 (patch)
treec76b34f4269c742f50be485890703200262def43 /Misc
parenta4db02c7a38c5669b5678f1e972d8b9c6d3a2238 (diff)
downloadcpython-3861d8b27127a261391ee49ff8634a4ef3ba1dd3.zip
cpython-3861d8b27127a261391ee49ff8634a4ef3ba1dd3.tar.gz
cpython-3861d8b27127a261391ee49ff8634a4ef3ba1dd3.tar.bz2
#15114: the strict mode of HTMLParser and the HTMLParseError exception are deprecated now that the parser is able to parse invalid markup.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0325058..d76aeeb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #15114: the strict mode of HTMLParser and the HTMLParseError exception
+ are deprecated now that the parser is able to parse invalid markup.
+
- Issue #3665: \u and \U escapes are now supported in unicode regular
expressions. Patch by Serhiy Storchaka.
@@ -78,7 +81,7 @@ Library
- Issue #9527: datetime.astimezone() method will now supply a class
timezone instance corresponding to the system local timezone when
called with no arguments.
-
+
- Issue #14653: email.utils.mktime_tz() no longer relies on system
mktime() when timezone offest is supplied.