"Alan Isaac" <[EMAIL PROTECTED]> writes: > I'm fairly new to Python and I've lately been running a script at > the interpreter while working on it. Sometimes I only want to > run the first quarter or half etc. What is the "good" way to do this?
If it's single threaded then just call sys.exit(). If you don't know what single threaded means, your program is definitely single threaded. -- http://mail.python.org/mailman/listinfo/python-list