asyncio.SubprocessProtocol.pipe_connection_lost()
  • References/Python/Python/Inputouput

SubprocessProtocol.pipe_connection_lost(fd, exc) Called when one of the pipes communicating with the child process is closed

2025-01-10 15:47:30
select.kevent.ident
  • References/Python/Python/Inputouput

kevent.ident Value used to identify the event. The interpretation depends on the filter but it’s usually the file descriptor

2025-01-10 15:47:30
asyncio.as_completed()
  • References/Python/Python/Inputouput

asyncio.as_completed(fs, *, loop=None, timeout=None) Return an iterator whose values, when waited for, are Future

2025-01-10 15:47:30
asyncio.StreamWriter.writelines()
  • References/Python/Python/Inputouput

writelines(data) Write a list (or any iterable) of data bytes to the transport: see

2025-01-10 15:47:30
asyncio.WriteTransport
  • References/Python/Python/Inputouput

class asyncio.WriteTransport Interface for write-only transports. abort()

2025-01-10 15:47:30
selectors.SelectorKey.fd
  • References/Python/Python/Inputouput

fd Underlying file descriptor.

2025-01-10 15:47:30
asyncio.BaseProtocol.resume_writing()
  • References/Python/Python/Inputouput

BaseProtocol.resume_writing() Called when the transport’s buffer drains below the low-water mark.

2025-01-10 15:47:30
asyncio.StreamWriter.drain()
  • References/Python/Python/Inputouput

coroutine drain() Let the write buffer of the underlying transport a chance to be flushed. The

2025-01-10 15:47:30
asyncio.DatagramTransport.sendto()
  • References/Python/Python/Inputouput

DatagramTransport.sendto(data, addr=None) Send the data bytes to the remote peer given by addr (a transport-dependent

2025-01-10 15:47:30
asyncio.Protocol.data_received()
  • References/Python/Python/Inputouput

Protocol.data_received(data) Called when some data is received. data is a non-empty bytes object containing the incoming

2025-01-10 15:47:30