Message194902
| Author |
scoder |
| Recipients |
alex.henderson, eli.bendersky, eric.araujo, loewis, santoso.wijaya, scoder, tshepang |
| Date |
2013年08月11日.16:30:21 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1376238621.61.0.742683972156.issue14465@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Just to reiterate this point, lxml.etree supports a "pretty_print" flag in its tostring() function and ElementTree.write(). It would thus make sense to support the same thing in ET.
http://lxml.de/api.html#serialisation
For completeness, the current signature looks like this:
def tostring(element_or_tree, *, encoding=None, method="xml",
xml_declaration=None, pretty_print=False,
with_tail=True, standalone=None, doctype=None,
exclusive=False, with_comments=True,
inclusive_ns_prefixes=None):
(The last three options are for C14N serialisation.) |
|