Searched refs:BinaryIO (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | resources.py | 13 from typing.io import BinaryIO, TextIO 85 def open_binary(package: Package, resource: Resource) -> BinaryIO:
|
/external/python/cpython3/Lib/ |
D | typing.py | 1545 class BinaryIO(IO[bytes]): class 1565 def buffer(self) -> BinaryIO: 1595 BinaryIO = BinaryIO variable in io
|
/external/python/cpython3/Lib/test/ |
D | test_typing.py | 22 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/ |
D | typing.rst | 799 BinaryIO 802 and ``BinaryIO(IO[bytes])``
|
D | importlib.rst | 861 ``typing.BinaryIO`` instance, a binary I/O stream open for reading.
|