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

asyncio.get_event_loop() Equivalent to calling get_event_loop_policy().get_event_loop().

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

asyncio.set_event_loop(loop) Equivalent to calling get_event_loop_policy().set_event_loop(loop).

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

Protocol.data_received(data) Called when some data is received. data is a non-empty bytes object containing the incoming

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

devpoll.close() Close the file descriptor of the polling object.

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

epoll.modify(fd, eventmask) Modify a registered file descriptor.

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

epoll.close() Close the control file descriptor of the epoll object.

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

coroutine acquire() Acquire the underlying lock. This method blocks until the lock is unlocked

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

get_pipe_transport(fd) Return the transport for the communication pipe corresponding to the integer file descriptor fd:

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

coroutine AbstractEventLoop.create_unix_server(protocol_factory, path=None, *, sock=None, backlog=100, ssl=None) Similar to

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

write_eof() Close the write end of the transport after flushing buffered data: see

2025-01-10 15:47:30