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
Rhy0lite has quit [Quit: Leaving]
jvesely has joined #pypy
xcm has quit [Ping timeout: 260 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
epony has quit [Remote host closed the connection]
epony has joined #pypy
speeder39_ has joined #pypy
jvesely has quit [Quit: jvesely]
jcea has quit [Ping timeout: 260 seconds]
jcea has joined #pypy
xcm has joined #pypy
lritter has quit [Quit: Leaving]
jvesely has joined #pypy
jcea has quit [Quit: jcea]
dddddd has quit [Remote host closed the connection]
jvesely has quit [Remote host closed the connection]
speeder39_ has quit [Quit: Connection closed for inactivity]
alexge50_ has joined #pypy
alexge50 has quit [Ping timeout: 272 seconds]
_whitelogger has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
kanaka has quit [Ping timeout: 260 seconds]
kanaka has joined #pypy
adamholmberg has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
jacob22 has quit [Ping timeout: 240 seconds]
jvesely has joined #pypy
jvesely has quit [Quit: jvesely]
kingsley has quit [Ping timeout: 240 seconds]
jacob22 has joined #pypy
kingsley has joined #pypy
kingsley has quit [Read error: Connection reset by peer]
adamholmberg has quit [Remote host closed the connection]
oberstet has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
kenaan has quit [Read error: No route to host]
kenaan has joined #pypy
<kenaan> cfbolz default 67454ea967cb /pypy/objspace/std/: add missing reverse operations to set and frozenset objects
<kenaan> cfbolz py3.6 75200e919c58 /pypy/objspace/std/: merge default
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 272 seconds]
epony has quit [Quit: sysupgrade]
epony has joined #pypy
marky1991 has joined #pypy
dddddd has joined #pypy
Smigwell has joined #pypy
Rhy0lite has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 248 seconds]
marky1991 has quit [Ping timeout: 245 seconds]
jcea has joined #pypy
marky1991 has joined #pypy
<cfbolz> arigato: yay, rpython bug!
jcea has quit [Ping timeout: 245 seconds]
<cfbolz> if you write such a range in rpython, it segfaults: for i in range(1, 255, sys.maxint)
<cfbolz> ah, maybe not the range itself, but it returns very weird values
jacob22 has quit [Ping timeout: 240 seconds]
kanaka has quit [Changing host]
kanaka has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
camelCaser has quit [Ping timeout: 272 seconds]
lritter has joined #pypy
speeder39_ has joined #pypy
jvesely has joined #pypy
camelCaser has joined #pypy
<tos9> haha
<tos9> accidentally swapped the arguments I assume?
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
<cfbolz> tos9: no
<cfbolz> it's not real code, but a strange cpython test
<cfbolz> but the range shouldn't return random values
<tos9> ah
adamholmberg has quit [Remote host closed the connection]
marky1991 has quit [Ping timeout: 260 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
marky1991 has joined #pypy
adamholmberg has joined #pypy
<mattip> I pushed the new pypy.org site to https://www.pypy.org/public
<mattip> that server is managed by a cron job, so the link might dissapear if the cron job resets everything
adamholmberg has quit [Remote host closed the connection]
<tos9> mattip: awesome!
<mattip> hmm, the header logo text is still not aligned with the menu items, and on mobile the "hamburger" menu does not open
<tos9> mattip: it's missing an HTTP->HTTPS redirect if that's a thing you/we want?
<tos9> (especially since?) e.g. the "What is PyPy" link links to the non-HTTPS version
<mattip> thanks. That is something the webserver should do, right? I see http://www.pypy.org does not redirect either
<tos9> yes if it's configured to do that
<tos9> is it nginx in this case or what's doing the hosting
<mattip> yeah, looks like nginx
<mattip> the config is very simple, just a listne, server_name, and location
<mattip> listen
<mattip> the interweb says it needs a "return 301 https://$host$request_uri;"
<tos9> sorry, got disconnected
<tos9> yeah that (the 301 line)
jcea has joined #pypy
<mattip> ok, will keep that in mind when we ask the psf people to migrate the server away from the repo at bitbucket.org/pypy/pypy.org
<kenaan> arigo extradoc 85cb797d8a37 /sprintinfo/leysin-winter-2020/: Update
<mattip> right now it is managed by https://github.com/python/psf-chef, but I think they are moving to https://github.com/python/psf-salt
<mattip> at least speed.pypy.org is now managed by the salt repo not the chef one
<arigato> cfbolz: I think I know about this range() bug in RPython
<arigato> never got around to fixing it
<cfbolz> arigato: it's the cause of segfaults in mmap
<cfbolz> somemmap[1:None:sys.maxint] happily segfaults
<cfbolz> because there is a for range(start, stop, step) in the getitem
<cfbolz> right
<cfbolz> ok, I am for disallowing with non-constant steps!=+-1
<arigato> OK, agreed
<arigato> rewriting like ronan did in https://bitbucket.org/pypy/pypy/commits/be2a55c81f26 makes sense anyway
<arigato> I think the very last "i += step" may overflow but its value is never used
<arigato> unsure what C says about this case
<arigato> but I believe it says something like "the value in i is undefined, but nothing bad happens if you don't use it"
<cfbolz> arigato: no, I see different c code
* arigato leaving, if you want me to fix, write it on the issue (not tonight for me, and feel free to)
<cfbolz> while curr < max: curr+=step
<cfbolz> And then curr becomes negative
speeder39_ has quit [Quit: Connection closed for inactivity]
<arigato> yes, I was talking about https://bitbucket.org/pypy/pypy/commits/be2a55c81f26
Ai9zO5AP has joined #pypy
xcm has quit [Killed (moon.freenode.net (Nickname regained by services))]
xcm has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
rubdos has quit [Quit: WeeChat 2.4]
speeder39_ has joined #pypy
rubdos has joined #pypy
jacob22 has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
adamholm_ has joined #pypy
adamholmberg has quit [Ping timeout: 268 seconds]
Smigwell has quit [Ping timeout: 260 seconds]
FullTiltProspect has joined #pypy
FullTiltProspect has left #pypy [#pypy]
adamholm_ 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]
rubdos has quit [Quit: WeeChat 2.4]
rubdos has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Remote host closed the connection]
salotz[m] has quit [*.net *.split]
Hodgestar has quit [*.net *.split]
tumbleweed has quit [*.net *.split]
fcanela has quit [*.net *.split]
hodge has joined #pypy
tumbleweed has joined #pypy
tumbleweed has quit [Changing host]
tumbleweed has joined #pypy
fcanela has joined #pypy
Rhy0lite has quit [Quit: Leaving]
oberstet has quit [Remote host closed the connection]
adamholmberg has joined #pypy
speeder39_ has quit [Quit: Connection closed for inactivity]
xcm has quit [Killed (cherryh.freenode.net (Nickname regained by services))]
xcm has joined #pypy
adamholmberg has quit [Remote host closed the connection]
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
HyP3r has joined #pypy
_whitelogger has joined #pypy
adamholmberg has quit [Remote host closed the connection]