Home
last modified time | relevance | path

Searched refs:BufferedRWPair (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Lib/
Dio.py56 BufferedWriter, BufferedRWPair, BufferedRandom,
85 BufferedRWPair):
D_pyio.py1158 class BufferedRWPair(BufferedIOBase): class
/external/python/cpython3/Lib/
Dio.py56 BufferedWriter, BufferedRWPair, BufferedRandom,
87 BufferedRWPair):
Dsocket.py332 buffer = io.BufferedRWPair(raw, raw, buffering)
D_pyio.py1329 class BufferedRWPair(BufferedIOBase): class
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a3.rst132 The reader in BufferedRWPair now is closed even when closing writer failed
133 in BufferedRWPair.close().
D3.5.0a1.rst2021 When an io.BufferedRWPair object is deallocated, clear its weakrefs.
/external/python/cpython2/Doc/library/
Dio.rst41 :class:`BufferedReader`, and :class:`BufferedRWPair` buffer streams that are
655 .. class:: BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE)
668 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
674 :class:`BufferedRWPair` does not attempt to synchronize accesses to
916 :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
926 :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
/external/python/cpython3/Doc/library/
Dio.rst201 :class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair`
759 .. class:: BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE)
769 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
775 :class:`BufferedRWPair` does not attempt to synchronize accesses to
1057 :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
1067 :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
/external/python/cpython2/Misc/NEWS.d/
D2.7.10rc1.rst240 The reader in BufferedRWPair now is closed even when closing writer failed
241 in BufferedRWPair.close().
D2.7.9rc1.rst381 When an io.BufferedRWPair object is deallocated, clear its weakrefs.
D2.7.7rc1.rst348 Fixed a crash when use non-initialized io.BufferedRWPair. Based on patch by
D2.7.3rc1.rst1424 finalized after the reference to its underlying BufferedRWPair's writer got
D2.7a1.rst4396 io.BufferedRWPair's closed property now functions properly.
/external/llvm-project/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/
Dptyprocess.py162 self.fileobj = io.BufferedRWPair(readf, writef)
/external/python/cpython3/Lib/test/
Dtest_io.py456 return self.BufferedRWPair(self.MockUnseekableIO(),
725 check(self.BufferedRWPair(self.MockRawIO(), self.MockRawIO()))
2148 tp = io.BufferedRWPair
2151 tp = pyio.BufferedRWPair
3736 b1 = self.BufferedRWPair(self.MockRawIO(), self.MockRawIO())
3738 b2 = self.BufferedRWPair(self.MockRawIO(), self.MockRawIO())
Dtest_nntplib.py410 file = io.BufferedRWPair(sio, sio)
/external/python/cpython2/Lib/test/
Dtest_io.py1620 tp = io.BufferedRWPair
1623 tp = pyio.BufferedRWPair
2801 b1 = self.BufferedRWPair(self.MockRawIO(), self.MockRawIO())
2803 b2 = self.BufferedRWPair(self.MockRawIO(), self.MockRawIO())
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1063 :class:`BufferedRWPair` is for objects such as TTYs that have both
/external/python/cpython3/Doc/whatsnew/
D2.6.rst1067 :class:`BufferedRWPair` is for objects such as TTYs that have both
/external/python/cpython3/Misc/
DHISTORY622 - Issue #21802: The reader in BufferedRWPair now is closed even when closing
623 writer failed in BufferedRWPair.close().
1228 - Issue #22517: When a io.BufferedRWPair object is deallocated, clear its
6942 BufferedRWPair, from the io module.
10246 would be finalized after the reference to its underlying BufferedRWPair's
15025 - Issue #5734: BufferedRWPair was poorly tested and had several glaring
15177 - The max_buffer_size arguments of io.BufferedWriter, io.BufferedRWPair, and