asyncio.Condition.release()
  • References/Python/Python/Inputouput

release() Release the underlying lock. When the lock is locked, reset it to unlocked, and return

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

kevent.data Filter specific data.

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

kqueue.fileno() Return the file descriptor number of the control fd.

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

class asyncio.StreamReader(limit=None, loop=None) This class is

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

AbstractEventLoop.get_task_factory() Return a task factory, or None if the default one is in use.

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

AbstractEventLoop.call_soon(callback, *args) Arrange for a callback to be called as soon as possible. The callback is called

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

coroutine acquire() Acquire a semaphore. If the internal counter is larger than zero on entry

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

abort() Close the transport immediately, without waiting for pending operations to complete. Buffered data will be lost. No

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

can_write_eof() Return

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

write(data) Write some data bytes to the transport: see

2025-01-10 15:47:30