Message306414
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. |
|
| Date |
User |
Action |
Args |
| 2017-11-17 07:51:08 | rohandsa | set | recipients:
+ rohandsa, pitrou, serhiy.storchaka |
| 2017-11-17 07:51:08 | rohandsa | set | messageid: <1510905068.22.0.213398074469.issue32045@psf.upfronthosting.co.za> |
| 2017-11-17 07:51:08 | rohandsa | link | issue32045 messages |
| 2017-11-17 07:51:08 | rohandsa | create | |
|