Re: [Python-Dev] cpython: Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't

2012-09-10 Thread Christian Heimes
Am 10.09.2012 03:50, schrieb christian.heimes: http://hg.python.org/cpython/rev/85cb90f79cbf changeset: 78946:85cb90f79cbf user:Christian Heimes christ...@cheimes.de date:Mon Sep 10 03:50:48 2012 +0200 summary: Fixed out-of-bounce write to rawmode buffer. The fixed size

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

2012-09-10 Thread Matti Picus
Hi. I am implementing complex numbers for pypy's version of numpy. Numpy has both 128 bit (based on 64 bit floats) and 64 bit (based on 32 bit floats) complex numbers, where afaict cmath uses strictly 128 bit complex numbers. I made sure the 128 bit numpy complex numbers

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

2012-09-10 Thread Matti Picus
(I apologize for posting HTML mail. Retrying.) Hi. I am implementing complex numbers for pypy's version of numpy. Numpy has both 128 bit (based on 64 bit floats) and 64 bit (based on 32 bit floats) complex numbers, where afaict cmath uses strictly 128 bit complex numbers. I made sure the 128 bit

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

2012-09-10 Thread Mark Dickinson
On Mon, Sep 10, 2012 at 9:06 PM, Matti Picus matti.pi...@gmail.com wrote: Can the authors of the original file help me reconstruct the scripts or programs used to generate it, and reformulate them for 32 bit floats? I used a ctypes wrapper around the MPFR library for most of the testcases,