Bugs item #1121579, was opened at 2005-02-12 16:27
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1121579&group_id=5470

Category: Documentation
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: Monte Davidoff (mdavidoff)
Assigned to: Nobody/Anonymous (nobody)
Summary: subprocess example missing "stdout=PIPE"

Initial Comment:
In the Python Library Reference, section 6.8.3.2, the
Popen for p2 is missing "stdout=PIPE". Correct line is:

p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)

This typo also occurs in subprocess.py line 232. The
executable example on line 1118 is correct.

Python 2.4, Red Hat Linux 9.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1121579&group_id=5470
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to