Hello,<br><br>I have the following in exit.py:<br>import sys<br>sys.exit(0)<br><br>I now try 'python -i exit.py':<br><br>In 2.5, the script exits as I would expect.<br><br>In 2.6, the following error is printed:<br>
<br><span style="font-family: courier new,monospace;">Traceback (most recent call last):</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  File "exit.py", line 2, in <module></span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">    sys.exit(0)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">SystemExit: 0</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">>>></span><br><br>I couldn't find anything related to this in "What's new in 2.6".<br><br>Is there any way I can get 2.6 to behave like 2.5?<br>
<br>Thank you for your help,<br><br>Regards,<br>H. Krishnan<br><br>