cfbolz changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://botbot.me/freenode/pypy/ ) | use cffi for calling C | the secret reason for us trying to get PyPy users: to test the JIT well enough that we're somewhat confident about it
Wulf has quit [Ping timeout: 256 seconds]
antocuni has quit [Ping timeout: 276 seconds]
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
<LarstiQ>
Wulf: did you get any further with hashlib.sha256 slowness?
<Wulf>
LarstiQ: no, I stopped investigating
jacob22__ has quit [Ping timeout: 245 seconds]
jcea has joined #pypy
Gonsor has joined #pypy
inhahe__ has quit [Ping timeout: 276 seconds]
oberstet has quit [Remote host closed the connection]
oberstet has joined #pypy
lritter has joined #pypy
Rhy0lite has joined #pypy
dddddd has quit [Ping timeout: 244 seconds]
tayfun26 has joined #pypy
marky1991 has joined #pypy
adamholmberg has joined #pypy
stevenja_ has joined #pypy
stevenja_ has quit [Ping timeout: 268 seconds]
stevenja_ has joined #pypy
gthank_ is now known as gthank
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
stevenja_ has quit [Remote host closed the connection]
stevenja_ has joined #pypy
inhahe__ has joined #pypy
spooky|gsnedders is now known as gsnedders|ooo
stevenja_ has quit [Remote host closed the connection]
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
stevenja_ has joined #pypy
mattip has quit [Ping timeout: 244 seconds]
mattip has joined #pypy
marky1991 has quit [Ping timeout: 268 seconds]
Garen has quit [Read error: Connection reset by peer]
Garen has joined #pypy
starlord has quit [Ping timeout: 256 seconds]
samth has quit [Ping timeout: 256 seconds]
string__ has quit [Ping timeout: 256 seconds]
pchiusano has quit [Ping timeout: 256 seconds]
arigato has quit [Ping timeout: 256 seconds]
samth has joined #pypy
samth has quit [Changing host]
samth has joined #pypy
rguillebert has quit [Ping timeout: 256 seconds]
irclogs_io_bot has quit [Ping timeout: 256 seconds]
infernix has quit [Ping timeout: 256 seconds]
rguillebert has joined #pypy
glyph_ has quit [Ping timeout: 260 seconds]
string__ has joined #pypy
pchiusano has joined #pypy
Gonsor has quit [Read error: Connection reset by peer]
glyph has joined #pypy
irclogs_io_bot has joined #pypy
tayfun26 has quit [Remote host closed the connection]
starlord has joined #pypy
kenaan has joined #pypy
<kenaan>
arigo default 24a43b6a4d73 /rpython/rlib/rvmprof/cintf.py: Issue #2853 Patch by Babak F.
jacob22__ has joined #pypy
arigo has joined #pypy
infernix has joined #pypy
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
<arigo>
Wulf: I cannot reproduce your problem, at least on Linux using the official distribution: all of cpython 2.7, cpython 3.5, pypy2 and pypy3 take almost the same time
<arigo>
it is however possible that you're using a miscompiled version of pypy, because we have a pure-python fallback for sha256
<Wulf>
arigo: I didn't compile it myself
<arigo>
yes, I don't want to say "bad person" here
<arigo>
you're using the one provided by Debian, I guess?
<arigo>
which is not loadable on your system indeed
<arigo>
you should be able to run
<arigo>
cd ../lib_pypy
<arigo>
../bin/pypy3 _ssl_build.py
<Wulf>
arigo: thanks, much better! Now it also appears in proc/maps
<Wulf>
How about spitting out a warning when openssl (or other fast implementation) can't be used?
mattip has quit [Disconnected by services]
mattip has joined #pypy
<arigo>
yes, probably a good idea
mattip has quit [Killed (moon.freenode.net (Nickname regained by services))]
mattip has joined #pypy
mattip_ has joined #pypy
stevenja_ has quit [Remote host closed the connection]
ronan has quit [Ping timeout: 265 seconds]
<kenaan>
arigo default f59578325003 /lib-python/2.7/hashlib.py: Give a warning when we can't import _hashlib
<kenaan>
arigo py3.5 f21562687ea4 /lib-python/3/hashlib.py: Give a warning when we can't import _hashlib
<kenaan>
arigo default 6868da604e68 /rpython/rlib/buffer.py: Add a get_raw_address() in the base class---better than segfaulting due to calls to a missing method!