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 ezio.melotti
Recipients Arfrever, benjamin.peterson, danken, ezio.melotti, georg.brandl, jgarrison, m-samia, pefu, python-dev, r.david.murray, techtonik, thomaslee, tod
Date 2011-11-18.10:47:04
SpamBayes Score 0.012583136
Marked as misclassified No
Message-id <1321613225.68.0.126620127451.issue4147@psf.upfronthosting.co.za>
In-reply-to
Content
I did some tests, creating an element ('elem') that contains two adjacent text nodes ('text').  With my latest patch the prettyprint is:
<?xml version="1.0" ?>
<elem>
        text
        text
</elem>

Here both the text nodes are printed on a newline and they are indented.

With your patch it should be:
<?xml version="1.0" ?>
<elem>texttext</elem>

I'm not sure there's any reason to prefer the second option though.
History
Date User Action Args
2011-11-18 10:47:05ezio.melottisetrecipients: + ezio.melotti, georg.brandl, pefu, techtonik, thomaslee, benjamin.peterson, Arfrever, r.david.murray, jgarrison, m-samia, danken, tod, python-dev
2011-11-18 10:47:05ezio.melottisetmessageid: <1321613225.68.0.126620127451.issue4147@psf.upfronthosting.co.za>
2011-11-18 10:47:05ezio.melottilinkissue4147 messages
2011-11-18 10:47:04ezio.melotticreate