MCPcopy Index your code
hub / github.com/RustPython/RustPython / last

Method last

Lib/shelve.py:212–215  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
218class DbfilenameShelf(Shelf):

Callers 1

split_idents_on_dotFunction · 0.45

Calls 4

BytesIOClass · 0.90
UnpicklerClass · 0.90
decodeMethod · 0.45
loadMethod · 0.45

Tested by

no test coverage detected