From issues-reply at bitbucket.org Wed May 2 05:34:27 2018 From: issues-reply at bitbucket.org (Omer Katz) Date: Wed, 02 May 2018 09:34:27 +0000 (UTC) Subject: [pypy-issue] Issue #2815: Stripping strings out of whitespaces can be sped up using SIMD (pypy/pypy) Message-ID: <20180502093427.23682.22840@celery-worker-108.ash1.bb-inf.net> New issue 2815: Stripping strings out of whitespaces can be sped up using SIMD https://bitbucket.org/pypy/pypy/issues/2815/stripping-strings-out-of-whitespaces-can Omer Katz: `str`'s methods `strip()`, `rstrip()` and `lstrip()` can be significantly sped up when SIMD is available and when the user hasn't provided any other value to strip. The [despacer](https://github.com/lemire/despacer) project demonstrates how it is done. It currently does not strip tabs so we'll need to adjust their code. From issues-reply at bitbucket.org Thu May 3 04:21:31 2018 From: issues-reply at bitbucket.org (=?utf-8?q?C=C3=A9sar_Santos?=) Date: Thu, 03 May 2018 08:21:31 +0000 (UTC) Subject: [pypy-issue] Issue #2816: Cannot install cppyy on Windows (pypy/pypy) Message-ID: <20180503082131.21592.17362@celery-worker-105.ash1.bb-inf.net> New issue 2816: Cannot install cppyy on Windows https://bitbucket.org/pypy/pypy/issues/2816/cannot-install-cppyy-on-windows C?sar Santos: Note: This was after upgrading to pip 10, before I got an error about wheel not being installed. ``` Traceback (most recent call last): File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.1.1\helpers\packaging_tool.py", line 145, in main do_install(pkgs) File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.1.1\helpers\packaging_tool.py", line 59, in do_install run_pip(['install'] + pkgs) File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.1.1\helpers\packaging_tool.py", line 73, in run_pip runpy.run_module(module_name, run_name='__main__', alter_sys=True) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\lib-python\3\runpy.py", line 205, in run_module return _run_module_code(code, init_globals, run_name, mod_spec) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\lib-python\3\runpy.py", line 96, in _run_module_code mod_name, mod_spec, pkg_name, script_name) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\lib-python\3\runpy.py", line 85, in _run_code exec(code, run_globals) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\__main__.py", line 19, in sys.exit(_main()) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\_internal\__init__.py", line 232, in main cmd_name, cmd_args = parseopts(args) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\_internal\__init__.py", line 172, in parseopts parser = create_main_parser() File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\_internal\__init__.py", line 144, in create_main_parser 'formatter': UpdatingDefaultsHelpFormatter(), File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\_internal\baseparser.py", line 25, in __init__ kwargs['width'] = get_terminal_size()[0] - 2 File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\site-packages\pip\_internal\compat.py", line 204, in get_terminal_size return tuple(shutil.get_terminal_size()) File "C:\Users\*\Downloads\pypy3-v6.0.0-win32\pypy3-v6.0.0-win32\lib-python\3\shutil.py", line 1078, in get_terminal_size size = os.get_terminal_size(sys.__stdout__.fileno()) SystemError: unexpected internal exception (please report a bug): ; internal traceback was dumped to stderr RPython traceback: File "pypy_interpreter.c", line 42299, in BuiltinCode1_fastcall_1 File "pypy_module_posix.c", line 4913, in get_terminal_size ``` From issues-reply at bitbucket.org Thu May 3 10:34:13 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Thu, 03 May 2018 14:34:13 +0000 (UTC) Subject: [pypy-issue] Issue #2817: Py_GCC_ATTRIBUTE missing (pypy/pypy) Message-ID: <20180503143413.9010.66799@celery-worker-106.ash1.bb-inf.net> New issue 2817: Py_GCC_ATTRIBUTE missing https://bitbucket.org/pypy/pypy/issues/2817/py_gcc_attribute-missing Hrvoje Nik?i?: The `Py_GCC_ATTRIBUTE` macro is missing from the C API emulation headers. While it is not strictly a part of the Python/C API as it's not documented, it also does not begin with an underscore, so there is code out there that relies on it in their own extensions. (I discovered that by attempting to compile in-house Python/C extensions under PyPy.) It can be easily added by copying the definition from CPython: ``` #!c #if (!defined(__GNUC__) || __GNUC__ < 2 || \ (__GNUC__ == 2 && __GNUC_MINOR__ < 7) ) && \ !defined(RISCOS) #define Py_GCC_ATTRIBUTE(x) #else #define Py_GCC_ATTRIBUTE(x) __attribute__(x) #endif ``` From issues-reply at bitbucket.org Thu May 3 10:52:55 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Thu, 03 May 2018 14:52:55 +0000 (UTC) Subject: [pypy-issue] Issue #2818: __module__ read-only for PyCFunction objects (pypy/pypy) Message-ID: <20180503145254.5947.33891@celery-worker-110.ash1.bb-inf.net> New issue 2818: __module__ read-only for PyCFunction objects https://bitbucket.org/pypy/pypy/issues/2818/__module__-read-only-for-pycfunction Hrvoje Nik?i?: Our CPython extensions sometimes create functions in C and modify their `__module__` later. This is needed because those functions are referenced by `__reduce__`, and we don't want their internal implementation module to leak into pickled files. Instead, we change `fn.__module__` from `bla._internal` to `bla`, which is correct because `bla.fn` really exists. This works in CPython, but fails in PyPy with a `TypeError`: ``` TypeError: readonly attribute '__module__' ``` The functions are created using `Py_InitModule3` and retrieved using `PyObject_GetAttr` or equivalent. A minimal example of code that works under CPython, but fails under PyPy is attached. Under CPython it successfully sets `fn.__module__`, while on PyPy it fails as described above. We could probably work around the issue by replacing the `PyCFunction` with a custom-created callable with a writable `__module__`, but I am reporting this as an incompatibility with CPython's API. From issues-reply at bitbucket.org Thu May 3 11:08:22 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Thu, 03 May 2018 15:08:22 +0000 (UTC) Subject: [pypy-issue] Issue #2819: PyObject_TypeCheck requires argument to have ob_type (pypy/pypy) Message-ID: <20180503150822.20114.52809@celery-worker-109.ash1.bb-inf.net> New issue 2819: PyObject_TypeCheck requires argument to have ob_type https://bitbucket.org/pypy/pypy/issues/2819/pyobject_typecheck-requires-argument-to Hrvoje Nik?i?: PyPy defines `PyObject_TypeCheck` as: ``` #define PyObject_TypeCheck(ob, tp) \ ((ob)->ob_type == (tp) || PyType_IsSubtype((ob)->ob_type, (tp))) ``` whereas CPython defines it as: ``` #define PyObject_TypeCheck(ob, tp) \ (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp))) ``` The difference is that `Py_TYPE` explicitly casts its argument to `PyObject *`. This means that CPython's `PyObject_TypeCheck` works for objects without an `ob_type` member. These can appear in two cases: * for types that embed an existing Python type so they can inherit from it, and can't use `PyObject_HEAD` because they inherit from something other than base `object` - for example, a type that inherits from `list` or `dict` must embed `PyListObject` or `PyDictObject` and will not have an `obj_type`. * for C++ wrappers for `PyObject *` that define a cast to `PyObject *`. The issue can be worked around with an explicit cast to `PyObject *` before the call to `PyObject_TypeCheck`, but the fix in the PyPy header seems trivial. (Also, there is no reason _not_ to use `Py_TYPE` instead of explicit `ob_type` dereference.) From issues-reply at bitbucket.org Thu May 3 11:13:23 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Thu, 03 May 2018 15:13:23 +0000 (UTC) Subject: [pypy-issue] Issue #2820: Py_ReprEnter and Py_ReprLeave not implemented (pypy/pypy) Message-ID: <20180503151323.37575.2014@celery-worker-107.ash1.bb-inf.net> New issue 2820: Py_ReprEnter and Py_ReprLeave not implemented https://bitbucket.org/pypy/pypy/issues/2820/py_reprenter-and-py_reprleave-not Hrvoje Nik?i?: The Python/C emulation does not currently include an implementation of PyRepr_Enter and PyRepr_Leave. Our in-house extensions use them, so for the purpose of our PyPy evaluation I defined the following stubs in a header: ``` #!c extern "C" { inline Py_ssize_t Py_ReprEnter(PyObject *x) { return 0; } inline void Py_ReprLeave(PyObject *x) { } } ``` The functions should be straightforward to implement properly, perhaps simply by copying the CPython implementation. They have been present in the API for a very long time, but have been documented only at some point in Python 3. From issues-reply at bitbucket.org Thu May 3 11:23:26 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Thu, 03 May 2018 15:23:26 +0000 (UTC) Subject: [pypy-issue] Issue #2821: _PyObject_GC_Malloc missing from the C API emulation layer (pypy/pypy) Message-ID: <20180503152325.10713.67989@celery-worker-108.ash1.bb-inf.net> New issue 2821: _PyObject_GC_Malloc missing from the C API emulation layer https://bitbucket.org/pypy/pypy/issues/2821/_pyobject_gc_malloc-missing-from-the-c-api Hrvoje Nik?i?: Although technically a private function, `_PyObject_GC_Malloc` is currently the only way to implement an object with additional data not managed by Python's type/allocation system. Since other "gc" functions, like `_PyObject_GC_New`, appear aliased to their non-gc counterparts, we worked around the issue by just calling `PyObject_Malloc` when compiling our C extensions under PyPy. From issues-reply at bitbucket.org Fri May 4 04:23:06 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Fri, 04 May 2018 08:23:06 +0000 (UTC) Subject: [pypy-issue] Issue #2822: Py_IS_NAN, Py_IS_FINITE, Py_IS_INFINITY missing (pypy/pypy) Message-ID: <20180504082306.39850.80261@celery-worker-106.ash1.bb-inf.net> New issue 2822: Py_IS_NAN, Py_IS_FINITE, Py_IS_INFINITY missing https://bitbucket.org/pypy/pypy/issues/2822/py_is_nan-py_is_finite-py_is_infinity Hrvoje Nik?i?: Some C extensions use `Py_IS_NAN`, `Py_IS_FINITE`, and `Py_IS_INFINITY` as portable means to access those properties across platforms supported by Python. It is fairly easy to work around the lack of these macros, as modern C and C++ provide equivalent functionality in the standard library. Still, Python/C extensions using them will not compile out of the box under PyPy, so I am reporting this as a minor issue. A possible fix might be simply to synchronize `pymath.h` with the latest CPython incarnation. The PyPy version appears to be imported from an earlier CPython source that only contained `Py_NAN`, while the latest one also contains the above mentioned macros, and also `Py_OVERFLOWED`, `Py_NAN`, `Py_HUGE_VAL`, `Py_MATH_E`, `Py_MATH_El`, `Py_MATH_PI`, and `Py_MATH_PIl`. From issues-reply at bitbucket.org Fri May 4 04:27:13 2018 From: issues-reply at bitbucket.org (=?utf-8?b?SHJ2b2plIE5pa8WhacSH?=) Date: Fri, 04 May 2018 08:27:13 +0000 (UTC) Subject: [pypy-issue] Issue #2823: Marshal C API missing from Python/C emulation (pypy/pypy) Message-ID: <20180504082713.18012.69170@celery-worker-107.ash1.bb-inf.net> New issue 2823: Marshal C API missing from Python/C emulation https://bitbucket.org/pypy/pypy/issues/2823/marshal-c-api-missing-from-python-c Hrvoje Nik?i?: While evaluating PyPy for in-house C extensions, we noticed that the `PyMarshal_ReadObjectFromString` is missing. We use the marshal API to implement a custom importer from C code. It is fairly easy to work around the lack of this function by manually importing the `marshal` module and invoking its Python-level API. Since extensions relying on functions in `` will not compile out-of-the-box under PyPy, I still reporting this as a minor issue. Feel free to close it if it is not generally useful. From issues-reply at bitbucket.org Fri May 4 15:51:37 2018 From: issues-reply at bitbucket.org (Filip Salomonsson) Date: Fri, 04 May 2018 19:51:37 +0000 (UTC) Subject: [pypy-issue] Issue #2824: Sockets are left blocking when a positive default timeout is set (pypy/pypy) Message-ID: <20180504195137.35137.29191@celery-worker-107.ash1.bb-inf.net> New issue 2824: Sockets are left blocking when a positive default timeout is set https://bitbucket.org/pypy/pypy/issues/2824/sockets-are-left-blocking-when-a-positive Filip Salomonsson: After a positive default socket timeout is set using `socket.setdefaulttimeout()`, the timeout value is set on new socket objects, and their `gettimeout()` method returns the correct value. But (as I understand it) since it isn't applied using the `settimeout()` method, the socket is never set to be non-blocking, and the timeout will not be properly applied during socket operations. The script below results in the expected `socket.timeout` when running in CPython, but goes on to be interrupted by the alarm signal in PyPy. ``` #!python from __future__ import print_function import errno import signal import socket import sys import time signal.signal(signal.SIGALRM, lambda signum, frame: None) socket.setdefaulttimeout(0.5) signal.alarm(3) t0 = time.time() sock = socket.socket() # Uncommenting this works around the issue # sock.settimeout(sock.gettimeout()) print(sys.version) try: # blackhole silently drops all incoming traffic sock.connect(("blackhole.webpagetest.org", 80)) except socket.timeout: print("Yes! Got socket.timeout", end="") except socket.error as e: if e.errno == errno.EINTR: print("Noo! Interrupted by signal", end="") else: raise print(" after {:.2f} seconds\n".format((time.time() - t0))) ``` ``` $ python2 sockettimeout.py 2.7.15 (default, May 1 2018, 16:44:08) [GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] Yes! Got socket.timeout after 0.51 seconds ``` ``` $ python3 sockettimeout.py 3.6.5 (default, Apr 25 2018, 14:23:58) [GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] Yes! Got socket.timeout after 0.51 seconds ``` ``` $ pypy/goal/pypy-c sockettimeout.py 2.7.13 (0525720a751e, May 03 2018, 20:55:08) [PyPy 6.1.0-alpha0 with GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] Noo! Interrupted by signal after 3.00 seconds ``` From issues-reply at bitbucket.org Tue May 8 14:53:45 2018 From: issues-reply at bitbucket.org (Bob Alexander) Date: Tue, 08 May 2018 18:53:45 +0000 (UTC) Subject: [pypy-issue] Issue #2825: pypy3 application cannot start (pypy/pypy) Message-ID: <20180508185345.26685.1881@celery-worker-105.ash1.bb-inf.net> New issue 2825: pypy3 application cannot start https://bitbucket.org/pypy/pypy/issues/2825/pypy3-application-cannot-start Bob Alexander: Trying to start pypy3-v6.0.0-win32. Message from OS: The application was unable to start correctly (0xc000007b) This happens on one of my Windows 10 PCs (an Intel core i7) -- works fine my other one (an Intel core i5). Have downloaded and re-downloaded a few times, all with the same result. This issue is not blocking me -- it's just FYI. Here are system details for the one that fails: C:\pypy3-v6.0.0-win32>systeminfo OS Name: Microsoft Windows 10 Home OS Version: 10.0.16299 N/A Build 16299 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Workstation OS Build Type: Multiprocessor Free Registered Owner: Bob Registered Organization: Product ID: 00325-95873-00815-AAOEM Original Install Date: 11/15/2017, 12:15:56 PM System Boot Time: 5/8/2018, 10:43:30 AM System Manufacturer: Dell Inc. System Model: XPS 8900 System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 94 Stepping 3 GenuineIntel ~3408 Mhz BIOS Version: Dell Inc. 2.2.1, 12/10/2017 Windows Directory: C:\WINDOWS System Directory: C:\WINDOWS\system32 Boot Device: \Device\HarddiskVolume1 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC-08:00) Pacific Time (US & Canada) Total Physical Memory: 16,303 MB Available Physical Memory: 12,137 MB Virtual Memory: Max Size: 18,735 MB Virtual Memory: Available: 14,122 MB Virtual Memory: In Use: 4,613 MB Page File Location(s): C:\pagefile.sys Domain: WORKGROUP Logon Server: \\BOB-I7-DESKTOP Hotfix(s): 15 Hotfix(s) Installed. [01]: KB4048951 [02]: KB4053577 [03]: KB4054022 [04]: KB4056887 [05]: KB4058702 [06]: KB4074595 [07]: KB4074608 [08]: KB4087256 [09]: KB4088785 [10]: KB4090914 [11]: KB4093110 [12]: KB4099989 [13]: KB4103729 [14]: KB4131372 [15]: KB4103727 Network Card(s): 3 NIC(s) Installed. [01]: Intel(R) Ethernet Connection (2) I219-V Connection Name: Ethernet DHCP Enabled: Yes DHCP Server: 192.168.1.1 IP address(es) [01]: 192.168.1.10 [02]: fe80::a99f:c03:236e:f78d [02]: Dell Wireless 1801 802.11bgn Connection Name: Wi-Fi Status: Media disconnected [03]: Bluetooth Device (Personal Area Network) Connection Name: Bluetooth Network Connection Status: Media disconnected Hyper-V Requirements: VM Monitor Mode Extensions: Yes Virtualization Enabled In Firmware: Yes Second Level Address Translation: Yes Data Execution Prevention Available: Yes From issues-reply at bitbucket.org Tue May 8 16:57:41 2018 From: issues-reply at bitbucket.org (drwaopfer) Date: Tue, 08 May 2018 20:57:41 +0000 (UTC) Subject: [pypy-issue] Issue #2826: Tuple hash inconsistent when used with struct.unpack_from (pypy/pypy) Message-ID: <20180508205741.27407.61445@celery-worker-106.ash1.bb-inf.net> New issue 2826: Tuple hash inconsistent when used with struct.unpack_from https://bitbucket.org/pypy/pypy/issues/2826/tuple-hash-inconsistent-when-used-with drwaopfer: Found a divergence from CPython: some tuples of integers that compare equal won't hash the same. Caused when some of the integers come from `struct.unpack_from`. I found this when my application unpacked values from a msgpack payload. I distilled my scenario into a minimal testcase below. ```python import struct packed = b"\x92\xcfp\x91|\x8b\x13n\xf8\xd0\x00" regular_version = (8111401340639312080, 0) p_up_version = (struct.unpack_from(">Q", packed, 2)[0], packed[10]) print(regular_version, "==" if regular_version == p_up_version else "!=", p_up_version) print( hash(regular_version), "==" if hash(regular_version) == hash(p_up_version) else "!=", hash(p_up_version), ) ``` ``` $ python --version Python 3.5.5 :: Anaconda, Inc. $ python testcase.py (8111401340639312080, 0) == (8111401340639312080, 0) -4258064001062497448 == -4258064001062497448 $ pypy3 --version Python 3.5.3 (fdd60ed87e94, Apr 24 2018, 06:10:04) [PyPy 6.0.0 with GCC 6.2.0 20160901] $ pypy3 testcase.py (8111401340639312080, 0) == (8111401340639312080, 0) 7271147797421229587 != -4258064001062497448 ``` From issues-reply at bitbucket.org Wed May 9 23:13:05 2018 From: issues-reply at bitbucket.org (Devin Fee) Date: Thu, 10 May 2018 03:13:05 +0000 (UTC) Subject: [pypy-issue] Issue #2827: Trailing commas are occassionaly SyntaxErrors (pypy/pypy) Message-ID: <20180510031305.7522.63466@celery-worker-109.ash1.bb-inf.net> New issue 2827: Trailing commas are occassionaly SyntaxErrors https://bitbucket.org/pypy/pypy/issues/2827/trailing-commas-are-occassionaly Devin Fee: I believe I've encountered a bug with trailing commas when creating functions: ```python In [16]: def func( # trailing comma, positional-or-keyword parameters: success! ...: a=1, ...: b=2, ...: ): ...: return a, b ...: ...: In [17]: func(3, 4) Out[17]: (3, 4) In [18]: def func( # trailing comma, a keyword-only parameter is introduced: FAILURE! ...: a=1, ...: *, ...: b=2, ...: ): File "", line 5 ): ^ SyntaxError: invalid syntax In [19]: def func( # no trailing comma, a keyword-only parameter is introduced: success! ...: a=1, ...: *, ...: b=2 ...: ): ...: return a, b ...: ...: In [20]: func(3, b=4) Out[20]: (3, 4) ``` From issues-reply at bitbucket.org Fri May 11 12:05:18 2018 From: issues-reply at bitbucket.org (lesshaste) Date: Fri, 11 May 2018 16:05:18 +0000 (UTC) Subject: [pypy-issue] Issue #2828: matplotlib won't install on OS X and pypy 6 (pypy/pypy) Message-ID: <20180511160518.9893.41185@celery-worker-110.ash1.bb-inf.net> New issue 2828: matplotlib won't install on OS X and pypy 6 https://bitbucket.org/pypy/pypy/issues/2828/matplotlib-wont-install-on-os-x-and-pypy-6 lesshaste: When I try to install matplotlib on OS X using pypy 6 I get: my-pypy/bin/pip install matplotlib Collecting matplotlib Using cached https://files.pythonhosted.org/packages/ec/ed/46b835da53b7ed05bd4c6cae293f13ec26e877d2e490a53a709915a9dcb7/matplotlib-2.2.2.tar.gz Requirement already satisfied: numpy>=1.7.1 in ./my-pypy/site-packages (from matplotlib) (1.14.3) Collecting cycler>=0.10 (from matplotlib) Using cached https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/6a/8a/718fd7d3458f9fab8e67186b00abdd345b639976bc7fb3ae722e1b026a50/pyparsing-2.2.0-py2.py3-none-any.whl Collecting python-dateutil>=2.1 (from matplotlib) Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB) 100% |????????????????????????????????| 215kB 5.0MB/s Collecting pytz (from matplotlib) Using cached https://files.pythonhosted.org/packages/dc/83/15f7833b70d3e067ca91467ca245bae0f6fe56ddc7451aa0dc5606b120f2/pytz-2018.4-py2.py3-none-any.whl Requirement already satisfied: six>=1.10 in ./my-pypy/site-packages (from matplotlib) (1.11.0) Collecting kiwisolver>=1.0.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/31/60/494fcce70d60a598c32ee00e71542e52e27c978e5f8219fae0d4ac6e2864/kiwisolver-1.0.1.tar.gz Collecting backports.functools_lru_cache (from matplotlib) Using cached https://files.pythonhosted.org/packages/03/8e/2424c0e65c4a066e28f539364deee49b6451f8fcd4f718fefa50cc3dcf48/backports.functools_lru_cache-1.5-py2.py3-none-any.whl Collecting subprocess32 (from matplotlib) Using cached https://files.pythonhosted.org/packages/b8/2f/49e53b0d0e94611a2dc624a1ad24d41b6d94d0f1b0a078443407ea2214c2/subprocess32-3.2.7.tar.gz Requirement already satisfied: setuptools in ./my-pypy/site-packages (from kiwisolver>=1.0.1->matplotlib) (39.1.0) Building wheels for collected packages: matplotlib, kiwisolver, subprocess32 Running setup.py bdist_wheel for matplotlib ... error Complete output from command /Users/user/Downloads/my-pypy/bin/pypy -u -c "import setuptools, tokenize;__file__='/private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-install-Xz3l_3/matplotlib/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-wheel-tyBg3i --python-tag pp260: ============================================================================ Edit setup.cfg to change the build options BUILDING MATPLOTLIB matplotlib: yes [2.2.2] python: yes [2.7.13 (ab0b9caf307d, Apr 24 2018, 18:05:02) [PyPy 6.0.0 with GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)]] platform: yes [darwin] REQUIRED DEPENDENCIES AND EXTENSIONS numpy: yes [version 1.14.3] install_requires: yes [handled by setuptools] libagg: yes [pkg-config information for 'libagg' could not be found. Using local copy.] freetype: yes [version 2.9.1] png: yes [version 1.6.34] qhull: yes [pkg-config information for 'libqhull' could not be found. Using local copy.] OPTIONAL SUBPACKAGES sample_data: yes [installing] toolkits: yes [installing] tests: no [skipping due to configuration] toolkits_tests: no [skipping due to configuration] OPTIONAL BACKEND EXTENSIONS macosx: yes [installing, darwin] qt5agg: no [PySide2 not found; PyQt5 not found] qt4agg: no [PySide not found; PyQt4 not found] gtk3agg: no [Requires pygobject to be installed.] gtk3cairo: no [Requires cairocffi or pycairo to be installed.] gtkagg: no [Requires pygtk] tkagg: yes [installing; run-time loading from Python Tcl / Tk] wxagg: no [requires wxPython] gtk: no [Requires pygtk] agg: yes [installing] cairo: no [cairocffi or pycairo not found] windowing: no [Microsoft Windows only] OPTIONAL LATEX DEPENDENCIES dvipng: yes [version 1.15] ghostscript: yes [version 9.21] latex: yes [version 3.14159265] pdftops: no OPTIONAL PACKAGE DATA dlls: no [skipping due to configuration] running bdist_wheel running build running build_py creating build creating build/lib.macosx-10.13-x86_64-2.7 copying lib/pylab.py -> build/lib.macosx-10.13-x86_64-2.7 creating build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_animation_data.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_cm.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_cm_listed.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_color_data.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_constrained_layout.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_layoutbox.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_mathtext_data.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_pylab_helpers.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/_version.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/afm.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/animation.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/artist.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/axis.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/backend_bases.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/backend_managers.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/backend_tools.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/bezier.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/blocking_input.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/category.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/cm.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/collections.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/colorbar.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/colors.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/container.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/contour.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/dates.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/docstring.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/dviread.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/figure.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/font_manager.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/fontconfig_pattern.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/gridspec.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/hatch.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/image.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/legend.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/legend_handler.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/lines.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/markers.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/mathtext.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/mlab.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/offsetbox.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/patches.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/path.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/patheffects.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/pylab.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/pyplot.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/quiver.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/rcsetup.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/sankey.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/scale.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/spines.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/stackplot.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/streamplot.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/table.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/texmanager.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/text.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/textpath.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/ticker.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/tight_bbox.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/tight_layout.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/transforms.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/type1font.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/units.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib copying lib/matplotlib/widgets.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/_backend_tk.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/_gtk3_compat.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_agg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_cairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gdk.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtk.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtk3.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtk3agg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtk3cairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtkagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_gtkcairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_macosx.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_mixed.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_nbagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_pdf.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_pgf.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_ps.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt4.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt4agg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt4cairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt5.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt5agg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_qt5cairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_svg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_template.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_tkagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_tkcairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_webagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_webagg_core.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_wx.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_wxagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/backend_wxcairo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/qt_compat.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/tkagg.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/windowing.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends copying lib/matplotlib/backends/wx_compat.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/qt_editor copying lib/matplotlib/backends/qt_editor/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/qt_editor copying lib/matplotlib/backends/qt_editor/figureoptions.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/qt_editor copying lib/matplotlib/backends/qt_editor/formlayout.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/qt_editor copying lib/matplotlib/backends/qt_editor/formsubplottool.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/qt_editor creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/compat copying lib/matplotlib/compat/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/compat copying lib/matplotlib/compat/subprocess.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/compat creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/projections copying lib/matplotlib/projections/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/projections copying lib/matplotlib/projections/geo.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/projections copying lib/matplotlib/projections/polar.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/projections creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/axes copying lib/matplotlib/axes/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/axes copying lib/matplotlib/axes/_axes.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/axes copying lib/matplotlib/axes/_base.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/axes copying lib/matplotlib/axes/_subplots.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/axes creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/sphinxext copying lib/matplotlib/sphinxext/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/sphinxext copying lib/matplotlib/sphinxext/mathmpl.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/sphinxext copying lib/matplotlib/sphinxext/only_directives.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/sphinxext copying lib/matplotlib/sphinxext/plot_directive.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/sphinxext creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/style copying lib/matplotlib/style/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/style copying lib/matplotlib/style/core.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/style creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/compare.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/conftest.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/decorators.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/determinism.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/disable_internet.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/exceptions.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing copying lib/matplotlib/testing/noseclasses.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose copying lib/matplotlib/testing/_nose/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose copying lib/matplotlib/testing/_nose/decorators.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose copying lib/matplotlib/testing/_nose/exceptions.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose/plugins copying lib/matplotlib/testing/_nose/plugins/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose/plugins copying lib/matplotlib/testing/_nose/plugins/knownfailure.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose/plugins copying lib/matplotlib/testing/_nose/plugins/performgc.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/_nose/plugins creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/Duration.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/Epoch.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/EpochConverter.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/StrConverter.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/UnitDbl.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/UnitDblConverter.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units copying lib/matplotlib/testing/jpl_units/UnitDblFormatter.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/testing/jpl_units creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/triangulation.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/tricontour.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/trifinder.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/triinterpolate.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/tripcolor.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/triplot.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/trirefine.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri copying lib/matplotlib/tri/tritools.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/tri creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/cbook copying lib/matplotlib/cbook/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/cbook copying lib/matplotlib/cbook/_backports.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/cbook copying lib/matplotlib/cbook/deprecation.py -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/cbook creating build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits creating build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/art3d.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/axes3d.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/axis3d.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/proj3d.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/mplot3d creating build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/angle_helper.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_divider.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_grid.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_size.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axis_artist.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axisline_style.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axislines.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/clip_path.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/colorbar.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/floating_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/grid_finder.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/inset_locator.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid creating build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/anchored_artists.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/axes_divider.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/axes_grid.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/axes_rgb.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/axes_size.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/colorbar.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/inset_locator.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/mpl_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 copying lib/mpl_toolkits/axes_grid1/parasite_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axes_grid1 creating build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/__init__.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/angle_helper.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axes_divider.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axes_grid.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axes_rgb.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axis_artist.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axisline_style.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/axislines.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/clip_path.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/floating_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/grid_finder.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist copying lib/mpl_toolkits/axisartist/parasite_axes.py -> build/lib.macosx-10.13-x86_64-2.7/mpl_toolkits/axisartist creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/aapl.npz -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/ada.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/ct.raw.gz -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/demodata.csv -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/eeg.dat -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/goog.npz -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/grace_hopper.jpg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/grace_hopper.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/logo2.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/membrane.dat -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/msft.csv -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/None_vs_nearest-pdf.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/percent_bachelors_degrees_women_usa.csv -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/README.txt -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data copying lib/matplotlib/mpl-data/sample_data/s1045.ima.gz -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data/axes_grid copying lib/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/sample_data/axes_grid creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/afm creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/pdfcorefonts creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/fonts/ttf creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/qt4_editor_options.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.gif -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/qt4_editor_options.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.pdf -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/qt4_editor_options.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/qt4_editor_options_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.ppm -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend copying lib/matplotlib/backends/web_backend/all_figures.html -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend copying lib/matplotlib/backends/web_backend/ipython_inline_figure.html -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend copying lib/matplotlib/backends/web_backend/nbagg_uat.ipynb -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend copying lib/matplotlib/backends/web_backend/single_figure.html -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/js copying lib/matplotlib/backends/web_backend/js/mpl.js -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/js copying lib/matplotlib/backends/web_backend/js/mpl_tornado.js -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/js copying lib/matplotlib/backends/web_backend/js/nbagg_mpl.js -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/js creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/js copying lib/matplotlib/backends/web_backend/jquery/js/jquery-1.11.3.min.js -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/js copying lib/matplotlib/backends/web_backend/jquery/js/jquery-ui.min.js -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/js creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/jquery-ui.min.css -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_diagonals-thick_18_b81900_40x40.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_diagonals-thick_20_666666_40x40.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_10_000000_40x100.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_100_f6f6f6_1x400.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_100_fdf5ce_1x400.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_gloss-wave_35_f6a828_500x100.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_222222_256x240.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_228ef1_256x240.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ef8c08_256x240.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ffd27a_256x240.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images copying lib/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ffffff_256x240.png -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/jquery/css/themes/base/images creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/css copying lib/matplotlib/backends/web_backend/css/boilerplate.css -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/css copying lib/matplotlib/backends/web_backend/css/fbm.css -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/css copying lib/matplotlib/backends/web_backend/css/page.css -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/backends/web_backend/css creating build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/_classic_test.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/bmh.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/classic.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/dark_background.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/fast.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/ggplot.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/grayscale.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-ticks.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-white.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn-whitegrid.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/seaborn.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/Solarize_Light2.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib copying lib/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle -> build/lib.macosx-10.13-x86_64-2.7/matplotlib/mpl-data/stylelib UPDATING build/lib.macosx-10.13-x86_64-2.7/matplotlib/_version.py set build/lib.macosx-10.13-x86_64-2.7/matplotlib/_version.py to '2.2.2' running build_ext building 'matplotlib.ft2font' extension creating build/temp.macosx-10.13-x86_64-2.7 creating build/temp.macosx-10.13-x86_64-2.7/src cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/ft2font.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/ft2font.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/ft2font_wrapper.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/ft2font_wrapper.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/mplutils.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/ft2font.o build/temp.macosx-10.13-x86_64-2.7/src/ft2font_wrapper.o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o -L/usr/local/opt/freetype/lib -L/usr/local/lib -L/usr/lib -lfreetype -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/ft2font.pypy-41.so building 'matplotlib._png' extension cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/Cellar/libpng/1.6.34/include/libpng16 -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_png.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_png.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/Cellar/libpng/1.6.34/include/libpng16 -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/mplutils.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/_png.o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o -L/usr/local/Cellar/libpng/1.6.34/lib -L/usr/local/lib -L/usr/lib -lz -lpng16 -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_png.pypy-41.so building 'matplotlib._image' extension creating build/temp.macosx-10.13-x86_64-2.7/extern creating build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn creating build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_image.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_image.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/mplutils.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_image_wrapper.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_image_wrapper.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/py_converters.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/py_converters.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_bezier_arc.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_curves.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_image_filters.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_trans_affine.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_contour.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_dash.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_stroke.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__image_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vpgen_segmentator.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/_image.o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o build/temp.macosx-10.13-x86_64-2.7/src/_image_wrapper.o build/temp.macosx-10.13-x86_64-2.7/src/py_converters.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_image.pypy-41.so building 'matplotlib.ttconv' extension creating build/temp.macosx-10.13-x86_64-2.7/extern/ttconv cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_ttconv.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_ttconv.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/pprdrv_tt.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/pprdrv_tt2.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ttconv_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/ttconv/ttutil.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/ttutil.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/_ttconv.o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/pprdrv_tt.o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/pprdrv_tt2.o build/temp.macosx-10.13-x86_64-2.7/extern/ttconv/ttutil.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/ttconv.pypy-41.so building 'matplotlib._path' extension cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/py_converters.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/py_converters.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_path_wrapper.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_path_wrapper.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_bezier_arc.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_curves.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_curves.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_image_filters.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_image_filters.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_trans_affine.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_trans_affine.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_contour.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_contour.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_dash.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_stroke.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__path_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern/agg24-svn/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/agg24-svn/src/agg_vpgen_segmentator.cpp -o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vpgen_segmentator.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/py_converters.o build/temp.macosx-10.13-x86_64-2.7/src/_path_wrapper.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_bezier_arc.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_curves.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_image_filters.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_trans_affine.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_contour.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_dash.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vcgen_stroke.o build/temp.macosx-10.13-x86_64-2.7/extern/agg24-svn/src/agg_vpgen_segmentator.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_path.pypy-41.so building 'matplotlib._contour' extension cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_contour.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_contour.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__contour_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_contour_wrapper.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/_contour_wrapper.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/_contour.o build/temp.macosx-10.13-x86_64-2.7/src/_contour_wrapper.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_contour.pypy-41.so building 'matplotlib._qhull' extension creating build/temp.macosx-10.13-x86_64-2.7/extern/libqhull cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/qhull_wrap.c -o build/temp.macosx-10.13-x86_64-2.7/src/qhull_wrap.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/geom.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/geom.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/geom2.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/geom2.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/global.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/global.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/io.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/io.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/libqhull.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/libqhull.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/mem.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/mem.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/merge.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/merge.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/poly.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/poly.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/poly2.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/poly2.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/qset.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/qset.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/random.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/random.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/rboxlib.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/rboxlib.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/stat.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/stat.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/user.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/user.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/usermem.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/usermem.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/userprintf.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/userprintf.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DMPL_DEVNULL=/dev/null -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__qhull_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -Iextern -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c extern/libqhull/userprintf_rbox.c -o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/userprintf_rbox.o cc -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/src/qhull_wrap.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/geom.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/geom2.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/global.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/io.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/libqhull.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/mem.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/merge.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/poly.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/poly2.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/qset.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/random.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/rboxlib.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/stat.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/user.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/usermem.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/userprintf.o build/temp.macosx-10.13-x86_64-2.7/extern/libqhull/userprintf_rbox.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_qhull.pypy-41.so building 'matplotlib._tri' extension creating build/temp.macosx-10.13-x86_64-2.7/lib creating build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib creating build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib/tri cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c lib/matplotlib/tri/_tri.cpp -o build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib/tri/_tri.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c lib/matplotlib/tri/_tri_wrapper.cpp -o build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib/tri/_tri_wrapper.o cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__tri_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/Users/user/Downloads/my-pypy/site-packages/numpy/core/include -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/mplutils.cpp -o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o c++ -pthread -shared -undefined dynamic_lookup build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib/tri/_tri.o build/temp.macosx-10.13-x86_64-2.7/lib/matplotlib/tri/_tri_wrapper.o build/temp.macosx-10.13-x86_64-2.7/src/mplutils.o -L/usr/local/lib -L/usr/lib -o build/lib.macosx-10.13-x86_64-2.7/matplotlib/_tri.pypy-41.so building 'matplotlib.backends._macosx' extension cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -I/usr/local/include -I/usr/include -I. -I/Users/user/Downloads/my-pypy/include -c src/_macosx.m -o build/temp.macosx-10.13-x86_64-2.7/src/_macosx.o src/_macosx.m:149:55: warning: 'NSAnyEventMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] event = [NSApp nextEventMatchingMask: NSAnyEventMask ^~~~~~~~~~~~~~ NSEventMaskAny /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:158:26: note: 'NSAnyEventMask' has been explicitly marked deprecated here static const NSEventMask NSAnyEventMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventMaskAny", 10.0, 10.12) = NSUIntegerMax; ^ src/_macosx.m:529:56: warning: 'NSAnyEventMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] { NSEvent* event = [NSApp nextEventMatchingMask: NSAnyEventMask ^~~~~~~~~~~~~~ NSEventMaskAny /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:158:26: note: 'NSAnyEventMask' has been explicitly marked deprecated here static const NSEventMask NSAnyEventMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventMaskAny", 10.0, 10.12) = NSUIntegerMax; ^ src/_macosx.m:533:36: warning: 'NSApplicationDefined' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if (!event || [event type]==NSApplicationDefined) break; ^~~~~~~~~~~~~~~~~~~~ NSEventTypeApplicationDefined /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:79:26: note: 'NSApplicationDefined' has been explicitly marked deprecated here static const NSEventType NSApplicationDefined NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeApplicationDefined", 10.0, 10.12) = NSEventTypeApplicationDefined; ^ src/_macosx.m:550:51: warning: 'NSApplicationDefined' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] NSEvent* event = [NSEvent otherEventWithType: NSApplicationDefined ^~~~~~~~~~~~~~~~~~~~ NSEventTypeApplicationDefined /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:79:26: note: 'NSApplicationDefined' has been explicitly marked deprecated here static const NSEventType NSApplicationDefined NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeApplicationDefined", 10.0, 10.12) = NSEventTypeApplicationDefined; ^ src/_macosx.m:710:53: warning: 'NSTitledWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] styleMask: NSTitledWindowMask ^~~~~~~~~~~~~~~~~~ NSWindowStyleMaskTitled /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:955:32: note: 'NSTitledWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSTitledWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskTitled", 10.0, 10.12) = NSWindowStyleMaskTitled; ^ src/_macosx.m:711:53: warning: 'NSClosableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSClosableWindowMask ^~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskClosable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:956:32: note: 'NSClosableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSClosableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskClosable", 10.0, 10.12) = NSWindowStyleMaskClosable; ^ src/_macosx.m:712:53: warning: 'NSResizableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSResizableWindowMask ^~~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskResizable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:958:32: note: 'NSResizableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSResizableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskResizable", 10.0, 10.12) = NSWindowStyleMaskResizable; ^ src/_macosx.m:713:53: warning: 'NSMiniaturizableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSMiniaturizableWindowMask ^~~~~~~~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskMiniaturizable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:957:32: note: 'NSMiniaturizableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSMiniaturizableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskMiniaturizable", 10.0, 10.12) = NSWindowStyleMaskMiniaturizable; ^ src/_macosx.m:1875:51: warning: incompatible pointer types passing 'unichar *' (aka 'unsigned short *') to parameter of type 'const wchar_t *' (aka 'const int *') [-Wincompatible-pointer-types] PyObject* string = PyUnicode_FromUnicode(buffer, n); ^~~~~~ /Users/user/Downloads/my-pypy/include/pypy_decl.h:879:61: note: passing argument to parameter 'arg0' here PyAPI_FUNC(PyObject *) PyUnicode_FromUnicode(const wchar_t *arg0, Signed arg1); ^ src/_macosx.m:2035:32: warning: 'NSTitledWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] styleMask: NSTitledWindowMask ^~~~~~~~~~~~~~~~~~ NSWindowStyleMaskTitled /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:955:32: note: 'NSTitledWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSTitledWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskTitled", 10.0, 10.12) = NSWindowStyleMaskTitled; ^ src/_macosx.m:2036:32: warning: 'NSClosableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSClosableWindowMask ^~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskClosable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:956:32: note: 'NSClosableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSClosableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskClosable", 10.0, 10.12) = NSWindowStyleMaskClosable; ^ src/_macosx.m:2037:32: warning: 'NSResizableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSResizableWindowMask ^~~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskResizable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:958:32: note: 'NSResizableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSResizableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskResizable", 10.0, 10.12) = NSWindowStyleMaskResizable; ^ src/_macosx.m:2038:32: warning: 'NSMiniaturizableWindowMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] | NSMiniaturizableWindowMask ^~~~~~~~~~~~~~~~~~~~~~~~~~ NSWindowStyleMaskMiniaturizable /System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:957:32: note: 'NSMiniaturizableWindowMask' has been explicitly marked deprecated here static const NSWindowStyleMask NSMiniaturizableWindowMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSWindowStyleMaskMiniaturizable", 10.0, 10.12) = NSWindowStyleMaskMiniaturizable; ^ src/_macosx.m:2256:51: warning: 'NSApplicationDefined' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] NSEvent* event = [NSEvent otherEventWithType: NSApplicationDefined ^~~~~~~~~~~~~~~~~~~~ NSEventTypeApplicationDefined /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:79:26: note: 'NSApplicationDefined' has been explicitly marked deprecated here static const NSEventType NSApplicationDefined NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeApplicationDefined", 10.0, 10.12) = NSEventTypeApplicationDefined; ^ src/_macosx.m:2325:15: warning: 'NSLeftMouseDown' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] { case NSLeftMouseDown: ^~~~~~~~~~~~~~~ NSEventTypeLeftMouseDown /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:65:26: note: 'NSLeftMouseDown' has been explicitly marked deprecated here static const NSEventType NSLeftMouseDown NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeLeftMouseDown", 10.0, 10.12) = NSEventTypeLeftMouseDown; ^ src/_macosx.m:2327:29: warning: 'NSControlKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if (modifier & NSControlKeyMask) ^~~~~~~~~~~~~~~~ NSEventModifierFlagControl /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:183:35: note: 'NSControlKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSControlKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagControl", 10.0, 10.12) = NSEventModifierFlagControl; ^ src/_macosx.m:2330:34: warning: 'NSAlternateKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] else if (modifier & NSAlternateKeyMask) ^~~~~~~~~~~~~~~~~~ NSEventModifierFlagOption /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:184:35: note: 'NSAlternateKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSAlternateKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagOption", 10.0, 10.12) = NSEventModifierFlagOption; ^ src/_macosx.m:2341:15: warning: 'NSOtherMouseDown' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] case NSOtherMouseDown: num = 2; break; ^~~~~~~~~~~~~~~~ NSEventTypeOtherMouseDown /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:85:26: note: 'NSOtherMouseDown' has been explicitly marked deprecated here static const NSEventType NSOtherMouseDown NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeOtherMouseDown", 10.0, 10.12) = NSEventTypeOtherMouseDown; ^ src/_macosx.m:2342:15: warning: 'NSRightMouseDown' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] case NSRightMouseDown: num = 3; break; ^~~~~~~~~~~~~~~~ NSEventTypeRightMouseDown /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:67:26: note: 'NSRightMouseDown' has been explicitly marked deprecated here static const NSEventType NSRightMouseDown NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeRightMouseDown", 10.0, 10.12) = NSEventTypeRightMouseDown; ^ src/_macosx.m:2369:15: warning: 'NSLeftMouseUp' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] { case NSLeftMouseUp: ^~~~~~~~~~~~~ NSEventTypeLeftMouseUp /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:66:26: note: 'NSLeftMouseUp' has been explicitly marked deprecated here static const NSEventType NSLeftMouseUp NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeLeftMouseUp", 10.0, 10.12) = NSEventTypeLeftMouseUp; ^ src/_macosx.m:2374:15: warning: 'NSOtherMouseUp' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] case NSOtherMouseUp: num = 2; break; ^~~~~~~~~~~~~~ NSEventTypeOtherMouseUp /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:86:26: note: 'NSOtherMouseUp' has been explicitly marked deprecated here static const NSEventType NSOtherMouseUp NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeOtherMouseUp", 10.0, 10.12) = NSEventTypeOtherMouseUp; ^ src/_macosx.m:2375:15: warning: 'NSRightMouseUp' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] case NSRightMouseUp: num = 3; break; ^~~~~~~~~~~~~~ NSEventTypeRightMouseUp /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:68:26: note: 'NSRightMouseUp' has been explicitly marked deprecated here static const NSEventType NSRightMouseUp NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventTypeRightMouseUp", 10.0, 10.12) = NSEventTypeRightMouseUp; ^ src/_macosx.m:2604:33: warning: 'NSControlKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if ([event modifierFlags] & NSControlKeyMask) ^~~~~~~~~~~~~~~~ NSEventModifierFlagControl /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:183:35: note: 'NSControlKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSControlKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagControl", 10.0, 10.12) = NSEventModifierFlagControl; ^ src/_macosx.m:2606:33: warning: 'NSAlternateKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if ([event modifierFlags] & NSAlternateKeyMask) ^~~~~~~~~~~~~~~~~~ NSEventModifierFlagOption /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:184:35: note: 'NSAlternateKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSAlternateKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagOption", 10.0, 10.12) = NSEventModifierFlagOption; ^ src/_macosx.m:2608:33: warning: 'NSCommandKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if ([event modifierFlags] & NSCommandKeyMask) ^~~~~~~~~~~~~~~~ NSEventModifierFlagCommand /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:185:35: note: 'NSCommandKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSCommandKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagCommand", 10.0, 10.12) = NSEventModifierFlagCommand; ^ src/_macosx.m:2614:37: warning: 'NSShiftKeyMask' is deprecated: first deprecated in macOS 10.12 [-Wdeprecated-declarations] if ([event modifierFlags] & NSShiftKeyMask) ^~~~~~~~~~~~~~ NSEventModifierFlagShift /System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h:182:35: note: 'NSShiftKeyMask' has been explicitly marked deprecated here static const NSEventModifierFlags NSShiftKeyMask NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSEventModifierFlagShift", 10.0, 10.12) = NSEventModifierFlagShift; ^ src/_macosx.m:3160:5: error: use of undeclared identifier 'PyOS_InputHook' PyOS_InputHook = wait_for_stdin; ^ 26 warnings and 1 error generated. error: command 'cc' failed with exit status 1 ---------------------------------------- Failed building wheel for matplotlib Running setup.py clean for matplotlib Running setup.py bdist_wheel for kiwisolver ... done Stored in directory: /Users/user/Library/Caches/pip/wheels/6a/74/52/d0be4cffbeb03598e085465ac97b3c0d0f5570c2be64744a95 Running setup.py bdist_wheel for subprocess32 ... error Complete output from command /Users/user/Downloads/my-pypy/bin/pypy -u -c "import setuptools, tokenize;__file__='/private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-install-Xz3l_3/subprocess32/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-wheel-Azxsse --python-tag pp260: running bdist_wheel running build running build_py creating build creating build/lib.macosx-10.13-x86_64-2.7 copying subprocess32.py -> build/lib.macosx-10.13-x86_64-2.7 running build_ext building '_posixsubprocess' extension creating build/temp.macosx-10.13-x86_64-2.7 cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -I/Users/user/Downloads/my-pypy/include -c _posixsubprocess.c -o build/temp.macosx-10.13-x86_64-2.7/_posixsubprocess.o _posixsubprocess.c:309:5: error: use of undeclared identifier 'DIR' DIR *proc_fd_dir; ^ _posixsubprocess.c:309:10: error: use of undeclared identifier 'proc_fd_dir' DIR *proc_fd_dir; ^ _posixsubprocess.c:327:9: error: use of undeclared identifier 'proc_fd_dir' proc_fd_dir = opendir(FD_DIR); ^ _posixsubprocess.c:327:23: warning: implicit declaration of function 'opendir' is invalid in C99 [-Wimplicit-function-declaration] proc_fd_dir = opendir(FD_DIR); ^ _posixsubprocess.c:328:10: error: use of undeclared identifier 'proc_fd_dir' if (!proc_fd_dir) { ^ _posixsubprocess.c:339:29: warning: implicit declaration of function 'readdir' is invalid in C99 [-Wimplicit-function-declaration] while ((dir_entry = readdir(proc_fd_dir))) { ^ _posixsubprocess.c:339:37: error: use of undeclared identifier 'proc_fd_dir' while ((dir_entry = readdir(proc_fd_dir))) { ^ _posixsubprocess.c:341:52: error: incomplete definition of type 'struct dirent' if ((fd = _pos_int_from_ascii(dir_entry->d_name)) < 0) ~~~~~~~~~^ _posixsubprocess.c:332:16: note: forward declaration of 'struct dirent' struct dirent *dir_entry; ^ _posixsubprocess.c:353:9: warning: implicit declaration of function 'closedir' is invalid in C99 [-Wimplicit-function-declaration] closedir(proc_fd_dir); ^ _posixsubprocess.c:353:18: error: use of undeclared identifier 'proc_fd_dir' closedir(proc_fd_dir); ^ 3 warnings and 7 errors generated. error: command 'cc' failed with exit status 1 ---------------------------------------- Failed building wheel for subprocess32 Running setup.py clean for subprocess32 Successfully built kiwisolver Failed to build matplotlib subprocess32 Installing collected packages: cycler, pyparsing, python-dateutil, pytz, kiwisolver, backports.functools-lru-cache, subprocess32, matplotlib Running setup.py install for subprocess32 ... error Complete output from command /Users/user/Downloads/my-pypy/bin/pypy -u -c "import setuptools, tokenize;__file__='/private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-install-Xz3l_3/subprocess32/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-record-deoFei/install-record.txt --single-version-externally-managed --compile --install-headers /Users/user/Downloads/my-pypy/include/site/python2.7/subprocess32: running install running build running build_py creating build creating build/lib.macosx-10.13-x86_64-2.7 copying subprocess32.py -> build/lib.macosx-10.13-x86_64-2.7 running build_ext building '_posixsubprocess' extension creating build/temp.macosx-10.13-x86_64-2.7 cc -pthread -arch x86_64 -DNDEBUG -O2 -fPIC -I/Users/user/Downloads/my-pypy/include -c _posixsubprocess.c -o build/temp.macosx-10.13-x86_64-2.7/_posixsubprocess.o _posixsubprocess.c:309:5: error: use of undeclared identifier 'DIR' DIR *proc_fd_dir; ^ _posixsubprocess.c:309:10: error: use of undeclared identifier 'proc_fd_dir' DIR *proc_fd_dir; ^ _posixsubprocess.c:327:9: error: use of undeclared identifier 'proc_fd_dir' proc_fd_dir = opendir(FD_DIR); ^ _posixsubprocess.c:327:23: warning: implicit declaration of function 'opendir' is invalid in C99 [-Wimplicit-function-declaration] proc_fd_dir = opendir(FD_DIR); ^ _posixsubprocess.c:328:10: error: use of undeclared identifier 'proc_fd_dir' if (!proc_fd_dir) { ^ _posixsubprocess.c:339:29: warning: implicit declaration of function 'readdir' is invalid in C99 [-Wimplicit-function-declaration] while ((dir_entry = readdir(proc_fd_dir))) { ^ _posixsubprocess.c:339:37: error: use of undeclared identifier 'proc_fd_dir' while ((dir_entry = readdir(proc_fd_dir))) { ^ _posixsubprocess.c:341:52: error: incomplete definition of type 'struct dirent' if ((fd = _pos_int_from_ascii(dir_entry->d_name)) < 0) ~~~~~~~~~^ _posixsubprocess.c:332:16: note: forward declaration of 'struct dirent' struct dirent *dir_entry; ^ _posixsubprocess.c:353:9: warning: implicit declaration of function 'closedir' is invalid in C99 [-Wimplicit-function-declaration] closedir(proc_fd_dir); ^ _posixsubprocess.c:353:18: error: use of undeclared identifier 'proc_fd_dir' closedir(proc_fd_dir); ^ 3 warnings and 7 errors generated. error: command 'cc' failed with exit status 1 ---------------------------------------- Command "/Users/user/Downloads/my-pypy/bin/pypy -u -c "import setuptools, tokenize;__file__='/private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-install-Xz3l_3/subprocess32/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-record-deoFei/install-record.txt --single-version-externally-managed --compile --install-headers /Users/user/Downloads/my-pypy/include/site/python2.7/subprocess32" failed with error code 1 in /private/var/folders/qz/ht3b5bk127972m5vrcg3r950zy38dc/T/pip-install-Xz3l_3/subprocess32/ From issues-reply at bitbucket.org Sat May 12 08:23:59 2018 From: issues-reply at bitbucket.org (noyounoyou) Date: Sat, 12 May 2018 12:23:59 +0000 (UTC) Subject: [pypy-issue] Issue #2829: pypy3 - continulet pickling disabled (pypy/pypy) Message-ID: <20180512122359.826.30520@celery-worker-108.ash1.bb-inf.net> New issue 2829: pypy3 - continulet pickling disabled https://bitbucket.org/pypy/pypy/issues/2829/pypy3-continulet-pickling-disabled noyounoyou: When trying to pickle a continulet (or a greenlet/etc), I get a NotImplementedError: "continulet's pickle support is currently disabled" Looking at the source, this seems to exist only in new versions of pypy3 (not pypy). Can it be fixed? From issues-reply at bitbucket.org Sun May 13 14:04:31 2018 From: issues-reply at bitbucket.org (Mike Auty) Date: Sun, 13 May 2018 18:04:31 +0000 (UTC) Subject: [pypy-issue] Issue #2830: multiprocessing fails with "expected integer, got NoneType object" (pypy/pypy) Message-ID: <20180513180431.29159.77815@celery-worker-107.ash1.bb-inf.net> New issue 2830: multiprocessing fails with "expected integer, got NoneType object" https://bitbucket.org/pypy/pypy/issues/2830/multiprocessing-fails-with-expected Mike Auty: Hi there, I haven't been able to minimize the test condition, and I can only provide the rough outline of the code, but hopefully the location of the error will help identify it. The exception traceback is: ``` #!python Traceback (most recent call last): File "/usr/lib64/pypy3/lib-python/3/multiprocessing/pool.py", line 119, in worker result = (True, func(*args, **kwds)) File "/usr/lib64/pypy3/lib-python/3/multiprocessing/pool.py", line 44, in mapstar return list(map(*args)) File "/usr/lib64/pypy3/lib_pypy/_functools.py", line 80, in __call__ return self._func(*(self._args + fargs), **fkeywords) File "/path/to/scan_test.py", line 226, in _scan_chunk progress.value = chunk_end File "/usr/lib64/pypy3/lib-python/3/multiprocessing/managers.py", line 1034, in set return self._callmethod('set', (value,)) File "/usr/lib64/pypy3/lib-python/3/multiprocessing/managers.py", line 716, in _callmethod conn.send((self._id, methodname, args, kwds)) File "/usr/lib64/pypy3/lib-python/3/multiprocessing/connection.py", line 206, in send self._send_bytes(ForkingPickler.dumps(obj)) File "/usr/lib64/pypy3/lib-python/3/multiprocessing/connection.py", line 404, in _send_bytes self._send(header + buf) File "/usr/lib64/pypy3/lib-python/3/multiprocessing/connection.py", line 368, in _send n = write(self._handle, buf) TypeError: expected integer, got NoneType object ``` In this instance, progress.value is `multiprocessing.Manager().Value("Q", 0)` and the multiprocessing code looks like: ``` #!python with multiprocessing.Pool() as pool: result = pool.map_async(scan_chunk, scan_iterator()) while not result.ready(): result.wait(0.1) for value in result.get(): yield from value ``` Some information that might help is that if I insert a print statement in the scan_chunk method, it ends up running fine, suggesting it's a timing condition of some kind. It looks as though the handle's been closed, but I don't know enough about the code to figure out why. Please let me know if you need more information and I'd be happy to provide to provide it if I'm allowed. I'm also happy to test patches against 6.0.0 if that'd help... Pypy --version: Python 3.5.3 (fdd60ed87e941677e8ea11acf9f1819466521bf2, Apr 27 2018, 14:54:57) [PyPy 6.0.0 with GCC 7.3.0] From issues-reply at bitbucket.org Thu May 17 06:21:17 2018 From: issues-reply at bitbucket.org (mattip) Date: Thu, 17 May 2018 10:21:17 +0000 (UTC) Subject: [pypy-issue] Issue #2831: memoryview format is incomplete (pypy/pypy) Message-ID: <20180517102117.15639.28512@celery-worker-109.ash1.bb-inf.net> New issue 2831: memoryview format is incomplete https://bitbucket.org/pypy/pypy/issues/2831/memoryview-format-is-incomplete mattip: the following script ``` from __future__ import print_function import ctypes a = memoryview(ctypes.c_uint8()) b = memoryview(ctypes.pointer(ctypes.c_uint8())) print('uint8 format', a.format) print('&uint8 format', b.format) ``` on cpython 2 or 3 prints ``` uint8 format New issue 2832: SSL certificate verification fails after fork() https://bitbucket.org/pypy/pypy/issues/2832/ssl-certificate-verification-fails-after Karan Lyons: The attached script reproduces the error. On Python 3.5.3 it outputs: ``` #!python b'{"headers":{"Accept-Encoding":"identity","Connection":"close","Host":"httpbin.org"}}\n' b'{"headers":{"Accept-Encoding":"identity","Connection":"close","Host":"httpbin.org"}}\n' ``` However on PyPy 6.0.0 (fdd60ed87e941677e8ea11acf9f1819466521bf2) the request after `fork()` fails: ``` #!python b'{"headers":{"Accept-Encoding":"identity","Connection":"close","Host":"httpbin.org"}}\n' Traceback (most recent call last): File "pypy_ssl_after_fork_bug.py", line 16, in print(request()) File "pypy_ssl_after_fork_bug.py", line 8, in request connection.request('GET', '/headers') File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 1107, in request self._send_request(method, url, body, headers) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 1152, in _send_request self.endheaders(body) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 1103, in endheaders self._send_output(message_body) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 934, in _send_output self.send(msg) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 877, in send self.connect() File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/http/client.py", line 1261, in connect server_hostname=server_hostname) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/ssl.py", line 385, in wrap_socket _context=self) File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/ssl.py", line 760, in __init__ self.do_handshake() File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/ssl.py", line 996, in do_handshake self._sslobj.do_handshake() File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib-python/3/ssl.py", line 641, in do_handshake self._sslobj.do_handshake() File "/usr/local/Cellar/pypy3/6.0.0/libexec/lib_pypy/_cffi_ssl/_stdssl/__init__.py", line 355, in do_handshake raise pyssl_error(self, ret) _cffi_ssl._stdssl.error.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] error:14007086:SSL routines:CONNECT_CR_CERT:certificate verify failed ``` From issues-reply at bitbucket.org Tue May 22 09:12:42 2018 From: issues-reply at bitbucket.org (=?utf-8?b?RnJhbnRpxaFlayBTa8OhbGE=?=) Date: Tue, 22 May 2018 13:12:42 +0000 (UTC) Subject: [pypy-issue] Issue #2833: Memory leak with non-exhausted nested generators (pypy/pypy) Message-ID: <20180522131242.38390.87254@celery-worker-105.ash1.bb-inf.net> New issue 2833: Memory leak with non-exhausted nested generators https://bitbucket.org/pypy/pypy/issues/2833/memory-leak-with-non-exhausted-nested Franti?ek Sk?la: When I have nested generators and don't exhaust them fully, memory is not released properly. I've tried a version with and without closing the generators manually, but I did not observe any difference. Tested in an ubuntu 16.04 docker image with just pypy3 installed: ``` #!none $ pypy3 --version Python 3.5.3 (fdd60ed87e94, Apr 24 2018, 06:10:04) [PyPy 6.0.0 with GCC 6.2.0 20160901] $ uname -a Linux 60286eff83ae 4.4.0-124-generic #148-Ubuntu SMP Wed May 2 13:00:18 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux ``` The code showing this problem (main.py) while closing the generators manually: ``` #!python def sample_generator(): yield 3 def nesting_generator(): inner_generator = sample_generator() try: for x in inner_generator: yield x finally: inner_generator.close() def leak(): outer_generator = nesting_generator() next(outer_generator) outer_generator.close() while True: leak() ``` Command used: `pypy3 main.py` Expected behaviour: * memory consumption of the pypy3 process doesn't grow over time Actual behaviour: * memory consumption growing rapidly (~250MB increase each second) From issues-reply at bitbucket.org Tue May 22 09:23:38 2018 From: issues-reply at bitbucket.org (Alexandre Vincent) Date: Tue, 22 May 2018 13:23:38 +0000 (UTC) Subject: [pypy-issue] Issue #2834: import pypy3 FileFinder path hooks and frozen importers duplicated (pypy/pypy) Message-ID: <20180522132337.16225.3733@celery-worker-110.ash1.bb-inf.net> New issue 2834: import pypy3 FileFinder path hooks and frozen importers duplicated https://bitbucket.org/pypy/pypy/issues/2834/import-pypy3-filefinder-path-hooks-and Alexandre Vincent: I am using a custom built pypy3 (not available as package on my platform) ``` Python 3.5.3 (39fd746993fe, May 22 2018, 12:05:13) [PyPy 6.1.0-alpha0 with GCC 5.4.0 20160609] on linux ``` I noticed that : ``` PyDev console: starting. Python 3.5.3 (39fd746993fe, May 22 2018, 12:05:13) [PyPy 6.1.0-alpha0 with GCC 5.4.0 20160609] on linux >>>> import sys >>>> import pprint >>>> pprint.pprint(sys.path_hooks) [.path_hook_for_FileFinder at 0x00007faecf8c4b20>, , .path_hook_for_FileFinder at 0x00007faed00660c0>] >>>> pprint.pprint(sys.meta_path) [, , , , , ] ``` The basic hooks are duplicated. To compare the CPython3.5 behavior is : ``` Python 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> import pprint >>> pprint.pprint(sys.path_hooks) [, .path_hook_for_FileFinder at 0x7f7c96ff3950>] >>> pprint.pprint(sys.meta_path) [, , ] >>> ``` I noticed it because it breaks a logic in a package I am developing, that deals with imports. Also, the symptom is the same on my travis build with pypy3 : https://travis-ci.org/asmodehn/palimport/builds/382038623 . I am guessing the reason is the same as well, and therefore would not be due to my custom build. For the record, this doesn't occur at all on python2, but the duplicated objects are new in python3. From issues-reply at bitbucket.org Wed May 23 16:17:52 2018 From: issues-reply at bitbucket.org (Franz Buchinger) Date: Wed, 23 May 2018 20:17:52 +0000 (UTC) Subject: [pypy-issue] Issue #2835: Broken Pygame install in Pypy 2.7/Windows 10 (pypy/pypy) Message-ID: <20180523201751.29535.88871@celery-worker-105.ash1.bb-inf.net> New issue 2835: Broken Pygame install in Pypy 2.7/Windows 10 https://bitbucket.org/pypy/pypy/issues/2835/broken-pygame-install-in-pypy-27-windows Franz Buchinger: Not sure whether to open this bug in the Pygame or PyPy project, but here is my console output: ``` #!cmd Microsoft Windows [Version 10.0.17134.48] (c) 2018 Microsoft Corporation. Alle Rechte vorbehalten. C:\temp\pypy>pypy -V Python 2.7.13 (ab0b9caf307d, Apr 24 2018, 17:52:36) [PyPy 6.0.0 with MSC v.1500 32 bit] C:\temp\pypy>pypy -m ensurepip Requirement already satisfied: setuptools in c:\temp\pypy\site-packages Requirement already satisfied: pip in c:\temp\pypy\site-packages C:\temp\pypy>pypy.exe -m pip install pygame --pre Collecting pygame Downloading https://files.pythonhosted.org/packages/ba/96/82495010a3daf94f579c6fc60a2466212057a3db38ce7927f01f32941968/pygame-1.9.4.dev0.tar.gz (4.9MB) 100% |################################| 4.9MB 146kB/s Complete output from command python setup.py egg_info: WARNING, No "Setup" File Exists, Running "config.py" Using WINDOWS configuration... Path for SDL not found. Too bad that is a requirement! Hand-fix the "Setup" Path for FONT not found. Path for IMAGE not found. Path for MIXER not found. Path for PNG not found. Path for JPEG not found. Path for PORTMIDI not found. Path for COPYLIB_tiff not found. Path for COPYLIB_z not found. Path for COPYLIB_vorbis not found. Path for COPYLIB_ogg not found. If you get compiler errors during install, doublecheck the compiler flags in the "Setup" file. Continuing With "setup.py" Error with the "Setup" file, perhaps make a clean copy from "Setup.in". Traceback (most recent call last): File "", line 1, in File "c:\users\fbuchi~1\appdata\local\temp\pip-build-kt83dc\pygame\setup.py", line 165, in extensions = read_setup_file('Setup') File "C:\temp\pypy\lib-python\2.7\distutils\extension.py", line 168, in read_setup_file line = expand_makefile_vars(line, vars) File "C:\temp\pypy\lib-python\2.7\distutils\sysconfig_cpython.py", line 387, in expand_makefile_vars s = s[0:beg] + vars.get(m.group(1)) + s[end:] TypeError: unsupported operand type(s) for +: 'str' and 'NoneType' ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in c:\users\fbuchi~1\appdata\local\temp\pip-build-kt83dc\pygame\ You are using pip version 9.0.1, however version 10.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command. ``` From issues-reply at bitbucket.org Sat May 26 07:01:24 2018 From: issues-reply at bitbucket.org (Carl Friedrich Bolz-Tereick) Date: Sat, 26 May 2018 11:01:24 +0000 (UTC) Subject: [pypy-issue] Issue #2836: better errors for ConnectionRefusedError and socket.gaierror (pypy/pypy) Message-ID: <20180526110124.6514.13210@celery-worker-108.ash1.bb-inf.net> New issue 2836: better errors for ConnectionRefusedError and socket.gaierror https://bitbucket.org/pypy/pypy/issues/2836/better-errors-for-connectionrefusederror Carl Friedrich Bolz-Tereick: Simon Davy on Twitter suggested: "the message for ConnectionRefused include the address/port that'd be super useful. Likewise with socket.gaierror." https://twitter.com/bloodearnest/status/1000317349810065408 From issues-reply at bitbucket.org Sat May 26 22:45:33 2018 From: issues-reply at bitbucket.org (Armin Rigo) Date: Sun, 27 May 2018 02:45:33 +0000 (UTC) Subject: [pypy-issue] Issue #2837: interactive stdout buffer not flushed if no end-of-line and exception (pypy/pypy) Message-ID: <20180527024533.29529.8186@celery-worker-108.ash1.bb-inf.net> New issue 2837: interactive stdout buffer not flushed if no end-of-line and exception https://bitbucket.org/pypy/pypy/issues/2837/interactive-stdout-buffer-not-flushed-if Armin Rigo: Interactively: ``` #!python >>>> print 5,; 0 / 0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: integer division by zero >>>> # the 5 is buffered and doesn't show up yet 5 >>>> ``` On CPython the 5 is shown before the exception, as expected. From issues-reply at bitbucket.org Sun May 27 04:47:24 2018 From: issues-reply at bitbucket.org (dudu bs) Date: Sun, 27 May 2018 08:47:24 +0000 (UTC) Subject: [pypy-issue] Issue #2838: {*iterator} does not behave like set(iterator). (pypy/pypy) Message-ID: <20180527084723.21221.77877@celery-worker-110.ash1.bb-inf.net> New issue 2838: {*iterator} does not behave like set(iterator). https://bitbucket.org/pypy/pypy/issues/2838/iterator-does-not-behave-like-set-iterator dudu bs: When I convert iterator to set using the expression {*x} exceptions that are thrown away by 'x' disappear as opposed to using expression set(x) ``` #!python def gen(): yield 1 raise TypeError() test1 = {*gen()} # not raised test2 = set(gen()) # raised ``` From issues-reply at bitbucket.org Tue May 29 13:18:39 2018 From: issues-reply at bitbucket.org (ahorek) Date: Tue, 29 May 2018 17:18:39 +0000 (UTC) Subject: [pypy-issue] Issue #2839: max(array) is slower than expected (pypy/pypy) Message-ID: <20180529171838.38147.56023@celery-worker-109.ash1.bb-inf.net> New issue 2839: max(array) is slower than expected https://bitbucket.org/pypy/pypy/issues/2839/max-array-is-slower-than-expected ahorek: the native implementation is slower, what is the reason? ``` import datetime import time import random arr_int = [random.randint(0,10000) for _ in xrange(50000)] def maximum_native(arr): return max(arr) def maximum(arr): max = arr[0] i = 1 length = len(arr) - 1 while(i < length): i += 1 if arr[i] > max: max = arr[i] return max # warmup for i in range(500): maximum_native(arr_int) for i in range(500): maximum(arr_int) t = time.time() for i in range(10000): maximum_native(arr_int) elapsed_time = time.time() - t print("max native: " + str(elapsed_time) + 's') t = time.time() for i in range(10000): maximum(arr_int) elapsed_time = time.time() - t print("max: " + str(elapsed_time) + 's') ``` Python 2.7.13 (ab0b9caf307d, Apr 24 2018, 18:04:42) [PyPy 6.0.0 with GCC 6.2.0 20160901] on linux2 **max native: 15.4919641018s** **max: 0.683923959732s** From issues-reply at bitbucket.org Wed May 30 02:59:23 2018 From: issues-reply at bitbucket.org (Florian Schulze) Date: Wed, 30 May 2018 06:59:23 +0000 (UTC) Subject: [pypy-issue] Issue #2840: Result of os.path.expanduser sometimes contains NUL character (pypy/pypy) Message-ID: <20180530065923.22627.37699@celery-worker-109.ash1.bb-inf.net> New issue 2840: Result of os.path.expanduser sometimes contains NUL character https://bitbucket.org/pypy/pypy/issues/2840/result-of-ospathexpanduser-sometimes Florian Schulze: In the test runs for [devpi](http://github.com/devpi/devpi/) we occasionally get failures, because in ``requests`` the check for ``~/.netrc`` fails. What happens is that the ``os.path.expanduser`` call for it results in strings like this: ``p:/var/spool/uucp:/usr/sbin/nologin\x00/.netrc``, which looks like some other memory area than ``os.environ['HOME']`` was used. At first I filed a [bug report with travis ci](https://github.com/travis-ci/travis-ci/issues/9616), but because I only see this with pypy/pypy3 I now suspect, that there is a bug in pypy. A recent occurence was this: https://travis-ci.org/devpi/devpi/jobs/385292098#L664 Unfortunately I never saw this anywhere else, so I wasn't able to narrow down the circumstances. In the worst case this has something to do with the way travis-ci works (running on GCE afaik when using ``sudo: false`` like in our case). The tests run daily and for commits and PRs. The error happens about once per week. From issues-reply at bitbucket.org Wed May 30 14:54:24 2018 From: issues-reply at bitbucket.org (Amaury Rolin) Date: Wed, 30 May 2018 18:54:24 +0000 (UTC) Subject: [pypy-issue] Issue #2841: Remote Multprocessing Issue (pypy/pypy) Message-ID: <20180530185424.3146.40208@celery-worker-109.ash1.bb-inf.net> New issue 2841: Remote Multprocessing Issue https://bitbucket.org/pypy/pypy/issues/2841/remote-multprocessing-issue Amaury Rolin: I am trying to run the [remote manager example code](https://docs.python.org/3/library/multiprocessing.html#using-a-remote-manager) remote manager example code from the multiprocessing documentation in pypy3 but I get an error connecting the client. Server side: ``` #!python from multiprocessing.managers import BaseManager from queue import Queue queue = Queue() class QueueManager(BaseManager): pass QueueManager.register('get_queue', callable=lambda:queue) m = QueueManager(address=('127.0.0.1', 50000), authkey=b'abracadabra') s = m.get_server() s.serve_forever() ``` Client side: ``` #!python from multiprocessing.managers import BaseManager class QueueManager(BaseManager): pass QueueManager.register('get_queue') m = QueueManager(address=('127.0.0.1', 50000), authkey=b'abracadabra') m.connect() queue = m.get_queue() queue.put('hello') ``` Error when running pypy client: ``` #!python Traceback (most recent call last): File "C:/temp/testpypy/mp_client.py", line 7, in m.connect() File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\managers.py", line 455, in connect conn = Client(self._address, authkey=self._authkey) File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\connection.py", line 493, in Client answer_challenge(c, authkey) File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\connection.py", line 732, in answer_challenge message = connection.recv_bytes(256) # reject large message File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\connection.py", line 216, in recv_bytes buf = self._recv_bytes(maxlength) File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\connection.py", line 407, in _recv_bytes buf = self._recv(4) File "C:\Python\pypy3-v6.0.0-win32\lib-python\3\multiprocessing\connection.py", line 386, in _recv buf.write(chunk) TypeError: 'str' does not support the buffer interface ``` if I try to connect to it from a CPython interpreter (which is my ultimate goal) I get the following error: ``` #!python Traceback (most recent call last): File "", line 1, in File "c:\Python\3.5.4.2\WinPython\python-3.5.4.amd64\lib\multiprocessing\managers.py", line 455, in connect conn = Client(self._address, authkey=self._authkey) File "c:\Python\3.5.4.2\WinPython\python-3.5.4.amd64\lib\multiprocessing\connection.py", line 493, in Client answer_challenge(c, authkey) File "c:\Python\3.5.4.2\WinPython\python-3.5.4.amd64\lib\multiprocessing\connection.py", line 737, in answer_challenge response = connection.recv_bytes(256) # reject large message File "c:\Python\3.5.4.2\WinPython\python-3.5.4.amd64\lib\multiprocessing\connection.py", line 218, in recv_bytes self._bad_message_length() File "c:\Python\3.5.4.2\WinPython\python-3.5.4.amd64\lib\multiprocessing\connection.py", line 151, in _bad_message_length raise OSError("bad message length") OSError: bad message length ``` I tried this with the latest build PyPy3 build and the 6.0 release. This works in PyPy 2.7. From issues-reply at bitbucket.org Thu May 31 08:40:47 2018 From: issues-reply at bitbucket.org (bivald) Date: Thu, 31 May 2018 12:40:47 +0000 (UTC) Subject: [pypy-issue] Issue #2842: Running pyarrow on pypy segfaults (pypy/pypy) Message-ID: <20180531124046.36543.93674@celery-worker-109.ash1.bb-inf.net> New issue 2842: Running pyarrow on pypy segfaults https://bitbucket.org/pypy/pypy/issues/2842/running-pyarrow-on-pypy-segfaults bivald: Hi, I'm experimenting in running pyarrow on pypy. Arrow is "is a cross-language development platform for in-memory data" and on a more practical level allows you to read and write parquet files for pandas. It's a great format for number crunching and used heavily instead of csv with Apache Spark etc. PyArrow is not trivial to install since there are no pre-build wheels, but in theory should work since it relies on numpy and pandas mainly (which PyPy supports). It's built on the Arrow C++ library and the Parquet C++ library. Once built a lot of things work, but there are several tests that segfaults. I'm not sure if this is something in Pyarrow or PyPy so I'm opening a ticket here as well. Ticket on PyArrow: https://github.com/apache/arrow/issues/2089 Since it's quite tricky to built I've created a Dockerfile which builds arrow and runs the tests, they can be found on https://github.com/bivald/pyarrow-docker-test - it relies on pypy2 docker image. From issues-reply at bitbucket.org Thu May 31 09:52:46 2018 From: issues-reply at bitbucket.org (Xiang Ji) Date: Thu, 31 May 2018 13:52:46 +0000 (UTC) Subject: [pypy-issue] Issue #2843: numpy doesn't work with the newest gcc-fortran 8 (Cannot find libgfortran.so.4) (pypy/pypy) Message-ID: <20180531135246.29520.20373@celery-worker-111.ash1.bb-inf.net> New issue 2843: numpy doesn't work with the newest gcc-fortran 8 (Cannot find libgfortran.so.4) https://bitbucket.org/pypy/pypy/issues/2843/numpy-doesnt-work-with-the-newest-gcc Xiang Ji: gcc-fortran was recently updated to version 8 which replaces `libgfortran.so.4` with `libgfortran.so.5`, however, the newest numpy library installed from `pypy` seems to still search for `libgfortran.so.4`, which results in a bug. It is also reported at: https://bugs.archlinux.org/task/58536 https://bugs.archlinux.org/task/58521 From issues-reply at bitbucket.org Thu May 31 11:49:10 2018 From: issues-reply at bitbucket.org (Andrew Stepanov) Date: Thu, 31 May 2018 15:49:10 +0000 (UTC) Subject: [pypy-issue] Issue #2844: ./pypy3-c -m ensurepip segfaults on MacOS on 3.6 (pypy/pypy) Message-ID: <20180531154910.1604.39301@celery-worker-105.ash1.bb-inf.net> New issue 2844: ./pypy3-c -m ensurepip segfaults on MacOS on 3.6 https://bitbucket.org/pypy/pypy/issues/2844/pypy3-c-m-ensurepip-segfaults-on-macos-on Andrew Stepanov: Latest pypy built from source from 3.6 branch segfaults on MacOS when I try to install pip: ``` $ ./pypy3-c -m ensurepip Collecting setuptools Collecting pip Installing collected packages: setuptools, pip [1] 10603 segmentation fault ./pypy3-c -m ensurepip ``` When I try the same on Linux, it works fine: ``` ./pypy3-c -m ensurepip Collecting setuptools Collecting pip Installing collected packages: setuptools, pip Successfully installed pip-9.0.1 setuptools-28.8.0 ```