From 2f92389d5c477cb15a0b70e22f11e835eb077224 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 21 Apr 2012 18:55:51 -0400 Subject: Don't worry about moving imp.get_tag() over to Lib/imp.py. --- Lib/imp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/imp.py') diff --git a/Lib/imp.py b/Lib/imp.py index dbec8d323c..67d85cbc42 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, -- cgit v1.2.1