On 2018-09-07 06:35, Stefan Behnel wrote:
Maybe you actually want "tp_finalize"?
https://www.python.org/dev/peps/pep-0442/
Cython moves "__del__" methods there in Py3.4+.
First of all, are you sure? I tried to cythonize
cdef class X:
def __del__(self):
pass
but the generated C c
Jeroen Demeyer schrieb am 07.09.2018 um 10:14:
> On 2018-09-07 06:35, Stefan Behnel wrote:
>> Maybe you actually want "tp_finalize"?
>>
>> https://www.python.org/dev/peps/pep-0442/
>>
>> Cython moves "__del__" methods there in Py3.4+.
>
> First of all, are you sure? I tried to cythonize
>
> cdef