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 wplappert
Recipients LambertDW, georg.brandl, giampaolo.rodola, sameerd, skip.montanaro, wplappert
Date 2008-10-25.21:04:30
SpamBayes Score 3.854786e-07
Marked as misclassified No
Message-id <1224968672.43.0.230759183398.issue4194@psf.upfronthosting.co.za>
In-reply-to
Content
On the other hand, we will silently break all those applications which
are out there relying on the fact that a pipe is an unbuffered device.
You might consider it for Python 3.0, but I don't know if it is a good
idea for Python 2.x. The documentation of subprocess.Popen clear states
that the default is unbuffered, bufsize=0. I quote from
http://docs.python.org/library/subprocess.html:

bufsize, if given, has the same meaning as the corresponding argument to
the built-in open() function: 0 means unbuffered, 1 means line buffered,
any other positive value means use a buffer of (approximately) that
size. A negative bufsize means to use the system default, which usually
means fully buffered. The default value for bufsize is 0 (unbuffered).
History
Date User Action Args
2008-10-25 21:04:33wplappertsetrecipients: + wplappert, skip.montanaro, georg.brandl, giampaolo.rodola, LambertDW, sameerd
2008-10-25 21:04:32wplappertsetmessageid: <1224968672.43.0.230759183398.issue4194@psf.upfronthosting.co.za>
2008-10-25 21:04:31wplappertlinkissue4194 messages
2008-10-25 21:04:30wplappertcreate