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)):
>
Even function with tuple match parameter don't work either.
```
def test((name, v)):
return True
```
```
Error compiling Cython file:
...
def test((name, v)):
^
--
λ $ 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