[issue14377] Modify serializer for xml.etree.ElementTree to allow forcing the use of long tag closing

Serhiy Storchaka report at bugs.python.org
Wed Mar 21 07:15:19 CET 2012


Serhiy Storchaka <storchaka at gmail.com> added the comment:

-            if long_xml or text or len(elem):
+            if text or len(elem) or long_xml:

Use alternatives in order of decreasing probability.

----------
nosy: +storchaka

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14377>
_______________________________________


More information about the Python-bugs-list mailing list