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

Method __next__

Lib/_pyio.py:2595–2602  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2593 return result
2594
2595 def __next__(self):
2596 self._telling = False
2597 line = self.readline()
2598 if not line:
2599 self._snapshot = None
2600 self._telling = self._seekable
2601 raise StopIteration
2602 return line
2603
2604 def readline(self, size=None):
2605 if self.closed:

Callers

nothing calls this directly

Calls 1

readlineMethod · 0.95

Tested by

no test coverage detected