MCPcopy
hub / github.com/urllib3/urllib3 / flush

Method flush

src/urllib3/response.py:1321–1327  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1319 )
1320
1321 def flush(self) -> None:
1322 if (
1323 self._fp is not None
1324 and hasattr(self._fp, "flush")
1325 and not getattr(self._fp, "closed", False)
1326 ):
1327 return self._fp.flush()
1328
1329 def supports_chunked_reads(self) -> bool:
1330 """

Callers

nothing calls this directly

Calls 1

flushMethod · 0.45

Tested by

no test coverage detected