antocuni changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://botbot.me/freenode/pypy/ ) | use cffi for calling C | "PyPy: the Gradual Reduction of Magic (tm)"
<arigato>
and I'm not seeing any relevant change, too
<cfbolz>
arigato: :-(
<cfbolz>
arigato: there has been a failing lock test for a while
<cfbolz>
maybe it's rare and related to that
<arigato>
possibly
<cfbolz>
anyway, I can't reproduce it locally, of course
<arigato>
the lock test is something I tried to attack at some point by making the test more reliable
<arigato>
I think I only managed to get it a bit more reliable than before
<cfbolz>
:-(
<cfbolz>
all annoying
* cfbolz
fixes the flaky _io test
<kenaan_>
cfbolz default d1c1e6659eab /pypy/module/_io/test/test_interp_textio.py: set the hypothesis deadline of this test explicitly to None (it's slow, because looking up the codec the first tim...
<cfbolz>
arigato: interestingly enough about the divmod issue: divmod(long, 10) is indeed slower than long / 10, because the latter uses a special code path for division by int, and the former doesn't
<cfbolz>
ah, no, more complicated
<cfbolz>
long % 10 has that fast path
<cfbolz>
long / 10 doesn't either
oberstet has joined #pypy
jamadden has joined #pypy
jamadden has quit [Client Quit]
<cfbolz>
now the more important question: do I care
jamadden has joined #pypy
glyph has quit [Ping timeout: 240 seconds]
antocuni has quit [Ping timeout: 264 seconds]
<cfbolz>
pffff, there's even a pull request
inhahe has quit [Ping timeout: 240 seconds]
inhahe has joined #pypy
nunatak has joined #pypy
glyph has joined #pypy
mattip_away has joined #pypy
<mattip_away>
cfbolz: the benchmarks performance is still off, I recalibrated two tests’s iterations
<mattip_away>
so now the run does not timeout
<cfbolz>
mattip_away: it seems to oscillate somehow?
<mattip_away>
ahh so that would support the idea of a hardware issue
forgottenone has quit [Quit: Konversation terminated!]
xqb has quit [Quit: Leaving]
xqb has joined #pypy
ronan has quit [Ping timeout: 256 seconds]
ronan has joined #pypy
<kenaan_>
cfbolz math-improvements 62e5eec4ea05 /rpython/rlib/test/test_rbigint.py: move from/tobytes tests to correct class
<kenaan_>
cfbolz math-improvements fb3f2424ac23 /rpython/rlib/test/test_rbigint.py: be a lot more systematic about testing the rbigint.int_* variants. This discovered a bug in rbigint.int_...