diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-09 03:43:14 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-09 03:43:14 (GMT) |
commit | 313fa9d3651a5edab0d8f0f3b41720818b80c19d (patch) | |
tree | 9dd7b234bbb22d46c142174c9c2c0f761ca5ec5f /Lib/test | |
parent | 74efb718715414334ebb040056a1f359a8cc2c2a (diff) | |
parent | 199e0857f9040c56d7a37fac62fdc5b0df7a08a7 (diff) | |
download | cpython-313fa9d3651a5edab0d8f0f3b41720818b80c19d.zip cpython-313fa9d3651a5edab0d8f0f3b41720818b80c19d.tar.gz cpython-313fa9d3651a5edab0d8f0f3b41720818b80c19d.tar.bz2 |
#11910: merge with 3.1.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/support.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index 380d5a8..cab366b 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -92,12 +92,14 @@ def import_module(name, deprecated=False): def _save_and_remove_module(name, orig_modules): """Helper function to save and remove a module from sys.modules - Return value is True if the module was in sys.modules and - False otherwise.""" + Return True if the module was in sys.modules, False otherwise. + Raise ImportError if the module can't be imported.""" saved = True try: orig_modules[name] = sys.modules[name] except KeyError: + # try to import the module and raise an error if it can't be imported + __import__(name) saved = False else: del sys.modules[name] @@ -107,8 +109,7 @@ def _save_and_remove_module(name, orig_modules): def _save_and_block_module(name, orig_modules): """Helper function to save and block a module in sys.modules - Return value is True if the module was in sys.modules and - False otherwise.""" + Return True if the module was in sys.modules, False otherwise.""" saved = True try: orig_modules[name] = sys.modules[name] @@ -124,6 +125,7 @@ def import_fresh_module(name, fresh=(), blocked=(), deprecated=False): the sys.modules cache is restored to its original state. Modules named in fresh are also imported anew if needed by the import. + If one of these modules can't be imported, None is returned. Importing of modules named in blocked is prevented while the fresh import takes place. @@ -145,6 +147,8 @@ def import_fresh_module(name, fresh=(), blocked=(), deprecated=False): if not _save_and_block_module(blocked_name, orig_modules): names_to_remove.append(blocked_name) fresh_module = importlib.import_module(name) + except ImportError: + fresh_module = None finally: for orig_name, module in orig_modules.items(): sys.modules[orig_name] = module |