diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-03-12 22:47:53 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-03-12 22:47:53 +0000 |
commit | f87e04d3398091662c399ee5ba0a3e71dbae9a24 (patch) | |
tree | 2a9ce4a139f28c35e84f1d28d173b35f9cd18c77 /Lib/importlib/__init__.py | |
parent | e9103d261990934a5e318b970b98e20035e5f8e6 (diff) | |
download | cpython-git-f87e04d3398091662c399ee5ba0a3e71dbae9a24.tar.gz |
Finish properly hiding importlib implementation code.
Diffstat (limited to 'Lib/importlib/__init__.py')
-rw-r--r-- | Lib/importlib/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/importlib/__init__.py b/Lib/importlib/__init__.py index 2f93621bed..7474350f88 100644 --- a/Lib/importlib/__init__.py +++ b/Lib/importlib/__init__.py @@ -136,7 +136,3 @@ def import_module(name, package=None): break level += 1 return _bootstrap._gcd_import(name[level:], package, level) - - -# XXX This should go away once the public API is done. -from ._bootstrap import * |