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

Method writelines

src/werkzeug/wrappers/response.py:816–818  ·  view source on GitHub ↗
(self, seq: t.Iterable[bytes])

Source from the content-addressed store, hash-verified

814 return len(value)
815
816 def writelines(self, seq: t.Iterable[bytes]) -> None:
817 for item in seq:
818 self.write(item)
819
820 def close(self) -> None:
821 self.closed = True

Callers

nothing calls this directly

Calls 1

writeMethod · 0.95

Tested by

no test coverage detected