diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-03-04 16:07:00 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-03-04 16:07:00 (GMT) |
commit | 435aad878c50ecac3c43e3b528bab29b698e5ba9 (patch) | |
tree | 42e08210e67d3016fb46cd3c2e27fd82a195276a /Lib/importlib/_bootstrap.py | |
parent | 1fcadcef408d788b1896ea3d9b4308c1f4c64d12 (diff) | |
download | cpython-435aad878c50ecac3c43e3b528bab29b698e5ba9.zip cpython-435aad878c50ecac3c43e3b528bab29b698e5ba9.tar.gz cpython-435aad878c50ecac3c43e3b528bab29b698e5ba9.tar.bz2 |
Rename importlib.util.set___package__ to set_package.
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index a2a29cc..4c13c7a 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -97,7 +97,7 @@ def wrap(new, old): new.__dict__.update(old.__dict__) -def set___package__(fxn): +def set_package(fxn): """Set __package__ on the returned module.""" def wrapper(*args, **kwargs): module = fxn(*args, **kwargs) @@ -131,7 +131,7 @@ class BuiltinImporter: return cls if imp.is_builtin(fullname) else None @classmethod - @set___package__ + @set_package def load_module(cls, fullname): """Load a built-in module.""" if fullname not in sys.builtin_module_names: @@ -160,7 +160,7 @@ class FrozenImporter: return cls if imp.is_frozen(fullname) else None @classmethod - @set___package__ + @set_package def load_module(cls, fullname): """Load a frozen module.""" if cls.find_module(fullname) is None: @@ -248,7 +248,7 @@ class _ExtensionFileLoader: raise ValueError("extension modules cannot be packages") @check_name - @set___package__ + @set_package def load_module(self, fullname): """Load an extension module.""" is_reload = fullname in sys.modules |