Re: [Cython] Cython 0.17 final released

2012-09-10 Thread Fernando Perez
First, congratulations and thanks for keeping such an important project moving forward!! On Sun, Sep 2, 2012 at 12:17 AM, Robert Bradshaw wrote: > > What about making a 0.17 branch, on which we can do 0.17.1, etc. if > necessary. I don't think we're to the point of needing to backport our > bugfi

Re: [Cython] Cython 0.17 final released

2012-09-10 Thread Bradley M. Froehle
Any chance we can tag the official 0.17 release in Github as well? -Brad On Sun, Sep 2, 2012 at 12:40 AM, Stefan Behnel wrote: > Robert Bradshaw, 02.09.2012 09:17: >> On Sat, Sep 1, 2012 at 11:49 PM, Stefan Behnel wrote: >>> Robert Bradshaw, 02.09.2012 06:05: I know this was brought up a co

[Cython] Hitting gcc 4.6 bug with Cython 0.17 and pandas

2012-09-10 Thread Wes McKinney
This issue came up earlier today. Everything works fine for me with gcc 4.6.1 and Cython 0.17, but maybe there is a bug being hit in gcc 4.6. Any debugging help would be appreciated (since this affects EC2 AMIs...) http://github.com/pydata/pandas/issues/1880 thanks, Wes __

[Cython] Cython-0.17 builtin type import bug

2012-09-10 Thread Robert Byrnes
If a builtin type that differs between Python 2 and 3 (e.g., unicode) is imported, then malformed C code is emitted by Cython-0.17: there is an extraneous, unbalanced #if. Here's a small reproducer: shell$ cat foo.pyx cdef extern from "Python.h": ctypedef class __builtin__.unicode [object PyU