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 piro
Recipients BreamoreBoy, Jens.Grivolla, Tomalak, ajaksu2, amaury.forgeotdarc, devon, effbot, ezio.melotti, gauges, labrat, moriyoshi, piro, sayap
Date 2013-03-28.10:17:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364465823.69.0.32283691619.issue5752@psf.upfronthosting.co.za>
In-reply-to
Content
ElementTree issue is with tabs:

    In [1]: import xml.etree.cElementTree as etree

    In [2]: doc = etree.fromstring('<xml />')

    In [4]: doc.set('attr', "here\tthere")

    In [5]: etree.tostring(doc)
    Out[5]: '<xml attr="here\tthere" />'

    In [6]: etree.fromstring(_5).attrib['attr']
    Out[6]: 'here there'

bye bye tab.
History
Date User Action Args
2013-03-28 10:17:03pirosetrecipients: + piro, effbot, amaury.forgeotdarc, ajaksu2, ezio.melotti, sayap, Tomalak, devon, labrat, moriyoshi, BreamoreBoy, gauges, Jens.Grivolla
2013-03-28 10:17:03pirosetmessageid: <1364465823.69.0.32283691619.issue5752@psf.upfronthosting.co.za>
2013-03-28 10:17:03pirolinkissue5752 messages
2013-03-28 10:17:03pirocreate