selectors.KqueueSelector.fileno()
  • References/Python/Python/Inputouput

fileno() This returns the file descriptor used by the underlying

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

coroutine wait() Wait until notified. If the calling coroutine has not acquired the lock when

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

coroutine AbstractEventLoop.sock_sendall(sock, data) Send data to the socket. Modeled after blocking

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

returncode Return code of the process when it exited. A None value indicates that the process has not terminated

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

terminate() Stop the child. On Posix OSs the method sends signal.SIGTERM to the child. On Windows the Win32 API

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

select.select(rlist, wlist, xlist[, timeout]) This is a straightforward interface to the Unix select() system call

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

abstractmethod register(fileobj, events, data=None) Register a file object for selection, monitoring it for I/O events.

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

exception asyncio.TimeoutError The operation exceeded the given deadline.

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

AbstractEventLoop.call_exception_handler(context) Call the current event loop exception handler.

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

asyncio.iscoroutinefunction(func) Return True if func is determined to be a coroutine function

2025-01-10 15:47:30