vote up 2 vote down star

I like IPython a lot for working with the python interpreter. However, I continually find myself typing exit to exit, and get prompted "Type exit() to exit."

I know I can type Ctrl-D to exit, but is there a way I can type exit without parentheses and get IPython to exit?

Update: Thanks to nosklo, this can be easily done by adding the following line to the main() function in your ipy_user_conf.py:

# type exit to exit
ip.ex("type(exit).__repr__ = lambda s: setattr(s.shell, 'exit_now', True) or ''")
flag

75% accept rate

2 Answers

vote up 6 vote down check
>>> import sys
>>> class Quitter(object):
...     def __repr__(self):
...         sys.exit()
... 
>>> exit = Quitter()

You can use it like this:

>>> exit

EDIT:

I dont use ipython myself, but it seems to have some wierd sys.exit handler. The solution I found is as follows:

In [1]: type(exit).__repr__ = lambda s: setattr(s.shell, 'exit_now', True) or ''

Usage:

In [2]: exit
link|flag
This doesn't quite work with IPython. It has its own Quitter class which calls the appropriate exit method on the actual IPShell instance. But the general idea is correct. – Robert Kern Oct 6 at 20:51
@Robert Kern: Okay, found an ipython solution. – nosklo Oct 6 at 22:50
@nosklo -- Thanks, that's awesome. – Jason Sundram Oct 8 at 15:01
vote up 3 vote down

%exit, or %Exit, if you have confirmation enabled and want to skip it. You can alias it to e.g. %e by putting execute __IPYTHON__.magic_e = __IPYTHON__.magic_exit in your ipythonrc.

link|flag
Thanks, but I really want to literally type "exit". Because it is stuck in muscle memory. – Jason Sundram Oct 6 at 20:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.