summaryrefslogtreecommitdiffstats
path: root/Lib/imp.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-07-02 19:13:11 (GMT)
committerBrett Cannon <brett@python.org>2012-07-02 19:13:11 (GMT)
commit98979b85e7fa164b365635b99b83d91f30773850 (patch)
tree71a1350c1fa9c1129c4872401e925bb4b5a38c25 /Lib/imp.py
parent8e2f5564b3cce162aa1427dcd26092f24f418418 (diff)
downloadcpython-98979b85e7fa164b365635b99b83d91f30773850.zip
cpython-98979b85e7fa164b365635b99b83d91f30773850.tar.gz
cpython-98979b85e7fa164b365635b99b83d91f30773850.tar.bz2
Issue #15166: Re-implement imp.get_tag() using sys.implementation.
Also eliminates some C code in Python/import.c as well. Patch by Eric Snow with verification by comparing against another patch from Jeff Knupp.
Diffstat (limited to 'Lib/imp.py')
-rw-r--r--Lib/imp.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/imp.py b/Lib/imp.py
index 8c89237..fcfd3d3 100644
--- a/Lib/imp.py
+++ b/Lib/imp.py
@@ -11,7 +11,7 @@ from _imp import (lock_held, acquire_lock, release_lock,
init_builtin, init_frozen, is_builtin, is_frozen,
_fix_co_filename, extension_suffixes)
# Could move out of _imp, but not worth the code
-from _imp import get_magic, get_tag
+from _imp import get_magic
from importlib._bootstrap import new_module
from importlib._bootstrap import cache_from_source
@@ -37,6 +37,11 @@ PY_CODERESOURCE = 8
IMP_HOOK = 9
+def get_tag():
+ """Return the magic tag for .pyc or .pyo files."""
+ return sys.implementation.cache_tag
+
+
def get_suffixes():
warnings.warn('imp.get_suffixes() is deprecated; use the constants '
'defined on importlib.machinery instead',