We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 691a82a commit 17f614eCopy full SHA for 17f614e
Lib/importlib/abc.py
@@ -22,19 +22,6 @@
22
]
23
24
25
-def __getattr__(name):
26
- """
27
- For backwards compatibility, continue to make names
28
- from _resources_abc available through this module. #93963
29
30
- if name in _resources_abc.__all__:
31
- obj = getattr(_resources_abc, name)
32
- warnings._deprecated(f"{__name__}.{name}", remove=(3, 14))
33
- globals()[name] = obj
34
- return obj
35
- raise AttributeError(f'module {__name__!r} has no attribute {name!r}')
36
-
37
38
def _register(abstract_cls, *classes):
39
for cls in classes:
40
abstract_cls.register(cls)
0 commit comments