Lines Matching full:marshal
51 Python has a more primitive serialization module called :mod:`marshal`, but in
53 objects. :mod:`marshal` exists primarily to support Python's :file:`.pyc`
56 The :mod:`pickle` module differs from :mod:`marshal` in several significant ways:
60 :mod:`marshal` doesn't do this.
64 handled by marshal, and in fact, attempting to marshal recursive objects will
71 * :mod:`marshal` cannot be used to serialize user-defined classes and their
76 * The :mod:`marshal` serialization format is not guaranteed to be portable
810 Module :mod:`marshal`
848 .. [#] Don't confuse this with the :mod:`marshal` module