Python: defaultdict became unmarshallable object in 2.6? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:22:56Z http://stackoverflow.com/feeds/question/665061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6 5 Python: defaultdict became unmarshallable object in 2.6? Parand 2009-03-20T05:12:27Z 2009-06-03T12:01:32Z <p>Did defaultdict's become not marshal'able as of Python 2.6? The following works under 2.5, fails under 2.6 with "ValueError: unmarshallable object" on OS X 1.5.6, python-2.6.1-macosx2008-12-06.dmg from python.org:</p> <pre><code>from collections import defaultdict import marshal dd = defaultdict(list) marshal.dump(dd, file('/tmp/junk.bin','wb') ) </code></pre> http://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6/665283#665283 9 Answer by Miles for Python: defaultdict became unmarshallable object in 2.6? Miles 2009-03-20T07:50:49Z 2009-03-20T07:50:49Z <p><a href="http://svn.python.org/view?view=rev&amp;revision=58893" rel="nofollow">Marshal was deliberately changed to not support subclasses of built-in types</a>. Marshal was never supposed to handle defaultdicts, but happened to since they are a subclass of dict. <a href="http://docs.python.org/library/marshal.html" rel="nofollow">Marshal is <strong>not</strong> a general "persistence" module; only None, integers, long integers, floating point numbers, strings, Unicode objects, tuples, lists, sets, dictionaries, and code objects are supported</a>.</p> <p>Python 2.5:</p> <pre><code>&gt;&gt;&gt; marshal.dumps(defaultdict(list)) '{0' &gt;&gt;&gt; marshal.dumps(dict()) '{0' </code></pre> <p>If for some reason you really want to marshal a defaultdict you can convert it to a dict first, but odds are you should be using a different serialization mechanism, like <a href="http://docs.python.org/library/pickle.html" rel="nofollow">pickling</a>.</p> http://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6/944344#944344 2 Answer by dsvensson for Python: defaultdict became unmarshallable object in 2.6? dsvensson 2009-06-03T12:01:32Z 2009-06-03T12:01:32Z <p>wrt performance issues.. encoding a list of ~600000 dicts, each with 4 key/values, one of the values has a list (around 1-3 length) of 2 key/val dicts:</p> <pre><code>In [27]: timeit(cjson.encode, data) 4.93589496613 In [28]: timeit(cPickle.dumps, data, -1) 141.412974119 In [30]: timeit(marshal.dumps, data, marshal.version) 1.13546991348 </code></pre>