(self)
| 195 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 196 | |
| 197 | def next(self): |
| 198 | (key, value) = next(self.dict) |
| 199 | f = BytesIO(value) |
| 200 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 201 | |
| 202 | def previous(self): |
| 203 | (key, value) = self.dict.previous() |