This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_signal in test_subprocess displays traceback
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.2
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: flox Nosy List: flox, gps, gregory.p.smith, pitrou
Priority: low Keywords:

Created on 2010-03-27 18:32 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg101836 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-03-27 18:32
test_signal in test_subprocess doesn't mute the subprocess stderr, which gives output such as:

test_subprocess
.
    this bit of output is from a test of stdout in a different process ...
.
    this bit of output is from a test of stdout in a different process ...
.
    this bit of output is from a test of stdout in a different process ...
Traceback (most recent call last):
  File "<string>", line 1, in <module>
KeyboardInterrupt
Traceback (most recent call last):
  File "<string>", line 1, in <module>
KeyboardInterrupt
msg101842 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-03-27 19:03
It is already fixed in 2.7, with r79344, r79346 and r79350.

Need porting to other branches.
msg101848 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-03-27 22:50
Merged in 3.x with r79473
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52493
2010-03-27 22:50:28floxsetstatus: pending -> closed
assignee: gregory.p.smith -> flox
messages: + msg101848
2010-03-27 19:03:45floxsetstatus: open -> pending
resolution: out of date
messages: + msg101842

stage: needs patch -> resolved
2010-03-27 18:33:59gregory.p.smithsetassignee: gregory.p.smith

nosy: + gregory.p.smith
2010-03-27 18:32:19pitroucreate