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:31:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446766280.97.0.706569080756.issue25564@psf.upfronthosting.co.za>
In-reply-to
Content
`del __builtins__;min` only fails in IDLE if someone has previously set `__builtins__ to something else.
>>>__builtins__ = 7
>>> min
Traceback (most recent call last):
  File "<pyshell#352>", line 1, in <module>
    min
NameError: name 'min' is not defined
>>>del __builtins__;min
Traceback (most recent call last):
  File "<pyshell#353>", line 1, in <module>
    del __builtins__;min
NameError: name 'min' is not defined
>>del __builtins__;min
<built-in function min>
History
Date User Action Args
2015-11-05 23:31:21ppperrysetrecipients: + ppperry
2015-11-05 23:31:20ppperrysetmessageid: <1446766280.97.0.706569080756.issue25564@psf.upfronthosting.co.za>
2015-11-05 23:31:20ppperrylinkissue25564 messages
2015-11-05 23:31:20ppperrycreate