Searched defs:Unpickler (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
H A Dshelve.py62 from cPickle import Pickler, Unpickler namespace
64 from pickle import Pickler, Unpickler namespace
122 value = Unpickler(f).load()
195 return (key, Unpickler(f).load())
200 return (key, Unpickler(f).load())
205 return (key, Unpickler(f).load())
210 return (key, Unpickler(f).load())
215 return (key, Unpickler(f).load())
H A Dpickle.py10 Unpickler
38 "Unpickler", "dump", "dumps", "load", "loads"]
80 # An instance of _Stop is raised by Unpickler.load_stop() in response to
231 # that contain the Unpickler memo key and the object being memoized.
233 # the key in the Unpickler's memo. The object is stored in the
237 # The use of the Unpickler memo length as the memo key is just a
240 # scheme allows the Unpickler memo to be implemented as a plain (but
833 class Unpickler: class in inherits:
1384 return Unpickler(file).load()
1388 return Unpickler(fil
[all...]
/external/python/cpython3/Lib/
H A Dshelve.py59 from pickle import Pickler, Unpickler namespace
114 value = Unpickler(f).load()
195 return (key.decode(self.keyencoding), Unpickler(f).load())
200 return (key.decode(self.keyencoding), Unpickler(f).load())
205 return (key.decode(self.keyencoding), Unpickler(f).load())
210 return (key.decode(self.keyencoding), Unpickler(f).load())
215 return (key.decode(self.keyencoding), Unpickler(f).load())

Completed in 135 milliseconds