blob: 8efcbb769df5b3d0bbfc16b871cdfb24dbdb65d3 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2:mod:`marshal` --- Internal Python object serialization
3=======================================================
4
5.. module:: marshal
6 :synopsis: Convert Python objects to streams of bytes and back (with different
7 constraints).
8
9
10This module contains functions that can read and write Python values in a binary
11format. The format is specific to Python, but independent of machine
12architecture issues (e.g., you can write a Python value to a file on a PC,
13transport the file to a Sun, and read it back there). Details of the format are
14undocumented on purpose; it may change between Python versions (although it
15rarely does). [#]_
16
17.. index::
18 module: pickle
19 module: shelve
20 object: code
21
22This is not a general "persistence" module. For general persistence and
23transfer of Python objects through RPC calls, see the modules :mod:`pickle` and
24:mod:`shelve`. The :mod:`marshal` module exists mainly to support reading and
25writing the "pseudo-compiled" code for Python modules of :file:`.pyc` files.
26Therefore, the Python maintainers reserve the right to modify the marshal format
27in backward incompatible ways should the need arise. If you're serializing and
Raymond Hettinger84e26b62007-10-31 21:57:58 +000028de-serializing Python objects, use the :mod:`pickle` module instead -- the
29performance is comparable, version independence is guaranteed, and pickle
30supports a substantially wider range of objects than marshal.
Georg Brandl8ec7f652007-08-15 14:28:01 +000031
32.. warning::
33
34 The :mod:`marshal` module is not intended to be secure against erroneous or
35 maliciously constructed data. Never unmarshal data received from an
36 untrusted or unauthenticated source.
37
38Not all Python object types are supported; in general, only objects whose value
39is independent from a particular invocation of Python can be written and read by
40this module. The following types are supported: ``None``, integers, long
41integers, floating point numbers, strings, Unicode objects, tuples, lists,
42dictionaries, and code objects, where it should be understood that tuples, lists
43and dictionaries are only supported as long as the values contained therein are
44themselves supported; and recursive lists and dictionaries should not be written
45(they will cause infinite loops).
46
Georg Brandlbf863b12007-08-15 19:06:04 +000047.. warning::
Raymond Hettinger84e26b62007-10-31 21:57:58 +000048
49 Some unsupported types such as subclasses of builtins will appear to marshal
50 and unmarshal correctly, but in fact, their type will change and the
51 additional subclass functionality and instance attributes will be lost.
52
53.. warning::
Georg Brandlbf863b12007-08-15 19:06:04 +000054
55 On machines where C's ``long int`` type has more than 32 bits (such as the
56 DEC Alpha), it is possible to create plain Python integers that are longer
57 than 32 bits. If such an integer is marshaled and read back in on a machine
58 where C's ``long int`` type has only 32 bits, a Python long integer object
59 is returned instead. While of a different type, the numeric value is the
60 same. (This behavior is new in Python 2.2. In earlier versions, all but the
61 least-significant 32 bits of the value were lost, and a warning message was
62 printed.)
Georg Brandl8ec7f652007-08-15 14:28:01 +000063
64There are functions that read/write files as well as functions operating on
65strings.
66
67The module defines these functions:
68
69
70.. function:: dump(value, file[, version])
71
72 Write the value on the open file. The value must be a supported type. The
73 file must be an open file object such as ``sys.stdout`` or returned by
74 :func:`open` or :func:`os.popen`. It must be opened in binary mode (``'wb'``
75 or ``'w+b'``).
76
77 If the value has (or contains an object that has) an unsupported type, a
78 :exc:`ValueError` exception is raised --- but garbage data will also be written
79 to the file. The object will not be properly read back by :func:`load`.
80
81 .. versionadded:: 2.4
82 The *version* argument indicates the data format that ``dump`` should use
83 (see below).
84
85
86.. function:: load(file)
87
88 Read one value from the open file and return it. If no valid value is read
89 (e.g. because the data has a different Python version's incompatible marshal
90 format), raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. The
91 file must be an open file object opened in binary mode (``'rb'`` or
92 ``'r+b'``).
93
94 .. warning::
95
96 If an object containing an unsupported type was marshalled with :func:`dump`,
97 :func:`load` will substitute ``None`` for the unmarshallable type.
98
99
100.. function:: dumps(value[, version])
101
102 Return the string that would be written to a file by ``dump(value, file)``. The
103 value must be a supported type. Raise a :exc:`ValueError` exception if value
104 has (or contains an object that has) an unsupported type.
105
106 .. versionadded:: 2.4
107 The *version* argument indicates the data format that ``dumps`` should use
108 (see below).
109
110
111.. function:: loads(string)
112
113 Convert the string to a value. If no valid value is found, raise
114 :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. Extra characters in the
115 string are ignored.
116
117
118In addition, the following constants are defined:
119
120.. data:: version
121
122 Indicates the format that the module uses. Version 0 is the historical format,
123 version 1 (added in Python 2.4) shares interned strings and version 2 (added in
124 Python 2.5) uses a binary format for floating point numbers. The current version
125 is 2.
126
127 .. versionadded:: 2.4
128
129
130.. rubric:: Footnotes
131
132.. [#] The name of this module stems from a bit of terminology used by the designers of
133 Modula-3 (amongst others), who use the term "marshalling" for shipping of data
134 around in a self-contained form. Strictly speaking, "to marshal" means to
135 convert some data from internal to external form (in an RPC buffer for instance)
136 and "unmarshalling" for the reverse process.
137