]> 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:54:22 +0000 (11:54 -0700)
committerGregory P. Smith <greg@krypto.org>
Sat, 23 Mar 2013 18:54:22 +0000 (11:54 -0700)
commita1b9ed32ee69c9204959d5db2475001d199b3e50
tree9a0703b29c0cc374df6aea8666714f89dc3839ca
parent3ddba16aa6ebdbd3b811d8611a738aa18dfece42
parenta1ed539268e37b12a4a864738b4d1e12bdb92793
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