(self)
| 3683 | self.assertEqual(self._ilist(doc, '*'), all_tags) |
| 3684 | |
| 3685 | def test_copy(self): |
| 3686 | a = ET.Element('a') |
| 3687 | it = a.iter() |
| 3688 | with self.assertRaises(TypeError): |
| 3689 | copy.copy(it) |
| 3690 | |
| 3691 | def test_pickle(self): |
| 3692 | a = ET.Element('a') |
nothing calls this directly
no test coverage detected