diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index 8c2d37a561729c..792c8e0499e24d 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -22,19 +22,6 @@ ] -def __getattr__(name): - """ - For backwards compatibility, continue to make names - from _resources_abc available through this module. #93963 - """ - if name in _resources_abc.__all__: - obj = getattr(_resources_abc, name) - warnings._deprecated(f"{__name__}.{name}", remove=(3, 14)) - globals()[name] = obj - return obj - raise AttributeError(f'module {__name__!r} has no attribute {name!r}') - - def _register(abstract_cls, *classes): for cls in classes: abstract_cls.register(cls)