(self, state: dict[str, typing.Any])
| 867 | } |
| 868 | |
| 869 | def __setstate__(self, state: dict[str, typing.Any]) -> None: |
| 870 | for name, value in state.items(): |
| 871 | setattr(self, name, value) |
| 872 | self.is_closed = True |
| 873 | self.extensions = {} |
| 874 | self.stream = UnattachedStream() |
| 875 | |
| 876 | def read(self) -> bytes: |
| 877 | class="st">""" |
nothing calls this directly
no test coverage detected