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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pickle.py 30 p = pickle.Pickler(f, proto)
45 class PersPickler(pickle.Pickler):
66 pickler_class = pickle.Pickler
test_cpickle.py 20 p = cPickle.Pickler(f, proto)
35 p = cPickle.Pickler(proto)
50 p = cPickle.Pickler(f, proto)
101 pickler_class = cPickle.Pickler
pickletester.py     [all...]
  /external/python/cpython3/Lib/test/
test_pickle.py 35 Pickler = pickle._Pickler
55 pickler = pickle._Pickler variable in class:PyPicklerTests
60 p = self.pickler(f, proto)
91 class PersPickler(self.pickler):
111 pickler = pickle._Pickler variable in class:PyPersPicklerTests
118 pickler = pickle._Pickler variable in class:PyIdPersPicklerTests
123 def check(Pickler):
126 pickler = Pickler(f, proto)
127 pickler.dump('abc'
214 pickler = _pickle.Pickler variable in class:.CPicklerTests
218 pickler = _pickle.Pickler variable in class:.CPersPicklerTests
222 pickler = _pickle.Pickler variable in class:.CIdPersPicklerTests
226 pickler = _pickle.Pickler variable in class:.CDumpPickle_LoadPickle
230 pickler = pickle._Pickler variable in class:.DumpPickle_CLoadPickle
    [all...]
pickletester.py     [all...]
test_inspect.py 838 self.assertFullArgSpecEquals(_pickle.Pickler.dump,
841 self.assertFullArgSpecEquals(_pickle.Pickler(io.BytesIO()).dump,
    [all...]
test_pydoc.py     [all...]
  /external/python/cpython2/Lib/test/
test_pickle.py 55 p = pickle.Pickler(f, proto)
70 class PersPickler(pickle.Pickler):
91 pickler_class = pickle.Pickler
test_cpickle.py 90 p = cPickle.Pickler(f, proto)
118 p = cPickle.Pickler(proto)
147 p = cPickle.Pickler(f, proto)
199 pickler_class = cPickle.Pickler
pickletester.py     [all...]
  /external/python/cpython3/Doc/includes/
dbpickle.py 11 class DBPickler(pickle.Pickler):
  /external/python/cpython3/Tools/scripts/
find_recursionlimit.py 89 _pickle.Pickler(io.BytesIO(), protocol=-1).dump(l)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shelve.py 62 from cPickle import Pickler, Unpickler
64 from pickle import Pickler, Unpickler
131 p = Pickler(f, self._protocol)
pickle.py 9 Pickler
37 __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",
171 class Pickler:
176 The optional protocol argument tells the pickler to use the
210 """Clears the pickler's "memo".
213 pickler has already seen, so that shared or recursive objects are
230 # The Pickler memo is a dictionary mapping object ids to 2-tuples
234 # Pickler memo so that transient objects are kept alive during
586 # found a Pickler subclass in Zope3 that calls it, so it's not harmless
    [all...]
  /external/python/cpython2/Lib/
shelve.py 62 from cPickle import Pickler, Unpickler
64 from pickle import Pickler, Unpickler
131 p = Pickler(f, self._protocol)
pickle.py 9 Pickler
37 __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",
171 class Pickler:
176 The optional protocol argument tells the pickler to use the
210 """Clears the pickler's "memo".
213 pickler has already seen, so that shared or recursive objects are
230 # The Pickler memo is a dictionary mapping object ids to 2-tuples
234 # Pickler memo so that transient objects are kept alive during
592 # found a Pickler subclass in Zope3 that calls it, so it's not harmless
    [all...]
  /external/python/cpython3/Lib/
shelve.py 59 from pickle import Pickler, Unpickler
123 p = Pickler(f, self._protocol)
pickle.py 8 Pickler
39 __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",
377 The optional *protocol* argument tells the pickler to use the
417 """Clears the pickler's "memo".
420 pickler has already seen, so that shared or recursive objects
428 # Check whether Pickler was initialized correctly. This is
429 # only needed to mimic the behavior of _pickle.Pickler.dump().
431 raise PicklingError("Pickler.__init__() was not called by "
444 # The Pickler memo is a dictionary mapping object ids to 2-tuples
448 # Pickler memo so that transient objects are kept alive durin
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
forking.py 59 from pickle import Pickler
60 class ForkingPickler(Pickler):
61 dispatch = Pickler.dispatch.copy()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
client.py 82 wp = pickle.Pickler(self._wf)
server.py 91 wp = pickle.Pickler(wf)
  /external/python/cpython2/Demo/pdist/
client.py 82 wp = pickle.Pickler(self._wf)
server.py 91 wp = pickle.Pickler(wf)
  /external/python/cpython3/Lib/multiprocessing/
reduction.py 30 # Pickler subclass
33 class ForkingPickler(pickle.Pickler):
34 '''Pickler subclass used by multiprocessing.'''
  /external/python/cpython3/Lib/idlelib/
rpc.py 66 class CodePickler(pickle.Pickler):

Completed in 1367 milliseconds