[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-10-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8dd430265ccd4d34b74c841d6bcc8f58aa93ad94 by Łukasz Langa (Terry Jan Reedy) in branch '3.9': [3.9] bpo-27032, bpo-37328: Document removing HTMLParser.unescape() (GH-22288)

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4daeb9eec294f73a5811ef6ab3a0f8e61174a24c by Terry Jan Reedy in branch '3.9': [3.9] bpo-27032, bpo-37328: Document removing HTMLParser.unescape() (GH-22288) https://github.com/python/cpython/commit/4daeb9eec294f73a5811ef6ab3a0f8e61174a24c

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +21344 pull_request: https://github.com/python/cpython/pull/22293 ___ Python tracker ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: The backport to 3.9 is still pending. The bot claims that there is a merge conflict. This should not happen because What's New in 3.9 should be identical in master and 3.9. My guess is that someone only changed it in 3.9, though another change in master

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Irit Katriel
Irit Katriel added the comment: This issue can be closed now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a33f2c2bae759fc9d06e1c032fd2026135f2df45 by Serhiy Storchaka in branch 'master': bpo-27032, bpo-37328: Document removing HTMLParser.unescape(). (GH-22288) https://github.com/python/cpython/commit/a33f2c2bae759fc9d06e1c032fd2026135f2df45

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It was already removed in issue37328. The only not applied part of the patch is adding a What's New entry. -- nosy: +inada.naoki ___ Python tracker

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.10, Python 3.9 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +21340 pull_request: https://github.com/python/cpython/pull/22288 ___ Python tracker ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: Irit, yes. Serhiy's patch could be converted to a GitHub PR and it can be merged. -- nosy: +orsenthil ___ Python tracker ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2020-09-16 Thread Irit Katriel
Irit Katriel added the comment: This was pending Python 2 EOL, so should be ok to do now, right? -- nosy: +iritkatriel ___ Python tracker ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-25 Thread Berker Peksag
Berker Peksag added the comment: It was removed before and added back with a deprecation warning (because someone was using it). A little bit off-topic, but it would be great to have a "deprecated APIs in Python 3" list somewhere in the Python documentation (see

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-25 Thread R. David Murray
R. David Murray added the comment: Nevertheless, our current standing policy is to not remove anything until after 2.7 goes out of maintenance entirely. -- nosy: +r.david.murray ___ Python tracker

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Good point. Maybe the deprecation period of HTMLParser.unescape() should be prolonged. On other side, this method is not documented, nor in 2.7, nor in 3.x. It is not a part of official API. -- ___ Python

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-25 Thread Martin Panter
Martin Panter added the comment: I wonder if removing HTMLParser().unescape() would hurt Python 2 → 3 compatibility. This was mentioned in Ezio’s draft deprecation policy PEP : “nothing that is available and not

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-23 Thread Jim Jewett
Jim Jewett added the comment: Looks Good To Me -- nosy: +Jim.Jewett ___ Python tracker ___ ___

[issue27032] Remove deprecated html.parser.HTMLParser.unescape()

2016-05-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch removes the unescape() method in the html.parser.HTMLParser class. This was deprecated since Python 3.4 (issue19688). -- components: Library (Lib) files: html_parser_remove_deprecated.patch keywords: patch messages: 265643 nosy: