Searched refs:BufferedIOBase (Results 1 – 25 of 36) sorted by relevance
12
/third_party/python/Lib/ |
D | io.py | 93 class BufferedIOBase(_io._BufferedIOBase, IOBase): class 103 BufferedIOBase.register(klass)
|
D | socketserver.py | 131 from io import BufferedIOBase 814 class _SocketWriter(BufferedIOBase):
|
D | _compression.py | 9 class BaseStream(io.BufferedIOBase):
|
D | _pyio.py | 698 class BufferedIOBase(IOBase): class 801 io.BufferedIOBase.register(BufferedIOBase) 804 class _BufferedIOMixin(BufferedIOBase): 911 class BytesIO(BufferedIOBase): 1353 class BufferedRWPair(BufferedIOBase):
|
D | zipfile.py | 776 class ZipExtFile(io.BufferedIOBase): 880 return io.BufferedIOBase.readline(self, limit) 1105 class _ZipWriteFile(io.BufferedIOBase):
|
/third_party/python/Doc/library/ |
D | io.rst | 90 :class:`BufferedIOBase`. 253 example, :class:`BufferedIOBase` provides unoptimized implementations of 265 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with 270 Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of 276 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally, 296 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` … 515 .. class:: BufferedIOBase 533 A typical :class:`BufferedIOBase` implementation should not inherit from a 537 :class:`BufferedIOBase` provides or overrides these data attributes and 543 :class:`BufferedIOBase` deals with. This is not part of the [all …]
|
D | gzip.rst | 114 :class:`GzipFile` supports the :class:`io.BufferedIOBase` interface, 154 The :meth:`io.BufferedIOBase.read1` method is now implemented. 162 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
|
D | bz2.rst | 90 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`. 128 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
|
D | socketserver.rst | 435 :class:`io.BufferedIOBase` readable interface, and 437 :class:`io.BufferedIOBase` writable interface. 441 :class:`io.BufferedIOBase` writable interface.
|
D | lzma.rst | 103 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`. 123 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
|
D | http.server.rst | 119 An :class:`io.BufferedIOBase` input stream, ready to read from 130 This is an :class:`io.BufferedIOBase` stream.
|
D | http.client.rst | 133 request/response. The file has to be a :class:`BufferedIOBase` reader 456 The :class:`io.BufferedIOBase` interface is now implemented and
|
D | zipfile.rst | 265 :meth:`~io.BufferedIOBase.read`, :meth:`~io.IOBase.readline`, 271 :meth:`~io.BufferedIOBase.write` method. While a writable file handle is open,
|
D | wsgiref.rst | 522 The :meth:`~io.BufferedIOBase.write` method of *stdout* should write 523 each chunk in full, like :class:`io.BufferedIOBase`.
|
D | tkinter.rst | 956 want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` 957 :meth:`~io.BufferedIOBase.read` or :meth:`~io.IOBase.readline` methods,
|
/third_party/python/Lib/test/ |
D | test_winconsoleio.py | 21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
|
D | test_io.py | 471 writable = self.BufferedIOBase.writable 472 write = self.BufferedIOBase.write 477 readable = self.BufferedIOBase.readable 478 read = self.BufferedIOBase.read 497 elif isinstance(obj, (self.BufferedIOBase, self.RawIOBase)): 713 self._check_base_destructor(self.BufferedIOBase) 918 class Stream(self.BufferedIOBase): 968 class Reader(self.BufferedIOBase): 4061 self.assertIsInstance(self.BufferedIOBase, abc.ABCMeta) 4068 self.assertNotIsInstance(f, abcmodule.BufferedIOBase) [all …]
|
D | test_socketserver.py | 409 self.assertIsInstance(server.wfile, io.BufferedIOBase)
|
D | test_subprocess.py | 118 self.assertIsInstance(p.stdin, io.BufferedIOBase) 119 self.assertIsInstance(p.stdout, io.BufferedIOBase) 120 self.assertIsInstance(p.stderr, io.BufferedIOBase)
|
/third_party/python/Lib/xml/etree/ |
D | ElementTree.py | 781 if isinstance(file_or_filename, io.BufferedIOBase): 791 file = io.BufferedIOBase() 1116 class _ListDataStream(io.BufferedIOBase):
|
/third_party/python/Lib/xml/sax/ |
D | saxutils.py | 97 buffer = io.BufferedIOBase()
|
/third_party/python/Doc/c-api/ |
D | buffer.rst | 45 An example consumer of the buffer interface is the :meth:`~io.BufferedIOBase.write` 49 other methods such as :meth:`~io.BufferedIOBase.readinto` need write access
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a3.rst | 90 BufferedIOBase. In particular, the write() method no longer does partial
|
/third_party/python/Lib/http/ |
D | client.py | 239 class HTTPResponse(io.BufferedIOBase):
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1328 A new :meth:`BufferedIOBase.readinto1() <io.BufferedIOBase.readinto1>`
|
12