Stopping Execution

Fredrik Lundh fredrik at pythonware.com
Thu Nov 10 17:11:52 EST 2005


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>






More information about the Python-list mailing list