asyncio.WriteTransport.write_eof()
  • References/Python/Python/Inputouput

write_eof() Close the write end of the transport after flushing buffered data. Data may still be received.

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

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

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

can_write_eof() Return

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

AbstractEventLoop.set_task_factory(factory) Set a task factory that will be used by AbstractEventLoop.create_task()

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

devpoll.fileno() Return the file descriptor number of the polling object.

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

coroutine get() Remove and return an item from the queue. If queue is empty, wait until an item is available.

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

coroutine asyncio.start_unix_server(client_connected_cb, path=None, *, loop=None, limit=None, **kwds) Start a UNIX Domain Socket

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

asyncio.run_coroutine_threadsafe(coro, loop) Submit a coroutine object to a given event loop.

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

coroutine AbstractEventLoop.create_server(protocol_factory, host=None, port=None, *, family=socket.AF_UNSPEC, flags=socket.AI_PASSIVE, sock=None, backlog=100, ssl=None

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

terminate() Ask the subprocess to stop, as in

2025-01-10 15:47:30