xref: /aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/importlib/simple.py (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
1"""
2Compatibility shim for .resources.simple as found on Python 3.10.
3
4Consumers that can rely on Python 3.11 should use the other
5module directly.
6"""
7
8from .resources.simple import (
9    SimpleReader, ResourceHandle, ResourceContainer, TraversableReader,
10)
11
12__all__ = [
13    'SimpleReader', 'ResourceHandle', 'ResourceContainer', 'TraversableReader',
14]
15