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 ppperry
Recipients ppperry
Date 2015-11-05.23:26:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446765964.78.0.0240100073004.issue25564@psf.upfronthosting.co.za>
In-reply-to
Content
In IDLE the following code silently works:
>>> del __builtins__
>>> min
<built-in function min>

In the standard interpreter, it produces an error:
>>> del __builtins__
>>> min
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'min' is not defined

Note that saying `__builtins__ = 7` fails in idle as well.
History
Date User Action Args
2015-11-05 23:26:04ppperrysetrecipients: + ppperry
2015-11-05 23:26:04ppperrysetmessageid: <1446765964.78.0.0240100073004.issue25564@psf.upfronthosting.co.za>
2015-11-05 23:26:04ppperrylinkissue25564 messages
2015-11-05 23:26:04ppperrycreate