[issue18997] Crash when using pickle and ElementTree

2013-09-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 111a74819192 by doko in branch '3.3': - followup for issue #18997, make _clear_joined_ptr static. http://hg.python.org/cpython/rev/111a74819192 New changeset 269be4aacb8e by doko in branch 'default': - followup for issue #18997, make _clear_joined_p

[issue18997] Crash when using pickle and ElementTree

2013-09-13 Thread Eli Bendersky
Eli Bendersky added the comment: Fixed the patch and committed. Thanks. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue18997] Crash when using pickle and ElementTree

2013-09-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 39823ebfc731 by Eli Bendersky in branch '3.3': Issue #18997: fix ElementTree crash with using pickle and __getstate__. http://hg.python.org/cpython/rev/39823ebfc731 New changeset bda5a87df1c8 by Eli Bendersky in branch 'default': Merge for Issue #18

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Eli Bendersky
Eli Bendersky added the comment: Thanks for this report, Germán (and the other issue as well). I'll do my best to take a look later this week. -- assignee: -> eli.bendersky stage: -> patch review type: -> behavior versions: +Python 3.4 ___ Python

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Germán M . Bravo
Changes by Germán M. Bravo : Added file: http://bugs.python.org/file31725/join_obj.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Germán M . Bravo
Changes by Germán M. Bravo : Removed file: http://bugs.python.org/file31723/join_obj.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Germán M . Bravo
Germán M. Bravo added the comment: The attached patch fixes the problem (there were some missing JOIN_OBJ()) -- keywords: +patch Added file: http://bugs.python.org/file31723/join_obj.diff ___ Python tracker ___

[issue18997] Crash when using pickle and ElementTree

2013-09-10 Thread Germán M . Bravo
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('