bpo-37328: remove deprecated HTMLParser.unescape (GH-14186)

It is deprecated since Python 3.4.
This commit is contained in:
Inada Naoki 2019-08-27 11:48:06 +09:00 committed by GitHub
parent 9a943b4ce1
commit fae0ed5099
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 15 deletions

View file

@ -9,7 +9,6 @@
import re
import warnings
import _markupbase
from html import unescape
@ -461,10 +460,3 @@ def handle_pi(self, data):
def unknown_decl(self, data):
pass
# Internal -- helper to remove special character quoting
def unescape(self, s):
warnings.warn('The unescape method is deprecated and will be removed '
'in 3.5, use html.unescape() instead.',
DeprecationWarning, stacklevel=2)
return unescape(s)

View file

@ -573,13 +573,6 @@ def test_EOF_in_charref(self):
for html, expected in data:
self._run_check(html, expected)
def test_unescape_method(self):
from html import unescape
p = self.get_collector()
with self.assertWarns(DeprecationWarning):
s = '"""&quot&#34&#x22&#bad;'
self.assertEqual(p.unescape(s), unescape(s))
def test_broken_comments(self):
html = ('<! not really a comment >'
'<! not a comment either -->'

View file

@ -0,0 +1,2 @@
``HTMLParser.unescape`` is removed. It was undocumented and deprecated
since Python 3.4.