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 rohandsa
Recipients pitrou, rohandsa, serhiy.storchaka
Date 2017-11-17.07:51:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510905068.22.0.213398074469.issue32045@psf.upfronthosting.co.za>
In-reply-to
Content
you are right. i realized later i actually had a leak in a com instantiated object, assumed it was a leak in the python and tried to find it using the gc module. 

The gc documentation led me down the garden path.

QUOTE

gc.garbage
A list of objects which the collector found to be unreachable but could not be freed (uncollectable objects). 

UNQUOTE

i assumed:
- cyclic references are unreachable but can be freed and hence collectable.
- __del__ finalizer (with cyclic references?) objects are unreachable and cannot be freed and hence uncollectable.
History
Date User Action Args
2017-11-17 07:51:08rohandsasetrecipients: + rohandsa, pitrou, serhiy.storchaka
2017-11-17 07:51:08rohandsasetmessageid: <1510905068.22.0.213398074469.issue32045@psf.upfronthosting.co.za>
2017-11-17 07:51:08rohandsalinkissue32045 messages
2017-11-17 07:51:08rohandsacreate