(root)/
Python-3.11.7/
Lib/
importlib/
readers.py
       1  """
       2  Compatibility shim for .resources.readers 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.readers import (
       9      FileReader, ZipReader, MultiplexedPath, NamespaceReader,
      10  )
      11  
      12  __all__ = ['FileReader', 'ZipReader', 'MultiplexedPath', 'NamespaceReader']