asyncio.Semaphore.acquire()
  • References/Python/Python/Inputouput

coroutine acquire() Acquire a semaphore. If the internal counter is larger than zero on entry

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

class asyncio.StreamReader(limit=None, loop=None) This class is

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

exception() Get the exception.

2025-01-10 15:47:30
selectors.SelectorKey.fileobj
  • References/Python/Python/Inputouput

fileobj File object registered.

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

Protocol.eof_received() Calls when the other end signals it won’t send any more data (for example by calling write_eof()

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

class asyncio.StreamWriter(transport, protocol, reader, loop) Wraps a Transport. This exposes

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

DatagramTransport.abort() Close the transport immediately, without waiting for pending operations to complete. Buffered data

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

classmethod all_tasks(loop=None) Return a set of all tasks for an event loop. By default all

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

AbstractEventLoop.get_task_factory() Return a task factory, or None if the default one is in use.

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

get_stack(*, limit=None) Return the list of stack frames for this task’s coroutine. If the coroutine

2025-01-10 15:47:30