Message407275
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) ? |
|
| Date |
User |
Action |
Args |
| 2021-11-29 14:05:45 | lemburg | set | recipients:
+ lemburg, tim.peters, rhettinger, gregory.p.smith, mark.dickinson, vstinner, eric.smith, Mark.Shannon, serhiy.storchaka, yselivanov, rhpvorderman |
| 2021-11-29 14:05:45 | lemburg | link | issue45902 messages |
| 2021-11-29 14:05:45 | lemburg | create | |
|