asyncio.Queue.full()
  • References/Python/Python/Inputouput

full() Return True if there are maxsize items in the queue.

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

get_returncode() Return the subprocess returncode as an integer or

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

close() Close the transport: see

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

writelines(list_of_data) Write a list (or any iterable) of data bytes to the transport. This is functionally equivalent to calling

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

class asyncio.BoundedSemaphore(value=1, *, loop=None) A bounded semaphore implementation. Inherit from Semaphore

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

set_event_loop(loop) Set the event loop for the current context to loop.

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

coroutine asyncio.open_connection(host=None, port=None, *, loop=None, limit=None, **kwds) A wrapper for

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

release() Release a lock. When the lock is locked, reset it to unlocked, and return. If any

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

coroutine readexactly(n) Read exactly n bytes. Raise an IncompleteReadError if the end of the stream is

2025-01-10 15:47:30