You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
354 B
14 lines
354 B
"""
|
|
Compatibility shim for .resources.simple as found on Python 3.10.
|
|
|
|
Consumers that can rely on Python 3.11 should use the other
|
|
module directly.
|
|
"""
|
|
|
|
from .resources.simple import (
|
|
SimpleReader, ResourceHandle, ResourceContainer, TraversableReader,
|
|
)
|
|
|
|
__all__ = [
|
|
'SimpleReader', 'ResourceHandle', 'ResourceContainer', 'TraversableReader',
|
|
]
|
|
|