"Breaking" the __main__ script

Mark Lawrence breamoreboy at yahoo.co.uk
Sun Mar 14 07:53:22 EDT 2010


vsoler wrote:
> Hello,
> 
> I am still learning python, thus developnig small scripts.
> 
> Some of them consist only of the main module. While testing them
> (debugging) I sometimes want to stop the script at a certain point,
> with something like    stop, break, end   or something similar.
> 
> What statement can I use?
> 
> Vicente Soler

Something like
import sys
sys.exit()?

HTH.

Mark Lawrence




More information about the Python-list mailing list