summaryrefslogtreecommitdiff
path: root/Lib/importlib
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-05-31 18:37:44 -0400
committerBrett Cannon <brett@python.org>2013-05-31 18:37:44 -0400
commited19156089412a461de0d1dd69a67154ba69f046 (patch)
treef812cfb9f30187a71d5311022a19ab66185cf0b5 /Lib/importlib
parentfa20e58edfc114009083dfdb42039a2ea24114f1 (diff)
downloadcpython-ed19156089412a461de0d1dd69a67154ba69f046.tar.gz
Fix for last commit on adding reset_name to module_to_load
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_bootstrap.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index cd6a263911..d4d2f91c39 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -529,10 +529,13 @@ class _ModuleManager:
del sys.modules[self._name]
-def module_to_load(name):
- """Return a context manager which provides the module object to load."""
+def module_to_load(name, *, reset_name=True):
+ """Return a context manager which provides the module object to load.
+
+ If reset_name is true, reset the module's __name__ to 'name'.
+ """
# Hiding _ModuleManager behind a function for better naming.
- return _ModuleManager(name)
+ return _ModuleManager(name, reset_name=reset_name)
def set_package(fxn):