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 josh.r
Recipients Jack Liu, brett.cannon, eric.snow, josh.r, ncoghlan
Date 2016-09-21.04:25:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474431949.77.0.887594064981.issue28202@psf.upfronthosting.co.za>
In-reply-to
Content
The fact that it's resolved by PyGC_Collect indicates there is a reference cycle somewhere. PyGC_Collect is just looking for cyclic garbage and breaking the cycles so it can be cleaned; it would happen eventually unless GC was explicitly disabled or the process exited before the next implicit GC invocation, so it means this bug is really about timing (and possibly cycles we'd prefer to avoid), not reference leaks.
History
Date User Action Args
2016-09-21 04:25:49josh.rsetrecipients: + josh.r, brett.cannon, ncoghlan, eric.snow, Jack Liu
2016-09-21 04:25:49josh.rsetmessageid: <1474431949.77.0.887594064981.issue28202@psf.upfronthosting.co.za>
2016-09-21 04:25:49josh.rlinkissue28202 messages
2016-09-21 04:25:49josh.rcreate