Adam Olsen added the comment:

I disagree.  sys.exit() attempts to gracefully shutdown the interpreter,
invoking try/finally blocks and the like.  If you want to truly force
shutdown you should use os.abort() or os._exit().

Note that, as python doesn't call a main function, you have to use
sys.exit() to have an exit status.

_____________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1722344>
_____________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to