Home
last modified time | relevance | path

Searched refs:write_eof (Results 1 - 11 of 11) sorted by relevance

/third_party/python/Lib/asyncio/
H A Dtransports.py125 def write_eof(self): member in WriteTransport
135 """Return True if this transport supports write_eof(), False if not."""
H A Dproactor_events.py343 raise RuntimeError('write_eof() already called')
419 def write_eof(self): member in _ProactorBaseWritePipeTransport
599 def write_eof(self): member in _ProactorDuplexPipeTransport
621 def write_eof(self): member in _ProactorSocketTransport
H A Dstreams.py304 This exposes write(), writelines(), [can_]write_eof(),
337 def write_eof(self): member in StreamWriter
338 return self._transport.write_eof()
H A Dunix_events.py613 self._closing = False # Set when close() or write_eof() called.
744 def write_eof(self): member in _UnixWritePipeTransport
764 # write_eof is all what we needed to close the write pipe
765 self.write_eof()
H A Dsslproto.py228 def write_eof(self): member in _SSLProtocolTransport
236 """Return True if this transport supports write_eof(), False if not."""
H A Dselector_events.py1042 raise RuntimeError('Cannot call write() after write_eof()')
1106 def write_eof(self): member in _SelectorSocketTransport
/third_party/python/Lib/test/test_asyncio/
H A Dtest_transports.py52 self.assertRaises(NotImplementedError, transport.write_eof)
H A Dtest_proactor_events.py339 tr.write_eof()
341 tr.write_eof()
350 tr.write_eof()
363 tr.write_eof()
374 tr.write_eof()
389 tr.write_eof()
H A Dtest_unix_events.py1077 tr.write_eof = mock.Mock()
1079 tr.write_eof.assert_called_with()
1086 tr.write_eof = mock.Mock()
1089 self.assertFalse(tr.write_eof.called)
1093 tr.write_eof()
1102 tr.write_eof()
H A Dtest_selector_events.py856 tr.write_eof()
858 tr.write_eof()
866 tr.write_eof()
880 tr.write_eof()
/third_party/python/Lib/test/
H A Dtest_ssl.py1924 bio.write_eof()
2309 incoming.write_eof()
2377 incoming.write_eof()

Completed in 19 milliseconds