|
|
|
|
|
by zahlman
227 days ago
|
|
Obviously dumb microbenchmark, but here's ~17x on my machine: $ time python -c 'sum(range(1_000_000_000))'
real 0m19.997s
user 0m19.992s
sys 0m0.005s
$ time pypy -c 'sum(range(1_000_000_000))'
real 0m1.146s
user 0m1.126s
sys 0m0.020s
|
|