Re: [Cython] PEP 442: safe object finalisation

2013-08-07 Thread Stefan Behnel
Stefan Behnel, 03.08.2013 18:24: > CPython 3.4 will have a new way to handle object finalisation. > > http://www.python.org/dev/peps/pep-0442/ > > I think we should switch the current deallocation code to make use of it. > That should fix the problem we currently have with user provided > __deall

Re: [Cython] PEP 442: safe object finalisation

2013-08-05 Thread Stefan Behnel
Torsten Landschoff, 05.08.2013 10:02: > On 08/03/2013 06:24 PM, Stefan Behnel wrote: >> CPython 3.4 will have a new way to handle object finalisation. >> >> http://www.python.org/dev/peps/pep-0442/ >> >> I think we should switch the current deallocation code to make use of it. >> That should fix th

Re: [Cython] PEP 442: safe object finalisation

2013-08-05 Thread Torsten Landschoff
Hi Stefan, On 08/03/2013 06:24 PM, Stefan Behnel wrote: > CPython 3.4 will have a new way to handle object finalisation. > > http://www.python.org/dev/peps/pep-0442/ > > I think we should switch the current deallocation code to make use of it. > That should fix the problem we currently have with u