2021-07-30 01:05:05 +00:00
|
|
|
"""
|
2021-12-31 02:00:48 +00:00
|
|
|
Compatibility shim for .resources.simple as found on Python 3.10.
|
2021-07-30 01:05:05 +00:00
|
|
|
|
2021-12-31 02:00:48 +00:00
|
|
|
Consumers that can rely on Python 3.11 should use the other
|
|
|
|
module directly.
|
|
|
|
"""
|
2021-07-30 01:05:05 +00:00
|
|
|
|
2021-12-31 02:00:48 +00:00
|
|
|
from .resources.simple import (
|
|
|
|
SimpleReader, ResourceHandle, ResourceContainer, TraversableReader,
|
|
|
|
)
|
2021-07-30 01:05:05 +00:00
|
|
|
|
2021-12-31 02:00:48 +00:00
|
|
|
__all__ = [
|
|
|
|
'SimpleReader', 'ResourceHandle', 'ResourceContainer', 'TraversableReader',
|
|
|
|
]
|