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

AbstractEventLoop.add_signal_handler(signum, callback, *args) Add a handler for a signal. Raise

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

SubprocessProtocol.pipe_data_received(fd, data) Called when the child process writes data into its stdout or stderr pipe. fd

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

select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) (Only supported on BSD.) Returns a kernel

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

asyncio.ensure_future(coro_or_future, *, loop=None) Schedule the execution of a coroutine object: wrap it in a

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

coroutine AbstractEventLoop.create_unix_connection(protocol_factory, path, *, ssl=None, sock=None, server_hostname=None) Create

2025-01-10 15:47:30