On Nov 12, 10:07 pm, hetchkay <hetch...@gmail.com> wrote:
> Hello,
>
> I have the following in exit.py:
> import sys
> sys.exit(0)
>
> I now try 'python -i exit.py':
>
> In 2.5, the script exits as I would expect.
>
> In 2.6, the following error is printed:
>
> Traceback (most recent call last):
>   File "exit.py", line 2, in <module>
>     sys.exit(0)
> SystemExit: 0
>
>
>
> I couldn't find anything related to this in "What's new in 2.6".


Look here ;-)
http://docs.python.org/library/exceptions.html#exceptions.SystemExit

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to