(self)
| 205 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 206 | |
| 207 | def first(self): |
| 208 | (key, value) = self.dict.first() |
| 209 | f = BytesIO(value) |
| 210 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 211 | |
| 212 | def last(self): |
| 213 | (key, value) = self.dict.last() |
no test coverage detected