This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jdemeyer
Recipients jdemeyer, matrixise, pitrou, scoder
Date 2019-02-13.14:00:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550066411.11.0.795398254588.issue35983@roundup.psfhosted.org>
In-reply-to
Content
The problem is easily reproduced with Cython:

cdef class List(list):
    cdef int deallocated
    
    def __dealloc__(self):
        if self.deallocated:
            print("Deallocated twice!")
        self.deallocated = 1
        
L = None
for i in range(10**4):
    L = List((L,))
del L
History
Date User Action Args
2019-02-13 14:00:11jdemeyersetrecipients: + jdemeyer, pitrou, scoder, matrixise
2019-02-13 14:00:11jdemeyersetmessageid: <1550066411.11.0.795398254588.issue35983@roundup.psfhosted.org>
2019-02-13 14:00:11jdemeyerlinkissue35983 messages
2019-02-13 14:00:11jdemeyercreate