New submission from Germán M. Bravo: On the tip of 3.3, I've found `Element.__getstate__` doesn't work and neither as `pickle.dumps(Element)` under certain circumstances.
This crashes: e1 = ElementTree().parse('houses.xml') e1.__getstate__() This doesn't crash: e2 = ElementTree().parse('houses.xml') e2.text = 'some' e2.__getstate__() But still, both of these crash: pickle.dumps(e1) pickle.dumps(e2) ---------- components: Extension Modules files: houses.xml messages: 197440 nosy: Kronuz, eli.bendersky, scoder priority: normal severity: normal status: open title: Crash when using pickle and ElementTree versions: Python 3.3 Added file: http://bugs.python.org/file31719/houses.xml _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue18997> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com