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:
commit
df8f551e79
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue