| 2493 | def test_lost_text(self): |
| 2494 | # Issue #25902: Borrowed text can disappear |
| 2495 | class Text: |
| 2496 | def __bool__(self): |
| 2497 | e.text = 'changed' |
| 2498 | return True |
| 2499 | |
| 2500 | e = ET.Element('tag') |
| 2501 | e.text = Text() |
no outgoing calls
searching dependent graphs…