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 christian.heimes
Recipients christian.heimes
Date 2007-12-13.02:04:36
SpamBayes Score 0.009272252
Marked as misclassified No
Message-id <1197511478.48.0.254025525321.issue1606@psf.upfronthosting.co.za>
In-reply-to
Content
The subprocess docs need a warning that code like

p = subprocess.Popen(..., stdout=STDOUT)
p.wait()
p.stdout.read()

can block indefinitely if the program fills the stdout buffer. It needs
an example how to do it right but I don't know the best way to solve the
problem.
History
Date User Action Args
2007-12-13 02:04:39christian.heimessetspambayes_score: 0.00927225 -> 0.009272252
recipients: + christian.heimes
2007-12-13 02:04:38christian.heimessetspambayes_score: 0.00927225 -> 0.00927225
messageid: <1197511478.48.0.254025525321.issue1606@psf.upfronthosting.co.za>
2007-12-13 02:04:38christian.heimeslinkissue1606 messages
2007-12-13 02:04:37christian.heimescreate