Home
last modified time | relevance | path

Searched refs:BufferedIOBase (Results 1 – 25 of 36) sorted by relevance

12

/third_party/python/Lib/
Dio.py93 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
103 BufferedIOBase.register(klass)
Dsocketserver.py131 from io import BufferedIOBase
814 class _SocketWriter(BufferedIOBase):
D_compression.py9 class BaseStream(io.BufferedIOBase):
D_pyio.py698 class BufferedIOBase(IOBase): class
801 io.BufferedIOBase.register(BufferedIOBase)
804 class _BufferedIOMixin(BufferedIOBase):
911 class BytesIO(BufferedIOBase):
1353 class BufferedRWPair(BufferedIOBase):
Dzipfile.py776 class ZipExtFile(io.BufferedIOBase):
880 return io.BufferedIOBase.readline(self, limit)
1105 class _ZipWriteFile(io.BufferedIOBase):
/third_party/python/Doc/library/
Dio.rst90 :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 …]
Dgzip.rst114 :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
Dbz2.rst90 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
128 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dsocketserver.rst435 :class:`io.BufferedIOBase` readable interface, and
437 :class:`io.BufferedIOBase` writable interface.
441 :class:`io.BufferedIOBase` writable interface.
Dlzma.rst103 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
123 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dhttp.server.rst119 An :class:`io.BufferedIOBase` input stream, ready to read from
130 This is an :class:`io.BufferedIOBase` stream.
Dhttp.client.rst133 request/response. The file has to be a :class:`BufferedIOBase` reader
456 The :class:`io.BufferedIOBase` interface is now implemented and
Dzipfile.rst265 :meth:`~io.BufferedIOBase.read`, :meth:`~io.IOBase.readline`,
271 :meth:`~io.BufferedIOBase.write` method. While a writable file handle is open,
Dwsgiref.rst522 The :meth:`~io.BufferedIOBase.write` method of *stdout* should write
523 each chunk in full, like :class:`io.BufferedIOBase`.
Dtkinter.rst956 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/
Dtest_winconsoleio.py21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
Dtest_io.py471 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 …]
Dtest_socketserver.py409 self.assertIsInstance(server.wfile, io.BufferedIOBase)
Dtest_subprocess.py118 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/
DElementTree.py781 if isinstance(file_or_filename, io.BufferedIOBase):
791 file = io.BufferedIOBase()
1116 class _ListDataStream(io.BufferedIOBase):
/third_party/python/Lib/xml/sax/
Dsaxutils.py97 buffer = io.BufferedIOBase()
/third_party/python/Doc/c-api/
Dbuffer.rst45 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/
D3.6.0a3.rst90 BufferedIOBase. In particular, the write() method no longer does partial
/third_party/python/Lib/http/
Dclient.py239 class HTTPResponse(io.BufferedIOBase):
/third_party/python/Doc/whatsnew/
D3.5.rst1328 A new :meth:`BufferedIOBase.readinto1() <io.BufferedIOBase.readinto1>`

12