(self)
| 3689 | copy.copy(it) |
| 3690 | |
| 3691 | def test_pickle(self): |
| 3692 | a = ET.Element('a') |
| 3693 | it = a.iter() |
| 3694 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 3695 | with self.assertRaises((TypeError, pickle.PicklingError)): |
| 3696 | pickle.dumps(it, proto) |
| 3697 | |
| 3698 | |
| 3699 | class TreeBuilderTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected