Rollup merge of #73140 - tmiasko:element-tree, r=GuillaumeGomez

Fallback to xml.etree.ElementTree

The xml.etree.cElementTree has been deprecated since Python 3.3
and removed in Python 3.9 https://bugs.python.org/issue36543.
This commit is contained in:
Manish Goregaokar 2020-07-03 17:16:50 -07:00 committed by GitHub
commit df8f551e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,10 @@ try:
from html.parser import HTMLParser
except ImportError:
from HTMLParser import HTMLParser
from xml.etree import cElementTree as ET
try:
from xml.etree import cElementTree as ET
except ImportError:
from xml.etree import ElementTree as ET
try:
from html.entities import name2codepoint