mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Issue #13959: Deprecate imp.get_suffixes() for new attributes on
importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense.
This commit is contained in:
parent
810c64df8f
commit
cb66eb0dec
17 changed files with 160 additions and 69 deletions
|
@ -9,7 +9,6 @@ from .source import util as source_util
|
|||
import decimal
|
||||
import imp
|
||||
import importlib
|
||||
import importlib._bootstrap
|
||||
import importlib.machinery
|
||||
import json
|
||||
import os
|
||||
|
@ -72,7 +71,7 @@ def source_wo_bytecode(seconds, repeat):
|
|||
assert not os.path.exists(imp.cache_from_source(mapping[name]))
|
||||
sys.meta_path.append(importlib.machinery.PathFinder)
|
||||
loader = (importlib.machinery.SourceFileLoader,
|
||||
importlib._bootstrap._SOURCE_SUFFIXES, True)
|
||||
importlib.machinery.SOURCE_SUFFIXES, True)
|
||||
sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
|
||||
for result in bench(name, lambda: sys.modules.pop(name), repeat=repeat,
|
||||
seconds=seconds):
|
||||
|
@ -110,7 +109,7 @@ def source_writing_bytecode(seconds, repeat):
|
|||
with source_util.create_modules(name) as mapping:
|
||||
sys.meta_path.append(importlib.machinery.PathFinder)
|
||||
loader = (importlib.machinery.SourceFileLoader,
|
||||
importlib._bootstrap._SOURCE_SUFFIXES, True)
|
||||
importlib.machinery.SOURCE_SUFFIXES, True)
|
||||
sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
|
||||
def cleanup():
|
||||
sys.modules.pop(name)
|
||||
|
@ -145,7 +144,7 @@ def source_using_bytecode(seconds, repeat):
|
|||
with source_util.create_modules(name) as mapping:
|
||||
sys.meta_path.append(importlib.machinery.PathFinder)
|
||||
loader = (importlib.machinery.SourceFileLoader,
|
||||
importlib._bootstrap._SOURCE_SUFFIXES, True)
|
||||
importlib.machinery.SOURCE_SUFFIXES, True)
|
||||
sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
|
||||
py_compile.compile(mapping[name])
|
||||
assert os.path.exists(imp.cache_from_source(mapping[name]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue