From issues-reply at bitbucket.org Mon May 1 23:24:14 2017 From: issues-reply at bitbucket.org (longriver) Date: Tue, 02 May 2017 03:24:14 -0000 Subject: [pypy-issue] Issue #2549: pypy2-v5.7.1 may be crash for signal 11 or signal 6 (pypy/pypy) Message-ID: <20170502032414.15960.26334@celery-worker-101.ash1.bb-inf.net> New issue 2549: pypy2-v5.7.1 may be crash for signal 11 or signal 6 https://bitbucket.org/pypy/pypy/issues/2549/pypy2-v571-may-be-crash-for-signal-11-or longriver: PyPy2-v5.7.1 maybe random crash for signal 11 (Segmentation fault) or signal 6 (abort). I have been compiled lld debug version, because the binary files too large to upload, I put them on these links: 1. pypy binary(libpypy-c.so, pypy-c): http://140.206.163.105/tmp/core_5.7.1/pypy2-v5.7.1-lld.tgz 2. corefile 1(sig 6): http://140.206.163.105/tmp/core_5.7.1/core_python.sigabrt 3. corefile 2(sig 11): http://140.206.163.105/tmp/core_5.7.1/core_python.sigfault.1 4. corefile 2(sig 11): http://140.206.163.105/tmp/core_5.7.1/core_python.sigfault.2 From issues-reply at bitbucket.org Tue May 2 07:10:09 2017 From: issues-reply at bitbucket.org (Iain Buclaw) Date: Tue, 02 May 2017 11:10:09 -0000 Subject: [pypy-issue] Issue #2550: cpyext_object.h: No such file or directory (pypy/pypy) Message-ID: <20170502111009.30136.26296@celery-worker-108.ash1.bb-inf.net> New issue 2550: cpyext_object.h: No such file or directory https://bitbucket.org/pypy/pypy/issues/2550/cpyext_objecth-no-such-file-or-directory Iain Buclaw: It looks like there's a new include dependency in pypy, but this is not included in the pypy-dev package for 5.7.1+dfsg-1~ppa1~ubuntu16.04. This makes at least building Twisted FTBFS. ``` gcc -pthread -DNDEBUG -O2 -fPIC -I/srv/graphite/include -c src/twisted/python/_sendmsg.c -o build/temp.linux-x86_64-2.7/src/twisted/python/_sendmsg.o In file included from /srv/graphite/include/Python.h:81:0, from src/twisted/python/_sendmsg.c:7: /srv/graphite/include/object.h:10:27: fatal error: cpyext_object.h: No such file or directory #include "cpyext_object.h" ^ compilation terminated. error: command 'gcc' failed with exit status 1 ``` ``` grep cpyext_object /usr/lib/pypy/include -nR /usr/lib/pypy/include/object.h:10:#include "cpyext_object.h" ``` From issues-reply at bitbucket.org Wed May 3 08:08:33 2017 From: issues-reply at bitbucket.org (Steven Noonan) Date: Wed, 03 May 2017 12:08:33 -0000 Subject: [pypy-issue] Issue #2551: struct.Struct has weird __new__ arguments (pypy/pypy) Message-ID: <20170503120833.12431.64138@celery-worker-108.ash1.bb-inf.net> New issue 2551: struct.Struct has weird __new__ arguments https://bitbucket.org/pypy/pypy/issues/2551/structstruct-has-weird-__new__-arguments Steven Noonan: For some reason, CPython and PyPy differ here: ``` $ pypy -c "import struct; help(struct.Struct.__new__)" Help on function __new__: __new__(subtype, format) $ python2 -c "import struct; help(struct.Struct.__new__)" Help on built-in function __new__: __new__(...) T.__new__(S, ...) -> a new object with type S, a subtype of T ``` This difference breaks two Python modules I use (livestreamer and streamlink). Both of those modules have some common code which creates several classes that inherit from struct.Struct. The derived classes can't be constructed properly due to the `__new__` difference: ``` Traceback (most recent call last): File "/opt/pypy/bin/streamlink", line 11, in load_entry_point('streamlink==0.5.0', 'console_scripts', 'streamlink')() File "/opt/pypy/site-packages/pkg_resources/__init__.py", line 565, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/opt/pypy/site-packages/pkg_resources/__init__.py", line 2631, in load_entry_point return ep.load() File "/opt/pypy/site-packages/pkg_resources/__init__.py", line 2291, in load return self.resolve() File "/opt/pypy/site-packages/pkg_resources/__init__.py", line 2297, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) File "/opt/pypy/site-packages/streamlink_cli/main.py", line 17, in from streamlink.stream import StreamProcess File "/opt/pypy/site-packages/streamlink/stream/__init__.py", line 4, in from streamlink.stream.akamaihd import AkamaiHDStream File "/opt/pypy/site-packages/streamlink/stream/akamaihd.py", line 15, in from ..packages.flashmedia import FLV, FLVError File "/opt/pypy/site-packages/streamlink/packages/flashmedia/__init__.py", line 4, in from .amf import * File "/opt/pypy/site-packages/streamlink/packages/flashmedia/amf.py", line 3, in from .types import AMF0String, AMF0Value, U8, U16BE, U32BE File "/opt/pypy/site-packages/streamlink/packages/flashmedia/types.py", line 298, in U24BE = HighLowCombo(">HB", 8, True) TypeError: __new__() takes exactly 2 arguments (4 given) ``` The arguments for `__init__` are apparently being passed into `__new__` and `Struct.__new__` only accepts two arguments: the first is the class to create an instance of (as with all `__new__` functions) and the second is the format string. Sometimes the derived classes take other kinds of arguments for `__init__` too (such as instances of other derived classes). So in order to get the livestreamer and streamlink modules to work, I came up with this hack: ```diff diff --git a/src/streamlink/packages/flashmedia/types.py b/src/streamlink/packages/flashmedia/types.py index cc4fcca..731bff1 100644 --- a/src/streamlink/packages/flashmedia/types.py +++ b/src/streamlink/packages/flashmedia/types.py @@ -30,6 +30,19 @@ AMF3_MAX_INTEGER = 268435455 class PrimitiveType(Struct): + def __new__(classtype, *args): + try: + return Struct.__new__(classtype, *args) + except: + pass + + try: + return Struct.__new__(classtype, args[0]) + except: + pass + + return Struct.__new__(classtype, '') + def __call__(self, *args): return self.pack(*args) ``` This change makes the modules *work properly*, but it feels like this may be a PyPy library bug. So either: * PyPy needs to make the Struct.__new__ function match CPython's * or, the streamlink and livestreamer modules shouldn't have classes inheriting from Struct Which makes more sense? From issues-reply at bitbucket.org Wed May 3 13:00:57 2017 From: issues-reply at bitbucket.org (Alexander Loechel) Date: Wed, 03 May 2017 17:00:57 -0000 Subject: [pypy-issue] Issue #2552: ast.parse(, , ) produces a instead of an ast.Module itself. (pypy/pypy) Message-ID: <20170503170057.31108.66127@celery-worker-108.ash1.bb-inf.net> New issue 2552: ast.parse(, , ) produces a instead of an ast.Module itself. https://bitbucket.org/pypy/pypy/issues/2552/astparse-produces-a-instead-of-an Alexander Loechel: During Work on RestrictedPython we found that passing an to pypy ast.parse creates an unexpacted , while all CPython implementations return an as expected. From issues-reply at bitbucket.org Fri May 5 06:01:38 2017 From: issues-reply at bitbucket.org (shrikant shinde) Date: Fri, 05 May 2017 10:01:38 -0000 Subject: [pypy-issue] Issue #2553: Unable to translate PyPy 5.7.1 on CentOS 6.7 (pypy/pypy) Message-ID: <20170505100138.7302.96985@celery-worker-105.ash1.bb-inf.net> New issue 2553: Unable to translate PyPy 5.7.1 on CentOS 6.7 https://bitbucket.org/pypy/pypy/issues/2553/unable-to-translate-pypy-571-on-centos-67 shrikant shinde: # Description # I am unable to translate PyPy 5.7.1 on a CentOS 6.7 system (details below). Could you please provide me with some guidance? Any help is appreciated. Thank you. # Notes # Trying to build pypy for the first time. Some initial and last lines of the output are in output section. For detailed logs check attachment. # System Details # $ gcc --version gcc (GCC) 4.9.1 $ cat /etc/centos-release CentOS release 6.7 (Final) Source: https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.7.1-src.zip Translation environment: pypy 1.8 Translation command: ./rpython/bin/rpython -Ojit pypy/goal/targetpypystandalone.py # Output # ``` #!python [c:writing] rpython_translator_c.c [translation:info] written: /tmp/usession-release-pypy2.7-v5.7.1-13/testing_1/testing_1.c [6b0b3] translation-task} [translation:info] Compiling c source... [6b0b3] {translation-task starting compile_c [platform:execute] make -j 3 in /tmp/usession-release-pypy2.7-v5.7.1-13/testing_1 [platform:Error] implement_3.c: In function ?pypy_g_ccall_ERR_reason_error_string__Unsigned?: [platform:Error] implement_3.c:16826:11: warning: assignment discards ?const? qualifier from pointer target type [platform:Error] l_res_54 = ERR_reason_error_string(l_a0_47); [platform:Error] ^ [platform:Error] implement_3.c: In function ?pypy_g_ccall_EVP_DigestFinal__EVP_MD_CTXPtr_arrayPtr_ar?: [platform:Error] implement_3.c:18724:13: warning: pointer targets in passing argument 2 of ?EVP_DigestFinal? differ in signedness [-Wpointer-sign] [platform:Error] l_v83436 = EVP_DigestFinal(l_a0_59, l_a1_29, l_a2_12); [platform:Error] ^ [platform:Error] In file included from /usr/include/openssl/x509.h:73:0, [platform:Error] from /usr/include/openssl/ssl.h:156, [platform:Error] from common_header.h:132, [platform:Error] from implement_3.c:4: . . . ./libpypy-c.so: undefined reference to `SSL_shutdown at libssl.so.10' ./libpypy-c.so: undefined reference to `SSL_load_error_strings at libssl.so.10' ./libpypy-c.so: undefined reference to `SSL_CTX_use_certificate_chain_file at libssl.so.10' collect2: error: ld returned 1 exit status make: *** [pypy-c] Error 1 """) [translation] start debugger... > /home/sshinde/pypy-temp/pypy2-v5.7.1-src/rpython/translator/platform/__init__.py(152)_handle_error() -> raise CompilationError(stdout, stderr) (Pdb+) (Pdb+) ``` From issues-reply at bitbucket.org Sat May 6 09:24:10 2017 From: issues-reply at bitbucket.org (Jeffery Chenn) Date: Sat, 06 May 2017 13:24:10 -0000 Subject: [pypy-issue] Issue #2554: pypy dict() cannot create dict with dict has key with type int (pypy/pypy) Message-ID: <20170506132410.9220.29327@celery-worker-105.ash1.bb-inf.net> New issue 2554: pypy dict() cannot create dict with dict has key with type int https://bitbucket.org/pypy/pypy/issues/2554/pypy-dict-cannot-create-dict-with-dict-has Jeffery Chenn: In python 2,7, the following is worked. >>> d={ 1:0, 0:1} >>> x=dict(**d) >>> x {0: 1, 1: 0} but for pypy. it is not worked. >>>> d={ 1:0, 0:1} >>>> x=dict(**d) Traceback (most recent call last): File "", line 1, in TypeError: keywords must be strings It raise, keywords must be strings From issues-reply at bitbucket.org Mon May 8 13:21:19 2017 From: issues-reply at bitbucket.org (rowillia) Date: Mon, 08 May 2017 17:21:19 -0000 Subject: [pypy-issue] Issue #2555: Default MagicMock __gt__ behavior differs between PyPy and CPython (pypy/pypy) Message-ID: <20170508172119.36374.52697@celery-worker-107.ash1.bb-inf.net> New issue 2555: Default MagicMock __gt__ behavior differs between PyPy and CPython https://bitbucket.org/pypy/pypy/issues/2555/default-magicmock-__gt__-behavior-differs rowillia: This is a small issue, but leads to a bunch of false positives when testing with PyPy and CPython, making adoption harder. Using mock==2.0.0 installed from PyPI PyPy Version: ``` Python 2.7.13 (5.7.1+dfsg-2ubuntu1~ppa1~ubuntu14.04, May 02 2017, 19:33:41) [PyPy 5.7.1 with GCC 4.8.4] ``` In PyPy: ```python >>> from mock import MagicMock >>> z = MagicMock() >>> 100 <= z False ``` In Python 2.7.13: ```python >>> from mock import MagicMock >>> z = MagicMock() >>> 100 <= z True ``` From issues-reply at bitbucket.org Thu May 11 06:57:24 2017 From: issues-reply at bitbucket.org (Omer Ben-Amram) Date: Thu, 11 May 2017 10:57:24 -0000 Subject: [pypy-issue] Issue #2556: pyzmq intallation in pypy35 branch explodes (pypy/pypy) Message-ID: <20170511105724.16158.68861@celery-worker-107.ash1.bb-inf.net> New issue 2556: pyzmq intallation in pypy35 branch explodes https://bitbucket.org/pypy/pypy/issues/2556/pyzmq-intallation-in-pypy35-branch Omer Ben-Amram: Hi guys, So I've successfully compiled and ran pypy35 (from master) on my OSX sierra machine. I've tried to install pyzmq from sources like so: ``` #!python env CFLAGS=-I/Users/omerba/anaconda/include CPPFLAGS=-I/Users/omerba/anaconda/include DYLD_LIBRARY_PATH=/Users/omerba/anaconda/envs/windmill/lib LDFLAGS=-L/Users/omerba/anaconda/lib/ CXXFLAGS=-I/Users/omerba/anaconda/include /Users/omerba/Workspace/pypy/pypy3-c setup.py --zmq=bundled install ``` And I've got the following output: ``` #!bash running configure ************************************************ Using bundled libzmq already have bundled/zeromq already have platform.hpp ************************************************ running install running build running build_py copying zmq/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq copying zmq/decorators.py -> build/lib.macosx-10.12-x86_64-3.5/zmq copying zmq/error.py -> build/lib.macosx-10.12-x86_64-3.5/zmq creating build/lib.macosx-10.12-x86_64-3.5/zmq/asyncio copying zmq/asyncio/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/asyncio creating build/lib.macosx-10.12-x86_64-3.5/zmq/auth copying zmq/auth/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth copying zmq/auth/base.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth copying zmq/auth/certs.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth copying zmq/auth/ioloop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth copying zmq/auth/thread.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth creating build/lib.macosx-10.12-x86_64-3.5/zmq/auth/asyncio copying zmq/auth/asyncio/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/auth/asyncio creating build/lib.macosx-10.12-x86_64-3.5/zmq/backend copying zmq/backend/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend copying zmq/backend/select.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend creating build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/_cffi.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/_poll.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/constants.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/context.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/devices.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/error.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/message.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/socket.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/utils.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi creating build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython creating build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/devices/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/devices/basedevice.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/devices/monitoredqueue.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/devices/monitoredqueuedevice.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/devices/proxydevice.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices creating build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop copying zmq/eventloop/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop copying zmq/eventloop/future.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop copying zmq/eventloop/ioloop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop copying zmq/eventloop/zmqstream.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop creating build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/concurrent.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/ioloop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/log.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/stack_context.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado copying zmq/eventloop/minitornado/util.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado creating build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/auto.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/common.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/interface.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/posix.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform copying zmq/eventloop/minitornado/platform/windows.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/eventloop/minitornado/platform creating build/lib.macosx-10.12-x86_64-3.5/zmq/green copying zmq/green/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green copying zmq/green/core.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green copying zmq/green/device.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green copying zmq/green/poll.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green creating build/lib.macosx-10.12-x86_64-3.5/zmq/green/eventloop copying zmq/green/eventloop/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green/eventloop copying zmq/green/eventloop/ioloop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green/eventloop copying zmq/green/eventloop/zmqstream.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/green/eventloop creating build/lib.macosx-10.12-x86_64-3.5/zmq/log copying zmq/log/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/log copying zmq/log/handlers.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/log creating build/lib.macosx-10.12-x86_64-3.5/zmq/ssh copying zmq/ssh/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/ssh copying zmq/ssh/forward.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/ssh copying zmq/ssh/tunnel.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/ssh creating build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/attrsettr.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/constants.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/context.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/frame.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/poll.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/socket.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/stopwatch.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/tracker.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar copying zmq/sugar/version.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/sugar creating build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_auth.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_cffi_backend.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_constants.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_context.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_decorators.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_device.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_error.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_etc.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_future.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_imports.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_includes.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_ioloop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_log.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_message.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_monitor.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_monqueue.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_multipart.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_pair.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_poll.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_pubsub.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_reqrep.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_retry_eintr.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_security.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_socket.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_ssh.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_version.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_win32_shim.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_z85.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests copying zmq/tests/test_zmqstream.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests creating build/lib.macosx-10.12-x86_64-3.5/zmq/tests/asyncio copying zmq/tests/asyncio/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests/asyncio copying zmq/tests/asyncio/_test_asyncio.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests/asyncio copying zmq/tests/asyncio/test_asyncio.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/tests/asyncio creating build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/__init__.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/constant_names.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/garbage.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/interop.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/jsonapi.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/monitor.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/sixcerpt.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/strtypes.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/win32.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/z85.py -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/backend/cffi/_cdefs.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cffi/_verify.c -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cffi copying zmq/backend/cython/checkrc.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/context.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/libzmq.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/message.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/socket.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/constant_enums.pxi -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/backend/cython/constants.pxi -> build/lib.macosx-10.12-x86_64-3.5/zmq/backend/cython copying zmq/devices/monitoredqueue.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/devices copying zmq/utils/buffers.pxd -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/getpid_compat.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/ipcmaxlen.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/pyversion_compat.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/zmq_compat.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/zmq_constants.h -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/compiler.json -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils copying zmq/utils/config.json -> build/lib.macosx-10.12-x86_64-3.5/zmq/utils running build_ext building 'zmq.libzmq' extension creating build/temp.macosx-10.12-x86_64-3.5/buildutils creating build/temp.macosx-10.12-x86_64-3.5/bundled creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/src creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/contrib creating build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/contrib/randombytes cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c buildutils/initlibzmq.c -o build/temp.macosx-10.12-x86_64-3.5/buildutils/initlibzmq.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/address.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/address.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/clock.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/clock.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/ctx.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ctx.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/curve_client.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/curve_client.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/curve_server.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/curve_server.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/dealer.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/dealer.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/devpoll.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/devpoll.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/dist.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/dist.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/epoll.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/epoll.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/err.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/err.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/fq.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/fq.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/gssapi_client.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/gssapi_client.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/gssapi_mechanism_base.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/gssapi_mechanism_base.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/gssapi_server.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/gssapi_server.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/io_object.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/io_object.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/io_thread.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/io_thread.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/ip.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ip.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/ipc_address.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_address.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/ipc_connecter.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_connecter.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/ipc_listener.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_listener.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/kqueue.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/kqueue.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/lb.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/lb.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/mailbox.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mailbox.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/mechanism.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mechanism.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/metadata.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/metadata.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/msg.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/msg.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/mtrie.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mtrie.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/norm_engine.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/norm_engine.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/null_mechanism.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/null_mechanism.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/object.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/object.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/options.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/options.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/own.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/own.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pair.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pair.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pgm_receiver.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_receiver.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pgm_sender.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_sender.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pgm_socket.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_socket.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pipe.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pipe.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/plain_client.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/plain_client.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/plain_server.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/plain_server.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/poll.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/poll.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/poller_base.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/poller_base.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/precompiled.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/precompiled.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/proxy.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/proxy.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pub.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pub.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/pull.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pull.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/push.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/push.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/random.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/random.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/raw_decoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/raw_decoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/raw_encoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/raw_encoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/reaper.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/reaper.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/rep.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/rep.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/req.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/req.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/router.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/router.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/select.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/select.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/session_base.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/session_base.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/signaler.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/signaler.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/socket_base.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/socket_base.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/socks.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/socks.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/socks_connecter.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/socks_connecter.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/stream.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/stream.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/stream_engine.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/stream_engine.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/sub.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/sub.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tcp.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tcp_address.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_address.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tcp_connecter.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_connecter.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tcp_listener.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_listener.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/thread.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/thread.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tipc_address.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_address.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tipc_connecter.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_connecter.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/tipc_listener.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_listener.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/trie.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/trie.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/v1_decoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v1_decoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/v1_encoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v1_encoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/v2_decoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v2_decoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/v2_encoder.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v2_encoder.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/xpub.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/xpub.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/xsub.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/xsub.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/zmq.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/zmq.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/src/zmq_utils.cpp -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/zmq_utils.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/tweetnacl/src/tweetnacl.c -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/src/tweetnacl.o cc -pthread -DNDEBUG -O2 -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include -fPIC -DZMQ_HAVE_CURVE=1 -DZMQ_USE_TWEETNACL=1 -DZMQ_USE_KQUEUE=1 -Ibundled/zeromq/include -Ibundled/zeromq/tweetnacl/src -Ibundled/zeromq/tweetnacl/contrib/randombytes -Ibundled -I/Users/omerba/Workspace/pypy/include -c bundled/zeromq/tweetnacl/contrib/randombytes/devurandom.c -o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/contrib/randombytes/devurandom.o c++ -pthread -shared -L/Users/omerba/anaconda/lib/ -I/Users/omerba/anaconda/include -I/Users/omerba/anaconda/include build/temp.macosx-10.12-x86_64-3.5/buildutils/initlibzmq.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/address.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/clock.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ctx.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/curve_client.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/curve_server.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/dealer.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/devpoll.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/dist.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/epoll.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/err.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/fq.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/gssapi_client.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/s rc/gssap i_mechanism_base.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/gssapi_server.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/io_object.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/io_thread.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ip.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_address.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_connecter.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/ipc_listener.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/kqueue.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/lb.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mailbox.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mechanism.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/metadata.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/msg.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/mtrie.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/norm_engi ne.o bui ld/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/null_mechanism.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/object.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/options.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/own.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pair.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_receiver.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_sender.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pgm_socket.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pipe.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/plain_client.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/plain_server.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/poll.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/poller_base.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/precompiled.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/proxy.o build/temp.m acosx-10 .12-x86_64-3.5/bundled/zeromq/src/pub.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/pull.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/push.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/random.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/raw_decoder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/raw_encoder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/reaper.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/rep.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/req.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/router.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/select.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/session_base.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/signaler.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/socket_base.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/socks.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/s ocks_con necter.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/stream.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/stream_engine.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/sub.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_address.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_connecter.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tcp_listener.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/thread.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_address.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_connecter.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/tipc_listener.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/trie.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v1_decoder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v1_encoder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/sr c/v2_dec oder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/v2_encoder.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/xpub.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/xsub.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/zmq.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/src/zmq_utils.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/src/tweetnacl.o build/temp.macosx-10.12-x86_64-3.5/bundled/zeromq/tweetnacl/contrib/randombytes/devurandom.o -o build/lib.macosx-10.12-x86_64-3.5/zmq/libzmq.pypy3-58-x86_64-darwin.so clang: warning: argument unused during compilation: '-pthread' [-Wunused-command-line-argument] Undefined symbols for architecture x86_64: "_PyPyModule_Create2", referenced from: _PyInit_libzmq in initlibzmq.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) error: command 'c++' failed with exit status 1 ``` What is the _PyPyModule_Create2 symbol? Why is it missing? Thanks! From issues-reply at bitbucket.org Sat May 13 23:30:27 2017 From: issues-reply at bitbucket.org (CHANGBEOM YUN) Date: Sun, 14 May 2017 03:30:27 -0000 Subject: [pypy-issue] Issue #2557: file.read(1) returns 2 bytes when inappropriate flag is given on opening binary file (pypy/pypy) Message-ID: <20170514033027.17509.37278@celery-worker-105.ash1.bb-inf.net> New issue 2557: file.read(1) returns 2 bytes when inappropriate flag is given on opening binary file https://bitbucket.org/pypy/pypy/issues/2557/fileread-1-returns-2-bytes-when CHANGBEOM YUN: I'm using CPython 2.7.13 and PyPy 5.7.1 on Windows 10 Professional (64bit). When I tried to extract each byte to integer with Python script from a PDF file, I accidentally forgot to put 'rb' flag on opening. So, I put 'r' for reading binary file. While CPython works without an exception (not sure outputs are correct), PyPy throws an exception saying ord() got string of length 2 instead of single character. I attached scripts and binary file i used for testing. Thanks. Versions: ``` #!plain C:\Users\nidev\PyPyBugReproduce>pypy --version Python 2.7.13 (14f400f0498e, Mar 31 2017, 19:58:36) [PyPy 5.7.1 with MSC v.1500 32 bit] C:\Users\nidev\PyPyBugReproduce>python --version Python 2.7.13 ``` Executing wrong one with PyPy and CPython: ``` #!text C:\Users\nidev\PyPyBugReproduce>pypy wrong_byteencoder.py void.pdf > output.txt Traceback (most recent call last): File "wrong_byteencoder.py", line 13, in print(ord(c)) TypeError: ord() expected a character, but string of length 2 found C:\Users\nidev\PyPyBugReproduce>python wrong_byteencoder.py void.pdf > output.txt (exited cleanly) ``` Executing right one with PyPy and CPython: ``` #!text C:\Users\nidev\PyPyBugReproduce>pypy right_byteencoder.py void.pdf > output.txt (exited cleanly) C:\Users\nidev\PyPyBugReproduce>python right_byteencoder.py void.pdf > output.txt (exited cleanly) ``` From issues-reply at bitbucket.org Tue May 16 11:31:48 2017 From: issues-reply at bitbucket.org (Ben Longbons) Date: Tue, 16 May 2017 15:31:48 -0000 Subject: [pypy-issue] Issue #2558: sys.__interactivehook__ not respected (pypy/pypy) Message-ID: <20170516153148.31350.97333@celery-worker-107.ash1.bb-inf.net> New issue 2558: sys.__interactivehook__ not respected https://bitbucket.org/pypy/pypy/issues/2558/sys__interactivehook__-not-respected Ben Longbons: This means that the `site` module's readline configuration doesn't happen. From issues-reply at bitbucket.org Thu May 18 11:40:58 2017 From: issues-reply at bitbucket.org (Shlomi Fish) Date: Thu, 18 May 2017 15:40:58 -0000 Subject: [pypy-issue] =?utf-8?q?Issue_=232559=3A_On_http=3A//pypy=2Eorg/d?= =?utf-8?q?ownload=2Ehtml_macOS_/=C2=A0=22Mac_OS_X=22_is_misspelled_=28pyp?= =?utf-8?q?y/pypy=29?= Message-ID: <20170518154058.6351.20469@celery-worker-101.ash1.bb-inf.net> New issue 2559: On http://pypy.org/download.html macOS /?"Mac OS X" is misspelled https://bitbucket.org/pypy/pypy/issues/2559/on-http-pypyorg-downloadhtml-macos-mac-os Shlomi Fish: Hi! On http://pypy.org/download.html and possibly some other pages of the site "OS X" is misspelled as "OS/X" and it was anyway renamed into "macOS" - see http://www.shlomifish.org/humour/fortunes/show.cgi?id=sharp-programming-macOS . Please look into fixing it. From issues-reply at bitbucket.org Thu May 18 22:30:17 2017 From: issues-reply at bitbucket.org (Ronan Lamy) Date: Fri, 19 May 2017 02:30:17 -0000 Subject: [pypy-issue] Issue #2560: Assert reinterpretation nonsense in app-tests (pypy/pypy) Message-ID: <20170519023017.7639.23137@celery-worker-106.ash1.bb-inf.net> New issue 2560: Assert reinterpretation nonsense in app-tests https://bitbucket.org/pypy/pypy/issues/2560/assert-reinterpretation-nonsense-in-app Ronan Lamy: On pypy3, when an assertion fails in an app-level test, the source code for the `assert` statement is passed on to pytest which compiles some bytecode that is run again by the interpreter in order to provide better error reporting. (BTW, this assert reinterpretation process has been abandoned by pytest for being too error-prone.) The trouble is the compilation logic for this runs on the host Python (i.e. CPython2, typically), but the bytecode runs on top of an interpreted pypy3, so that `assert` statements that aren't bytecode-compatible between 2.7 and 3.5 cause BytecodeCorruptions, or worse. Thanks to bytecode compatibility between CPython and PyPy, pypy2 is not visibly affected, though this logic is arguably also faulty there. From issues-reply at bitbucket.org Fri May 19 02:01:44 2017 From: issues-reply at bitbucket.org (Nathaniel Smith) Date: Fri, 19 May 2017 06:01:44 -0000 Subject: [pypy-issue] Issue #2561: Passing a buffersize of 0 to socket.getsockopt should be equivalent to not passing it at all (pypy/pypy) Message-ID: <20170519060144.32478.34420@celery-worker-106.ash1.bb-inf.net> New issue 2561: Passing a buffersize of 0 to socket.getsockopt should be equivalent to not passing it at all https://bitbucket.org/pypy/pypy/issues/2561/passing-a-buffersize-of-0-to Nathaniel Smith: With CPython: ```python >>> import socket >>> s = socket.socket() >>> s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 0) 0 ``` With latest PyPy3 nightly build: ```python >>>> import socket >>>> s = socket.socket() >>>> s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 0) b'' ``` As a special case, CPython treats a zero value for the third argument ("buffersize") as equivalent to it not being passed at all. This isn't documented in the online docs, but it is in the docstring: ```python >>> print(s.getsockopt.__doc__) getsockopt(level, option[, buffersize]) -> value Get a socket option. See the Unix manual for level and option. If a nonzero buffersize argument is given, the return value is a string of that length; otherwise it is an integer. ``` (notice key word "nonzero") This is important because if you want to make a wrapper around getsockopt that pass arguments through, it's convenient to make the wrapper set `buffersize=0` and then unconditionally pass `buffersize` to `socket.getsockopt`. From issues-reply at bitbucket.org Fri May 19 07:18:42 2017 From: issues-reply at bitbucket.org (Carl Friedrich Bolz) Date: Fri, 19 May 2017 11:18:42 -0000 Subject: [pypy-issue] Issue #2562: Very confusing error message when using result of list.append in rpython (pypy/pypy) Message-ID: <20170519111842.39078.90767@celery-worker-106.ash1.bb-inf.net> New issue 2562: Very confusing error message when using result of list.append in rpython https://bitbucket.org/pypy/pypy/issues/2562/very-confusing-error-message-when-using Carl Friedrich Bolz: This kind of RPython code produces a super confusing error message: ``` def g(l): return l.append(1) def dummyfn(): l = [] g(l) return len(l) ``` the problem is the return in ``g``. The error message is in ``checkgraph``: ``` def usevar(v, in_link=None): > assert v in vars E assert v139 in {v140: None, v141: None, l_26: None} ``` I don't particularly care about that code, but it took me ages to figure out why this errors :-(. From issues-reply at bitbucket.org Sat May 20 07:24:15 2017 From: issues-reply at bitbucket.org (anatoly techtonik) Date: Sat, 20 May 2017 11:24:15 -0000 Subject: [pypy-issue] Issue #1: Link to Windows issues (pypy/revdb) Message-ID: <20170520112415.32028.75011@celery-worker-105.ash1.bb-inf.net> New issue 1: Link to Windows issues https://bitbucket.org/pypy/revdb/issues/1/link-to-windows-issues anatoly techtonik: README mentions Windows issues, but doesn't link to them, so it is hard to discover if anyone can help. From issues-reply at bitbucket.org Sat May 20 07:27:33 2017 From: issues-reply at bitbucket.org (anatoly techtonik) Date: Sat, 20 May 2017 11:27:33 -0000 Subject: [pypy-issue] Issue #2: New post on RevDB is needed (pypy/revdb) Message-ID: <20170520112733.4247.5882@celery-worker-108.ash1.bb-inf.net> New issue 2: New post on RevDB is needed https://bitbucket.org/pypy/revdb/issues/2/new-post-on-revdb-is-needed anatoly techtonik: Surely RevDB needs more exposure to developers. This is README: ``` #!human This is the original blog post, which describes the basics: https://morepypy.blogspot.ch/2016/07/reverse-debugging-for-python.html (note that many of the limitations described in that blog post have been removed now: threads and cpyext are implemented; various crashes have been fixed; ``next``-style commands behave more reasonably now; ``import`` in ``!`` commands is special-cased). ``` Also, it needs a coverage, how to integrate it with Python IDEs, such as Spyder. From issues-reply at bitbucket.org Sat May 20 07:41:24 2017 From: issues-reply at bitbucket.org (anatoly techtonik) Date: Sat, 20 May 2017 11:41:24 -0000 Subject: [pypy-issue] Issue #3: Automatic dependency management with RevDB (pypy/revdb) Message-ID: <20170520114124.33661.32251@celery-worker-105.ash1.bb-inf.net> New issue 3: Automatic dependency management with RevDB https://bitbucket.org/pypy/revdb/issues/3/automatic-dependency-management-with-revdb anatoly techtonik: Can RevDB be used for automatic detection and fetching of dependencies dynamically? https://github.com/jaraco/rwt/issues/17#issuecomment-302840283 Like `golang` does during `go get`, but for Python during execution? From issues-reply at bitbucket.org Fri May 26 16:52:06 2017 From: issues-reply at bitbucket.org (Tuom Larsen) Date: Fri, 26 May 2017 20:52:06 -0000 Subject: [pypy-issue] Issue #2563: Slow round() (pypy/pypy) Message-ID: <20170526205206.5811.33928@celery-worker-107.ash1.bb-inf.net> New issue 2563: Slow round() https://bitbucket.org/pypy/pypy/issues/2563/slow-round Tuom Larsen: Built-in function `round` seems to be missing fast JIT path: from timeit import timeit print timeit('int(sqrt(123.456)+0.5)', 'from math import sqrt') print timeit('int(round(sqrt(123.456)))', 'from math import sqrt') prints: 0.00339508056641 1.18832707405 From issues-reply at bitbucket.org Sun May 28 05:49:02 2017 From: issues-reply at bitbucket.org (Alessandro Barbieri) Date: Sun, 28 May 2017 09:49:02 -0000 Subject: [pypy-issue] Issue #2564: pypy3-5.7.1 libressl support (pypy/pypy) Message-ID: <20170528094902.23547.64641@celery-worker-106.ash1.bb-inf.net> New issue 2564: pypy3-5.7.1 libressl support https://bitbucket.org/pypy/pypy/issues/2564/pypy3-571-libressl-support Alessandro Barbieri: On gentoo with libressl-2.5* (can't test with earlier sorry), pypy3-5.7.1 fails to build see https://bugs.gentoo.org/show_bug.cgi?id=619648 this is the error ``` #!shell >>> Install pypy3-5.7.1-r2 into /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/category/dev-python * Installing PyPy ... * PT_PAX marking -m /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/pypy3-c with paxctl * PT_PAX marking -m /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/pypy3-c with paxctl-ng * PT_PAX marking -m /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/libpypy3-c.so with paxctl * PT_PAX marking -m /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/libpypy3-c.so with paxctl-ng * XATTR_PAX marking -m /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/pypy3-c with paxctl-ng * XATTR_PAX marking -me /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/pypy3-c with setfattr * Failed to set XATTR_PAX markings -me /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/pypy3-c. * XATTR_PAX marking -me /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/libpypy3-c.so with paxctl-ng * XATTR_PAX marking -me /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/libpypy3-c.so with setfattr * Failed to set XATTR_PAX markings -me /var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/libpypy3-c.so. * Generating caches and byte-compiling ... _lzma_cffi.c: In function ?_cffi_checkfld_typedef_lzma_stream?: _lzma_cffi.c:828:29: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types] { lzma_allocator * *tmp = &p->allocator; (void)tmp; } In file included from /usr/include/openssl/x509.h:595:0, from /usr/include/openssl/engine.h:96, from _pypy_openssl.c:518: _pypy_openssl.c:2749:19: error: expected identifier or ?(? before numeric constant static const long X509_V_ERR_HOSTNAME_MISMATCH = 0; ^ _pypy_openssl.c:2750:19: error: expected identifier or ?(? before numeric constant static const long X509_V_ERR_EMAIL_MISMATCH = 0; ^ _pypy_openssl.c:2751:19: error: expected identifier or ?(? before numeric constant static const long X509_V_ERR_IP_ADDRESS_MISMATCH = 0; ^ Traceback (most recent call last): File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib-python/3/distutils/unixccompiler.py", line 143, in _compile extra_postargs) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib-python/3/distutils/ccompiler.py", line 909, in spawn spawn(cmd, dry_run=self.dry_run) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib-python/3/distutils/spawn.py", line 36, in spawn _spawn_posix(cmd, search_path, dry_run=dry_run) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib-python/3/distutils/spawn.py", line 159, in _spawn_posix % (cmd, exit_status)) distutils.errors.DistutilsExecError: command 'gcc' failed with exit status 1 During handling of the above exception, another exception occurred: Traceback (most recent call last): File "_ssl_build.py", line 53, in ffi.compile() File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib_pypy/cffi/api.py", line 684, in compile compiler_verbose=verbose, debug=debug, **kwds) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib_pypy/cffi/recompiler.py", line 1484, in recompile compiler_verbose, debug) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib_pypy/cffi/ffiplatform.py", line 20, in compile outputfilename = _build(tmpdir, ext, compiler_verbose, debug) File "/var/tmp/portage/dev-python/pypy3-5.7.1-r2/image/usr/lib64/pypy3/lib_pypy/cffi/ffiplatform.py", line 56, in _build raise VerificationError('%s: %s' % (e.__class__.__name__, e)) cffi.error.VerificationError: CompileError: command 'gcc' failed with exit status 1 * ERROR: dev-python/pypy3-5.7.1-r2::gentoo failed (install phase): * Failed to build CFFI bindings for ssl * * Call stack: * ebuild.sh, line 115: Called src_install * environment, line 4241: Called die * The specific snippet of code: * "${PYTHON}" "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}"; ``` From issues-reply at bitbucket.org Sun May 28 12:57:48 2017 From: issues-reply at bitbucket.org (Jacek Wielemborek) Date: Sun, 28 May 2017 16:57:48 -0000 Subject: [pypy-issue] Issue #2565: *** Error in `pypy3-v5.7.1-linux64/bin/pypy3': free(): invalid pointer: 0x0000000001e30510 *** (pypy/pypy) Message-ID: <20170528165748.5315.75965@celery-worker-108.ash1.bb-inf.net> New issue 2565: *** Error in `pypy3-v5.7.1-linux64/bin/pypy3': free(): invalid pointer: 0x0000000001e30510 *** https://bitbucket.org/pypy/pypy/issues/2565/error-in-pypy3-v571-linux64-bin-pypy3-free Jacek Wielemborek: {code} [18:53:59] ? afl-0.07b git:(python) ? % pypy3-v5.7.1-linux64/bin/pypy3 afl-fuzz.py .........................................EEEEE..*** Error in `pypy3-v5.7.1-linux64/bin/pypy3': free(): invalid pointer: 0x0000000001e30510 *** ======= Backtrace: ========= /lib/x86_64-linux-gnu/libc.so.6(+0x7908b)[0x7fc8dc92e08b] /lib/x86_64-linux-gnu/libc.so.6(+0x826fa)[0x7fc8dc9376fa] /lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7fc8dc93b12c] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20e8118)[0x7fc8daf65118] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x163da05)[0x7fc8da4baa05] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1f6eda2)[0x7fc8dadebda2] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1a0e82b)[0x7fc8da88b82b] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1a0fabe)[0x7fc8da88cabe] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cfe263)[0x7fc8dab7b263] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x16eba89)[0x7fc8da568a89] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4eff0)[0x7fc8daacbff0] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c5334c)[0x7fc8daad034c] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cfecef)[0x7fc8dab7bcef] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x16ebd23)[0x7fc8da568d23] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4eff0)[0x7fc8daacbff0] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c5334c)[0x7fc8daad034c] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cff1af)[0x7fc8dab7c1af] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4eff0)[0x7fc8daacbff0] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c5334c)[0x7fc8daad034c] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cfecef)[0x7fc8dab7bcef] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x16eba89)[0x7fc8da568a89] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4f435)[0x7fc8daacc435] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x13f5f5f)[0x7fc8da272f5f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c53c76)[0x7fc8daad0c76] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cff1af)[0x7fc8dab7c1af] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4eff0)[0x7fc8daacbff0] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c533f5)[0x7fc8daad03f5] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c10397)[0x7fc8daa8d397] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4f675)[0x7fc8daacc675] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c5301e)[0x7fc8daad001e] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d07ee4)[0x7fc8dab84ee4] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x20d113f)[0x7fc8daf4e13f] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1241813)[0x7fc8da0be813] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1d0f160)[0x7fc8dab8c160] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x151b7be)[0x7fc8da3987be] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1cfecef)[0x7fc8dab7bcef] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x16ebd23)[0x7fc8da568d23] /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so(+0x1c4eff0)[0x7fc8daacbff0] ======= Memory map: ======== 00400000-00401000 r-xp 00000000 fd:01 19541862 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/pypy3 00600000-00601000 r--p 00000000 fd:01 19541862 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/pypy3 00601000-00602000 rw-p 00001000 fd:01 19541862 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/pypy3 01d3b000-021e3000 rw-p 00000000 00:00 0 [heap] 7fc8d0000000-7fc8d0021000 rw-p 00000000 00:00 0 7fc8d0021000-7fc8d4000000 ---p 00000000 00:00 0 7fc8d601b000-7fc8d6031000 r-xp 00000000 fd:01 22020273 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fc8d6031000-7fc8d6230000 ---p 00016000 fd:01 22020273 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fc8d6230000-7fc8d6231000 r--p 00015000 fd:01 22020273 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fc8d6231000-7fc8d6232000 rw-p 00016000 fd:01 22020273 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fc8d625f000-7fc8d6261000 r-xp 00000000 fd:01 19544064 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/lib_pypy/_resource_cffi.pypy3-57-x86_64-linux-gnu.so 7fc8d6261000-7fc8d6460000 ---p 00002000 fd:01 19544064 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/lib_pypy/_resource_cffi.pypy3-57-x86_64-linux-gnu.so 7fc8d6460000-7fc8d6461000 r--p 00001000 fd:01 19544064 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/lib_pypy/_resource_cffi.pypy3-57-x86_64-linux-gnu.so 7fc8d6461000-7fc8d6462000 rw-p 00002000 fd:01 19544064 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/lib_pypy/_resource_cffi.pypy3-57-x86_64-linux-gnu.so 7fc8d6483000-7fc8d6493000 rw-s 00000000 00:05 548831305 /SYSV00000000 (deleted) 7fc8d6493000-7fc8d64a3000 rw-s 00000000 00:05 548798531 /SYSV00000000 (deleted) 7fc8d64a3000-7fc8d64b3000 rw-s 00000000 00:05 548765762 /SYSV00000000 (deleted) 7fc8d64b3000-7fc8d64c3000 rw-s 00000000 00:05 548732993 /SYSV00000000 (deleted) 7fc8d64c3000-7fc8d64d3000 rw-s 00000000 00:05 548700224 /SYSV00000000 (deleted) 7fc8d64d3000-7fc8d64e3000 rw-s 00000000 00:05 548667455 /SYSV00000000 (deleted) 7fc8d64e3000-7fc8d7380000 rw-p 00000000 00:00 0 7fc8d7380000-7fc8d778c000 r--p 00000000 fd:01 24122785 /usr/lib/locale/locale-archive 7fc8d778c000-7fc8d788c000 rwxp 00000000 00:00 0 7fc8d788c000-7fc8d7aae000 rw-p 00000000 00:00 0 7fc8d7aae000-7fc8d7ad3000 r-xp 00000000 fd:01 22024788 /lib/x86_64-linux-gnu/libtinfo.so.5.9 7fc8d7ad3000-7fc8d7cd2000 ---p 00025000 fd:01 22024788 /lib/x86_64-linux-gnu/libtinfo.so.5.9 7fc8d7cd2000-7fc8d7cd6000 r--p 00024000 fd:01 22024788 /lib/x86_64-linux-gnu/libtinfo.so.5.9 7fc8d7cd6000-7fc8d7cd7000 rw-p 00028000 fd:01 22024788 /lib/x86_64-linux-gnu/libtinfo.so.5.9 7fc8d7cd7000-7fc8d7cde000 r-xp 00000000 fd:01 24125661 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 7fc8d7cde000-7fc8d7edd000 ---p 00007000 fd:01 24125661 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 7fc8d7edd000-7fc8d7ede000 r--p 00006000 fd:01 24125661 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 7fc8d7ede000-7fc8d7edf000 rw-p 00007000 fd:01 24125661 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 7fc8d7edf000-7fc8d7ee8000 r-xp 00000000 fd:01 22024513 /lib/x86_64-linux-gnu/libcrypt-2.24.so 7fc8d7ee8000-7fc8d80e7000 ---p 00009000 fd:01 22024513 /lib/x86_64-linux-gnu/libcrypt-2.24.so 7fc8d80e7000-7fc8d80e8000 r--p 00008000 fd:01 22024513 /lib/x86_64-linux-gnu/libcrypt-2.24.so 7fc8d80e8000-7fc8d80e9000 rw-p 00009000 fd:01 22024513 /lib/x86_64-linux-gnu/libcrypt-2.24.so 7fc8d80e9000-7fc8d8117000 rw-p 00000000 00:00 0 7fc8d8117000-7fc8d8132000 r-xp 00000000 fd:01 22020276 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fc8d8132000-7fc8d8331000 ---p 0001b000 fd:01 22020276 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fc8d8331000-7fc8d8332000 r--p 0001a000 fd:01 22020276 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fc8d8332000-7fc8d8333000 rw-p 0001b000 fd:01 22020276 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fc8d8333000-7fc8d843b000 r-xp 00000000 fd:01 22024515 /lib/x86_64-linux-gnu/libm-2.24.so 7fc8d843b000-7fc8d863a000 ---p 00108000 fd:01 22024515 /lib/x86_64-linux-gnu/libm-2.24.so 7fc8d863a000-7fc8d863b000 r--p 00107000 fd:01 22024515 /lib/x86_64-linux-gnu/libm-2.24.so 7fc8d863b000-7fc8d863c000 rw-p 00108000 fd:01 22024515 /lib/x86_64-linux-gnu/libm-2.24.so 7fc8d863c000-7fc8d8663000 r-xp 00000000 fd:01 22024523 /lib/x86_64-linux-gnu/libexpat.so.1.6.2 7fc8d8663000-7fc8d8863000 ---p 00027000 fd:01 22024523 /lib/x86_64-linux-gnu/libexpat.so.1.6.2 7fc8d8863000-7fc8d8865000 r--p 00027000 fd:01 22024523 /lib/x86_64-linux-gnu/libexpat.so.1.6.2 7fc8d8865000-7fc8d8866000 rw-p 00029000 fd:01 22024523 /lib/x86_64-linux-gnu/libexpat.so.1.6.2 7fc8d8866000-7fc8d8875000 r-xp 00000000 fd:01 22040568 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 7fc8d8875000-7fc8d8a74000 ---p 0000f000 fd:01 22040568 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 7fc8d8a74000-7fc8d8a75000 r--p 0000e000 fd:01 22040568 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 7fc8d8a75000-7fc8d8a76000 rw-p 0000f000 fd:01 22040568 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 7fc8d8a76000-7fc8d8a79000 r-xp 00000000 fd:01 22024514 /lib/x86_64-linux-gnu/libdl-2.24.so 7fc8d8a79000-7fc8d8c78000 ---p 00003000 fd:01 22024514 /lib/x86_64-linux-gnu/libdl-2.24.so 7fc8d8c78000-7fc8d8c79000 r--p 00002000 fd:01 22024514 /lib/x86_64-linux-gnu/libdl-2.24.so 7fc8d8c79000-7fc8d8c7a000 rw-p 00003000 fd:01 22024514 /lib/x86_64-linux-gnu/libdl-2.24.so 7fc8d8c7a000-7fc8d8c7c000 r-xp 00000000 fd:01 22050835 /lib/x86_64-linux-gnu/libutil-2.24.so 7fc8d8c7c000-7fc8d8e7b000 ---p 00002000 fd:01 22050835 /lib/x86_64-linux-gnu/libutil-2.24.so 7fc8d8e7b000-7fc8d8e7c000 r--p 00001000 fd:01 22050835 /lib/x86_64-linux-gnu/libutil-2.24.so 7fc8d8e7c000-7fc8d8e7d000 rw-p 00002000 fd:01 22050835 /lib/x86_64-linux-gnu/libutil-2.24.so 7fc8d8e7d000-7fc8db275000 r-xp 00000000 fd:01 19541863 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so 7fc8db275000-7fc8db475000 ---p 023f8000 fd:01 19541863 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so 7fc8db475000-7fc8db4ab000 r--p 023f8000 fd:01 19541863 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so 7fc8db4ab000-7fc8dc88d000 rw-p 0242e000 fd:01 19541863 /home/d33tah/workspace/afl-refactor/afl-0.07b/pypy3-v5.7.1-linux64/bin/libpypy3-c.so 7fc8dc88d000-7fc8dc8b5000 rw-p 00000000 00:00 0 7fc8dc8b5000-7fc8dca72000 r-xp 00000000 fd:01 22024511 /lib/x86_64-linux-gnu/libc-2.24.so 7fc8dca72000-7fc8dcc72000 ---p 001bd000 fd:01 22024511 /lib/x86_64-linux-gnu/libc-2.24.so 7fc8dcc72000-7fc8dcc76000 r--p 001bd000 fd:01 22024511 /lib/x86_64-linux-gnu/libc-2.24.so 7fc8dcc76000-7fc8dcc78000 rw-p 001c1000 fd:01 22024511 /lib/x86_64-linux-gnu/libc-2.24.so 7fc8dcc78000-7fc8dcc7c000 rw-p 00000000 00:00 0 7fc8dcc7c000-7fc8dcc94000 r-xp 00000000 fd:01 22050831 /lib/x86_64-linux-gnu/libpthread-2.24.so 7fc8dcc94000-7fc8dce94000 ---p 00018000 fd:01 22050831 /lib/x86_64-linux-gnu/libpthread-2.24.so 7fc8dce94000-7fc8dce95000 r--p 00018000 fd:01 22050831 /lib/x86_64-linux-gnu/libpthread-2.24.so 7fc8dce95000-7fc8dce96000 rw-p 00019000 fd:01 22050831 /lib/x86_64-linux-gnu/libpthread-2.24.so 7fc8dce96000-7fc8dce9a000 rw-p 00000000 00:00 0 7fc8dce9a000-7fc8dcebf000 r-xp 00000000 fd:01 22021582 /lib/x86_64-linux-gnu/ld-2.24.so 7fc8dcec6000-7fc8dd08f000 rw-p 00000000 00:00 0 7fc8dd093000-7fc8dd094000 rw-p 00000000 00:00 0 7fc8dd094000-7fc8dd0a4000 rw-s 00000000 00:05 548634686 /SYSV00000000 (deleted) 7fc8dd0a4000-7fc8dd0b4000 rw-s 00000000 00:05 548601897 /SYSV00000000 (deleted) 7fc8dd0b4000-7fc8dd0b5000 rwxp 00000000 00:00 0 7fc8dd0b5000-7fc8dd0bc000 r--s 00000000 fd:01 24515861 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 7fc8dd0bc000-7fc8dd0bf000 rw-p 00000000 00:00 0 7fc8dd0bf000-7fc8dd0c0000 r--p 00025000 fd:01 22021582 /lib/x86_64-linux-gnu/ld-2.24.so 7fc8dd0c0000-7fc8dd0c1000 rw-p 00026000 fd:01 22021582 /lib/x86_64-linux-gnu/ld-2.24.so 7fc8dd0c1000-7fc8dd0c2000 rw-p 00000000 00:00 0 7ffff9df5000-7ffff9e17000 rw-p 00000000 00:00 0 [stack] 7ffff9f3f000-7ffff9f41000 r--p 00000000 00:00 0 [vvar] 7ffff9f41000-7ffff9f43000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] [1] 16992 abort (core dumped) pypy3-v5.7.1-linux64/bin/pypy3 afl-fuzz.py {code} I tried pypy3-v5.7.1-linux64.tar.bz2 from the homepage on this file: https://raw.githubusercontent.com/d33tah/afl-refactor/9230aa324ceefe197825b0e7f58165c28ffae3ad/afl-0.07b/afl-fuzz.py From issues-reply at bitbucket.org Tue May 30 22:57:18 2017 From: issues-reply at bitbucket.org (Alex Kashirin) Date: Wed, 31 May 2017 02:57:18 -0000 Subject: [pypy-issue] Issue #2566: importing shared library, PyPy, Fatal Python error: PyThreadState_Get: no current thread (pypy/pypy) Message-ID: <20170531025718.35612.42984@celery-worker-105.ash1.bb-inf.net> New issue 2566: importing shared library, PyPy, Fatal Python error: PyThreadState_Get: no current thread https://bitbucket.org/pypy/pypy/issues/2566/importing-shared-library-pypy-fatal-python Alex Kashirin: Hello, Thought it will be correct to check on this board as well for solution on this: https://github.com/pybind/pybind11/issues/886 Thank You, Kashirin Alex