Home
last modified time | relevance | path

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

12

/external/python/cpython2/Lib/
Dio.py76 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
86 BufferedIOBase.register(klass)
D_pyio.py601 class BufferedIOBase(IOBase): class
683 io.BufferedIOBase.register(BufferedIOBase)
686 class _BufferedIOMixin(BufferedIOBase):
792 class BytesIO(BufferedIOBase):
1158 class BufferedRWPair(BufferedIOBase):
Dgzip.py36 class GzipFile(io.BufferedIOBase):
Dzipfile.py501 class ZipExtFile(io.BufferedIOBase):
570 return io.BufferedIOBase.readline(self, limit)
/external/python/cpython3/Lib/
Dio.py78 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
88 BufferedIOBase.register(klass)
Dsocketserver.py131 from io import BufferedIOBase
787 class _SocketWriter(BufferedIOBase):
D_compression.py9 class BaseStream(io.BufferedIOBase):
D_pyio.py623 class BufferedIOBase(IOBase): class
726 io.BufferedIOBase.register(BufferedIOBase)
729 class _BufferedIOMixin(BufferedIOBase):
834 class BytesIO(BufferedIOBase):
1271 class BufferedRWPair(BufferedIOBase):
Dzipfile.py773 class ZipExtFile(io.BufferedIOBase):
858 return io.BufferedIOBase.readline(self, limit)
1071 class _ZipWriteFile(io.BufferedIOBase):
/external/python/cpython3/Doc/library/
Dio.rst90 :class:`BufferedIOBase`.
165 example, :class:`BufferedIOBase` provides unoptimized implementations of
177 The :class:`BufferedIOBase` ABC deals with buffering on a raw byte stream
182 :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory
188 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
208 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
424 .. class:: BufferedIOBase
442 A typical :class:`BufferedIOBase` implementation should not inherit from a
446 :class:`BufferedIOBase` provides or overrides these methods and attribute in
452 :class:`BufferedIOBase` deals with. This is not part of the
[all …]
Dgzip.rst105 :class:`GzipFile` supports the :class:`io.BufferedIOBase` interface,
145 The :meth:`io.BufferedIOBase.read1` method is now implemented.
153 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dbz2.rst94 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
131 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dsocketserver.rst433 :class:`io.BufferedIOBase` readable interface, and
435 :class:`io.BufferedIOBase` writable interface.
439 :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.rst116 An :class:`io.BufferedIOBase` input stream, ready to read from
127 This is an :class:`io.BufferedIOBase` stream.
/external/python/cpython2/Doc/library/
Dio.rst39 :class:`BufferedIOBase` deals with buffering on a raw byte stream
50 (:class:`BufferedIOBase`). Finally, :class:`~io.StringIO` is an in-memory
175 :class:`BufferedIOBase`. The exact class varies: in read binary mode, it
411 .. class:: BufferedIOBase
429 A typical :class:`BufferedIOBase` implementation should not inherit from a
433 :class:`BufferedIOBase` provides or overrides these methods and attribute in
439 :class:`BufferedIOBase` deals with. This is not part of the
440 :class:`BufferedIOBase` API and may not exist on some implementations.
474 are implementing your own buffering on top of a :class:`BufferedIOBase`
553 :class:`BufferedIOBase`.
[all …]
/external/python/cpython2/Lib/xml/sax/
Dsaxutils.py83 buffer = io.BufferedIOBase(out)
90 buffer = io.BufferedIOBase()
/external/fonttools/Lib/fontTools/misc/
Detree.py286 if isinstance(file_or_filename, io.BufferedIOBase):
294 buf = io.BufferedIOBase()
/external/python/cpython3/Lib/test/
Dtest_winconsoleio.py21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
Dtest_io.py450 writable = self.BufferedIOBase.writable
451 write = self.BufferedIOBase.write
456 readable = self.BufferedIOBase.readable
457 read = self.BufferedIOBase.read
476 elif isinstance(obj, (self.BufferedIOBase, self.RawIOBase)):
692 self._check_base_destructor(self.BufferedIOBase)
891 class Stream(self.BufferedIOBase):
941 class Reader(self.BufferedIOBase):
3897 self.assertIsInstance(self.BufferedIOBase, abc.ABCMeta)
3904 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
[all …]
Dtest_socketserver.py400 self.assertIsInstance(server.wfile, io.BufferedIOBase)
/external/python/cpython3/Lib/xml/etree/
DElementTree.py809 if isinstance(file_or_filename, io.BufferedIOBase):
819 file = io.BufferedIOBase()
1139 class _ListDataStream(io.BufferedIOBase):
/external/python/cpython3/Lib/xml/sax/
Dsaxutils.py98 buffer = io.BufferedIOBase()
/external/python/cpython2/Misc/NEWS.d/
D2.7a2.rst198 implement the ``io.BufferedIOBase`` ABC to allow for further speedups by
/external/python/cpython2/Lib/test/
Dtest_io.py524 self._check_base_destructor(self.BufferedIOBase)
685 class Stream(self.BufferedIOBase):
3044 self.assertIsInstance(self.BufferedIOBase, abc.ABCMeta)
3051 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
3056 self.assertIsInstance(f, abcmodule.BufferedIOBase)
3061 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)

12