HomeSort by relevance Sort by last modified time
    Searched refs:Unpickler (Results 1 - 8 of 8) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shelve.py 62 from cPickle import Pickler, Unpickler
64 from pickle import Pickler, Unpickler
122 value = Unpickler(f).load()
191 return (key, Unpickler(f).load())
196 return (key, Unpickler(f).load())
201 return (key, Unpickler(f).load())
206 return (key, Unpickler(f).load())
211 return (key, Unpickler(f).load())
pickle.py 10 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
827 class Unpickler:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shelve.py 62 from cPickle import Pickler, Unpickler
64 from pickle import Pickler, Unpickler
122 value = Unpickler(f).load()
191 return (key, Unpickler(f).load())
196 return (key, Unpickler(f).load())
201 return (key, Unpickler(f).load())
206 return (key, Unpickler(f).load())
211 return (key, Unpickler(f).load())
pickle.py 10 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
827 class Unpickler:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pickle.py 40 u = pickle.Unpickler(f)
58 class PersUnpickler(pickle.Unpickler):
68 unpickler_class = pickle.Unpickler
test_cpickle.py 67 p = cPickle.Unpickler(f)
94 p = cPickle.Unpickler(f)
127 p = cPickle.Unpickler(f)
183 unpickler_class = cPickle.Unpickler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pickle.py 40 u = pickle.Unpickler(f)
58 class PersUnpickler(pickle.Unpickler):
68 unpickler_class = pickle.Unpickler
test_cpickle.py 67 p = cPickle.Unpickler(f)
94 p = cPickle.Unpickler(f)
127 p = cPickle.Unpickler(f)
183 unpickler_class = cPickle.Unpickler

Completed in 143 milliseconds