Message4476

Author colinhevans
Recipients colinhevans
Date 2009-04-07.23:48:02
SpamBayes Score 1.0462893e-09
Marked as misclassified No
Message-id <1239148084.07.0.697781432607.issue1308@psf.upfronthosting.co.za>
In-reply-to
Content
Calling sys.exit() in a thread spawned through the thread module causes
the thread to exit, but doesn't cause the interpreter to exit.

The problem appears to be in org.python.core.FunctionThread - the
Py.SystemExit exception is caught and identified here, but nothing is
done.  Perhaps it should call java.lang.System.exit() with the
appropriate exit code?  Maybe it should call the Python atexit functions
too?
History
Date User Action Args
2009-04-07 23:48:04colinhevanssetrecipients: + colinhevans
2009-04-07 23:48:04colinhevanssetmessageid: <1239148084.07.0.697781432607.issue1308@psf.upfronthosting.co.za>
2009-04-07 23:48:03colinhevanslinkissue1308 messages
2009-04-07 23:48:03colinhevanscreate