[Python-Dev] Re: Need help on security vulnerability zlib 1.2.11

2022-04-20 Thread matti . picus
The pyinstaller docs https://pyinstaller.org/en/stable/ refer to the google group pyinstal...@googlegroups.com or you can try their issue tracker https://github.com/pyinstaller/pyinstaller/issues ___ Python-Dev mailing list -- python-dev@python.org To

[Python-Dev] Python-Dev] Replace debug runtime checks in release mode, with assertions in debug mode

2022-02-07 Thread Matti Picus
On 7/2/22 17:55, Victor Stinner wrote: End users should not have to pay the price of these runtime checks. Is the cost of the checks measurable and significant? Surely sanitizing arguments to prevent segfaults is worth a few nano-seconds? Matti __

[Python-Dev] Re: issues-test-2 spam?

2021-12-27 Thread Matti Picus
Message: 1 Date: Sun, 26 Dec 2021 21:48:22 +0100 From: Ezio Melotti Subject: [Python-Dev] Re: issues-test-2 spam? To: "Steven D'Aprano" Cc: python-dev Message-ID: Content-Type: text/plain; charset="UTF-8" Sorry, my mistake (again :) ... Since the python-core

[Python-Dev] Re: PEP 674: Disallow using macros as l-value

2021-12-08 Thread matti . picus
implementation detail. In the long run the HPy project would like to become a promoted API to write Python C extensions. Tim Felgentreff, posted by Matti Picus (on behalf of the HPy team) ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an

[Python-Dev] Re: PEP 674: Disallow using macros as l-value

2021-12-08 Thread matti . picus
Victor Stinner wrote: > First, PyPy tried to only implement a subset of the C API and promote > cffi for incompatible C extensions. This approach failed. Just to be clear: I don't think any of the PyPy devs assumed the huge Python c-extension ecosystem would suddenly run to adopt CFFI, so calling

[Python-Dev] Re: PyPy performance stats (was Re: Speeding up CPython)

2020-10-26 Thread Matti Picus
On 10/21/20 2:38 PM, Matti Picus wrote: On 10/21/20 20:42:02 +1100 Chris Angelico wrote: When I go looking for PyPy performance stats, everything seems to be Python 2.7. Is there anywhere that compares PyPy3 to CPython 3.6 (or whichever specific version)? Or maybe it's right there on

[Python-Dev] Re: Speeding up CPython

2020-10-21 Thread Matti Picus
On Wed, Oct 21, 2020 at 3:38 AM Steven D'Aprano st...@pearwood.info wrote: > some insulting FUD that is not worth repeating, and an apology Just to set the record straight, PyPy has been available on conda-forge [0] since March, and has seen close to 70,000 downlo

[Python-Dev] creating Lib/tests/cmath_testcases.txt for 64 bit complex numbers (text)

2012-09-10 Thread Matti Picus
most impressive. Thanks for any help or tips, Matti Picus ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

[Python-Dev] creating Lib/tests/cmath_testcases.txt for 64 bit complex numbers

2012-09-10 Thread Matti Picus
sting is most impressive. Thanks for any help or tips, Matti Picus ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%4

Re: [Python-Dev] backporting stdlib 2.7.x from pypy to cpython

2012-06-09 Thread Matti Picus
On 8/06/2012 9:29 PM, Brett Cannon wrote: On Fri, Jun 8, 2012 at 2:21 PM, fwierzbi...@gmail.com wrote: On Fri, Jun 8, 2012 at 10:59 AM, Brett Cannon wrote:

[Python-Dev] backporting stdlib 2.7.x from pypy to cpython

2012-06-08 Thread Matti Picus
The windows port of pypy makes special demands on stdlib, specifically that files are explicitly closed. There are some other minor issues, in order to merge all the changes necessary to get pypy windows up to speed, around 10 modules or at least their tests seem to need to be modified. I have be