cpython/Lib/importlib/test/import_
Brett Cannon 461c813164 Issue #15111: When a module was imported using a 'from import'
statement (e.g. ``from distutils import msvc9compiler``) that triggers
an ImportError of its own (e.g. the non-existence of winreg), let that
exception propagate instead of raising a generic ImportError for the
module being requested (e.g. msvc9compiler).
2012-07-10 10:05:00 -04:00
..
__init__.py Add initial implementation of importlib. See the NOTES files for what is 2009-01-18 00:24:28 +00:00
test___package__.py Improper type for __package__ should raise TypeError, not ValueError. 2012-02-23 18:29:12 -05:00
test_api.py importlib.__import__() now raises ValueError when level < 0. 2012-02-16 17:47:48 -05:00
test_caching.py Changed importlib tests to use assertIs, assertIsInstance, etc., instead of just assertTrue. 2012-06-27 15:26:26 -04:00
test_fromlist.py Issue #15111: When a module was imported using a 'from import' 2012-07-10 10:05:00 -04:00
test_meta_path.py Use assertIsNone. Thanks Terry Reedy. 2012-06-28 06:15:01 -04:00
test_packages.py Changed importlib tests to use assertIs, assertIsInstance, etc., instead of just assertTrue. 2012-06-27 15:26:26 -04:00
test_path.py Use assertIsNone. Thanks Terry Reedy. 2012-06-28 06:15:01 -04:00
test_relative_imports.py Issue #14592: A relative import will raise a KeyError if __package__ 2012-04-17 19:05:11 -04:00
util.py Issue #2377: Make importlib the implementation of __import__(). 2012-04-14 14:10:13 -04:00