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

Method __iter__

httpx/_multipart.py:294–296  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

292 return {"Content-Length": str(content_length), "Content-Type": content_type}
293
294 def __iter__(self) -> typing.Iterator[bytes]:
295 for chunk in self.iter_chunks():
296 yield chunk
297
298 async def __aiter__(self) -> typing.AsyncIterator[bytes]:
299 for chunk in self.iter_chunks():

Callers

nothing calls this directly

Calls 1

iter_chunksMethod · 0.95

Tested by

no test coverage detected