Home
last modified time | relevance | path

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

/third_party/python/Lib/importlib/
Dresources.py15 from typing.io import BinaryIO, TextIO
40 def open_binary(package: Package, resource: Resource) -> BinaryIO:
Dabc.py17 from typing import BinaryIO, Iterable, Text
316 def open_resource(self, resource: Text) -> BinaryIO:
/third_party/jinja2/
Dbccache.py63 def load_bytecode(self, f: t.BinaryIO) -> None: argument
Dext.py764 fileobj: t.BinaryIO, argument
/third_party/python/Lib/
Dtyping.py2581 class BinaryIO(IO[bytes]): class
2602 def buffer(self) -> BinaryIO:
2636 BinaryIO = BinaryIO variable in io
/third_party/python/Misc/NEWS.d/
D3.10.0b2.rst291 Add ``IO``, ``BinaryIO``, ``TextIO``, ``Match``, and ``Pattern`` to
/third_party/python/Lib/test/
Dtest_typing.py24 from typing import IO, TextIO, BinaryIO
4331 def stuff(a: BinaryIO) -> bytes: argument
4338 from typing.io import IO, TextIO, BinaryIO, __all__, __name__
4341 self.assertIs(BinaryIO, typing.BinaryIO)
/third_party/python/Doc/library/
Dtyping.rst1537 BinaryIO
1540 and ``BinaryIO(IO[bytes])``
Dimportlib.rst968 ``typing.BinaryIO`` instance, a binary I/O stream open for reading.