(self)
| 199 | |
| 200 | @support.cpython_only |
| 201 | def test_disallow_instantiation(self): |
| 202 | root = cET.fromstring('<a></a>') |
| 203 | iter_type = type(root.iter()) |
| 204 | support.check_disallow_instantiation(self, iter_type) |
| 205 | |
| 206 | |
| 207 | @unittest.skipUnless(cET, 'requires _elementtree') |
nothing calls this directly
no test coverage detected