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
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
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
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.
>>
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
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
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
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
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