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 mark.dickinson
Recipients Kevin Mills, mark.dickinson
Date 2017-02-27.20:44:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488228297.76.0.105956979616.issue29671@psf.upfronthosting.co.za>
In-reply-to
Content
If I understand correctly, you can already achieve what you want by:

1. Disabling gc (with gc.disable()) at the beginning of your code, and possibly adding a `gc.collect()` immediately afterwards for good measure.
2. Doing a gc.collect() (and taking note of the return value) at the end of your code.
3. To be on the safe side, also check whether there's anything in `gc.garbage`.

If no reference cycles were created, `gc.collect()` will return `0`, and `gc.garbage` will be empty.
History
Date User Action Args
2017-02-27 20:44:57mark.dickinsonsetrecipients: + mark.dickinson, Kevin Mills
2017-02-27 20:44:57mark.dickinsonsetmessageid: <1488228297.76.0.105956979616.issue29671@psf.upfronthosting.co.za>
2017-02-27 20:44:57mark.dickinsonlinkissue29671 messages
2017-02-27 20:44:57mark.dickinsoncreate