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.

classification
Title: let quit and exit really exit
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: mwh Nosy List: gerrit, mwh
Priority: normal Keywords: patch

Created on 2006-10-09 15:51 by gerrit, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
exit_patch gerrit, 2006-10-09 15:51 patch to let exit/quit exit interpreter, created with 'svn diff'
Messages (2)
msg51216 - (view) Author: Gerrit Holl (gerrit) Date: 2006-10-09 15:51
since Python 2.5, quit() and exit() exit the interpreter.
This patch lets quit and exit exit the interpreter as
well, by letting __repr__ call self().
msg51217 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2006-10-09 15:55
Logged In: YES 
user_id=6656

No no no, consider what this does:

>>> import __builtin__
>>> print __builtin__.__dict__


History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 44101
2006-10-09 15:51:45gerritcreate