v0.0.1
ext: fix getiterator * Methods getchildren() and getiterator() of classes ElementTree and Element in the ElementTree module have been removed. They were deprecated in Python 3.2. Use iter(x) or list(x) instead of x.getchildren() and x.iter() or list(x.iter()) instead of x.getiterator(). ( Contributed by Serhiy Storchaka in bpo-36543.) https://docs.python.org/3.9/whatsnew/3.9.html#removed Co-Authored-by: Peter Weber <[email protected]>