Kaydet (Commit) 53e600c2 authored tarafından Brett Cannon's avatar Brett Cannon

Issue #17177: update checkpyc to stop using imp

üst ca5ff3a0
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
import sys import sys
import os import os
from stat import ST_MTIME from stat import ST_MTIME
import imp import importlib.util
# PEP 3147 compatibility (PYC Repository Directories) # PEP 3147 compatibility (PYC Repository Directories)
cache_from_source = (imp.cache_from_source if hasattr(imp, 'get_tag') else cache_from_source = (importlib.util.cache_from_source if sys.implementation.cache_tag
lambda path: path + 'c') else lambda path: path + 'c')
def main(): def main():
...@@ -18,7 +18,7 @@ def main(): ...@@ -18,7 +18,7 @@ def main():
silent = (sys.argv[1] == '-s') silent = (sys.argv[1] == '-s')
else: else:
verbose = silent = False verbose = silent = False
MAGIC = imp.get_magic() MAGIC = importlib.util.MAGIC_NUMBER
if not silent: if not silent:
print('Using MAGIC word', repr(MAGIC)) print('Using MAGIC word', repr(MAGIC))
for dirname in sys.path: for dirname in sys.path:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment