(self)
| 210 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 211 | |
| 212 | def last(self): |
| 213 | (key, value) = self.dict.last() |
| 214 | f = BytesIO(value) |
| 215 | return (key.decode(self.keyencoding), Unpickler(f).load()) |
| 216 | |
| 217 | |
| 218 | class DbfilenameShelf(Shelf): |
no test coverage detected