HomeSort by relevance Sort by last modified time
    Searched refs:write_eof (Results 1 - 11 of 11) sorted by null

  /external/python/cpython3/Lib/asyncio/
transports.py 113 def write_eof(self): member in class:WriteTransport
123 """Return True if this transport supports write_eof(), False if not."""
streams.py 279 This exposes write(), writelines(), [can_]write_eof(),
310 def write_eof(self): member in class:StreamWriter
311 return self._transport.write_eof()
proactor_events.py 312 raise RuntimeError('write_eof() already called')
388 def write_eof(self): member in class:_ProactorBaseWritePipeTransport
436 def write_eof(self): member in class:_ProactorDuplexPipeTransport
473 def write_eof(self): member in class:_ProactorSocketTransport
sslproto.py 153 self._incoming.write_eof()
391 """Return True if this transport supports write_eof(), False if not."""
unix_events.py 559 self._closing = False # Set when close() or write_eof() called.
686 def write_eof(self): member in class:_UnixWritePipeTransport
706 # write_eof is all what we needed to close the write pipe
707 self.write_eof()
    [all...]
selector_events.py 842 raise RuntimeError('Cannot call write() after write_eof()')
902 def write_eof(self): member in class:_SelectorSocketTransport
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_transports.py 41 self.assertRaises(NotImplementedError, transport.write_eof)
test_proactor_events.py 294 tr.write_eof()
296 tr.write_eof()
305 tr.write_eof()
318 tr.write_eof()
329 tr.write_eof()
344 tr.write_eof()
    [all...]
test_unix_events.py     [all...]
test_selector_events.py     [all...]
  /external/python/cpython3/Lib/test/
test_ssl.py     [all...]

Completed in 1211 milliseconds