[issue16076] xml.etree.ElementTree.Element is no longer pickleable

2012-09-28 Thread Einar Fløystad Dørum
New submission from Einar Fløystad Dørum: The xml.etree.ElementTree.Element class is no longer pickleable in Python 3.3.0rc3 . This is a regression from Python 3.2 where the Element class was pickleable, while the xml.etree.cElementTree.Element was not. So this is probably related

[issue16076] xml.etree.ElementTree.Element is no longer pickleable

2012-09-28 Thread Einar Fløystad Dørum
Changes by Einar Fløystad Dørum eina...@gmail.com: -- components: -Library (Lib) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16076

[issue16082] xml.etree.ElementTree.tostringlist does conform to it's documentation

2012-09-28 Thread Einar Fløystad Dørum
New submission from Einar Fløystad Dørum: The tostringlist documentation says Returns a list of (optionally) encoded strings containing the XML data. It does not guarantee any specific sequence, except that .join(tostringlist(element)) == tostring(element).. But in reality it is possible