(self)
| 615 | self.assertEqual(len(w.warnings), 0) |
| 616 | |
| 617 | def test_issue44061(self): |
| 618 | try: |
| 619 | pkgutil.get_importer(Path("/home")) |
| 620 | except AttributeError: |
| 621 | self.fail("Unexpected AttributeError when calling get_importer") |
| 622 | |
| 623 | def test_iter_importers_avoids_emulation(self): |
| 624 | with check_warnings() as w: |