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 pitrou
Recipients pitrou, sbt
Date 2013-06-15.18:11:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371319899.13.0.747350154244.issue18214@psf.upfronthosting.co.za>
In-reply-to
Content
> Usually garbage collection will end up clearing the module's dict anyway.

This is not true, since global objects might have a __del__ and then hold the whole module dict alive through a reference cycle. Happily though, PEP 442 is going to make that concern obsolete.

As for the interpreter shutdown itself, I have a pending patch (post-PEP 442) to get rid of the globals cleanup as well. It may be better to merge the two approaches.
History
Date User Action Args
2013-06-15 18:11:39pitrousetrecipients: + pitrou, sbt
2013-06-15 18:11:39pitrousetmessageid: <1371319899.13.0.747350154244.issue18214@psf.upfronthosting.co.za>
2013-06-15 18:11:39pitroulinkissue18214 messages
2013-06-15 18:11:38pitroucreate