os._exit(), os.kill(os.getpid(), 9)

Fredrik Lundh fredrik at pythonware.com
Fri Jan 21 10:15:22 EST 2000


Robert Milkowski <milek at task.gda.pl> wrote:
> how to exit with clean up?

    sys.exit()

or

    sys.exit(errcode)

or

    raise SystemExit

</F>





More information about the Python-list mailing list