robert.dowell at gmail.com wrote: > import sys > sys.exit $ more test.py import sys print "should get here" sys.exit print "should never get here" $ python test.py should get here should never get here </F>