This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author alexandre.vassalotti
Recipients alexandre.vassalotti, georg.brandl, tovrstra
Date 2007-12-01.17:35:20
SpamBayes Score 0.09741862
Marked as misclassified No
Message-id <1196530521.26.0.123823918032.issue892902@psf.upfronthosting.co.za>
In-reply-to
Content
Please assign this bug to me.

Note that neither cPickle or pickle is able to load the stream generated
by cPickle correctly:

   >>> g = group(None)
   >>> subitem(g)
   >>> g[0].parent is g
   True
   >>> gp = cPickle.loads(cPickle.dumps(g))
   >>> gp[0].parent is gp
   False

I don't think that will be easy to fix, but I will try to see what I can do.
History
Date User Action Args
2007-12-01 17:35:21alexandre.vassalottisetspambayes_score: 0.0974186 -> 0.09741862
recipients: + alexandre.vassalotti, birkenfeld, tovrstra
2007-12-01 17:35:21alexandre.vassalottisetspambayes_score: 0.0974186 -> 0.0974186
messageid: <1196530521.26.0.123823918032.issue892902@psf.upfronthosting.co.za>
2007-12-01 17:35:21alexandre.vassalottilinkissue892902 messages
2007-12-01 17:35:20alexandre.vassalotticreate