Obtain the number of bytes pulled over the wire so far. May differ from the amount of content returned by :meth:`HTTPResponse.read` if bytes are encoded on the wire (e.g, compressed).
(self)
| 826 | return is_fp_closed(self._fp) |
| 827 | |
| 828 | def tell(self) -> int: |
| 829 | """ |
| 830 | Obtain the number of bytes pulled over the wire so far. May differ from |
| 831 | the amount of content returned by :meth:`HTTPResponse.read` |
| 832 | if bytes are encoded on the wire (e.g, compressed). |
| 833 | """ |
| 834 | return self._fp_bytes_read |
| 835 | |
| 836 | def _init_length(self, request_method: str | None) -> int | None: |
| 837 | """ |
no outgoing calls