Python: defaultdict became unmarshallable object in 2.6? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T23:22:56Zhttp://stackoverflow.com/feeds/question/665061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-65Python: defaultdict became unmarshallable object in 2.6?Parand2009-03-20T05:12:27Z2009-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#6652839Answer by Miles for Python: defaultdict became unmarshallable object in 2.6?Miles2009-03-20T07:50:49Z2009-03-20T07:50:49Z<p><a href="http://svn.python.org/view?view=rev&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>>>> marshal.dumps(defaultdict(list))
'{0'
>>> 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#9443442Answer by dsvensson for Python: defaultdict became unmarshallable object in 2.6?dsvensson2009-06-03T12:01:32Z2009-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>