select.PIPE_BUF
  • References/Python/Python/Inputouput

select.PIPE_BUF The minimum number of bytes which can be written without blocking to a pipe when the pipe has been reported

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
select.poll()
  • References/Python/Python/Inputouput

select.poll() (Not supported by all operating systems.) Returns a polling object, which supports registering and unregistering

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

coroutine AbstractEventLoop.subprocess_shell(protocol_factory, cmd, *, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)

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

coroutine asyncio.sleep(delay, result=None, *, loop=None) Create a coroutine that completes after a given time

2025-01-10 15:47:30