This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bagratte
Recipients bagratte, eli.bendersky, scoder
Date 2014-04-02.20:52:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396471940.04.0.888742395119.issue20198@psf.upfronthosting.co.za>
In-reply-to
Content
well... ElementTree.py imports some c accelerators as can be seen at the end of the file. i have no idea how to get to those accelerators, and even if i had, i don't think i would make anything of them.
as far as the pure python code concerns in the rest of ElementTree.py, it suffices not to sort the items in _serialize_xml:

line 929 of ElementTree.py:
-for k, v in sorted(items):  # lexical order
+for k, v in items:

i gather something similar must be done in c accelerators.

(by the way, does anyone know why i am not receiving email notifications when someone posts to an issue i have started or i have commented to?)
History
Date User Action Args
2014-04-02 20:52:20bagrattesetrecipients: + bagratte, scoder, eli.bendersky
2014-04-02 20:52:20bagrattesetmessageid: <1396471940.04.0.888742395119.issue20198@psf.upfronthosting.co.za>
2014-04-02 20:52:20bagrattelinkissue20198 messages
2014-04-02 20:52:19bagrattecreate