Re: [Cython] [Bug] Don't compile lambda with tuple argument.

2015-11-09 Thread Robert Bradshaw
On Mon, Nov 9, 2015 at 4:15 PM, yi huang wrote: > Even function with tuple match parameter don't work either. > > ``` > def test((name, v)): > return True > ``` > > ``` > Error compiling Cython file: > > ... > def test((name, v)): >

Re: [Cython] [Bug] Don't compile lambda with tuple argument.

2015-11-09 Thread yi huang
Even function with tuple match parameter don't work either. ``` def test((name, v)): return True ``` ``` Error compiling Cython file: ... def test((name, v)): ^ --

[Cython] [Bug] Don't compile lambda with tuple argument.

2015-11-09 Thread yi huang
λ $ cat /tmp/test.pyx f = lambda (name,v):True λ $ cython /tmp/test.pyx Error compiling Cython file: ... f = lambda (name,v):True ^ /tmp/test.pyx:1:19: Empt