(self, state: dict[str, typing.Any])
| 506 | } |
| 507 | |
| 508 | def __setstate__(self, state: dict[str, typing.Any]) -> None: |
| 509 | for name, value in state.items(): |
| 510 | setattr(self, name, value) |
| 511 | self.extensions = {} |
| 512 | self.stream = UnattachedStream() |
| 513 | |
| 514 | |
| 515 | class Response: |
nothing calls this directly
no test coverage detected