(self)
| 2756 | self.assertEqual(wref(), None) |
| 2757 | |
| 2758 | def test_get_keyword_args(self): |
| 2759 | e1 = ET.Element('foo' , x=1, y=2, z=3) |
| 2760 | self.assertEqual(e1.get('x', default=7), 1) |
| 2761 | self.assertEqual(e1.get('w', default=7), 7) |
| 2762 | |
| 2763 | def test_pickle(self): |
| 2764 | # issue #16076: the C implementation wasn't pickleable. |
nothing calls this directly
no test coverage detected