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
jvesely has quit [Quit: jvesely]
i9zO5AP has quit [Quit: WeeChat 2.7]
marky1991 has joined #pypy
marky1991 has quit [Ping timeout: 272 seconds]
Wombatzus has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
Wombatzus has quit [Remote host closed the connection]
Wombatzus has joined #pypy
jvesely has joined #pypy
Wombatzus has quit [Ping timeout: 265 seconds]
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
jcea has quit [Quit: jcea]
oberstet has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
plan_rich has quit [Ping timeout: 265 seconds]
<mattip> cfbolz: it seems e19783dac960 needs to take into account len() == 0
<mattip> done in 85cff72a90bc
<mattip> it turns out I shouldn't have fixed vmrpof in pypy, since now the files are out of sync
<mattip> there are lots of open PRs on https://github.com/vmprof/vmprof-python, maybe time for a cleanup?
<cfbolz> mattip: sorry Matti :-(
<cfbolz> mattip: I think at this point vmprof is sort of unmaintained
dddddd has quit [Ping timeout: 255 seconds]
<mattip> some of those PRs are no-brainers, just need someone with permissions to push the "merge" button
<cfbolz> mattip: I somewhat cheekily added you to the team
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
<tos9> mattip: will have a look
<tos9> mattip: in unrelated news I didn't make it to Switzerland because tickets to TLV were too cheap
<tos9> which means if you have any desire to meet for dinner or a beer let me know :)
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
tsaka__ has joined #pypy
tsaka__ has quit [Ping timeout: 260 seconds]
plan_rich has joined #pypy
tsaka__ has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
oberstet has quit [Remote host closed the connection]
oberstet has joined #pypy
bitbit has joined #pypy
lritter has joined #pypy
mjacob_ is now known as mjacob
tsaka__ has quit [Ping timeout: 255 seconds]
tsaka__ has joined #pypy
Dejan has quit [Quit: Leaving]
tsaka__ has quit [Ping timeout: 260 seconds]
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
dddddd has joined #pypy
tsaka__ has joined #pypy
Smigwell has joined #pypy
<bbot2> Started: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/8040 [ronan: force build, py3.6]
xcm is now known as Guest99340
Guest99340 has quit [Ping timeout: 260 seconds]
xcm has joined #pypy
xcm has quit [Ping timeout: 260 seconds]
tsaka__ has quit [Ping timeout: 246 seconds]
xcm has joined #pypy
tsaka__ has joined #pypy
adamholmberg has joined #pypy
marky1991 has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
YannickJadoul has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/8040 [ronan: force build, py3.6]
tsaka__ has quit [Ping timeout: 248 seconds]
tsaka__ has joined #pypy
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
xcm has quit [Remote host closed the connection]
<michelp> I use CFFI with the pygraphblas project and I've received a report from a user about build errors on OSX. Unfortunately I don't have that platform to test with so I was hoping someone might be able to suggest a solution: https://github.com/michelp/pygraphblas/issues/19
xcm has joined #pypy
marky1991 has quit [Ping timeout: 252 seconds]
marky1991 has joined #pypy
<cfbolz> michelp: we don't have a lot of Mac devs around either, unfortunately :-(
oberstet_ has joined #pypy
<cfbolz> michelp: but maybe still file a cffi issue?
<michelp> ok, sounds like i should open a github issue for cffi then?
<michelp> ah beat me to it
<michelp> ok will do thanks!
<arigato> what mess mac people makes
<arigato> oh let's just kill malloc.h because who includes that anyway
<cfbolz> Yes the newest os x release seems to break various things
oberstet has quit [Ping timeout: 260 seconds]
<arigato> if someone finds out the right #ifdef, I don't mind adding it around ``#include "malloc.h"``
<arigato> I guess we can't just never include malloc.h on Mac because on older versions it is necessary
<arigato> so cffi needs "malloc.h" not for malloc(), which is always there nowadays from stdlib.h, but for alloca()
<arigato> I see in some random code on github that it's a total mess to get alloca()
jcea has joined #pypy
<arigato> but probably it's enough to do:
<arigato> #ifdef __GNUC__
<arigato> # define alloca __builtin_alloca
<arigato> #else
<arigato> # include "malloc.h"
<arigato> #endif
<arigato> (clang lies and defines __GNUC__ too)
<arigato> OK correction: I misread a detail and all I said above is irrelevant
<arigato> the exact line "#include <malloc.h>", with no space between the "#" and the "include", as pasted on that bug report, is not coming from cffi at all
<arigato> issue closed :-)
<michelp> Sorry about the noise!
<arigato> no problem!
<michelp> You guys are fast I stepped away from my desk for 10 minutes 🙂
<arigato> :-)
salotz[m] has quit [Ping timeout: 240 seconds]
xcm has quit [Read error: Connection reset by peer]
xcm has joined #pypy
jvesely has quit [Quit: jvesely]
salotz[m] has joined #pypy
marky1991 has quit [Ping timeout: 240 seconds]
marky1991 has joined #pypy
marky1991 has quit [Ping timeout: 255 seconds]
jvesely has joined #pypy
Ai9zO5AP has joined #pypy
YannickJadoul has quit [Remote host closed the connection]
Rhy0lite has quit [Quit: Leaving]
lritter has quit [Ping timeout: 255 seconds]
lritter has joined #pypy
__pv has joined #pypy
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
marky1991 has quit [Ping timeout: 240 seconds]
marky1991 has joined #pypy
marky1991 has quit [Ping timeout: 255 seconds]
Ai9zO5AP has quit [Quit: WeeChat 2.7]
zmt01 has joined #pypy
zmt00 has quit [Ping timeout: 240 seconds]
Ai9zO5AP has joined #pypy
Ai9zO5AP has quit [Ping timeout: 240 seconds]
Ai9zO5AP has joined #pypy
_whitelogger has joined #pypy
Smigwell has left #pypy [#pypy]
marky1991 has joined #pypy
marky1991_2 has joined #pypy
adamholmberg has quit [Remote host closed the connection]
marky1991 has quit [Ping timeout: 260 seconds]
adamholmberg has joined #pypy
marky1991_2 has quit [Ping timeout: 240 seconds]
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
oberstet_ has quit [Remote host closed the connection]
marky1991 has quit [Read error: Connection reset by peer]
marky1991 has joined #pypy
lritter has quit [Ping timeout: 258 seconds]
marky1991_2 has joined #pypy
marky1991_2 has quit [Changing host]
marky1991_2 has joined #pypy
marky1991 has quit [Ping timeout: 265 seconds]
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 265 seconds]