(&self)
| 271 | } |
| 272 | |
| 273 | fn __repr__(&self) -> String { |
| 274 | format!("<Response [{} {}]>", self.status_code, self.reason_phrase) |
| 275 | } |
| 276 | |
| 277 | fn raise_for_status(&self) -> PyResult<()> { |
| 278 | if self.status_code >= 400 { |
nothing calls this directly
no outgoing calls
no test coverage detected