diff options
author | Raymond Hettinger <python@rcn.com> | 2007-10-31 22:15:49 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2007-10-31 22:15:49 (GMT) |
commit | 405884cd6205f3856de943382900eb81c8f9578d (patch) | |
tree | e577157d53848f3da94c191888a3e0e0cd3f2840 | |
parent | 84e26b6d5d563781e1b78ddd3b1b95d5a4137617 (diff) | |
download | cpython-405884cd6205f3856de943382900eb81c8f9578d.zip cpython-405884cd6205f3856de943382900eb81c8f9578d.tar.gz cpython-405884cd6205f3856de943382900eb81c8f9578d.tar.bz2 |
Sets are marshalable.
-rw-r--r-- | Doc/library/marshal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/marshal.rst b/Doc/library/marshal.rst index 8efcbb7..19a56d7 100644 --- a/Doc/library/marshal.rst +++ b/Doc/library/marshal.rst @@ -38,7 +38,7 @@ supports a substantially wider range of objects than marshal. Not all Python object types are supported; in general, only objects whose value is independent from a particular invocation of Python can be written and read by this module. The following types are supported: ``None``, integers, long -integers, floating point numbers, strings, Unicode objects, tuples, lists, +integers, floating point numbers, strings, Unicode objects, tuples, lists, sets, dictionaries, and code objects, where it should be understood that tuples, lists and dictionaries are only supported as long as the values contained therein are themselves supported; and recursive lists and dictionaries should not be written |