MCPcopy
hub / github.com/pallets/werkzeug / __next__

Method __next__

src/werkzeug/wsgi.py:345–349  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

343 return self
344
345 def __next__(self) -> bytes:
346 data = self.file.read(self.buffer_size)
347 if data:
348 return data
349 raise StopIteration()
350
351
352class _RangeWrapper:

Callers

nothing calls this directly

Calls 1

readMethod · 0.45

Tested by

no test coverage detected