Skip to content

Commit

Permalink
Fallback to xml.etree.ElementTree
Browse files Browse the repository at this point in the history
The xml.etree.cElementTree has been deprecated since Python 3.3
and removed in Python 3.9 https://bugs.python.org/issue36543.
  • Loading branch information
tmiasko committed Jun 8, 2020
1 parent 7355816 commit 291dce9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/etc/htmldocck.py
Expand Up @@ -114,7 +114,10 @@
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
Expand Down

0 comments on commit 291dce9

Please sign in to comment.