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
+4 -1
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