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 sbt
Recipients Drekin, ncoghlan, sbt
Date 2013-06-30.16:58:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372611538.59.0.427369334182.issue18331@psf.upfronthosting.co.za>
In-reply-to
Content
When modules are garbage collected the associated globals dict is purged -- see #18214.  This means that all values (except __builtins__) are replaced by None.

To work around this run_path() apparently returns a *copy* of the globals dict which was created before purging.
History
Date User Action Args
2013-06-30 16:58:58sbtsetrecipients: + sbt, ncoghlan, Drekin
2013-06-30 16:58:58sbtsetmessageid: <1372611538.59.0.427369334182.issue18331@psf.upfronthosting.co.za>
2013-06-30 16:58:58sbtlinkissue18331 messages
2013-06-30 16:58:58sbtcreate