xref: /aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/importlib/readers.py (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
1*cda5da8dSAndroid Build Coastguard Worker"""
2*cda5da8dSAndroid Build Coastguard WorkerCompatibility shim for .resources.readers as found on Python 3.10.
3*cda5da8dSAndroid Build Coastguard Worker
4*cda5da8dSAndroid Build Coastguard WorkerConsumers that can rely on Python 3.11 should use the other
5*cda5da8dSAndroid Build Coastguard Workermodule directly.
6*cda5da8dSAndroid Build Coastguard Worker"""
7*cda5da8dSAndroid Build Coastguard Worker
8*cda5da8dSAndroid Build Coastguard Workerfrom .resources.readers import (
9*cda5da8dSAndroid Build Coastguard Worker    FileReader, ZipReader, MultiplexedPath, NamespaceReader,
10*cda5da8dSAndroid Build Coastguard Worker)
11*cda5da8dSAndroid Build Coastguard Worker
12*cda5da8dSAndroid Build Coastguard Worker__all__ = ['FileReader', 'ZipReader', 'MultiplexedPath', 'NamespaceReader']
13