Issue1577

classification
Title: os.system() returns None
Type: behaviour Severity: normal
Components: Library Versions: 2.5.1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex.gronholm, pjenvey
Priority: Keywords: patch

Created on 2010-03-21.13:18:05 by alex.gronholm, last changed 2010-03-21.17:53:17 by pjenvey.

Files
File name Uploaded Description Edit Remove
os-system.patch alex.gronholm, 2010-03-21.13:18:04 Patch that makes os.system() return the return code of the executed command
Messages
msg5579 (view) Author: Alex Grönholm (alex.gronholm) Date: 2010-03-21.13:18:04
os.system() should always return the return value of the given command, but the Jython implementation returns None, which screws up "jython setup.py sdist" among others.

Attached is a patch that fixes the problem.
msg5582 (view) Author: Philip Jenvey (pjenvey) Date: 2010-03-21.17:53:16
applied in r6987, thanks
History
Date User Action Args
2010-03-21 17:53:17pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg5582
2010-03-21 13:18:05alex.gronholmcreate