Home - Speed - Summaries: (trunk - py2.7) : (py3.8) : (py3.9) : (py3.10) : Everything : RPython - Nightly builds - Waterfall - Builders - About

Console View


Categories: aarch64 benchmark-run buildbot linux-ppc64 linux-s390x linux32 linux64 macos-arm64 macos-x86_64 numpy win32 win64
Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

aarch64 benchmark-run buildbot linux-ppc64 linux-s390x linux32 linux64 macos-arm64 macos-x86_64 numpy win32 win64
ea81cf169a25...
Matti Picus
make note appear
d8c202a09c69...
Matti Picus
Added tag release-pypy2.7-v7.3.12rc2 for changeset 4ac174a992a3
d3cfce298003...
Matti Picus
map __del__ to tp_del, not tp_finalize, changes behaviour from CPython (PyPy's wrap_del raises NotImplemented)
d2a9cc807351...
Matti Picus
Added tag release-pypy3.10-v7.3.12rc2 for changeset 07561e2940ea
c39c50fef0e6...
Matti Picus
typo
be517ac86240...
Matti Picus
update release note
a0c5c485a546...
Matti Picus
add a proper wrap_del. It will always return None unless called inappropriately
8f0780392ad8...
Matti Picus
Added tag release-pypy3.9-v7.3.12rc2 for changeset a6c2a04c0d03
89d6f93a10f3...
Matti Picus
do not create a __del__ wrapper at all, it is harmful. Remove now-dead code
7ec833f48bef...
Matti Picus
fix 53a430f9b402 to more precisely follow CPython
67b32e846306...
Carl Friedrich Bolz-Tereick
test and fix segfault discovered by the cython tests
6268795fc410...
Matti Picus
back out 89d6f93a10f3, we need a wrap_del
61feeb1212bc...
Matti Picus
merge py3.9
5e0478184bd7...
Matti Picus
move hpy.dist-inof to hpy-0.0.4.dist-info (issue 3579)
58d19dbfb61c...
Matti Picus
backed out d3cfce298003, it seems to have broken cython
55fc1c26d5b4...
Matti Picus
merge default
53d89530303b...
Matti Picus
typo
53a430f9b402...
Matti Picus
fix edge cases in issues 3912, 3944
4d7cdf1c1e7c...
Matti Picus
update versions.json for the rc2 release
49e020682706...
Carl Friedrich Bolz-Tereick
#3932: to be on the safe side, write an explicit test about how Cython does
error positions now
37db14e9c6f2...
Matti Picus
squeeze a little more accuracy out of windows time.time(), to make a cython test pass
36c6bda6a86a...
Matti Picus
merge py3.9
24beab5e4a50...
Matti Picus
merge py3.9
0ec662da09e6...
Carl Friedrich Bolz-Tereick
merge rbigint-fromstr-subquadratic

implement the base 10 string-to-int conversion using a divide an conquer
algorithm with complexity O(n**1.58). The algorithm is due to Bjorn Martinsson.

In the process, I discovered that the "lopsided" case of karatsuba
multiplication was removed for no good reason at some point. I re-measured and
reimplemented it.
0e22e361a229...
Carl Friedrich Bolz-Tereick
#3932 fix translation