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 lemburg
Recipients Mark.Shannon, eric.smith, gregory.p.smith, lemburg, mark.dickinson, rhettinger, rhpvorderman, serhiy.storchaka, tim.peters, vstinner, yselivanov
Date 2021-11-29.14:05:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to <[email protected]>
Content
On 26.11.2021 10:56, Ruben Vorderman wrote:
> 
> $ python -m timeit -c "from bytes_sort import bytes_sort" "bytes_sort(b'')"
> 500000 loops, best of 5: 495 nsec per loop

Shouldn't this read:

$ python -m timeit -s "from bytes_sort import bytes_sort" "bytes_sort(b'')"

(-s instead of -c) ?
History
Date User Action Args
2021-11-29 14:05:45lemburgsetrecipients: + lemburg, tim.peters, rhettinger, gregory.p.smith, mark.dickinson, vstinner, eric.smith, Mark.Shannon, serhiy.storchaka, yselivanov, rhpvorderman
2021-11-29 14:05:45lemburglinkissue45902 messages
2021-11-29 14:05:45lemburgcreate