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 rhettinger
Recipients
Date 2005-04-01.18:13:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=80475

class quit:
    def __repr__(self):
        return "Type quit() to exit the interpreter"
    def __call__(self):
        sys.exit()

Requiring the parentheses is not a big deal as long as there
is an advisory where they are omitted.
History
Date User Action Args
2007-08-23 14:30:38adminlinkissue1173637 messages
2007-08-23 14:30:38admincreate