(self, state)
| 190 | return {"data": self.data, "encodings": self._encodings} |
| 191 | |
| 192 | def __setstate__(self, state): |
| 193 | if "data" in state: |
| 194 | self.data = state["data"] |
| 195 | |
| 196 | if "encodings" in state: |
| 197 | self._encodings = state["encodings"] |
| 198 | |
| 199 | def keys(self): |
| 200 | return self.data.keys() |
nothing calls this directly
no outgoing calls
no test coverage detected