[issue37328] remove deprecated 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)

[issue37328] remove deprecated 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

[issue37328] remove deprecated HTMLParser.unescape

2020-09-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +terry.reedy nosy_count: 3.0 -> 4.0 pull_requests: +21345 pull_request: https://github.com/python/cpython/pull/22293 ___ Python tracker ___

[issue37328] remove deprecated 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

[issue37328] remove deprecated HTMLParser.unescape

2020-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka nosy_count: 2.0 -> 3.0 pull_requests: +21341 pull_request: https://github.com/python/cpython/pull/22288 ___ Python tracker

[issue37328] remove deprecated HTMLParser.unescape

2019-08-26 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37328] remove deprecated HTMLParser.unescape

2019-08-26 Thread Inada Naoki
Inada Naoki added the comment: New changeset fae0ed5099de594a9204071d555cb8b76368cbf4 by Inada Naoki in branch 'master': bpo-37328: remove deprecated HTMLParser.unescape (GH-14186) https://github.com/python/cpython/commit/fae0ed5099de594a9204071d555cb8b76368cbf4 --

[issue37328] remove deprecated HTMLParser.unescape

2019-06-20 Thread Ezio Melotti
Change by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37328] remove deprecated HTMLParser.unescape

2019-06-18 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +14023 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14186 ___ Python tracker ___

[issue37328] remove deprecated HTMLParser.unescape

2019-06-18 Thread Inada Naoki
New submission from Inada Naoki : HTMLParser.unescape was removed once but resurrected because of distlib depended on it. (see https://bugs.python.org/issue19688 ) Since it is deprecated from 3.4, it's safe to remove. -- components: Library (Lib) messages: 345954 nosy: inada.naoki