summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/importlib/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/importlib/__init__.py b/Lib/importlib/__init__.py
index 7688ec2..2f93621 100644
--- a/Lib/importlib/__init__.py
+++ b/Lib/importlib/__init__.py
@@ -18,13 +18,15 @@ References on import:
http://www.python.org/dev/peps/pep-0328
"""
+__all__ = ['__import__', 'import_module']
+
from . import _bootstrap
-# XXX Temporary functions that should eventually be removed.
import os
import re
import tokenize
+# XXX Temporary functions that should eventually be removed.
def _set__import__():
"""Set __import__ to an instance of Import."""
global original__import__