antocuni changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://botbot.me/freenode/pypy/ ) | use cffi for calling C | "PyPy: the Gradual Reduction of Magic (tm)"
jamesaxl has quit [Quit: WeeChat 1.9.1]
antocuni has joined #pypy
yuyichao has quit [Ping timeout: 240 seconds]
yuyichao has joined #pypy
pilne has joined #pypy
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tbodt has joined #pypy
amaury has quit [Ping timeout: 255 seconds]
marr has quit [Ping timeout: 256 seconds]
pilne has quit [Quit: Quitting!]
pilne has joined #pypy
antocuni has quit [Ping timeout: 240 seconds]
jcea has quit [Quit: jcea]
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tbodt has joined #pypy
ArneBab_ has joined #pypy
ArneBab has quit [Ping timeout: 248 seconds]
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yuyichao has quit [Quit: Konversation terminated!]
tbodt has joined #pypy
pilne has quit [Quit: Quitting!]
tbodt has quit [Client Quit]
yuyichao has joined #pypy
dddddd has quit [Remote host closed the connection]
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yuyichao_ has joined #pypy
yuyichao has quit [Ping timeout: 265 seconds]
_jtl_ has joined #pypy
dcrosta has joined #pypy
abrown has joined #pypy
_jtl_ has quit [Quit: _jtl_]
abrown has quit [Ping timeout: 265 seconds]
jamesaxl has joined #pypy
Garen has quit [Ping timeout: 255 seconds]
tayfun26 has joined #pypy
_jtl_ has joined #pypy
_jtl_ has quit [Quit: _jtl_]
amaury has joined #pypy
Taggnostr2 has quit [Ping timeout: 255 seconds]
Taggnostr has joined #pypy
<arigato> it would be nice to have nightly benchmarks for memory usage
<arigato> I'm trying to make sure mmap-for-arenas doesn't change the memory usage---it shouldn't---and getting wild results
<arigato> in both directions
simpson has quit [Ping timeout: 272 seconds]
<arigato> e.g. once, a full translation consumed 6.0GB of memory whereas it normally takes only 5.0GB
<LarstiQ> and the other direction?
<arigato> yes, I just got the opposite when doing a translation up to --rtype
* arigato smells something random, and runs the very same full translation again
<LarstiQ> swing by the same amount, down to 4.0GB?
<arigato> ok, tracked down the --rtype mistake, that's me
* arigato now tries to run 3 times --rtype in each branch
dddddd has joined #pypy
marvin_ has quit [Ping timeout: 272 seconds]
<arigato> something else, pypy3-c.exe on windows doesn't load its .pyc files but instead recreates them every run
Jellyg00se has joined #pypy
mattip_away has joined #pypy
mattip_away has quit [Client Quit]
marvin_ has joined #pypy
yuyichao has joined #pypy
yuyichao_ has quit [Ping timeout: 265 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #pypy
<kenaan> mattip non-linux-vmprof-stacklet-switch-2 80316b2e779f /rpython/rlib/rvmprof/rvmprof.py: try to fix translation for non-linux
<bbot2> Started: http://buildbot.pypy.org/builders/build-pypy-c-jit-linux-armel/builds/2011 [mattip: force build, non-linux-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/764 [mattip: force build, non-linux-vmprof-stacklet-switch-2]
amaury has quit [Ping timeout: 268 seconds]
<arigato> seems the .pyc files are written in text mode
<cfbolz> ouch :-(
<arigato> of course the import logic tries to write them in binary mode, so I suspect that our implementation of either os.open() or _io.FileIO(fd, 'wb') is broken
<arigato> indeed, just fd = os.open(); os.write(fd) writes stuff in text mode
<arigato> uh what, it's the same on pypy-c.exe?
<arigato> ok it's even the same in CPython
<arigato> seems I have no clue what os.open() is supposed to do on windows
<arigato> right, there is os.O_BINARY that you have to give
<arigato> and which importlib doesn't give??
<arigato> ok, wat
<arigato> it works because the code does os.open() forgetting O_BINARY, but then io.FileIO(fd, 'wb') somehow adds the binary again in CPython 3.x
<arigato> that's the part missing in pypy3-c.exe
* arigato tries on cpython 2 and pypy 2
<arigato> no, on cpython 2 and pypy 2, the same logic really writes in text mode
antocuni has joined #pypy
<arigato> right, the constructor of _io.FileIO(fd) whacks at the fd to turn it binary
tayfun26 has quit [Remote host closed the connection]
<kenaan> arigo py3.5 64afb0785729 /pypy/module/_io/interp_fileio.py: Windows: missing _setmode(O_BINARY) in FileIO
amaury has joined #pypy
<arigato> so, running a translation up to --rtype is not enough to see a memory difference, but running it completely shows a difference (5.0 vs 6.0 GB)
<arigato> I have no clue how this could be related to mmap-for-arenas so now I'm trying to build other versions
tayfun26 has joined #pypy
marr has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/764 [mattip: force build, non-linux-vmprof-stacklet-switch-2]
dustinm has quit [Quit: Leaving]
dustinm has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/build-pypy-c-jit-linux-armel/builds/2011 [mattip: force build, non-linux-vmprof-stacklet-switch-2]
<fijal> how specific are we usually in releases?
<fijal> do we want to list all the issues fixed?
<arigato> fijal: let's focus on the py3.5 release first, where it doesn't make sense to do that
<fijal> I must say it's frustrating to see very conflicting reports
<fijal> Matti said he'll do a 2.7 release
[Arfrever] has quit [Quit: leaving]
<arigato> unsure what is going on
amaury has quit [Quit: Konversation terminated!]
<arigato> if you're asking "does it make sense to list all issues fixed in the py3.5 branch" then I answer no
<arigato> if you feel that this answer is conflicting then feel free to ignore it anyway
<arigato> about the 2.7 release, it's cool if matti continues to do them, unless you feel that you should be doing both, no?
antocuni has quit [Ping timeout: 265 seconds]
* LarstiQ once again pipes up with his volunteer offer
<LarstiQ> fijal: what do you feel is conflicting?
<fijal> arigato: regarding whether or not do dual release
<fijal> I kinda want to do only 3.5 but people really wanted to do 27 too
<arigato> but now Matti volunteered for the 2.7 release, so is there a problem left?
<fijal> Maybe vmprof for stacklet warrants 27 release too
[Arfrever] has joined #pypy
<fijal> Maybe not really
<arigato> at some point, we should do a next pass over the memory usage of pypy
<arigato> I think that on a 32 GB machine it feels free to consume more memory, which might be fine or not
<arigato> it's particularly not fine if we're running many pypy processes
<arigato> (...more memory than on my 8 GB laptop, I mean)
raynold has quit [Quit: Connection closed for inactivity]
jcea has joined #pypy
<fijal> Hum
<fijal> Yeah we should
Hotpot33 has quit [Ping timeout: 240 seconds]
<fijal> Anyway
<fijal> I'll write down a dual release announcement and go through logs a bit
antocuni has joined #pypy
mattip_away has joined #pypy
<mattip_away> fijal: I meant to say I am happy to do the build-repackage-upload part of the release
<mattip_away> and could rven be pressed to do the release branch version number dance
<mattip_away> but i will not have time to write the release notes
<fijal> mattip_away: I'm writing the release notes right now
<fijal> mattip_away: so I'll do the read-history-and-write-the-release notes
<fijal> arigato: should I wait for some more of the windows fixes?
amaury has joined #pypy
<arigato> the next step would be to fix ssl_cffi so that it works on windows
<arigato> if nobody else is jumping in, I guess I can do that
<fijal> I sort of got my dev environment working yesterday
<fijal> can you test it without translation or do you need to translate?
<arigato> it's cffi, no need to translate
<fijal> ok
<fijal> arigato: I'll write the release notes and if you don't get around to it, I'll look at that (realistically tomorrow)
<fijal> I find it really hard to run around and do stuff for half day and then sit and code for the other half
<mattip_away> I already fixed it
<fijal> ah :)
<fijal> mattip_away: so does pip work now on windows?
<mattip_away> yes, check last night’s run
<fijal> cool
<mattip_away> it even uploaded a tarball
<fijal> This release is an incremental release with very few new features, the main
<fijal> feature being the final PyPy3.5 release that works on linux and OS X with beta
<fijal> windowssupport
<fijal> does that sound about right?
<mattip_away> +1
<arigato> mattip_away: how does pip work on windows? it requires ssl, right?
Hotpot33 has joined #pypy
<mattip_away> import _ssl works, something else is still broken that prevents pip
<mattip_away> should be pure python fix
bremner has joined #pypy
<fijal> did we implement PEP442 (safe object finalization)
mattip_away has left #pypy [#pypy]
mattip_away has joined #pypy
<arigato> no clue if we're talking about the same thing, but yesterday "import _ssl" in py3.5 on Windows threw "ImportError: no module named 'poll'"
<mattip_away> fixed that one
<arigato> ah, cool
<arigato> sorry then
<mattip_away> but apparently it is not enough for pip
Hotpot33 has quit [Ping timeout: 265 seconds]
antocuni has quit [Ping timeout: 264 seconds]
antocuni_ has joined #pypy
<mattip_away> sorry I thought that one fix would be enough, apparently not
<arigato> fijal: I see tp_finalize in py3.5's cpyext, so probably?
<mattip_away> antocuni_: merging the vmprof branch broke translation on non-linux
<antocuni_> ouch, sorry :(
<antocuni_> what's the problem?
<mattip_away> __vmprof_eval_vmprof is undefined
* antocuni_ looks
<mattip_away> tried to fix in 80316b2, but it dodn’t work
* mattip_away back later
<fijal> arigato: feel like quickly looking through the release notes?
mattip_away has quit [Quit: Palaver https://palaverapp.com]
<arigato> yes
* fijal pushing
<kenaan> fijal release-pypy3.5-v5.9.x 636834242c92 /pypy/doc/: bump whatsnew
<kenaan> fijal default 183901a755d3 /pypy/doc/release-v5.10.0.rst: start writing release notes
Hotpot33 has joined #pypy
<antocuni_> is vmprof supposed on arm?
<LarstiQ> supported or assumed?
<arigato> mmap-for-arenas is definitely causing the 5GB -> 6GB change, though I have no clue why. I'll continue looking later
<antocuni_> "supposed to work"?
<fijal> I don't know
<fijal> I don't think so
<kenaan> arigo default e013e4c45333 /pypy/doc/release-v5.10.0.rst: Add a sentence
<arigato> fijal: done
<fijal> arigato: I still want to go through the details a bit
<antocuni_> why the hell this ARM build is trying to compile rvmprof.c, then? O_o
<fijal> antocuni_: I'm not sure, maybe it does work
<antocuni_> no, I tried to run pypy 5.9 on my raspberry, _vmprof is not included
mattip_away has joined #pypy
<antocuni_> I think I got it: my branch calls rvmprot.save_stack() from rstacklet.py
<antocuni_> and save_stack() eventually calls other functions which uses the ECI, causing rvmprof.c to be included even if it should not
<mattip_away> antocuni_: it is not supposed to work yet, but translation requires stubs
<mattip_away> cool
<antocuni_> mattip_away: are you sure that it requires stubs? Or maybe on default it was hacked in such a way that rvmprof.c was not included at all?
amaury has quit [Quit: Konversation terminated!]
amaury has joined #pypy
<fijal> antocuni_: see 1cc101a9ee5a
<mattip_away> antocuni_: whichever is cleaner
<fijal> ok, pushed some stuff
<kenaan> fijal default c4e2adba9d2d /pypy/doc/release-v5.10.0.rst: go through history
<kenaan> fijal default 2ac941dfb825 /pypy/doc/release-v5.10.0.rst: merge
mattip_away has quit [Remote host closed the connection]
<fijal> ok, so we need to have a few iterations over that, wait for armin (or me) to fix pip on windows and then kick buildbots?
<fijal> maybe we can release before christmas
adamholmberg has joined #pypy
amaury has quit [Ping timeout: 240 seconds]
amaury has joined #pypy
<antocuni_> who? There are places which catch VmprofPlatformUnsupported, but I cannot find any place which actually raises it
<antocuni_> s/who/uh
amaury has quit [Quit: Konversation terminated!]
amaury_ has joined #pypy
amaury_ has quit [Client Quit]
amaury__ has joined #pypy
amaury__ has quit [Quit: Konversation terminated!]
<kenaan> antocuni fix-vmprof-stacklet-switch-2 df87d2ec0d1b /rpython/rlib/rvmprof/cintf.py: move the ECI stuff into a proper function: this way, it will be easier to ensure that the E...
<kenaan> antocuni fix-vmprof-stacklet-switch-2 afe32451952d /rpython/rlib/rvmprof/: Switch to a saner way to handle vmprof on unsupported platforms: - currently, we always ...
<antocuni_> I hope that these two commits are enough to fix translation
<antocuni_> let's try
<kenaan> rlamy py3.5-xattr 61730fb1f196 /: wip
yuyichao has quit [Ping timeout: 248 seconds]
<bbot2> Started: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/765 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/6459 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/rpython-linux-x86-32/builds/21 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/build-pypy-c-linux-armhf-raspbian/builds/1622 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/own-linux-x86-32/builds/5624 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/rpython-linux-s390x/builds/16 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Started: http://buildbot.pypy.org/builders/rpython-linux-x86-64/builds/30 [antocuni: force build, fix-vmprof-stacklet-switch-2]
tayfun26 has quit [Quit: tayfun26]
marr has quit [Remote host closed the connection]
simpson has joined #pypy
yuyichao has joined #pypy
<kenaan> rlamy py3.5-xattr eef439fa3527 /rpython/rlib/test/test_rposix.py: Fix test_xattr()
marr has joined #pypy
adamholm_ has joined #pypy
adamholmberg has quit [Ping timeout: 256 seconds]
<bbot2> Failure: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/6459 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Failure: http://buildbot.pypy.org/builders/own-linux-x86-32/builds/5624 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<kenaan> rlamy py3.5-xattr 7bb9dfa2b7ff /pypy/module/posix/: Enable getxattr, setxattr, removexattr
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
adamholm_ has quit [Read error: Connection reset by peer]
adamholmberg has joined #pypy
<bbot2> Success: http://buildbot.pypy.org/builders/build-pypy-c-linux-armhf-raspbian/builds/1622 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Failure: http://buildbot.pypy.org/builders/rpython-linux-x86-64/builds/30 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<bbot2> Failure: http://buildbot.pypy.org/builders/rpython-linux-x86-32/builds/21 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<kenaan> antocuni fix-vmprof-stacklet-switch-2 41babd8886fa /rpython/rlib/rvmprof/cintf.py: this is the correct string for 32bit intel
<bbot2> Started: http://buildbot.pypy.org/builders/rpython-linux-x86-32/builds/22 [antocuni: force build, fix-vmprof-stacklet-switch-2]
Jellyg00se has quit [Quit: Leaving]
<kenaan> rlamy py3.5-xattr 05c458bd2a65 /rpython/rlib/: Add rposix.(f)listxattr
<antocuni_> the ARM build failed at "hg up" stage :(, but s390x translated
<antocuni_> so I suppose the problem should be fixed now
<antocuni_> mattip: ^^^ (for the logs)
<kenaan> rlamy py3.5-xattr eeeb03d063f0 /pypy/module/posix/: Implement posix.listxattr(), fix test
<kenaan> rlamy py3.5-xattr 2c730fa110fc /: Close branch py3.5-xattr
<kenaan> rlamy py3.5 fa25c452dbb5 /: Merged in py3.5-xattr (pull request #586) Implement posix.*xattr functions
<bbot2> Started: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/6460 [ronan: force build, py3.5]
dcrosta has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/pypy-c-jit-linux-s390x/builds/765 [antocuni: force build, fix-vmprof-stacklet-switch-2]
__main__ has quit [Read error: Connection reset by peer]
__main__ has joined #pypy
nanonyme has joined #pypy
<nanonyme> CFFI question: can I use LoadLibraryW and unicode DLL names with CFFI on Windows with Python2?
<bbot2> Success: http://buildbot.pypy.org/builders/rpython-linux-x86-32/builds/22 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<nanonyme> I have DLL's with interesting installation paths that I'd want to load with full filename
mat^2 has joined #pypy
<nanonyme> I already know this is impossible through ctypes public API but was interested whether CFFI can do it
<nanonyme> It looked a lot like I might be disappointed based on the CFFI source code but it was fairly slow to read so I thought to ask to verify
<LarstiQ> can you expand on what that means?
<kenaan> antocuni fix-vmprof-stacklet-switch-2 40f2b92848b2 /: close this branch again
<kenaan> antocuni default e742e3594267 /rpython/rlib/rvmprof/: merge again fix-vmprof-stacklet-switch-2: this should fix translation on platforms where vmprof is not supported...
raynold has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
antocuni_ has quit [Ping timeout: 240 seconds]
adamholmberg has quit [Ping timeout: 248 seconds]
adamholmberg has joined #pypy
<bbot2> Failure: http://buildbot.pypy.org/builders/own-linux-x86-64/builds/6460 [ronan: force build, py3.5]
<bbot2> Failure: http://buildbot.pypy.org/builders/rpython-linux-s390x/builds/16 [antocuni: force build, fix-vmprof-stacklet-switch-2]
<arigato> nanonyme: I cannot say, but if you think not based on the source code, then maybe I can look into fixing it
<arigato> it's only about ffi.dlopen(), right?
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
<nanonyme> arigato, I think so. I'd need to pinpoint where the code calls LoadLibrary to be able to say for sure
<nanonyme> arigato, unless you're doing it through ctypes which I hope not
<nanonyme> Trying to find out currently how I get the sources cloned locally so I could start grepping or something
adamholmberg has quit [Ping timeout: 240 seconds]
<LarstiQ> nanonyme: hg clone https://bitbucket.org/pypy/pypy/
<nanonyme> Ugh, looks like this is one of those cases where it depends whether MSVC was configured to compile as unicode or ansi mode
<nanonyme> Impossible to know the difference based on source code
adamholmberg has joined #pypy
<nanonyme> Maybe I should just test it out
<nanonyme> Simplest test case is you create a directory with eg © in directory name and try to load it with path to dll
<nanonyme> Loading this is only ever possible with LoadLibraryW
<nanonyme> This may sound like a completely stupid use case but our product supports installing into legal wide char path and I need to load DLL's from installation directory
<nanonyme> (I already noticed subprocess under Python2 simply will never work properly for this)
<nanonyme> (under CPython anyway, maybe PyPy doesn't have the same deficiency)
mattip has joined #pypy
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<nanonyme> Neat! Looks like CFFI in fact handles this right and the UTF-8 encoding is just for outputting
<nanonyme> So all of the new CFFI bindings I have written already support wide char paths, it's just the legacy ctypes ones that don't
<LarstiQ> another reason not to use ctypes \o/
<nanonyme> Yes
Taggnostr has quit [Remote host closed the connection]
<nanonyme> This is basically the first this that rings heavy alarm bells to me, both on CPython and PyPy https://bitbucket.org/pypy/pypy/src/e742e3594267ae96e434b88ef40b1d7e22f94745/lib-python/2.7/subprocess.py?at=default&fileviewer=file-view-default#subprocess.py-253
<nanonyme> That is even if subprocess called wide char API's which I think it doesn't
Taggnostr has joined #pypy
<nanonyme> (you can probably imagine what happens in that function when args contains unicode objects which are impossible to be implicitly encoded)
<nanonyme> Not telling you to fix it, this is just something I noticed earlier where apparently all Python2 implementations are broken on Windows
<LarstiQ> is there a bug for that?
<nanonyme> I doubt it. Most sane people don't even hit this. We intentionally put silly characters into installation path in CI environment just to make sure the product breaks if it uses ANSI API's
<LarstiQ> nanonyme: time to file one then :)
<nanonyme> LarstiQ, I don't believe CPython devs will fix it
<LarstiQ> nanonyme: that's not the only reason to file a bug though
<nanonyme> I mean, since this problem doesn't concern Python3
<LarstiQ> I don't know if this qualifies for deviating from cpython code, but it might get fixed in pypy
<nanonyme> It's very hard to get that category of things fixed when it requires large changes to standard library
<LarstiQ> nanonyme: pypy devs care about python2
<nanonyme> I can file one, sure
<nanonyme> (incidentally subprocess32 would probably fix this too but no one bothered making it actually work on Windows)
<nanonyme> Reading your source code it might well be less severe to fix for PyPy
<nanonyme> On CPython it requires rewriting the C implementation of actually invoking process launching code on Windows somewhat but looks like yours uses CFFI and we already covered it does a sane thing
<nanonyme> Should probably test
<nanonyme> Oops, no
<nanonyme> ANSI
<nanonyme> LarstiQ, do you guys use that same code with Python3 or from different branch?
<arigato> bitbucket.org/pypy/pypy/raw/py3.5/lib_pypy/_winapi.py
<arigato> indeed, this is a similar file but with CreateProcessW instead of CreateProcessA
<nanonyme> You have to go through quite a lot of loops to ensure unicode if you want to actually fix it and use CreateProcessW in both
<nanonyme> It's a bit iffy either way: if you use W API and don't ensure unicode to both args and environment, it breaks. If you use A API and don't ensure bytes to both args and environment, it breaks
dcrosta has joined #pypy
<nanonyme> There's no possible way of passing certain legit characters through the A API though regardless of which encoding you try to use
<nanonyme> Hm, correction, looks like also invoking another level of crazy through using MBCS might be possible for at least larger subset of things passable through wide char API's
<nanonyme> Sounds like I'll try that at work and file the bug at some point of using wide char API's if you're actually convinced you want to care
<nanonyme> (IOW I'm playing around with changing default encoding from ascii to mbcs on Windows)
<mattip> seems py3.5 win32 is not quite ready
<mattip> pypy-c-jit-93479-75cccb748415-win32\pypy3.exe -c "import os; os.scandir('.')"
<mattip> Fatal RPython error: NotImplementedError
<mattip> and cffi_ssl is misisng the equivalent of enum_certificates, enum_crls
<mattip> the first enumerates over openssl's CerOpenStore, returning a tuple of results
<mattip> so does the second, the difference is in the returned values
<mattip> in light of all that, I would be +1 for not even releasing win32 py3.5 in this cycle
tbodt has joined #pypy
<kenaan> mattip default 7a2df755e1a5 /pypy/doc/index-of-release-notes.rst: add release note to index
<kenaan> mattip py3.5 24caad1df703 /pypy/module/: update version to 5.11
mattip has left #pypy ["bye"]
<kenaan> mattip default e167b99ca093 /pypy/doc/release-v5.10.0.rst: tweak release note
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dcrosta has joined #pypy
adamholmberg has quit [Remote host closed the connection]
adamholmberg has joined #pypy
dcrosta has quit [Client Quit]
dcrosta has joined #pypy
adamholmberg has quit [Ping timeout: 264 seconds]
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
antocuni_ has joined #pypy
dcrosta has joined #pypy
kolko_ has quit [Quit: ZNC - http://znc.in]
ssbr` has quit [Remote host closed the connection]
yuyichao has quit [Ping timeout: 265 seconds]
dcrosta has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ssbr` has joined #pypy
yuyichao has joined #pypy
dcrosta has joined #pypy