https://github.com/python/cpython
Raw File
Tip revision: f9774e57d84162ff0cba0b17a3dcdb93dfbce45e authored by Thomas Wouters on 07 March 2023, 21:41:50 UTC
Python 3.12.0a6
Tip revision: f9774e5
simple.py
"""
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',
]
back to top