(self)
| 3642 | self.assertEqual(self._ilist(doc, '*'), all_tags) |
| 3643 | |
| 3644 | def test_copy(self): |
| 3645 | a = ET.Element('a') |
| 3646 | it = a.iter() |
| 3647 | with self.assertRaises(TypeError): |
| 3648 | copy.copy(it) |
| 3649 | |
| 3650 | def test_pickle(self): |
| 3651 | a = ET.Element('a') |
nothing calls this directly
no test coverage detected