[lang-ref] ( unescape_html ) ( python )
def test_unescape_html():
# html.unescape
import html
s = 'a < b'
assert html.unescape(s) == 'a < b'
def test_unescape_html():
# html.unescape
import html
s = 'a < b'
assert html.unescape(s) == 'a < b'