Re: [Cython] ref-leak in 0.17

2012-09-25 Thread mark florisson
On 25 September 2012 16:48, Stefan Behnel wrote: > mark florisson, 25.09.2012 17:27: >> 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/7

Re: [Cython] ref-leak in 0.17

2012-09-25 Thread Stefan Behnel
mark florisson, 25.09.2012 17:27: > 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 then release a pu

Re: [Cython] Auto-pickle progress?

2012-09-25 Thread Robert Bradshaw
On Tue, Sep 25, 2012 at 5:41 AM, Ian Bell wrote: > I agree that some of the more powerful elements of Cython would be/are > difficult or impossible to pickle in a general way. I have a counter > use-case where auto-pickling would be very useful. > > I have cdef classes that have many (think 50-10

Re: [Cython] ref-leak in 0.17

2012-09-25 Thread mark florisson
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 then release a pure bugfix 0.17.1 right >> afterwards. >>

Re: [Cython] ref-leak in 0.17

2012-09-25 Thread Stefan Behnel
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 then release a pure bugfix 0.17.1 right > afterwards. > > Please take a look at your own patch queues to see if

Re: [Cython] Cython 0.17 final released

2012-09-25 Thread Stefan Behnel
Bradley M. Froehle, 11.09.2012 00:34: > Any chance we can tag the official 0.17 release in Github as well? BTW, do we use lightweight tags or annotated tags in git? And why? Stefan ___ cython-devel mailing list cython-devel@python.org http://mail.pytho

[Cython] ref-leak in 0.17

2012-09-25 Thread Stefan Behnel
Hi, 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 then release a pure bugfix 0.17.1 right afterwards. Please take a look at your own patch queues to see if there are any other important bugs that you

Re: [Cython] Auto-pickle progress?

2012-09-25 Thread Ian Bell
I agree that some of the more powerful elements of Cython would be/are difficult or impossible to pickle in a general way. I have a counter use-case where auto-pickling would be very useful. I have cdef classes that have many (think 50-100) members of double and long types, as well as other cdef

Re: [Cython] Auto-pickle progress?

2012-09-25 Thread Sturla Molden
On 20.09.2012 21:11, Ian Bell wrote: Auto-pickling would be tremendously helpful as pickling and unpickling is one of the most annoying features of working with threads and processes in python. How should Cython interfere how to pickle a C pointer? cdef class foobar: cdef double *data A C