https://github.com/python/cpython
Raw File
Tip revision: 076d169ebbe59f7035eaa28d33d517bcb375f342 authored by Thomas Wouters on 12 March 2024, 17:34:05 UTC
Python 3.13.0a5
Tip revision: 076d169
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