(self)
| 3648 | copy.copy(it) |
| 3649 | |
| 3650 | def test_pickle(self): |
| 3651 | a = ET.Element('a') |
| 3652 | it = a.iter() |
| 3653 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 3654 | with self.assertRaises((TypeError, pickle.PicklingError)): |
| 3655 | pickle.dumps(it, proto) |
| 3656 | |
| 3657 | |
| 3658 | class TreeBuilderTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected