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

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

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

exception asyncio.QueueEmpty Exception raised when the get_nowait() method is called on a Queue object

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

release() Release a semaphore, incrementing the internal counter by one. When it was zero on entry and another coroutine is

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

coroutine wait() Wait for child process to terminate. Set and return returncode attribute. This

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

epoll.register(fd[, eventmask]) Register a fd descriptor with the epoll object.

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

coroutine asyncio.create_subprocess_exec(*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Create

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

AbstractEventLoop.remove_reader(fd) Stop watching the file descriptor for read availability.

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

new_event_loop() Create and return a new event loop object according to this policy’s rules. If

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

abstractmethod select(timeout=None) Wait until some registered file objects become ready, or the timeout expires.

2025-01-10 15:47:30