cfbolz changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://quodlibet.duckdns.org/irc/pypy/latest.log.html#irc-end ) | use cffi for calling C | if a pep adds a mere 25-30 [C-API] functions or so, it's a drop in the ocean (cough) - Armin
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
oberstet has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
adamholmberg has quit [Remote host closed the connection]
jcea has quit [Quit: jcea]
_whitelogger has joined #pypy
jvesely has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 240 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
jvesely has quit [Quit: jvesely]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 240 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 240 seconds]
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
SunDwarf has quit [Ping timeout: 255 seconds]
SunDwarf has joined #pypy
Taggnostr has quit [Remote host closed the connection]
Taggnostr has joined #pypy
tsaka__ has quit [Ping timeout: 272 seconds]
dddddd has quit [Ping timeout: 260 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 258 seconds]
tsaka__ has joined #pypy
tsaka_ has joined #pypy
<arigato> antocuni: state.ccall(): yes, but there are buildbot failures now (which I can't reproduce locally)
tsaka__ has quit [Quit: Konversation terminated!]
<cfbolz> Is pypy.org down for anybody else?
tsaka_ has quit [Ping timeout: 265 seconds]
<arigato> yes
<arigato> DNS error? it still works for ronan
<arigato> the name for "www.pypy.org" is no longer served apparently
lritter has joined #pypy
<mattip> www.pypy.org works for me
<mattip> it serves https://www.pypy.org
adamholmberg has joined #pypy
tsaka_ has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
tsaka_ has quit [Read error: Connection reset by peer]
tsaka__ has joined #pypy
<lazka> doesn't work here
<mattip> what do you get?
<arigato> just a plain "ping: www.pypy.org: Name or service not known"
<mattip> Weird. Trying this works too
tsaka__ has quit [Read error: Connection reset by peer]
tsaka__ has joined #pypy
<flok> www.pypy.org’s server IP address could not be found.
<flok> (from .nl)
<ronan> BTW, we now have some CI that runs on all pushes to Heptapod
<ronan> it just runs rpython --annotate for now
tsaka__ has quit [Ping timeout: 265 seconds]
tsaka__ has joined #pypy
<mattip> where is the image octobus/ci-for-pypy defined?
tsaka__ has quit [Quit: Konversation terminated!]
tsaka__ has joined #pypy
tsaka__ has quit [Client Quit]
tsaka__ has joined #pypy
tsaka__ has quit [Read error: Connection reset by peer]
<mattip> https://hub.docker.com/r/octobus/ci-for-pypy but where is the Dockerfile? Does it use a standard image?
tsaka__ has joined #pypy
<mattip> thanks
tsaka__ has quit [Ping timeout: 258 seconds]
tsaka__ has joined #pypy
<mattip> cool
the_rat has quit [Quit: ZNC - http://znc.in]
the_rat has joined #pypy
<mattip> it turns out pyzmq has a cffi backend for PyPy, which almost passes all the tests.
tsaka__ has quit [Ping timeout: 265 seconds]
<mattip> there was something missing in our buffer protocol support
<mattip> but now that’s fixed
<mattip> now needs a bit of cffi tweaking to support zero copy
kanaka has quit [Read error: Connection reset by peer]
kanaka has joined #pypy
adamholmberg has joined #pypy
<Dejan> Here it does not resolve
<Dejan> Here is what nslookup www.pypy.org gives: ** server can't find www.pypy.org: NXDOMAIN
<Dejan> pypy.org resolves
<Dejan> pypy.org sends clients to www.pypy.org it seems
adamholmberg has quit [Ping timeout: 255 seconds]
dddddd has joined #pypy
ekaologik has joined #pypy
Bushwhackers|WGH is now known as WGH
TheNewbie has joined #pypy
TheNewbie has quit [Quit: Leaving]
BPL has joined #pypy
xcm is now known as Guest20634
Guest20634 has quit [Read error: Connection reset by peer]
xcm has joined #pypy
tsaka__ has joined #pypy
<mjacob> arigato: sledgehammer approach: "hg phase --hidden --force --draft 'public()'" and then pull
<arigato> yay, maybe the gil fixes work now?
<arigato> hopefully
<arigato> the latest buildbot appears to be happy
jcea has joined #pypy
gracinet has joined #pypy
ekaologik_ has joined #pypy
ekaologik has quit [Ping timeout: 240 seconds]
<arigato> cfbolz: fwiw, we have a failing test: pypy.module.pypyjit.test_pypy_c.test_ffi (test_cffi_init_struct_with_list)
<arigato> which fails since the merge of warmup-improvements-various
<arigato> it seems the branch made a bit more random stuff appear in the residual code, at least in this case
<cfbolz> arigato: only guard_not_invalidated should appear, really
<cfbolz> sorry, i've been meaning to look in more detail, but got sick this week
<arigato> :-(
<arigato> so we have an extra guard_value(p, null) plus an extra guard(profilefunc == null)
<cfbolz> ah, ah, ah, I see
<cfbolz> I removed a few quasi-immutable fields from the executioncontext
<arigato> the first is actually an extra guard(w_tracefunc == null)
<cfbolz> I didn't see the point, given that the ec should never be a constant
<arigato> ok..?
<cfbolz> but both profilefunc and w_tracefunc are attributes on the ec
<cfbolz> so it must be related somehow?
<arigato> ah yes, probably
<cfbolz> in theory the value of those fields should be green somehow
<arigato> I need to check, but now I think that quasi-immut is also useful here, because it means that if we checked once already (in the loop header) then we don't need to check again
<cfbolz> I suppose, yes
<cfbolz> so maybe we should simply revert that part (but really, a more robust solution would be even better somehow)
<arigato> I guess so
<cfbolz> arigato: would you be up to undoing the quasi immutables on the ec? I'll probably won't be able to do it today
<arigato> yes, I can try
<cfbolz> arigato: thank you. And sorry for leaving the failing test for so long
<arigato> NP
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
gracinet has quit [Quit: Leaving.]
ronan has quit [Ping timeout: 272 seconds]
Dejan has quit [Quit: Leaving]
jvesely has joined #pypy
wooster has joined #pypy
<wooster> hello
<mattip> hi wooster
<wooster> yall smoke weed ?
<krono> wat?
Ai9zO5AP has joined #pypy
bitbit has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
BPL has quit [Quit: Leaving]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
Frogging101 has joined #pypy
adamholmberg has quit [Ping timeout: 258 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
oberstet has quit [Remote host closed the connection]
ekaologik_ has quit [Read error: Connection reset by peer]
lritter has quit [Ping timeout: 255 seconds]
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
tos9 has quit [Ping timeout: 260 seconds]
tos9 has joined #pypy
dddddd has quit [Remote host closed the connection]
ronan has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
altendky has quit [Quit: Connection closed for inactivity]
altendky has joined #pypy
dustinm has quit [Quit: Leaving]
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
ronan has quit [Remote host closed the connection]
ronan has joined #pypy
dustinm has joined #pypy