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

coroutine asyncio.wait(futures, *, loop=None, timeout=None, return_when=ALL_COMPLETED) Wait for the Futures and coroutine objects

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
asyncio.StreamReaderProtocol
  • References/Python/Python/Inputouput

class asyncio.StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None) Trivial helper class to adapt between

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

add_done_callback(fn) Add a callback to be run when the future becomes done. The callback is

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

class selectors.BaseSelector A BaseSelector is used to wait for I/O event readiness on multiple file objects. It

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

class asyncio.SelectorEventLoop Event loop based on the

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

print_stack(*, limit=None, file=None) Print the stack or traceback for this task’s coroutine. This

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

kill(self) Kill the subprocess, as in

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

class asyncio.DatagramProtocol The base class for implementing datagram protocols (for use with e.g. UDP transports).

2025-01-10 15:47:30