Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

exit python shell

Hans Nowak writes about how python interactive shell should quit/exit
when you type 'quit' or 'exit'.
He also shows an example.
>>> class _Exit:
...     def __repr__(self):
...         raise SystemExit
...
>>> exit = _Exit()
>>> exit # exits the interpreter

Stewart Midwinter comments how he modify it a bit and put them
into the site.py
def setquit():
  __builtin__.quit = __builtin__.exit = exit = _Exit()
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS