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 Zahari.Dim
Recipients Zahari.Dim, docs@python
Date 2013-11-23.16:51:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385225461.09.0.671908077084.issue19737@psf.upfronthosting.co.za>
In-reply-to
Content
The globals() notification states:

Return a dictionary representing the current global symbol table.[...]

This doc and the fact that globals() is called as a function made me think that globals() returns a copy of the global namespace dict, rather than an object that could be used to actually modify the namespace. I don't find obvious the meaning of "representing" in this context.

This of course led to a very nasty and sneaky bug in my code.

The docs of locals() don't seem clear to me either, thought at least it seems to imply that it is actually modifying the namespace.
History
Date User Action Args
2013-11-23 16:51:01Zahari.Dimsetrecipients: + Zahari.Dim, docs@python
2013-11-23 16:51:01Zahari.Dimsetmessageid: <1385225461.09.0.671908077084.issue19737@psf.upfronthosting.co.za>
2013-11-23 16:51:01Zahari.Dimlinkissue19737 messages
2013-11-23 16:51:00Zahari.Dimcreate