MCPcopy
hub / github.com/encode/httpx / flush

Method flush

httpx/_decoders.py:221–225  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

219 return data
220
221 def flush(self) -> bytes:
222 data = b""
223 for child in self.children:
224 data = child.decode(data) + child.flush()
225 return data
226
227
228class ByteChunker:

Callers

nothing calls this directly

Calls 2

decodeMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected