asyncio.Task.print_stack()
  • References/Python/Python/Inputouput

print_stack(*, limit=None, file=None) Print the stack or traceback for this task’s coroutine. This

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

locked() Returns True if semaphore can not be acquired immediately.

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

coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None)

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

close() Stop serving: close listening sockets and set the sockets attribute to None.

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

select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) (Only supported on BSD.) Returns a kernel

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

class asyncio.BaseTransport Base class for transports. close(self)

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

set_result(result) Mark the future done and set its result. If the future is already done when

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

set_exception(exception) Mark the future done and set an exception. If the future is already

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.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