Hi all,
the new features in 0.27 introduced a couple of regressions that Robert and
I have been hunting down during the last days. Thanks everyone for
reporting bugs and helping to isolate them.
I will release a bug fix version this weekend, so here is a beta to see if
we caught everything - or b
Lisandro Dalcin schrieb am 27.09.2017 um 15:53:
> Annotations can be used for
> type hinting, but they are not required to do that.
Well, they sort of are, according to PEP 484.
> For example, in my
> own use case, I'm just using it to get better docstrings.
Then you can set the directive "anno
On 27 September 2017 at 15:54, Stefan Behnel wrote:
> Hi Lisandro,
>
> Lisandro Dalcin schrieb am 27.09.2017 um 14:42:
>> $ cython --version
>> Cython version 0.27
>>
>> $ cat tmp.pyx
>> def f() -> (list, list):
>> return [], []
>>
>> $ cython tmp.pyx
>>
>> Error compiling Cython file:
>>
Hi Lisandro,
Lisandro Dalcin schrieb am 27.09.2017 um 14:42:
> $ cython --version
> Cython version 0.27
>
> $ cat tmp.pyx
> def f() -> (list, list):
> return [], []
>
> $ cython tmp.pyx
>
> Error compiling Cython file:
>
> ...
> d
$ cython --version
Cython version 0.27
$ cat tmp.pyx
def f() -> (list, list):
return [], []
$ cython tmp.pyx
Error compiling Cython file:
...
def f() -> (list, list):
^
---