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

empty() Return True if the queue is empty, False otherwise.

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

set_transport(transport) Set the transport.

2025-01-10 15:47:30
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
selectors.SelectorKey.data
  • References/Python/Python/Inputouput

data Optional opaque data associated to this file object: for example, this could be used to store a per-client session ID.

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
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
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.Condition.acquire()
  • References/Python/Python/Inputouput

coroutine acquire() Acquire the underlying lock. This method blocks until the lock is unlocked

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

select.poll() (Not supported by all operating systems.) Returns a polling object, which supports registering and unregistering

2025-01-10 15:47:30
select.epoll.modify()
  • References/Python/Python/Inputouput

epoll.modify(fd, eventmask) Modify a registered file descriptor.

2025-01-10 15:47:30