diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-08-30 20:22:21 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-08-30 20:22:21 (GMT) |
commit | 1c1dcbfd5db9ec3e47ca9ddf28e7c6b87f09eb19 (patch) | |
tree | f5c9b6ba568ea86b2c0d29c79021ca050b2e7bfd /Lib/importlib/test/regrtest.py | |
parent | 82a23fe3925245086460eb7da95bbdc39cd2454a (diff) | |
download | cpython-1c1dcbfd5db9ec3e47ca9ddf28e7c6b87f09eb19.zip cpython-1c1dcbfd5db9ec3e47ca9ddf28e7c6b87f09eb19.tar.gz cpython-1c1dcbfd5db9ec3e47ca9ddf28e7c6b87f09eb19.tar.bz2 |
Trying to import a submodule from another module and not a package was raising
AttributeError in importlib when it should be an ImportError.
Found when running importlib against test_runpy.
Diffstat (limited to 'Lib/importlib/test/regrtest.py')
-rw-r--r-- | Lib/importlib/test/regrtest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/importlib/test/regrtest.py b/Lib/importlib/test/regrtest.py index ca27489..f9721c0 100644 --- a/Lib/importlib/test/regrtest.py +++ b/Lib/importlib/test/regrtest.py @@ -8,9 +8,6 @@ this script. XXX FAILING test_import # execution bit, exception name differing, file name differing between code and module (?) - test_runpy # Importing sys.imp.eric raises AttributeError instead of - ImportError (as does any attempt to import a sub-module - from a non-package, e.g. tokenize.menotreal) """ import importlib |