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 xcombelle
Recipients docs@python, xcombelle
Date 2016-02-15.10:42:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455532935.35.0.388834921119.issue26363@psf.upfronthosting.co.za>
In-reply-to
Content
According to my experiment in code, the current behavior of python3.5 is different that the document says. If I understand well the purpose of this behavior is to propagate the __builtins__ global constant if globals has not one.

In
https://docs.python.org/3.6/library/functions.html#eval

it is written  "If the globals dictionary is present and lacks ‘__builtins__’, the current globals are copied into globals before expression is parsed." only the __builtins__ looks copied not all the globals


In
https://docs.python.org/3.6/library/functions.html#exec
It is written:
"If the globals dictionary does not contain a value for the key __builtins__, a reference to the dictionary of the built-in module builtins is inserted under that key." it looks like it is not a reference to the built-in module builtin, but a reference to __builtin__ global
History
Date User Action Args
2016-02-15 10:42:15xcombellesetrecipients: + xcombelle, docs@python
2016-02-15 10:42:15xcombellesetmessageid: <1455532935.35.0.388834921119.issue26363@psf.upfronthosting.co.za>
2016-02-15 10:42:15xcombellelinkissue26363 messages
2016-02-15 10:42:15xcombellecreate