asyncio.BaseSubprocessTransport.send_signal()
  • References/Python/Python/Inputouput

send_signal(signal) Send the signal number to the subprocess, as in

2025-01-10 15:47:30
asyncio.asyncio.subprocess.Process.pid
  • References/Python/Python/Inputouput

pid The identifier of the process. Note that for processes created by the create_subp

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

class asyncio.Protocol The base class for implementing streaming protocols (for use with e.g. TCP and SSL transports).

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

class asyncio.LifoQueue A subclass of Queue that retrieves most recently added entries first.

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

class asyncio.Handle A callback wrapper object returned by AbstractEventLoop.call_soon(), AbstractEventLoop

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

coroutine put(item) Put an item into the queue. If the queue is full, wait until a free slot is available before adding item

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

class asyncio.SubprocessProtocol The base class for implementing protocols communicating with child processes (through a set

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

SubprocessProtocol.process_exited() Called when the child process has exited.

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

devpoll.modify(fd[, eventmask]) This method does an unregister() followed by a register(). It is (a

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

locked() Return True if the underlying lock is acquired.

2025-01-10 15:47:30