(self)
| 3009 | |
| 3010 | @support.infinite_recursion(25) |
| 3011 | def test_recursive_repr(self): |
| 3012 | # Issue #25455 |
| 3013 | e = ET.Element('foo') |
| 3014 | with swap_attr(e, 'tag', e): |
| 3015 | with self.assertRaises(RuntimeError): |
| 3016 | repr(e) # Should not crash |
| 3017 | |
| 3018 | def test_element_get_text(self): |
| 3019 | # Issue #27863 |
nothing calls this directly
no test coverage detected