Issue1286

classification
Title: [2.5b3] sys.exit return code to system is always 0
Type: Severity: normal
Components: Versions:
Milestone:
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: yanne, zyasoft
Priority: Keywords:

Created on 2009-03-23.10:27:08 by yanne, last changed 2009-03-23.13:17:49 by zyasoft.

Messages
msg4338 (view) Author: Janne Härkönen (yanne) Date: 2009-03-23.10:27:07
$ jython -c "import sys; print sys.version; sys.exit(1)"; echo rc: $?
2.2
rc: 1

$ /home/jth/opt/jython2.5b3/jython -c "import sys; print sys.version;
sys.exit(1)"; echo rc: $?
2.5b3 (Release_2_5beta3:6092, Mar 10 2009, 15:34:57)
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)]
rc: 0
msg4341 (view) Author: Jim Baker (zyasoft) Date: 2009-03-23.13:17:49
Duplicate of #1261, fixed in r6096
History
Date User Action Args
2009-03-23 13:17:49zyasoftsetstatus: open -> closed
resolution: duplicate
messages: + msg4341
nosy: + zyasoft
2009-03-23 10:27:08yannecreate