Skip to content

v0.0.1

Compare
Choose a tag to compare
@jma jma released this 19 Jan 09:51
· 28 commits to master since this release
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]>