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

asyncio.shield(arg, *, loop=None) Wait for a future, shielding it from cancellation. The statement:

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

coroutine readline() Read one line, where “line” is a sequence of bytes ending with \n. If

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

class asyncio.AbstractEventLoop Abstract base class of event loops. This class is

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

poll.modify(fd, eventmask) Modifies an already registered fd. This has the same effect as register(fd, eventmask)

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

BaseProtocol.pause_writing() Called when the transport’s buffer goes over the high-water mark.

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

AbstractEventLoop.is_running() Returns running status of event loop.

2025-01-10 15:47:30
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.communicate()
  • References/Python/Python/Inputouput

coroutine communicate(input=None) Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file

2025-01-10 15:47:30
select.kevent.filter
  • References/Python/Python/Inputouput

kevent.filter Name of the kernel filter.

2025-01-10 15:47:30