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

coroutine asyncio.create_subprocess_exec(*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Create

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

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

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

get_extra_info(name, default=None) Return optional transport information. name is a string representing the piece of

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

coroutine wait_closed() Wait until the close() method completes. This method is

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

AbstractEventLoop.call_at(when, callback, *args) Arrange for the callback to be called at the given absolute timestamp

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

expected Total number of expected bytes (

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

coroutine AbstractEventLoop.subprocess_exec(protocol_factory, *args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)

2025-01-10 15:47:30