rust-x-bindings / rust-xcb

Rust bindings and wrapper for XCB.
MIT License
165 stars 64 forks source link

Use `ElementTree` instead of `cElementTree` #87

Closed michel-slm closed 4 years ago

michel-slm commented 4 years ago

cElementTree has been deprecated since Python 3.3; ElementTree will use a fast implementation whenever available.

cElementTree is actually removed as of Python 3.9 beta 1, and on Python 3.8 it's an alias to ElementTree.

See https://docs.python.org/3.8/library/xml.etree.elementtree.html

Signed-off-by: Michel Alexandre Salim michel@michel-slm.name


This change is Reviewable