Home
last modified time | relevance | path

Searched refs:BufferedIOBase (Results 1 - 13 of 13) sorted by relevance

/third_party/python/Lib/
H A Dio.py13 BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its
21 interface to a buffered raw stream (`BufferedIOBase`). Finally, StringIO
45 "FileIO", "BytesIO", "StringIO", "BufferedIOBase",
93 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
103 BufferedIOBase.register(klass)
H A D_compression.py9 class BaseStream(io.BufferedIOBase):
H A Dsocketserver.py131 from io import BufferedIOBase namespace
822 class _SocketWriter(BufferedIOBase):
823 """Simple writable BufferedIOBase implementation for a socket
H A D_pyio.py689 class BufferedIOBase(IOBase): class
792 io.BufferedIOBase.register(BufferedIOBase)
795 class _BufferedIOMixin(BufferedIOBase):
797 """A mixin implementation of BufferedIOBase with an underlying raw stream.
902 class BytesIO(BufferedIOBase):
1344 class BufferedRWPair(BufferedIOBase):
1988 r"""Character and line based layer over a BufferedIOBase object, buffer.
H A Dzipfile.py809 class ZipExtFile(io.BufferedIOBase):
913 return io.BufferedIOBase.readline(self, limit)
1138 class _ZipWriteFile(io.BufferedIOBase):
/third_party/python/Lib/test/
H A Dtest_winconsoleio.py21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
H A Dtest_io.py468 writable = self.BufferedIOBase.writable
469 write = self.BufferedIOBase.write
474 readable = self.BufferedIOBase.readable
475 read = self.BufferedIOBase.read
494 elif isinstance(obj, (self.BufferedIOBase, self.RawIOBase)):
710 self._check_base_destructor(self.BufferedIOBase)
922 # Test the implementation provided by BufferedIOBase
923 class Stream(self.BufferedIOBase):
971 # Exercise the default BufferedIOBase.readinto() and readinto1()
973 class Reader(self.BufferedIOBase)
[all...]
H A Dtest_socketserver.py411 self.assertIsInstance(server.wfile, io.BufferedIOBase)
H A Dtest_subprocess.py122 self.assertIsInstance(p.stdin, io.BufferedIOBase)
123 self.assertIsInstance(p.stdout, io.BufferedIOBase)
124 self.assertIsInstance(p.stderr, io.BufferedIOBase)
H A Dtest_pathlib.py1575 self.assertIsInstance(f, io.BufferedIOBase)
/third_party/python/Lib/xml/sax/
H A Dsaxutils.py97 buffer = io.BufferedIOBase()
/third_party/python/Lib/xml/etree/
H A DElementTree.py774 if isinstance(file_or_filename, io.BufferedIOBase):
784 file = io.BufferedIOBase()
1105 class _ListDataStream(io.BufferedIOBase):
/third_party/python/Lib/http/
H A Dclient.py239 class HTTPResponse(io.BufferedIOBase):

Completed in 25 milliseconds