summaryrefslogtreecommitdiffstats
path: root/Lib/imp.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-04-21 22:55:51 (GMT)
committerBrett Cannon <brett@python.org>2012-04-21 22:55:51 (GMT)
commit2f92389d5c477cb15a0b70e22f11e835eb077224 (patch)
tree9b56cf4aca979c0689d97d0f7710d547532d86a0 /Lib/imp.py
parentb582c923ba4b0833e840360994743b68e0dfe219 (diff)
downloadcpython-2f92389d5c477cb15a0b70e22f11e835eb077224.zip
cpython-2f92389d5c477cb15a0b70e22f11e835eb077224.tar.gz
cpython-2f92389d5c477cb15a0b70e22f11e835eb077224.tar.bz2
Don't worry about moving imp.get_tag() over to Lib/imp.py.
Diffstat (limited to 'Lib/imp.py')
-rw-r--r--Lib/imp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/imp.py b/Lib/imp.py
index dbec8d3..67d85cb 100644
--- a/Lib/imp.py
+++ b/Lib/imp.py
@@ -11,9 +11,9 @@ from _imp import (lock_held, acquire_lock, release_lock, reload,
init_builtin, init_frozen, is_builtin, is_frozen,
_fix_co_filename)
# Could move out of _imp, but not worth the code
-from _imp import get_magic
+from _imp import get_magic, get_tag
# Can (probably) move to importlib
-from _imp import (get_tag, get_suffixes)
+from _imp import get_suffixes
# Should be re-implemented here (and mostly deprecated)
from _imp import (find_module, NullImporter,
SEARCH_ERROR, PY_SOURCE, PY_COMPILED, C_EXTENSION,