https://github.com/python/cpython
Raw File
Tip revision: 03a24a9b2181eb226b2e237916a2564b33c44a58 authored by dependabot[bot] on 01 April 2024, 09:46:03 UTC
build(deps): bump hypothesis from 6.98.15 to 6.100.0 in /Tools
Tip revision: 03a24a9
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