Searched refs:Unpickler (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/ |
H A D | shelve.py | 59 from pickle import DEFAULT_PROTOCOL, 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 D | pickle.py | 9 Unpickler 40 "Unpickler", "dump", "dumps", "load", "loads"] 95 # An instance of _Stop is raised by Unpickler.load_stop() in response to 495 # that contain the Unpickler memo key and the object being memoized. 497 # the key in the Unpickler's memo. The object is stored in the 501 # The use of the Unpickler memo length as the memo key is just a 504 # scheme allows the Unpickler memo to be implemented as a plain (but 1192 # Check whether Unpickler was initialized correctly. This is 1193 # only needed to mimic the behavior of _pickle.Unpickler.dump(). 1195 raise UnpicklingError("Unpickler [all...] |
/third_party/python/Lib/test/ |
H A D | test_pickle.py | 41 Unpickler = pickle._Unpickler variable in PyPickleTests 182 def check(Unpickler): 184 unpickler = Unpickler(io.BytesIO(self.dumps('abc', proto))) 186 unpickler = Unpickler(io.BytesIO()) 241 from _pickle import dump, dumps, load, loads, Pickler, Unpickler namespace 244 unpickler = _pickle.Unpickler 250 unpickler = _pickle.Unpickler 254 unpickler = _pickle.Unpickler 258 unpickler = _pickle.Unpickler 266 unpickler = _pickle.Unpickler [all...] |
H A D | pickletester.py | 3479 class BadUnpickler(self.Unpickler): 3488 # to the underlying Pickler and Unpickler, respectively. 3656 # Verify that we can set the Unpickler's memo attribute.
|
/third_party/python/Doc/includes/ |
H A D | dbpickle.py | 26 class DBUnpickler(pickle.Unpickler):
|
Completed in 9 milliseconds