(self)
| 528 | dom.unlink() |
| 529 | |
| 530 | def testElementReprAndStrUnicode(self): |
| 531 | dom = Document() |
| 532 | el = dom.appendChild(dom.createElement("abc")) |
| 533 | string1 = repr(el) |
| 534 | string2 = str(el) |
| 535 | self.assertEqual(string1, string2) |
| 536 | dom.unlink() |
| 537 | |
| 538 | def testElementReprAndStrUnicodeNS(self): |
| 539 | dom = Document() |
nothing calls this directly
no test coverage detected