[Cython] Bug report: compiler traceback instead of error message

2013-07-09 Thread John Benediktsson
Hi, I had some trouble debugging a traceback that I got from Cython, which ended up being a simple typo in a .pyx file. Below is a reduced example of this problem. If you have a foo.pxd file (specifying a variable "bar"): $ cat foo.pxd cdef class Tree: cpdef build(self, int bar=

Re: [Cython] Bug report: compiler traceback instead of error message

2013-07-09 Thread Robert Bradshaw
Yes, we should be giving an error message here rather than crashing; thanks for the report. On Tue, Jul 9, 2013 at 7:36 AM, John Benediktsson wrote: > Hi, > > I had some trouble debugging a traceback that I got from Cython, which ended > up being a simple typo in a .pyx file. Below is a reduced