diff options
author | Brett Cannon <brett@python.org> | 2016-08-12 17:53:53 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-08-12 17:53:53 (GMT) |
commit | 4a2360d3f786053a8e324c4b9587aa6025072689 (patch) | |
tree | db85caf69efaa64dd329443299bf367b0164f8bf /Lib/test | |
parent | 87fe473edc933ce8a3c886efff8e6389f90b3e57 (diff) | |
download | cpython-4a2360d3f786053a8e324c4b9587aa6025072689.zip cpython-4a2360d3f786053a8e324c4b9587aa6025072689.tar.gz cpython-4a2360d3f786053a8e324c4b9587aa6025072689.tar.bz2 |
Issue #25805: Skip a test for test_pkgutil when __name__ == __main__.
Thanks to SilentGhost for the patch.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pkgutil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_pkgutil.py b/Lib/test/test_pkgutil.py index a820587..ae2aa1b 100644 --- a/Lib/test/test_pkgutil.py +++ b/Lib/test/test_pkgutil.py @@ -413,6 +413,7 @@ class ImportlibMigrationTests(unittest.TestCase): self.assertIsNotNone(pkgutil.get_loader("test.support")) self.assertEqual(len(w.warnings), 0) + @unittest.skipIf(__name__ == '__main__', 'not compatible with __main__') def test_get_loader_handles_missing_loader_attribute(self): global __loader__ this_loader = __loader__ |