mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #15314: Tweak a pkgutil test to hopefully be more Windows friendly
This commit is contained in:
parent
b48ff7fdda
commit
9455492142
1 changed files with 2 additions and 1 deletions
|
@ -285,8 +285,9 @@ class ImportlibMigrationTests(unittest.TestCase):
|
|||
self.assertEqual(len(w.warnings), 0)
|
||||
|
||||
def test_get_importer_avoids_emulation(self):
|
||||
# We use an illegal path so *none* of the path hooks should fire
|
||||
with check_warnings() as w:
|
||||
self.assertIsNotNone(pkgutil.get_importer(sys.path[0]))
|
||||
self.assertIsNone(pkgutil.get_importer("*??"))
|
||||
self.assertEqual(len(w.warnings), 0)
|
||||
|
||||
def test_iter_importers_avoids_emulation(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue