simple.py 354 B

1234567891011121314
  1. """
  2. Compatibility shim for .resources.simple as found on Python 3.10.
  3. Consumers that can rely on Python 3.11 should use the other
  4. module directly.
  5. """
  6. from .resources.simple import (
  7. SimpleReader, ResourceHandle, ResourceContainer, TraversableReader,
  8. )
  9. __all__ = [
  10. 'SimpleReader', 'ResourceHandle', 'ResourceContainer', 'TraversableReader',
  11. ]