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
BPL has quit [Quit: Leaving]
xcm has quit [Ping timeout: 256 seconds]
jvesely has joined #pypy
zmt01 has quit [Quit: Leaving]
zmt00 has joined #pypy
lritter has quit [Ping timeout: 260 seconds]
lritter has joined #pypy
jcea has quit [Quit: jcea]
lritter has quit [Ping timeout: 250 seconds]
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
dddddd has quit [Ping timeout: 256 seconds]
joannah has joined #pypy
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
<cfbolz> mattip: I found an re bug. We need to decide whether we want to fix it for the release. Group references are broken with non ASCII chars: re.match(r'(ü)\1', 'üü')
joannah has quit [Ping timeout: 240 seconds]
<mattip> cfbolz: thanks for the heads up, it seems the release needs a fix for macos anyway
<cfbolz> ok
<mattip> could that be related to this issue
<mattip> about compile "tuple index out of range" on aarch64?
<cfbolz> no, seems unrelated
<mattip> too bad
xcm has joined #pypy
<cfbolz> :-)
<cfbolz> mattip: it's a bit surprising that nobody complained about this bug
<mattip> is it broken so it errors or does it fail to match?
<cfbolz> fails to match
<cfbolz> I pushed a test and fix
<cfbolz> arigo: if you have a minute, could you take a look at b49243dd2029?
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 265 seconds]
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
BPL has joined #pypy
xcm is now known as Guest58808
Guest58808 has quit [Killed (card.freenode.net (Nickname regained by services))]
xcm has joined #pypy
dddddd has joined #pypy
jacob22 has quit [Read error: Connection reset by peer]
jacob22 has joined #pypy
xcm has quit [Ping timeout: 240 seconds]
adamholmberg has joined #pypy
xcm has joined #pypy
adamholmberg has quit [Ping timeout: 258 seconds]
jcea has joined #pypy
YannickJadoul has joined #pypy
<arigo> cfbolz: bah
<arigo> indeed, I can also reproduce on app-level pypy
<cfbolz> Yep
<cfbolz> arigo: I'm fairly confident in the fix, looks OK to you too?
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
<arigo> yes
<mattip> YannickJadoul: it seems that build ^^^ works. I made a demo repo to run a travis job to download and "pip install flask" on the latest nightly
<mattip> and now both python2 and python3.6 can use ssl on macOS
<mattip> the trick was in aee0dd4e0712 to export MACOSX_DEPLOYMENT_TARGET before building openssl via "./configure; make"
yajadoul has joined #pypy
YannickJadoul has quit [Ping timeout: 240 seconds]
lritter has joined #pypy
bbot2 has quit [Quit: buildmaster reconfigured: bot disconnecting]
bbot2 has joined #pypy
jacob22 has quit [Quit: Konversation terminated!]
xcm has quit [Ping timeout: 265 seconds]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5240 [mattip: test new buildbot]
<bbot2> Exception: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5240 [mattip: test new buildbot]
jacob22 has joined #pypy
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5241 [mattip: test new buildbot]
xcm has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5241 [mattip: test new buildbot]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5242 [mattip: test new buildbot]
adamholmberg has joined #pypy
dddddd has quit [Ping timeout: 250 seconds]
adamholmberg has quit [Remote host closed the connection]
jacob22 has quit [Ping timeout: 260 seconds]
<cfbolz> pfff, I spent some time fuzzing the re engine and I maybe found a *very* strange cpython bug
yajadoul has quit [Quit: Leaving]
YannickJadoul has joined #pypy
<YannickJadoul> mattip: Ha, amazing! :-) Would you like me to try now, or can I wait for a rc3?
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 264 seconds]
<mattip> YannickJadoul: if you could easily try the latest nightlies that would be cool
<mattip> cfbolz: it seems re is another rabbit hole. Maybe hypothesis could help test it?
<cfbolz> mattip: it's what I am trying, yes
<cfbolz> But it's a CPython bug I see, not pypy
<mattip> (in the mean time I successfully fried my spare PC's power supply, so I need to use an old laptop for the win32 buildbot slave)
<cfbolz> Can't reduce it to something small yet :-(
<cfbolz> mattip: ouch
<mattip> ... and all the shops are online order only, with two week delivery
<cfbolz> :-(
<YannickJadoul> mattip: Already got too curious myself, so trying it out now!
<YannickJadoul> Trying some things manually, on PyPy 2.7 (nightly) on macOS, sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET') is "None", though?
jacob22 has joined #pypy
<cfbolz> mattip: all the things that can be used for working from home are hard to get right now
<mattip> there is distutils.sysconfig and plain sysconfig. I think you want the latter
<mattip> sorry, the former
<mattip> YannickJadoul ^^^
<YannickJadoul> mattip: Aaaah, right, yes!
<YannickJadoul> Just confused because for 3.6 plain sysconfig did have the value
<YannickJadoul> But anyway, tests seem to be passing :-)
<mattip> it still should, 2.7 is strange
<YannickJadoul> Yeah, because now I'm wondering if this is linked to another problem we have at cibuildwheel
<YannickJadoul> Some warning on PyPy 2.7 that 'MACOSX_DEPLOYMENT_TARGET' is set to 10.3 when building an extension
<YannickJadoul> But I haven't tried out enough, yet
<mattip> if you find it, feel free to bring me in
<YannickJadoul> Thanks. Will do!
<YannickJadoul> Thanks for the quick fix for 10.13, already!
xcm has quit [Remote host closed the connection]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5243 [mattip: test new buildbot]
<bbot2> Exception: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5243 [mattip: test new buildbot]
xcm has joined #pypy
bbot2 has quit [Quit: buildmaster reconfigured: bot disconnecting]
bbot2 has joined #pypy
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-32/builds/5818 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-64/builds/6918 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-macosx-x86-64/builds/5019 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5244 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/1306 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-aarch64/builds/444 [mattip: Forced by command line script, release-pypy3.6-v7.x]
bbreniser has joined #pypy
bbreniser has left #pypy [#pypy]
otisolsen70 has joined #pypy
otisolsen70_ has joined #pypy
otisolsen70 has quit [Ping timeout: 256 seconds]
adamholmberg has joined #pypy
adamholmberg has quit [Ping timeout: 265 seconds]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-64/builds/6918 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-64/builds/6919 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-32/builds/5818 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-32/builds/5819 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Retry: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5244 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5245 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5245 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5246 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5246 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5247 [mattip: force build, release-pypy2.7-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-64/builds/6919 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-32/builds/5819 [mattip: Forced by command line script, release-pypy2.7-v7.x]
otisolsen70_ has quit [Ping timeout: 265 seconds]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/1306 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/1307 [mattip: Forced by command line script, release-pypy2.7-v7.x]
YannickJadoul has quit [Remote host closed the connection]
YannickJadoul has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-macosx-x86-64/builds/5019 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-macosx-x86-64/builds/5020 [mattip: Forced by command line script, release-pypy2.7-v7.x]
yajadoul has joined #pypy
YannickJadoul has quit [Ping timeout: 265 seconds]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-aarch64/builds/444 [mattip: Forced by command line script, release-pypy3.6-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-aarch64/builds/445 [mattip: Forced by command line script, release-pypy2.7-v7.x]
xcm has quit [Remote host closed the connection]
xcm has joined #pypy
adamholmberg has joined #pypy
dddddd has joined #pypy
adamholmberg has quit [Ping timeout: 264 seconds]
<bbot2> Exception: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/1307 [mattip: Forced by command line script, release-pypy2.7-v7.x]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-macosx-x86-64/builds/5020 [mattip: Forced by command line script, release-pypy2.7-v7.x]
inhahe has quit []
inhahe has joined #pypy
lritter has quit [Quit: Leaving]
jacob22 has quit [Quit: Konversation terminated!]
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5247 [mattip: force build, release-pypy2.7-v7.x]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-win-x86-32/builds/5248 [mattip: force build, release-pypy3.6-v7.x]
BPL has quit [Quit: Leaving]