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