This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2014年03月24日 05:17 by Arfrever, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| issue21047.diff | berker.peksag, 2014年05月16日 13:53 | review | ||
| Messages (6) | |||
|---|---|---|---|
| msg214668 - (view) | Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) | Date: 2014年03月24日 05:17 | |
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 are encouraged to set the value explicitly.", DeprecationWarning, stacklevel=2) |
|||
| msg218662 - (view) | Author: Berker Peksag (berker.peksag) * (Python committer) | Date: 2014年05月16日 13:53 | |
Here's a patch to set the default "convert_charrefs" value to True (with documentation and whatsnew updates). |
|||
| msg224574 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2014年08月02日 15:36 | |
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 |
|||
| msg224576 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2014年08月02日 15:54 | |
New changeset 5b95f3fdcc0b by Ezio Melotti in branch 'default': #15114, #21047: update whatsnew in Python 3.5. http://hg.python.org/cpython/rev/5b95f3fdcc0b |
|||
| msg257905 - (view) | Author: lilydjwg (lilydjwg) * | Date: 2016年01月10日 11:56 | |
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. |
|||
| msg258077 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2016年01月12日 08:38 | |
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. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:00 | admin | set | github: 65246 |
| 2016年01月12日 08:38:53 | ezio.melotti | set | messages: + msg258077 |
| 2016年01月11日 17:18:44 | r.david.murray | set | nosy:
- r.david.murray |
| 2016年01月10日 11:56:13 | lilydjwg | set | nosy:
+ lilydjwg messages: + msg257905 |
| 2014年08月02日 17:12:03 | berker.peksag | set | status: open -> closed resolution: fixed stage: patch review -> resolved |
| 2014年08月02日 15:54:54 | python-dev | set | messages: + msg224576 |
| 2014年08月02日 15:36:34 | python-dev | set | nosy:
+ python-dev messages: + msg224574 |
| 2014年05月16日 14:25:15 | ezio.melotti | set | assignee: ezio.melotti |
| 2014年05月16日 13:53:37 | berker.peksag | set | files:
+ issue21047.diff nosy: + berker.peksag messages: + msg218662 keywords: + patch stage: patch review |
| 2014年03月24日 05:17:18 | Arfrever | create | |