Home
last modified time | relevance | path

Searched refs:Traversable (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/test/test_importlib/
Dtest_files.py5 from importlib.abc import Traversable
26 assert isinstance(resources.files(self.data), Traversable)
/third_party/python/Lib/importlib/
D_adapters.py37 class Path(abc.Traversable):
D_common.py10 from .abc import ResourceReader, Traversable
Dreaders.py49 class MultiplexedPath(abc.Traversable):
Dabc.py355 class Traversable(Protocol): class
/third_party/python/Doc/library/
Dimportlib.rst811 .. class:: Traversable
824 Yield Traversable objects in self.
836 Return Traversable child in self.
840 Return Traversable child in self.
934 Returns an :class:`importlib.resources.abc.Traversable` object
936 and its resources (think files). A Traversable may contain other
946 Given a :class:`importlib.resources.abc.Traversable` object representing
954 Use ``as_file`` when the Traversable methods
/third_party/python/Misc/NEWS.d/
D3.10.1.rst956 Add protocol description to the :class:`importlib.abc.Traversable`