Home
last modified time | relevance | path

Searched refs:BinaryIO (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/importlib/
Dresources.py13 from typing.io import BinaryIO, TextIO
85 def open_binary(package: Package, resource: Resource) -> BinaryIO:
/external/python/cpython3/Lib/
Dtyping.py1545 class BinaryIO(IO[bytes]): class
1565 def buffer(self) -> BinaryIO:
1595 BinaryIO = BinaryIO variable in io
/external/python/cpython3/Lib/test/
Dtest_typing.py22 from typing import IO, TextIO, BinaryIO
2569 def stuff(a: BinaryIO) -> bytes: argument
2576 from typing.io import IO, TextIO, BinaryIO, __all__, __name__
2579 self.assertIs(BinaryIO, typing.BinaryIO)
/external/python/cpython3/Doc/library/
Dtyping.rst799 BinaryIO
802 and ``BinaryIO(IO[bytes])``
Dimportlib.rst861 ``typing.BinaryIO`` instance, a binary I/O stream open for reading.