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=
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