diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2014-08-02 15:54:30 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2014-08-02 15:54:30 (GMT) |
commit | 045160bc39195eb4471b1d61c1c3c3849a19c604 (patch) | |
tree | 0a237b1d83508454fb49ca83339878fd6b02e74d /Doc/whatsnew | |
parent | 6fc16d81af0ec11e79a17e2af12e8653382cef26 (diff) | |
download | cpython-045160bc39195eb4471b1d61c1c3c3849a19c604.zip cpython-045160bc39195eb4471b1d61c1c3c3849a19c604.tar.gz cpython-045160bc39195eb4471b1d61c1c3c3849a19c604.tar.bz2 |
#15114, #21047: update whatsnew in Python 3.5.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 6cfea84..e448f30 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -335,6 +335,12 @@ Changes in the Python API attribute, the qualified name, which is now used for the representation of a generator (``repr(gen)``). See :issue:`21205`. +* The deprecated "strict" mode and argument of :class:`~html.parser.HTMLParser`, + :meth:`HTMLParser.error`, and the :exc:`HTMLParserError` exception have been + removed (contributed by Ezio Melotti in :issue:`15114`). + The *convert_charrefs* argument of :class:`~html.parser.HTMLParser` is + now ``True`` by default (contributed by Berker Peksag in :issue:`21047`). + Changes in the C API -------------------- |