bagrat lazaryan added the comment:

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?)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20198>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to