diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-02-07 01:40:19 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-02-07 01:40:19 (GMT) |
commit | d94e558fdc58d0a15545e858cc47eabe7ee7f38d (patch) | |
tree | 740e6ff2dd2de6cdc133000e661f3d688dda31e2 /Lib/importlib/test | |
parent | eb2e0dd19d0003faf3366d648cb11d8c7218ed73 (diff) | |
download | cpython-d94e558fdc58d0a15545e858cc47eabe7ee7f38d.zip cpython-d94e558fdc58d0a15545e858cc47eabe7ee7f38d.tar.gz cpython-d94e558fdc58d0a15545e858cc47eabe7ee7f38d.tar.bz2 |
Move importlib's built-in importer to use rpartition for __package__.
Diffstat (limited to 'Lib/importlib/test')
-rw-r--r-- | Lib/importlib/test/builtin/test_loader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/builtin/test_loader.py b/Lib/importlib/test/builtin/test_loader.py index 940529e..1171960 100644 --- a/Lib/importlib/test/builtin/test_loader.py +++ b/Lib/importlib/test/builtin/test_loader.py @@ -15,7 +15,7 @@ class LoaderTests(abc.LoaderTests): assert 'errno' in sys.builtin_module_names name = 'errno' - verification = {'__name__': 'errno', '__package__': None} + verification = {'__name__': 'errno', '__package__': ''} def verify(self, module): """Verify that the module matches against what it should have.""" |