asyncio.Queue.task_done()
  • References/Python/Python/Inputouput

task_done() Indicate that a formerly enqueued task is complete. Used by queue consumers. For

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

write_eof() Close the write end of the transport after flushing buffered data: 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
asyncio.get_event_loop()
  • References/Python/Python/Inputouput

asyncio.get_event_loop() Equivalent to calling get_event_loop_policy().get_event_loop().

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

class asyncio.Task(coro, *, loop=None) Schedule the execution of a coroutine: wrap it in a future. A task is a

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

events Events that must be waited for on this file object.

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

get_pipe_transport(fd) Return the transport for the communication pipe corresponding to the integer file descriptor fd:

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

select.PIPE_BUF The minimum number of bytes which can be written without blocking to a pipe when the pipe has been reported

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

AbstractEventLoop.remove_writer(fd) Stop watching the file descriptor for write availability.

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

asyncio.set_event_loop(loop) Equivalent to calling get_event_loop_policy().set_event_loop(loop).

2025-01-10 15:47:30