(self)
| 600 | 'ws="	 "/>') |
| 601 | |
| 602 | def testAltNewline(self): |
| 603 | str = '<?xml version="1.0" ?>\n<a b="c"/>\n' |
| 604 | dom = parseString(str) |
| 605 | domstr = dom.toprettyxml(newl="\r\n") |
| 606 | dom.unlink() |
| 607 | self.assertEqual(domstr, str.replace("\n", "\r\n")) |
| 608 | |
| 609 | def test_toprettyxml_with_text_nodes(self): |
| 610 | # see issue #4147, text nodes are not indented |
nothing calls this directly
no test coverage detected