[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2016-01-12 Thread Ezio Melotti
Ezio Melotti added the comment: DeprecationWarnings are silenced by default. You can enable them by using the -W Python flag. They are also enabled while running tests with unittest, so you should have seen them there. -- ___ Python tracker

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2016-01-11 Thread R. David Murray
Changes by R. David Murray : -- nosy: -r.david.murray ___ Python tracker ___ ___

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2016-01-10 Thread lilydjwg
lilydjwg added the comment: FYI, this breaks one of my programs. I find it now because it only threw errors in rare cases, and I've never seen the deprecated warning because I don't check the logs unless something goes wrong. -- nosy: +lilydjwg ___

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4425024f2e01 by Ezio Melotti in branch 'default': #21047: set the default value for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker Peksag. http://hg.python.org/cpython/rev/4425024f2e01 -- nosy: +python-dev

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b95f3fdcc0b by Ezio Melotti in branch 'default': #15114, #21047: update whatsnew in Python 3.5. http://hg.python.org/cpython/rev/5b95f3fdcc0b -- ___ Python tracker rep...@bugs.python.org

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-08-02 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21047 ___

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-05-16 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch to set the default convert_charrefs value to True (with documentation and whatsnew updates). -- keywords: +patch nosy: +berker.peksag stage: - patch review Added file: http://bugs.python.org/file35265/issue21047.diff

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-05-16 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21047 ___ ___

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-03-23 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: Follow-up to issue #13633. Lib/html/parser.py still has: if convert_charrefs is _default_sentinel: convert_charrefs = False # default warnings.warn(The value of convert_charrefs will become True in 3.5. You