/external/python/cpython3/Lib/ |
D | io.py | 75 class RawIOBase(_io._RawIOBase, IOBase): class 84 RawIOBase.register(FileIO) 99 RawIOBase.register(_WindowsConsoleIO)
|
D | socket.py | 546 class SocketIO(io.RawIOBase): 566 io.RawIOBase.__init__(self) 658 io.RawIOBase.close(self)
|
D | _compression.py | 33 class DecompressReader(io.RawIOBase):
|
D | _pyio.py | 557 class RawIOBase(IOBase): class 618 io.RawIOBase.register(RawIOBase) 620 RawIOBase.register(FileIO) 1418 class FileIO(RawIOBase):
|
/external/python/cpython2/Lib/ |
D | io.py | 73 class RawIOBase(_io._RawIOBase, IOBase): class 82 RawIOBase.register(FileIO)
|
D | _pyio.py | 536 class RawIOBase(IOBase): class 596 io.RawIOBase.register(RawIOBase) 598 RawIOBase.register(FileIO)
|
/external/python/cpython3/Doc/library/ |
D | io.rst | 106 The raw stream API is described in detail in the docs of :class:`RawIOBase`. 173 The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading 174 and writing of bytes to a stream. :class:`FileIO` subclasses :class:`RawIOBase` 178 (:class:`RawIOBase`). Its subclasses, :class:`BufferedWriter`, 206 :class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` … 238 :meth:`~RawIOBase.readinto`, a writable object such as :class:`bytearray` 373 .. class:: RawIOBase 383 :class:`RawIOBase` provides the following methods: 429 The main difference with :class:`RawIOBase` is that methods :meth:`read`, 436 enough data; unlike their :class:`RawIOBase` counterparts, they will [all …]
|
/external/python/cpython2/Doc/library/ |
D | io.rst | 34 Extending :class:`IOBase` is :class:`RawIOBase` which deals simply with the 36 :class:`RawIOBase` to provide an interface to files in the machine's 40 (:class:`RawIOBase`). Its subclasses, :class:`BufferedWriter`, 179 subclass of :class:`RawIOBase`, :class:`FileIO`, is returned. 230 In some cases, such as :meth:`~RawIOBase.readinto`, a writable object 361 .. class:: RawIOBase 371 RawIOBase provides the following methods: 416 The main difference with :class:`RawIOBase` is that methods :meth:`read`, 423 enough data; unlike their :class:`RawIOBase` counterparts, they will 430 :class:`RawIOBase` implementation, but wrap one, like [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 132 class CMockRawIOWithoutRead(MockRawIOWithoutRead, io.RawIOBase): 135 class PyMockRawIOWithoutRead(MockRawIOWithoutRead, pyio.RawIOBase): 149 class CMockRawIO(MockRawIO, io.RawIOBase): 152 class PyMockRawIO(MockRawIO, pyio.RawIOBase): 173 class CMisbehavedRawIO(MisbehavedRawIO, io.RawIOBase): 176 class PyMisbehavedRawIO(MisbehavedRawIO, pyio.RawIOBase): 189 class CSlowFlushRawIO(SlowFlushRawIO, io.RawIOBase): 192 class PySlowFlushRawIO(SlowFlushRawIO, pyio.RawIOBase): 204 class CCloseFailureIO(CloseFailureIO, io.RawIOBase): 207 class PyCloseFailureIO(CloseFailureIO, pyio.RawIOBase): [all …]
|
D | test_winconsoleio.py | 20 self.assertTrue(issubclass(ConIO, io.RawIOBase))
|
D | test_nntplib.py | 330 class _NNTPServerIO(io.RawIOBase): 336 io.RawIOBase.__init__(self)
|
D | test_subprocess.py | 112 self.assertIsInstance(p.stdin, io.RawIOBase) 113 self.assertIsInstance(p.stdout, io.RawIOBase) 114 self.assertIsInstance(p.stderr, io.RawIOBase)
|
/external/python/cpython2/Lib/test/ |
D | test_io.py | 122 class CMockRawIOWithoutRead(MockRawIOWithoutRead, io.RawIOBase): 125 class PyMockRawIOWithoutRead(MockRawIOWithoutRead, pyio.RawIOBase): 139 class CMockRawIO(MockRawIO, io.RawIOBase): 142 class PyMockRawIO(MockRawIO, pyio.RawIOBase): 163 class CMisbehavedRawIO(MisbehavedRawIO, io.RawIOBase): 166 class PyMisbehavedRawIO(MisbehavedRawIO, pyio.RawIOBase): 178 class CCloseFailureIO(CloseFailureIO, io.RawIOBase): 181 class PyCloseFailureIO(CloseFailureIO, pyio.RawIOBase): 252 class CMockNonBlockWriterIO(MockNonBlockWriterIO, io.RawIOBase): 255 class PyMockNonBlockWriterIO(MockNonBlockWriterIO, pyio.RawIOBase): [all …]
|
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/ |
D | protocol_socket.py | 259 class Serial(SocketSerial, io.RawIOBase):
|
D | protocol_loop.py | 250 class Serial(LoopbackSerial, io.RawIOBase):
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialjava.py | 239 class Serial(JavaSerial, io.RawIOBase):
|
D | serialcli.py | 252 class Serial(IronSerial, io.RawIOBase):
|
D | serialwin32.py | 443 class Serial(Win32Serial, io.RawIOBase):
|
D | serialposix.py | 652 class Serial(PosixSerial, io.RawIOBase):
|
/external/python/cpython3/Lib/xml/sax/ |
D | saxutils.py | 86 if isinstance(out, io.RawIOBase):
|
/external/fonttools/Lib/fontTools/misc/ |
D | etree.py | 288 elif isinstance(file_or_filename, io.RawIOBase):
|
/external/python/cpython2/Lib/xml/sax/ |
D | saxutils.py | 82 if isinstance(out, io.RawIOBase):
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 275 Add missing method stubs to _io.RawIOBase. Patch by Laura Rupprecht.
|
/external/python/cpython3/Lib/xml/etree/ |
D | ElementTree.py | 811 elif isinstance(file_or_filename, io.RawIOBase):
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_unix_events.py | 636 self.pipe = mock.Mock(spec_set=io.RawIOBase) 786 self.pipe = mock.Mock(spec_set=io.RawIOBase)
|