From 405884cd6205f3856de943382900eb81c8f9578d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 31 Oct 2007 22:15:49 +0000 Subject: [PATCH] Sets are marshalable. --- Doc/library/marshal.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/marshal.rst b/Doc/library/marshal.rst index 8efcbb769df..19a56d74a30 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