asyncio.shield()
  • References/Python/Python/Inputouput

asyncio.shield(arg, *, loop=None) Wait for a future, shielding it from cancellation. The statement:

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

class asyncio.Future(*, loop=None) This class is almost compatible with

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

clear() Reset the internal flag to false. Subsequently, coroutines calling

2025-01-10 15:47:30
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
asyncio.StreamWriter.write()
  • References/Python/Python/Inputouput

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

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

devpoll.register(fd[, eventmask]) Register a file descriptor with the polling object. Future calls to the poll()

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

BaseProtocol.pause_writing() Called when the transport’s buffer goes over the high-water mark.

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

exception() Return the exception that was set on this future. The exception (or None

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

result() Return the result this future represents. If the future has been cancelled, raises

2025-01-10 15:47:30