On 11/11/2013 11:19 AM, Robert Kern wrote:
On 2013-11-11 00:49, alex23 wrote:The random module uses os.urandom,No, it doesn't. random.random() is an alias to the random() method on the random.Random class, which uses the Mersenne Twister to generate values. os.urandom() gets called in the initial default seeding, but not for each value.
That's what I get for rapidly skimming the module rather than looking at it carefully.
Cheers. -- https://mail.python.org/mailman/listinfo/python-list