Closed audiolion closed 7 years ago
Oh. I knew I am gonna regret this, this is needed though because not all of those symbols will be available on the platform where it is translated. Gonna fix ASAP.
I issued a bugfix release. I dont have a machine with RHEL. Can you try to import socket
on:
and
https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.8-1-linux_x86_64-portable.tar.bz2
Yeah its working, now it outputs (4, 1, 39, 1)
and doesn't crash 👍
Thanks for the report and testing.
On my server RHEL 7 the kernel version is "4.1.39_1"
The code: https://github.com/squeaky-pl/portable-pypy/blob/master/socket.append.py#L13
splits on
-
, as a result it tries tomap(int, '39_1')
and fails because it can't convert that to anint
, I had to edit the source code to split on_
to use the portable pypy install.