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.

Author chris.jerdonek
Recipients asvetlov, chris.jerdonek, pitrou
Date 2012-08-13.17:03:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344877408.38.0.449181167477.issue15592@psf.upfronthosting.co.za>
In-reply-to
Content
This issue may be the bug referenced here:

# BUG: can't give a non-empty stdin because it breaks both the
# select- and poll-based communicate() implementations.
(stdout, stderr) = p.communicate()

http://hg.python.org/cpython/file/843e0da7e91f/Lib/test/test_subprocess.py#l618

The reason is that the above test would fail if stdin were not None since the input to communicate is None.

I am preparing a test and patch for this issue.
History
Date User Action Args
2012-08-13 17:03:28chris.jerdoneksetrecipients: + chris.jerdonek, pitrou, asvetlov
2012-08-13 17:03:28chris.jerdoneksetmessageid: <1344877408.38.0.449181167477.issue15592@psf.upfronthosting.co.za>
2012-08-13 17:03:27chris.jerdoneklinkissue15592 messages
2012-08-13 17:03:27chris.jerdonekcreate