[issue31467] cElementTree behaves differently compared to ElementTree

2018-05-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: -6786 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue31467] cElementTree behaves differently compared to ElementTree

2018-05-28 Thread twisteroid ambassador
Change by twisteroid ambassador : -- pull_requests: +6786 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue31467] cElementTree behaves differently compared to ElementTree

2018-05-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: -6783 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue31467] cElementTree behaves differently compared to ElementTree

2018-05-28 Thread twisteroid ambassador
Change by twisteroid ambassador : -- pull_requests: +6783 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> wont fix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Ravikumar
Changes by Ravikumar : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Use ElementTree. In Python 3 ElementTree is accelerated and cElementTree is a deprecated alias of ElementTree. -- ___ Python tracker ___ ___

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Ravikumar
Ravikumar added the comment: Just now I have figured out that , in the documentation it was mentioned that cElementTree module is deprecated in Python 3.3 version. "The xml.etree.ElementTree module implements a simple and efficient API for parsing and creating XML data. Changed in version 3.

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Ravikumar
Ravikumar added the comment: Thanks for the quick update. It helped us to understand the issue. We will check of how to proceed further in our implementation. / Ravi -- stage: -> resolved status: open -> closed ___ Python tracker

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This error is from cPickle. >>> import xml.etree.cElementTree as ET >>> root = ET.XML('') >>> import pickle >>> pickle.dumps(root) Traceback (most recent call last): File "", line 1, in File "/usr/lib/python2.7/pickle.py", line 1380, in dumps Pickler(

[issue31467] cElementTree behaves differently compared to ElementTree

2017-09-14 Thread Ravikumar
New submission from Ravikumar: I have started learning python and I see below snippet fails. I do not understand how to fix the issue and assume this might be a bug in multiprocessing library. I use Python 2.7.12 My python snippet import xml.etree.ElementTree as ET# WORKS import xml.etr