Issue1754222

classification
Title: raising SystemExit in a thread causes jython to quit
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, pjenvey
Priority: normal Keywords: test failure causes

Created on 2007-07-15.07:07:24 by cgroves, last changed 2008-06-08.22:04:41 by pjenvey.

Messages
msg1714 (view) Author: Charlie Groves (cgroves) Date: 2007-07-15.07:07:24
Raising SystemExit from a second thread created in Jython causes sys.exit() to be called, but it should really just call thread.exit() on the currently running thread.  test_socket_ssl currently fails due to this problem.
msg1715 (view) Author: Charlie Groves (cgroves) Date: 2007-07-15.07:07:59
test_socket_ssl currently fails on the 2.3 branch that is.
msg1716 (view) Author: Charlie Groves (cgroves) Date: 2007-08-06.00:06:43
See http://wiki.python.org/jython/JythonDeveloperGuide/VersionTransitionTestExclusions for how to get the test running again to fix this.
msg3243 (view) Author: Philip Jenvey (pjenvey) Date: 2008-06-08.01:01:34
this is fixed in r4559, but it didn't help test_socket_ssl at all. That's 
continued in #1049
History
Date User Action Args
2008-06-08 22:04:41pjenveysetstatus: open -> closed
resolution: fixed
2008-06-08 01:01:37pjenveysetnosy: + pjenvey
messages: + msg3243
title: raising SystemExit in a thread causes jython to quit -> raising SystemExit in a thread causes jython to quit
2007-07-15 07:07:24cgrovescreate