https://github.com/python/cpython
Raw File
Tip revision: e6c0efa25a47488f400093fc556c03e83567aed8 authored by Thomas Wouters on 06 June 2023, 14:12:06 UTC
Python 3.12.0b2
Tip revision: e6c0efa
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