mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Updates vendored setuptools to 44.1.1
This commit is contained in:
parent
3a2e09c26e
commit
d8da02cb69
55 changed files with 2910 additions and 1457 deletions
|
@ -52,4 +52,8 @@ class Bytecode_compat:
|
|||
Bytecode = getattr(dis, 'Bytecode', Bytecode_compat)
|
||||
|
||||
|
||||
unescape = getattr(html, 'unescape', html_parser.HTMLParser().unescape)
|
||||
unescape = getattr(html, 'unescape', None)
|
||||
if unescape is None:
|
||||
# HTMLParser.unescape is deprecated since Python 3.4, and will be removed
|
||||
# from 3.9.
|
||||
unescape = html_parser.HTMLParser().unescape
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue