| 3767 | def test_late_tail(self): |
| 3768 | # Issue #37399: The tail of an ignored comment could overwrite the text before it. |
| 3769 | class TreeBuilderSubclass(ET.TreeBuilder): |
| 3770 | pass |
| 3771 | |
| 3772 | xml = "<a>text<!-- comment -->tail</a>" |
| 3773 | a = ET.fromstring(xml) |
no outgoing calls
searching dependent graphs…