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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, barry, benjamin.peterson, nnorwitz
Date 2008-09-12.12:05:24
SpamBayes Score 0.0022190171
Marked as misclassified No
Message-id <1221221153.25.0.205917373502.issue3657@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not sure that pickling random.random is a good idea; did you try to
pickle the random.seed function?
Their definition look very similar (at the end of random.py:
   _inst = Random()
   seed = _inst.seed
   random = _inst.random
) but Random.seed is a python method, whereas Random.random is inherited
from _randommodule.c.
History
Date User Action Args
2008-09-12 12:05:53amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, barry, nnorwitz, benjamin.peterson
2008-09-12 12:05:53amaury.forgeotdarcsetmessageid: <1221221153.25.0.205917373502.issue3657@psf.upfronthosting.co.za>
2008-09-12 12:05:24amaury.forgeotdarclinkissue3657 messages
2008-09-12 12:05:24amaury.forgeotdarccreate