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: Typo in Popen3 description
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, greg_ball
Priority: normal Keywords:

Created on 2003-11-28 17:08 by greg_ball, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg19165 - (view) Author: Gregory H. Ball (greg_ball) Date: 2003-11-28 17:08
In section 6.8.1 Popen3 and Popen4 Objects, of the
current and development docs,  under attribute 'childerr':

"""
Where the standard error from the child process goes is
capturestderr was true for the constructor, or None.
"""

The 'is' should be 'if'.

I think it might also be an improvement to replace 'or'
with 'otherwise'.

If a rewriting is acceptable, I think 

"""
A file object that provides error output from the child
process, if
capturestderr was true for the constructor, otherwise None.
"""
improves uniformity with the descriptions of
'fromchild' and 'tochild'.
msg19166 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2003-12-23 17:01
Logged In: YES 
user_id=11375

Your rewrite is certainly much better than the existing text; checked 
in as rev. 1.20.  Thanks!
History
Date User Action Args
2022-04-11 14:56:01adminsetgithub: 39619
2003-11-28 17:08:13greg_ballcreate