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 ezio.melotti
Recipients eng793, ezio.melotti, r.david.murray, rhettinger, serhiy.storchaka
Date 2012-10-06.04:26:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349497581.22.0.368572479976.issue15837@psf.upfronthosting.co.za>
In-reply-to
Content
I left a review on rietveld.

FWIW these are the results of the tests using timeit:

# with int=int
$ ./python -m timeit -s 'from random import random, shuffle; lst = list(range(100000))'  'shuffle(lst, random)'
10 loops, best of 3: 507 msec per loop

# without int=int
$ ./python -m timeit -s 'from random import random, shuffle; lst = list(range(100000))'  'shuffle(lst, random)'
10 loops, best of 3: 539 msec per loop
History
Date User Action Args
2012-10-06 04:26:21ezio.melottisetrecipients: + ezio.melotti, rhettinger, r.david.murray, serhiy.storchaka, eng793
2012-10-06 04:26:21ezio.melottisetmessageid: <1349497581.22.0.368572479976.issue15837@psf.upfronthosting.co.za>
2012-10-06 04:26:21ezio.melottilinkissue15837 messages
2012-10-06 04:26:20ezio.melotticreate