diff options
| author | Brett Cannon <bcannon@gmail.com> | 2009-02-07 01:52:25 (GMT) |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2009-02-07 01:52:25 (GMT) |
| commit | 06c9d96b7033a70922851d7dfe23e74e73ddd287 (patch) | |
| tree | f8e66db58a2fc1ed9508e45db64507a916130ab7 /Lib/importlib/test/extension/test_loader.py | |
| parent | d94e558fdc58d0a15545e858cc47eabe7ee7f38d (diff) | |
| download | cpython-06c9d96b7033a70922851d7dfe23e74e73ddd287.zip cpython-06c9d96b7033a70922851d7dfe23e74e73ddd287.tar.gz cpython-06c9d96b7033a70922851d7dfe23e74e73ddd287.tar.bz2 | |
Move importlib completely over to using rpartition and accepting the empty
string for top-level modules.
Diffstat (limited to 'Lib/importlib/test/extension/test_loader.py')
| -rw-r--r-- | Lib/importlib/test/extension/test_loader.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/test/extension/test_loader.py b/Lib/importlib/test/extension/test_loader.py index 1e43fdd..01f3426 100644 --- a/Lib/importlib/test/extension/test_loader.py +++ b/Lib/importlib/test/extension/test_loader.py @@ -21,7 +21,8 @@ class LoaderTests(abc.LoaderTests): with util.uncache(test_path_hook.NAME): module = self.load_module(test_path_hook.NAME) for attr, value in [('__name__', test_path_hook.NAME), - ('__file__', test_path_hook.FILEPATH)]: + ('__file__', test_path_hook.FILEPATH), + ('__package__', '')]: self.assertEqual(getattr(module, attr), value) self.assert_(test_path_hook.NAME in sys.modules) |
