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