]> granicus.if.org Git - python/commit
Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value
authorGregory P. Smith <greg@krypto.org>
Sat, 23 Mar 2013 18:44:25 +0000 (11:44 -0700)
committerGregory P. Smith <greg@krypto.org>
Sat, 23 Mar 2013 18:44:25 +0000 (11:44 -0700)
commita1ed539268e37b12a4a864738b4d1e12bdb92793
tree1942f0090785cf474ab377c903a30bdbd0435ba3
parent68b4cc87cd75822552914fb59f5bf53fe6c28202
Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value
from unbuffered (0) to buffering (-1) to match the behavior existing code
expects and match the behavior of the subprocess module in Python 2 to avoid
introducing hard to track down bugs.
Doc/library/subprocess.rst
Lib/subprocess.py
Lib/test/test_subprocess.py
Misc/NEWS