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 sligocki
Recipients chuck, georg.brandl, rhettinger, sligocki
Date 2009-10-07.21:46:50
SpamBayes Score 6.8252275e-06
Marked as misclassified No
Message-id <1254952012.41.0.803313516915.issue7076@psf.upfronthosting.co.za>
In-reply-to
Content
A major pro for pseudo-random number generators is that they are
deterministic, that is, you can save a load the state, start from the
same seed and reproduce results, etc. At least in science (and probably
other areas) this reproducibility can be vital in a random class.

It really depends on your application though. In my use, I was
originally using normal random to produce seeds for another programs
random number generator. This ended up producing many identical results
and thus not producing an appropriate random sampling. Rather than
trying to figure out a proper way to do this with a PRNG I decided to
just use a completely random source, urandom was close enough for my needs.

I believe that is its strongest value, not having the strange artifacts
that PRNGs have. But I'm not completely sure how true that claim is :)
History
Date User Action Args
2009-10-07 21:46:52sligockisetrecipients: + sligocki, georg.brandl, rhettinger, chuck
2009-10-07 21:46:52sligockisetmessageid: <1254952012.41.0.803313516915.issue7076@psf.upfronthosting.co.za>
2009-10-07 21:46:51sligockilinkissue7076 messages
2009-10-07 21:46:50sligockicreate