Lines Matching refs:pickler
140 To serialize an object hierarchy, you first create a pickler, then you call the
141 pickler's :meth:`dump` method. To de-serialize a data stream, you first create
271 Clears the pickler's "memo". The memo is the data structure that remembers
272 which objects the pickler has already seen, so that shared or recursive objects
281 the memo for a :mod:`pickle` module pickler, you could do the following::
403 between the pickler/unpickler and the objects that are being serialized. This
571 functions on the pickler and unpickler. [#]_
574 :attr:`~Pickler.persistent_id` attribute of the pickler object and the
577 To pickle objects that have an external persistent id, the pickler must have a
580 When ``None`` is returned, the pickler simply pickles the object as normal.
581 When a persistent id string is returned, the pickler will pickle that string,