select.poll.modify()
  • References/Python/Python/Inputouput

poll.modify(fd, eventmask) Modifies an already registered fd. This has the same effect as register(fd, eventmask)

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

asyncio.set_event_loop_policy(policy) Set the current event loop policy. If policy is None, the default

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

close() Ask the subprocess to stop by calling the terminate() method if the subprocess hasn’t returned yet, and

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

notify(n=1) By default, wake up one coroutine waiting on this condition, if any. If the calling coroutine has not acquired the

2025-01-10 15:47:30