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

AbstractEventLoop.is_closed() Returns True if the event loop was closed.

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

coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None)

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

coroutine wait_for(predicate) Wait until a predicate becomes true. The predicate should be a

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

is_closing(self) Return True if the transport is closing or is closed.

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

@asyncio.coroutine Decorator to mark generator-based coroutines. This enables the generator use yield from to call

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

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost.

2025-01-10 15:47:30