(self)
| 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 | """ |