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 rhettinger
Recipients klankschap, peter.otten, r.david.murray, rhettinger, ronaldoussoren
Date 2013-01-25.05:24:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359091469.63.0.329308431052.issue17020@psf.upfronthosting.co.za>
In-reply-to
Content
Can you show how you determined that you got a value >= 1.0 or provide a seed that reproduces the problem?

I'm not seeing an issue on the 2.7.3 64-bit Mac build:

>>> from itertools import starmap, repeat
>>> from random import random, seed
>>> seed(56019413053459019451450201)
>>> for i in range(20):
	print max(starmap(random, repeat((), 10000000)))

	
0.999999787916
0.999999859769
0.999999809486
0.99999968575
0.999999886565
0.999999991274
0.999999886922
0.999999874948
0.999999987989
0.999999751067
0.999999999353
0.999999935037
0.999999919091
0.999999664265
0.999999951016
0.999999998665
0.999999919618
0.999999786864
0.999999874042
0.999999967453
History
Date User Action Args
2013-01-25 05:24:29rhettingersetrecipients: + rhettinger, ronaldoussoren, peter.otten, klankschap, r.david.murray
2013-01-25 05:24:29rhettingersetmessageid: <1359091469.63.0.329308431052.issue17020@psf.upfronthosting.co.za>
2013-01-25 05:24:29rhettingerlinkissue17020 messages
2013-01-25 05:24:28rhettingercreate