(self)
| 200 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 201 | |
| 202 | def previous(self): |
| 203 | (key, value) = self.dict.previous() |
| 204 | f = BytesIO(value) |
| 205 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 206 | |
| 207 | def first(self): |
| 208 | (key, value) = self.dict.first() |