(self)
| 3288 | e.findall(cls(e, 'x')) |
| 3289 | |
| 3290 | def test_findall_with_error(self): |
| 3291 | e = ET.Element('foo') |
| 3292 | e.extend([ET.Element('bar')]) |
| 3293 | try: |
| 3294 | e.findall(BadElementPath('x')) |
| 3295 | except ZeroDivisionError: |
| 3296 | pass |
| 3297 | |
| 3298 | |
| 3299 | class ElementTreeTypeTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected