diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-09-07 07:52:20 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-09-07 07:52:20 (GMT) |
commit | 32d374215a514915eca892e5c58a61e9494f37af (patch) | |
tree | a5eb60bfa6e5a1f28bedd4042460a22fce720fca /Lib/test/test_pkgutil.py | |
parent | e848cd7605a7891378ef1463e933939aa253df71 (diff) | |
download | cpython-32d374215a514915eca892e5c58a61e9494f37af.zip cpython-32d374215a514915eca892e5c58a61e9494f37af.tar.gz cpython-32d374215a514915eca892e5c58a61e9494f37af.tar.bz2 |
[backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder".
Diffstat (limited to 'Lib/test/test_pkgutil.py')
-rw-r--r-- | Lib/test/test_pkgutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pkgutil.py b/Lib/test/test_pkgutil.py index 9d20354..a820587 100644 --- a/Lib/test/test_pkgutil.py +++ b/Lib/test/test_pkgutil.py @@ -205,7 +205,7 @@ class PkgutilPEP302Tests(unittest.TestCase): del sys.meta_path[0] def test_getdata_pep302(self): - # Use a dummy importer/loader + # Use a dummy finder/loader self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!") del sys.modules['foo'] |