Message5386

Author colinhevans
Recipients colinhevans
Date 2009-12-18.00:22:22
SpamBayes Score 9.70618e-07
Marked as misclassified No
Message-id <1261095743.21.0.770583945169.issue1526@psf.upfronthosting.co.za>
In-reply-to
Content
set() is not serializable using Java serialization because set() uses 
org.python.core.util.ConcurrentHashSet which marks membership in the set 
using ConcurrentHashSet.PRESENT, and ConcurrentHashSet.PRESENT doesn't 
implement serializable.

Solution is to use something serializable, i.e. the String "present".
History
Date User Action Args
2009-12-18 00:22:23colinhevanssetmessageid: <1261095743.21.0.770583945169.issue1526@psf.upfronthosting.co.za>
2009-12-18 00:22:23colinhevanssetrecipients: + colinhevans
2009-12-18 00:22:23colinhevanslinkissue1526 messages
2009-12-18 00:22:22colinhevanscreate