MCPcopy Index your code
hub / github.com/RustPython/RustPython / __anext__

Method __anext__

Lib/asyncio/streams.py:783–787  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

781 return self
782
783 async def __anext__(self):
784 val = await self.readline()
785 if val == b'':
786 raise StopAsyncIteration
787 return val

Callers

nothing calls this directly

Calls 1

readlineMethod · 0.95

Tested by

no test coverage detected