select.devpoll.fileno()
  • References/Python/Python/Inputouput

devpoll.fileno() Return the file descriptor number of the polling object.

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

devpoll.poll([timeout]) Polls the set of registered file descriptors, and returns a possibly-empty list containing (fd

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

pause_reading() Pause the receiving end of the transport. No data will be passed to the protocol’s data_received()

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

select.epoll(sizehint=-1, flags=0) (Only supported on Linux 2.5.44 and newer.) Return an edge polling object, which can be used

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

epoll.poll(timeout=-1, maxevents=-1) Wait for events. timeout in seconds (float)

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

devpoll.closed True if the polling object is closed.

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

classmethod current_task(loop=None) Return the currently running task in an event loop or None.

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

class asyncio.Event(*, loop=None) An Event implementation, asynchronous equivalent to

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

AbstractEventLoop.create_future() Create an

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

class asyncio.ReadTransport Interface for read-only transports.

2025-01-10 15:47:30