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 amaury.forgeotdarc
Recipients BreamoreBoy, Jens.Grivolla, Tomalak, ajaksu2, amaury.forgeotdarc, devon, effbot, ezio.melotti, gauges, labrat, moriyoshi, piro, sayap
Date 2013-03-28.09:47:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364464059.65.0.268400557361.issue5752@psf.upfronthosting.co.za>
In-reply-to
Content
minidom may be broken, but what's the issue with ElementTree?

>>> import xml.etree.cElementTree as etree
>>> doc = etree.fromstring('<xml />')
>>> doc.set('attr', "multiline\nvalue")
>>> etree.tostring(doc)
'<xml attr="multiline&#10;value" />'
History
Date User Action Args
2013-03-28 09:47:39amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, effbot, ajaksu2, piro, ezio.melotti, sayap, Tomalak, devon, labrat, moriyoshi, BreamoreBoy, gauges, Jens.Grivolla
2013-03-28 09:47:39amaury.forgeotdarcsetmessageid: <1364464059.65.0.268400557361.issue5752@psf.upfronthosting.co.za>
2013-03-28 09:47:39amaury.forgeotdarclinkissue5752 messages
2013-03-28 09:47:39amaury.forgeotdarccreate