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 serhiy.storchaka
Recipients kayhayen, pitrou, serhiy.storchaka, vstinner
Date 2018-07-04.13:29:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530710957.22.0.56676864532.issue34042@psf.upfronthosting.co.za>
In-reply-to
Content
The simplest reproducer:

import gc, sys
for i in range(100):
    class A:
        pass
    del A
    c = gc.collect()
    del c
    print(sys.gettotalrefcount())
History
Date User Action Args
2018-07-04 13:29:17serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner, kayhayen
2018-07-04 13:29:17serhiy.storchakasetmessageid: <1530710957.22.0.56676864532.issue34042@psf.upfronthosting.co.za>
2018-07-04 13:29:17serhiy.storchakalinkissue34042 messages
2018-07-04 13:29:17serhiy.storchakacreate