[Cython] Cython 0.17.1 released

2012-09-26 Thread Stefan Behnel
Hi all, I just released Cython 0.17.1. This is a bugfix-only release for the latest stable 0.17 release series. http://pypi.python.org/pypi/Cython/0.17.1 http://wiki.cython.org/ReleaseNotes-0.17.1 Two bugs were fixed in this release: * A reference leak was fixed in the new dict iteration code

Re: [Cython] [cython-users] cython error return values and pure python mode

2012-09-26 Thread Stefan Behnel
Luca Dall'Olio, 26.09.2012 10:24: > I just converted some cython code using the "@cython.returns(a_type)" > annotation and it works like a charm, thanks for that! :-) It was mostly an oversight that it hasn't been available for so long. The pure Python mode is still incomplete and gradually impro

Re: [Cython] ref-leak in 0.17

2012-09-26 Thread Robert Bradshaw
On Wed, Sep 26, 2012 at 12:28 AM, Stefan Behnel wrote: > mark florisson, 25.09.2012 22:37: On 25 September 2012 16:12, Stefan Behnel wrote: > Stefan Behnel, 25.09.2012 14:55: >> there is a reference leak in the new dict iteration code in 0.17: >> >> http://trac.cython.org/cyth

Re: [Cython] ref-leak in 0.17

2012-09-26 Thread Stefan Behnel
mark florisson, 25.09.2012 22:37: >>> On 25 September 2012 16:12, Stefan Behnel wrote: Stefan Behnel, 25.09.2012 14:55: > there is a reference leak in the new dict iteration code in 0.17: > > http://trac.cython.org/cython_trac/ticket/790 > > I'll see if I can fix it and the