Searched refs:Unpickler (Results 1 - 11 of 11) 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/cpython2/Lib/test/
H A Dtest_pickle.py48 u = pickle.Unpickler(f)
64 u = pickle.Unpickler(f)
82 class PersUnpickler(pickle.Unpickler):
92 unpickler_class = pickle.Unpickler
H A Dtest_cpickle.py64 p = cPickle.Unpickler(f)
100 p = cPickle.Unpickler(f)
125 p = cPickle.Unpickler(f)
158 p = cPickle.Unpickler(f)
200 unpickler_class = cPickle.Unpickler
/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())
H A Dpickle.py9 Unpickler
40 "Unpickler", "dump", "dumps", "load", "loads"]
86 # An instance of _Stop is raised by Unpickler.load_stop() in response to
417 # that contain the Unpickler memo key and the object being memoized.
419 # the key in the Unpickler's memo. The object is stored in the
423 # The use of the Unpickler memo length as the memo key is just a
426 # scheme allows the Unpickler memo to be implemented as a plain (but
1030 # Check whether Unpickler was initialized correctly. This is
1031 # only needed to mimic the behavior of _pickle.Unpickler.dump().
1033 raise UnpicklingError("Unpickler
[all...]
/external/python/cpython3/Doc/includes/
H A Ddbpickle.py26 class DBUnpickler(pickle.Unpickler):
/external/python/cpython3/Lib/test/
H A Dtest_pickle.py140 unpickler = _pickle.Unpickler
146 unpickler = _pickle.Unpickler
150 unpickler = _pickle.Unpickler
154 unpickler = _pickle.Unpickler
162 unpickler = _pickle.Unpickler
166 unpickler_class = _pickle.Unpickler
210 unpickler = _pickle.Unpickler
H A Dpickletester.py2578 class BadUnpickler(pickle.Unpickler):
2713 # Verify that we can set the Unpickler's memo attribute.
/external/python/cpython2/Demo/pdist/
H A Dserver.py70 rp = pickle.Unpickler(rf)
H A Dclient.py111 rp = pickle.Unpickler(self._rf)

Completed in 341 milliseconds